wxGrid::AutoSize() added
[wxWidgets.git] / include / wx / generic / grid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/grid.h
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by:
6 // Created: 1/08/1999
7 // RCS-ID: $Id$
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/defs.h"
13
14 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
15 #include "gridg.h"
16 #else
17
18 #ifndef __WXGRID_H__
19 #define __WXGRID_H__
20
21 #ifdef __GNUG__
22 #pragma interface "grid.h"
23 #endif
24
25 #include "wx/hash.h"
26 #include "wx/panel.h"
27 #include "wx/scrolwin.h"
28 #include "wx/string.h"
29 #include "wx/scrolbar.h"
30 #include "wx/event.h"
31 #include "wx/combobox.h"
32 #include "wx/dynarray.h"
33 #include "wx/timer.h"
34
35 // ----------------------------------------------------------------------------
36 // constants
37 // ----------------------------------------------------------------------------
38
39 // Default parameters for wxGrid
40 //
41 #define WXGRID_DEFAULT_NUMBER_ROWS 10
42 #define WXGRID_DEFAULT_NUMBER_COLS 10
43 #ifdef __WXMSW__
44 #define WXGRID_DEFAULT_ROW_HEIGHT 25
45 #else
46 #define WXGRID_DEFAULT_ROW_HEIGHT 30
47 #endif // __WXMSW__
48 #define WXGRID_DEFAULT_COL_WIDTH 80
49 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
50 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
51 #define WXGRID_LABEL_EDGE_ZONE 5
52 #define WXGRID_MIN_ROW_HEIGHT 15
53 #define WXGRID_MIN_COL_WIDTH 15
54 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
55
56 // type names for grid table values
57 #define wxGRID_VALUE_STRING _T("string")
58 #define wxGRID_VALUE_BOOL _T("bool")
59 #define wxGRID_VALUE_NUMBER _T("long")
60 #define wxGRID_VALUE_FLOAT _T("double")
61
62 #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
63 #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
64
65 // ----------------------------------------------------------------------------
66 // forward declarations
67 // ----------------------------------------------------------------------------
68
69 class WXDLLEXPORT wxGrid;
70 class WXDLLEXPORT wxGridCellAttr;
71 class WXDLLEXPORT wxGridCellAttrProviderData;
72 class WXDLLEXPORT wxGridColLabelWindow;
73 class WXDLLEXPORT wxGridCornerLabelWindow;
74 class WXDLLEXPORT wxGridRowLabelWindow;
75 class WXDLLEXPORT wxGridTableBase;
76 class WXDLLEXPORT wxGridWindow;
77 class WXDLLEXPORT wxGridTypeRegistry;
78
79 class WXDLLEXPORT wxCheckBox;
80 class WXDLLEXPORT wxComboBox;
81 class WXDLLEXPORT wxTextCtrl;
82 class WXDLLEXPORT wxSpinCtrl;
83
84 // ----------------------------------------------------------------------------
85 // wxGridCellRenderer: this class is responsible for actually drawing the cell
86 // in the grid. You may pass it to the wxGridCellAttr (below) to change the
87 // format of one given cell or to wxGrid::SetDefaultRenderer() to change the
88 // view of all cells. This is an ABC, you will normally use one of the
89 // predefined derived classes or derive oyur own class from it.
90 // ----------------------------------------------------------------------------
91
92 class WXDLLEXPORT wxGridCellRenderer
93 {
94 public:
95 // draw the given cell on the provided DC inside the given rectangle
96 // using the style specified by the attribute and the default or selected
97 // state corresponding to the isSelected value.
98 //
99 // this pure virtual function has a default implementation which will
100 // prepare the DC using the given attribute: it will draw the rectangle
101 // with the bg colour from attr and set the text colour and font
102 virtual void Draw(wxGrid& grid,
103 wxGridCellAttr& attr,
104 wxDC& dc,
105 const wxRect& rect,
106 int row, int col,
107 bool isSelected) = 0;
108
109 // get the preferred size of the cell for its contents
110 virtual wxSize GetBestSize(wxGrid& grid,
111 wxGridCellAttr& attr,
112 wxDC& dc,
113 int row, int col) = 0;
114
115 // virtual dtor for any base class
116 virtual ~wxGridCellRenderer();
117 };
118
119 // the default renderer for the cells containing string data
120 class WXDLLEXPORT wxGridCellStringRenderer : public wxGridCellRenderer
121 {
122 public:
123 // draw the string
124 virtual void Draw(wxGrid& grid,
125 wxGridCellAttr& attr,
126 wxDC& dc,
127 const wxRect& rect,
128 int row, int col,
129 bool isSelected);
130
131 // return the string extent
132 virtual wxSize GetBestSize(wxGrid& grid,
133 wxGridCellAttr& attr,
134 wxDC& dc,
135 int row, int col);
136
137 protected:
138 // set the text colours before drawing
139 void SetTextColoursAndFont(wxGrid& grid,
140 wxGridCellAttr& attr,
141 wxDC& dc,
142 bool isSelected);
143
144 // calc the string extent for given string/font
145 wxSize DoGetBestSize(wxGridCellAttr& attr,
146 wxDC& dc,
147 const wxString& text);
148 };
149
150 // the default renderer for the cells containing numeric (long) data
151 class WXDLLEXPORT wxGridCellNumberRenderer : public wxGridCellStringRenderer
152 {
153 public:
154 // draw the string right aligned
155 virtual void Draw(wxGrid& grid,
156 wxGridCellAttr& attr,
157 wxDC& dc,
158 const wxRect& rect,
159 int row, int col,
160 bool isSelected);
161
162 virtual wxSize GetBestSize(wxGrid& grid,
163 wxGridCellAttr& attr,
164 wxDC& dc,
165 int row, int col);
166
167 protected:
168 wxString GetString(wxGrid& grid, int row, int col);
169 };
170
171 class WXDLLEXPORT wxGridCellFloatRenderer : public wxGridCellStringRenderer
172 {
173 public:
174 wxGridCellFloatRenderer(int width, int precision);
175
176 // get/change formatting parameters
177 int GetWidth() const { return m_width; }
178 void SetWidth(int width) { m_width = width; }
179 int GetPrecision() const { return m_precision; }
180 void SetPrecision(int precision) { m_precision = precision; }
181
182 // draw the string right aligned with given width/precision
183 virtual void Draw(wxGrid& grid,
184 wxGridCellAttr& attr,
185 wxDC& dc,
186 const wxRect& rect,
187 int row, int col,
188 bool isSelected);
189
190 virtual wxSize GetBestSize(wxGrid& grid,
191 wxGridCellAttr& attr,
192 wxDC& dc,
193 int row, int col);
194 protected:
195 wxString GetString(wxGrid& grid, int row, int col);
196
197 private:
198 // formatting parameters
199 int m_width,
200 m_precision;
201
202 wxString m_format;
203 };
204
205 // renderer for boolean fields
206 class WXDLLEXPORT wxGridCellBoolRenderer : public wxGridCellRenderer
207 {
208 public:
209 // draw a check mark or nothing
210 virtual void Draw(wxGrid& grid,
211 wxGridCellAttr& attr,
212 wxDC& dc,
213 const wxRect& rect,
214 int row, int col,
215 bool isSelected);
216
217 // return the checkmark size
218 virtual wxSize GetBestSize(wxGrid& grid,
219 wxGridCellAttr& attr,
220 wxDC& dc,
221 int row, int col);
222
223 private:
224 static wxSize ms_sizeCheckMark;
225 };
226
227 // ----------------------------------------------------------------------------
228 // wxGridCellEditor: This class is responsible for providing and manipulating
229 // the in-place edit controls for the grid. Instances of wxGridCellEditor
230 // (actually, instances of derived classes since it is an ABC) can be
231 // associated with the cell attributes for individual cells, rows, columns, or
232 // even for the entire grid.
233 // ----------------------------------------------------------------------------
234
235 class WXDLLEXPORT wxGridCellEditor
236 {
237 public:
238 wxGridCellEditor();
239 virtual ~wxGridCellEditor();
240
241 bool IsCreated() { return m_control != NULL; }
242
243 // Creates the actual edit control
244 virtual void Create(wxWindow* parent,
245 wxWindowID id,
246 wxEvtHandler* evtHandler) = 0;
247
248 // Size and position the edit control
249 virtual void SetSize(const wxRect& rect);
250
251 // Show or hide the edit control, use the specified attributes to set
252 // colours/fonts for it
253 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
254
255 // Draws the part of the cell not occupied by the control: the base class
256 // version just fills it with background colour from the attribute
257 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
258
259 // Fetch the value from the table and prepare the edit control
260 // to begin editing. Set the focus to the edit control.
261 virtual void BeginEdit(int row, int col, wxGrid* grid) = 0;
262
263 // Complete the editing of the current cell. Returns true if the value has
264 // changed. If necessary, the control may be destroyed.
265 virtual bool EndEdit(int row, int col, wxGrid* grid) = 0;
266
267 // Reset the value in the control back to its starting value
268 virtual void Reset() = 0;
269
270 // If the editor is enabled by pressing keys on the grid,
271 // this will be called to let the editor do something about
272 // that first key if desired.
273 virtual void StartingKey(wxKeyEvent& event);
274
275 // if the editor is enabled by clicking on the cell, this method will be
276 // called
277 virtual void StartingClick();
278
279 // Some types of controls on some platforms may need some help
280 // with the Return key.
281 virtual void HandleReturn(wxKeyEvent& event);
282
283 // Final cleanup
284 virtual void Destroy();
285
286 protected:
287 // the control we show on screen
288 wxControl* m_control;
289
290 // if we change the colours/font of the control from the default ones, we
291 // must restore the default later and we save them here between calls to
292 // Show(TRUE) and Show(FALSE)
293 wxColour m_colFgOld,
294 m_colBgOld;
295 wxFont m_fontOld;
296 };
297
298 // the editor for string/text data
299 class WXDLLEXPORT wxGridCellTextEditor : public wxGridCellEditor
300 {
301 public:
302 wxGridCellTextEditor();
303
304 virtual void Create(wxWindow* parent,
305 wxWindowID id,
306 wxEvtHandler* evtHandler);
307 virtual void SetSize(const wxRect& rect);
308
309 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
310
311 virtual void BeginEdit(int row, int col, wxGrid* grid);
312 virtual bool EndEdit(int row, int col, wxGrid* grid);
313
314 virtual void Reset();
315 virtual void StartingKey(wxKeyEvent& event);
316 virtual void HandleReturn(wxKeyEvent& event);
317
318 protected:
319 wxTextCtrl *Text() const { return (wxTextCtrl *)m_control; }
320
321 // parts of our virtual functions reused by the derived classes
322 void DoBeginEdit(const wxString& startValue);
323 void DoReset(const wxString& startValue);
324
325 private:
326 wxString m_startValue;
327 };
328
329 // the editor for numeric (long) data
330 class WXDLLEXPORT wxGridCellNumberEditor : public wxGridCellTextEditor
331 {
332 public:
333 // allows to specify the range - if min == max == -1, no range checking is
334 // done
335 wxGridCellNumberEditor(int min = -1, int max = -1);
336
337 virtual void Create(wxWindow* parent,
338 wxWindowID id,
339 wxEvtHandler* evtHandler);
340
341 virtual void BeginEdit(int row, int col, wxGrid* grid);
342 virtual bool EndEdit(int row, int col, wxGrid* grid);
343
344 virtual void Reset();
345 virtual void StartingKey(wxKeyEvent& event);
346
347 protected:
348 wxSpinCtrl *Spin() const { return (wxSpinCtrl *)m_control; }
349
350 // if HasRange(), we use wxSpinCtrl - otherwise wxTextCtrl
351 bool HasRange() const { return m_min != m_max; }
352
353 // string representation of m_valueOld
354 wxString GetString() const
355 { return wxString::Format(_T("%ld"), m_valueOld); }
356
357 private:
358 int m_min,
359 m_max;
360
361 long m_valueOld;
362 };
363
364 // the editor for floating point numbers (double) data
365 class WXDLLEXPORT wxGridCellFloatEditor : public wxGridCellTextEditor
366 {
367 public:
368 virtual void Create(wxWindow* parent,
369 wxWindowID id,
370 wxEvtHandler* evtHandler);
371
372 virtual void BeginEdit(int row, int col, wxGrid* grid);
373 virtual bool EndEdit(int row, int col, wxGrid* grid);
374
375 virtual void Reset();
376 virtual void StartingKey(wxKeyEvent& event);
377
378 protected:
379 // string representation of m_valueOld
380 wxString GetString() const
381 { return wxString::Format(_T("%f"), m_valueOld); }
382
383 private:
384 double m_valueOld;
385 };
386
387 // the editor for boolean data
388 class WXDLLEXPORT wxGridCellBoolEditor : public wxGridCellEditor
389 {
390 public:
391 virtual void Create(wxWindow* parent,
392 wxWindowID id,
393 wxEvtHandler* evtHandler);
394
395 virtual void SetSize(const wxRect& rect);
396 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
397
398 virtual void BeginEdit(int row, int col, wxGrid* grid);
399 virtual bool EndEdit(int row, int col, wxGrid* grid);
400
401 virtual void Reset();
402 virtual void StartingClick();
403
404 protected:
405 wxCheckBox *CBox() const { return (wxCheckBox *)m_control; }
406
407 private:
408 bool m_startValue;
409 };
410
411 // the editor for string data allowing to choose from the list of strings
412 class WXDLLEXPORT wxGridCellChoiceEditor : public wxGridCellEditor
413 {
414 public:
415 // if !allowOthers, user can't type a string not in choices array
416 wxGridCellChoiceEditor(size_t count, const wxChar* choices[],
417 bool allowOthers = FALSE);
418
419 virtual void Create(wxWindow* parent,
420 wxWindowID id,
421 wxEvtHandler* evtHandler);
422
423 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
424
425 virtual void BeginEdit(int row, int col, wxGrid* grid);
426 virtual bool EndEdit(int row, int col, wxGrid* grid);
427
428 virtual void Reset();
429
430 protected:
431 wxComboBox *Combo() const { return (wxComboBox *)m_control; }
432
433 private:
434 wxString m_startValue;
435 wxArrayString m_choices;
436 bool m_allowOthers;
437 };
438 // ----------------------------------------------------------------------------
439 // wxGridCellAttr: this class can be used to alter the cells appearance in
440 // the grid by changing their colour/font/... from default. An object of this
441 // class may be returned by wxGridTable::GetAttr().
442 // ----------------------------------------------------------------------------
443
444 class WXDLLEXPORT wxGridCellAttr
445 {
446 public:
447 // ctors
448 wxGridCellAttr()
449 {
450 Init();
451 SetAlignment(0, 0);
452 }
453
454 // VZ: considering the number of members wxGridCellAttr has now, this ctor
455 // seems to be pretty useless... may be we should just remove it?
456 wxGridCellAttr(const wxColour& colText,
457 const wxColour& colBack,
458 const wxFont& font,
459 int hAlign,
460 int vAlign)
461 : m_colText(colText), m_colBack(colBack), m_font(font)
462 {
463 Init();
464 SetAlignment(hAlign, vAlign);
465 }
466
467 // default copy ctor ok
468
469 // this class is ref counted: it is created with ref count of 1, so
470 // calling DecRef() once will delete it. Calling IncRef() allows to lock
471 // it until the matching DecRef() is called
472 void IncRef() { m_nRef++; }
473 void DecRef() { if ( !--m_nRef ) delete this; }
474 void SafeIncRef() { if ( this ) IncRef(); }
475 void SafeDecRef() { if ( this ) DecRef(); }
476
477 // setters
478 void SetTextColour(const wxColour& colText) { m_colText = colText; }
479 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
480 void SetFont(const wxFont& font) { m_font = font; }
481 void SetAlignment(int hAlign, int vAlign)
482 {
483 m_hAlign = hAlign;
484 m_vAlign = vAlign;
485 }
486 void SetReadOnly(bool isReadOnly = TRUE) { m_isReadOnly = isReadOnly; }
487
488 // takes ownership of the pointer
489 void SetRenderer(wxGridCellRenderer *renderer)
490 { delete m_renderer; m_renderer = renderer; }
491 void SetEditor(wxGridCellEditor* editor)
492 { delete m_editor; m_editor = editor; }
493
494 // accessors
495 bool HasTextColour() const { return m_colText.Ok(); }
496 bool HasBackgroundColour() const { return m_colBack.Ok(); }
497 bool HasFont() const { return m_font.Ok(); }
498 bool HasAlignment() const { return m_hAlign || m_vAlign; }
499 bool HasRenderer() const { return m_renderer != NULL; }
500 bool HasEditor() const { return m_editor != NULL; }
501
502 const wxColour& GetTextColour() const;
503 const wxColour& GetBackgroundColour() const;
504 const wxFont& GetFont() const;
505 void GetAlignment(int *hAlign, int *vAlign) const;
506 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
507 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
508
509 bool IsReadOnly() const { return m_isReadOnly; }
510
511 void SetDefAttr(wxGridCellAttr* defAttr) { m_defGridAttr = defAttr; }
512
513 private:
514 // the common part of all ctors
515 void Init()
516 {
517 m_nRef = 1;
518
519 m_isReadOnly = FALSE;
520
521 m_renderer = NULL;
522 m_editor = NULL;
523 }
524
525 // the dtor is private because only DecRef() can delete us
526 ~wxGridCellAttr() { delete m_renderer; delete m_editor; }
527
528 // the ref count - when it goes to 0, we die
529 size_t m_nRef;
530
531 wxColour m_colText,
532 m_colBack;
533 wxFont m_font;
534 int m_hAlign,
535 m_vAlign;
536
537 wxGridCellRenderer* m_renderer;
538 wxGridCellEditor* m_editor;
539 wxGridCellAttr* m_defGridAttr;
540
541 bool m_isReadOnly;
542
543 // suppress the stupid gcc warning about the class having private dtor and
544 // no friends
545 friend class wxGridCellAttrDummyFriend;
546 };
547
548 // ----------------------------------------------------------------------------
549 // wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
550 // cell attributes.
551 // ----------------------------------------------------------------------------
552
553 // implementation note: we separate it from wxGridTableBase because we wish to
554 // avoid deriving a new table class if possible, and sometimes it will be
555 // enough to just derive another wxGridCellAttrProvider instead
556 //
557 // the default implementation is reasonably efficient for the generic case,
558 // but you might still wish to implement your own for some specific situations
559 // if you have performance problems with the stock one
560 class WXDLLEXPORT wxGridCellAttrProvider
561 {
562 public:
563 wxGridCellAttrProvider();
564 virtual ~wxGridCellAttrProvider();
565
566 // DecRef() must be called on the returned pointer
567 virtual wxGridCellAttr *GetAttr(int row, int col) const;
568
569 // all these functions take ownership of the pointer, don't call DecRef()
570 // on it
571 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
572 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
573 virtual void SetColAttr(wxGridCellAttr *attr, int col);
574
575 // these functions must be called whenever some rows/cols are deleted
576 // because the internal data must be updated then
577 void UpdateAttrRows( size_t pos, int numRows );
578 void UpdateAttrCols( size_t pos, int numCols );
579
580 private:
581 void InitData();
582
583 wxGridCellAttrProviderData *m_data;
584 };
585
586 //////////////////////////////////////////////////////////////////////
587 //
588 // Grid table classes
589 //
590 //////////////////////////////////////////////////////////////////////
591
592
593 class WXDLLEXPORT wxGridTableBase : public wxObject
594 {
595 public:
596 wxGridTableBase();
597 virtual ~wxGridTableBase();
598
599 // You must override these functions in a derived table class
600 //
601 virtual long GetNumberRows() = 0;
602 virtual long GetNumberCols() = 0;
603 virtual bool IsEmptyCell( int row, int col ) = 0;
604 virtual wxString GetValue( int row, int col ) = 0;
605 virtual void SetValue( int row, int col, const wxString& value ) = 0;
606
607 // Data type determination and value access
608 virtual wxString GetTypeName( int row, int col );
609 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
610 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
611
612 virtual long GetValueAsLong( int row, int col );
613 virtual double GetValueAsDouble( int row, int col );
614 virtual bool GetValueAsBool( int row, int col );
615
616 virtual void SetValueAsLong( int row, int col, long value );
617 virtual void SetValueAsDouble( int row, int col, double value );
618 virtual void SetValueAsBool( int row, int col, bool value );
619
620 // For user defined types
621 virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
622 virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
623
624
625 // Overriding these is optional
626 //
627 virtual void SetView( wxGrid *grid ) { m_view = grid; }
628 virtual wxGrid * GetView() const { return m_view; }
629
630 virtual void Clear() {}
631 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
632 virtual bool AppendRows( size_t numRows = 1 );
633 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
634 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
635 virtual bool AppendCols( size_t numCols = 1 );
636 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
637
638 virtual wxString GetRowLabelValue( int row );
639 virtual wxString GetColLabelValue( int col );
640 virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
641 virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
642
643 // Attribute handling
644 //
645
646 // give us the attr provider to use - we take ownership of the pointer
647 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
648
649 // get the currently used attr provider (may be NULL)
650 wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
651
652 // Does this table allow attributes? Default implementation creates
653 // a wxGridCellAttrProvider if necessary.
654 virtual bool CanHaveAttributes();
655
656
657 // change row/col number in attribute if needed
658 virtual void UpdateAttrRows( size_t pos, int numRows );
659 virtual void UpdateAttrCols( size_t pos, int numCols );
660
661 // by default forwarded to wxGridCellAttrProvider if any. May be
662 // overridden to handle attributes directly in the table.
663 virtual wxGridCellAttr *GetAttr( int row, int col );
664
665 // these functions take ownership of the pointer
666 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
667 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
668 virtual void SetColAttr(wxGridCellAttr *attr, int col);
669
670 private:
671 wxGrid * m_view;
672 wxGridCellAttrProvider *m_attrProvider;
673
674 DECLARE_ABSTRACT_CLASS( wxGridTableBase );
675 };
676
677
678 // ----------------------------------------------------------------------------
679 // wxGridTableMessage
680 // ----------------------------------------------------------------------------
681
682 // IDs for messages sent from grid table to view
683 //
684 enum wxGridTableRequest
685 {
686 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
687 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
688 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
689 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
690 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
691 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
692 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
693 wxGRIDTABLE_NOTIFY_COLS_DELETED
694 };
695
696 class WXDLLEXPORT wxGridTableMessage
697 {
698 public:
699 wxGridTableMessage();
700 wxGridTableMessage( wxGridTableBase *table, int id,
701 int comInt1 = -1,
702 int comInt2 = -1 );
703
704 void SetTableObject( wxGridTableBase *table ) { m_table = table; }
705 wxGridTableBase * GetTableObject() const { return m_table; }
706 void SetId( int id ) { m_id = id; }
707 int GetId() { return m_id; }
708 void SetCommandInt( int comInt1 ) { m_comInt1 = comInt1; }
709 int GetCommandInt() { return m_comInt1; }
710 void SetCommandInt2( int comInt2 ) { m_comInt2 = comInt2; }
711 int GetCommandInt2() { return m_comInt2; }
712
713 private:
714 wxGridTableBase *m_table;
715 int m_id;
716 int m_comInt1;
717 int m_comInt2;
718 };
719
720
721
722 // ------ wxGridStringArray
723 // A 2-dimensional array of strings for data values
724 //
725
726 WX_DECLARE_EXPORTED_OBJARRAY(wxArrayString, wxGridStringArray);
727
728
729
730 // ------ wxGridStringTable
731 //
732 // Simplest type of data table for a grid for small tables of strings
733 // that are stored in memory
734 //
735
736 class WXDLLEXPORT wxGridStringTable : public wxGridTableBase
737 {
738 public:
739 wxGridStringTable();
740 wxGridStringTable( int numRows, int numCols );
741 ~wxGridStringTable();
742
743 // these are pure virtual in wxGridTableBase
744 //
745 long GetNumberRows();
746 long GetNumberCols();
747 wxString GetValue( int row, int col );
748 void SetValue( int row, int col, const wxString& s );
749 bool IsEmptyCell( int row, int col );
750
751 // overridden functions from wxGridTableBase
752 //
753 void Clear();
754 bool InsertRows( size_t pos = 0, size_t numRows = 1 );
755 bool AppendRows( size_t numRows = 1 );
756 bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
757 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
758 bool AppendCols( size_t numCols = 1 );
759 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
760
761 void SetRowLabelValue( int row, const wxString& );
762 void SetColLabelValue( int col, const wxString& );
763 wxString GetRowLabelValue( int row );
764 wxString GetColLabelValue( int col );
765
766 private:
767 wxGridStringArray m_data;
768
769 // These only get used if you set your own labels, otherwise the
770 // GetRow/ColLabelValue functions return wxGridTableBase defaults
771 //
772 wxArrayString m_rowLabels;
773 wxArrayString m_colLabels;
774
775 DECLARE_DYNAMIC_CLASS( wxGridStringTable )
776 };
777
778
779
780 // ============================================================================
781 // Grid view classes
782 // ============================================================================
783
784 // ----------------------------------------------------------------------------
785 // wxGridCellCoords: location of a cell in the grid
786 // ----------------------------------------------------------------------------
787
788 class WXDLLEXPORT wxGridCellCoords
789 {
790 public:
791 wxGridCellCoords() { m_row = m_col = -1; }
792 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
793
794 // default copy ctor is ok
795
796 long GetRow() const { return m_row; }
797 void SetRow( long n ) { m_row = n; }
798 long GetCol() const { return m_col; }
799 void SetCol( long n ) { m_col = n; }
800 void Set( long row, long col ) { m_row = row; m_col = col; }
801
802 wxGridCellCoords& operator=( const wxGridCellCoords& other )
803 {
804 if ( &other != this )
805 {
806 m_row=other.m_row;
807 m_col=other.m_col;
808 }
809 return *this;
810 }
811
812 bool operator==( const wxGridCellCoords& other ) const
813 {
814 return (m_row == other.m_row && m_col == other.m_col);
815 }
816
817 bool operator!=( const wxGridCellCoords& other ) const
818 {
819 return (m_row != other.m_row || m_col != other.m_col);
820 }
821
822 bool operator!() const
823 {
824 return (m_row == -1 && m_col == -1 );
825 }
826
827 private:
828 long m_row;
829 long m_col;
830 };
831
832
833 // For comparisons...
834 //
835 extern wxGridCellCoords wxGridNoCellCoords;
836 extern wxRect wxGridNoCellRect;
837
838 // An array of cell coords...
839 //
840 WX_DECLARE_EXPORTED_OBJARRAY(wxGridCellCoords, wxGridCellCoordsArray);
841
842 // ----------------------------------------------------------------------------
843 // wxGrid
844 // ----------------------------------------------------------------------------
845
846 class WXDLLEXPORT wxGrid : public wxScrolledWindow
847 {
848 public:
849 wxGrid()
850 {
851 Create();
852 }
853
854 wxGrid( wxWindow *parent,
855 wxWindowID id,
856 const wxPoint& pos = wxDefaultPosition,
857 const wxSize& size = wxDefaultSize,
858 long style = 0,
859 const wxString& name = wxPanelNameStr );
860
861 ~wxGrid();
862
863 bool CreateGrid( int numRows, int numCols );
864
865
866 // ------ grid dimensions
867 //
868 int GetNumberRows() { return m_numRows; }
869 int GetNumberCols() { return m_numCols; }
870
871
872 // ------ display update functions
873 //
874 void CalcRowLabelsExposed( wxRegion& reg );
875
876 void CalcColLabelsExposed( wxRegion& reg );
877 void CalcCellsExposed( wxRegion& reg );
878
879
880 // ------ event handlers
881 //
882 void ProcessRowLabelMouseEvent( wxMouseEvent& event );
883 void ProcessColLabelMouseEvent( wxMouseEvent& event );
884 void ProcessCornerLabelMouseEvent( wxMouseEvent& event );
885 void ProcessGridCellMouseEvent( wxMouseEvent& event );
886 bool ProcessTableMessage( wxGridTableMessage& );
887
888 void DoEndDragResizeRow();
889 void DoEndDragResizeCol();
890
891 wxGridTableBase * GetTable() const { return m_table; }
892 bool SetTable( wxGridTableBase *table, bool takeOwnership=FALSE );
893
894 void ClearGrid();
895 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
896 bool AppendRows( int numRows = 1, bool updateLabels=TRUE );
897 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
898 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
899 bool AppendCols( int numCols = 1, bool updateLabels=TRUE );
900 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
901
902 void DrawGridCellArea( wxDC& dc );
903 void DrawGridSpace( wxDC& dc );
904 void DrawCellBorder( wxDC& dc, const wxGridCellCoords& );
905 void DrawAllGridLines( wxDC& dc, const wxRegion & reg );
906 void DrawCell( wxDC& dc, const wxGridCellCoords& );
907 void DrawHighlight(wxDC& dc);
908
909 // this function is called when the current cell highlight must be redrawn
910 // and may be overridden by the user
911 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
912
913 void DrawRowLabels( wxDC& dc );
914 void DrawRowLabel( wxDC& dc, int row );
915
916 void DrawColLabels( wxDC& dc );
917 void DrawColLabel( wxDC& dc, int col );
918
919
920 // ------ Cell text drawing functions
921 //
922 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
923 int horizontalAlignment = wxLEFT,
924 int verticalAlignment = wxTOP );
925
926 // Split a string containing newline chararcters into an array of
927 // strings and return the number of lines
928 //
929 void StringToLines( const wxString& value, wxArrayString& lines );
930
931 void GetTextBoxSize( wxDC& dc,
932 wxArrayString& lines,
933 long *width, long *height );
934
935
936 // ------
937 // Code that does a lot of grid modification can be enclosed
938 // between BeginBatch() and EndBatch() calls to avoid screen
939 // flicker
940 //
941 void BeginBatch() { m_batchCount++; }
942 void EndBatch() { if ( m_batchCount > 0 ) m_batchCount--; }
943 int GetBatchCount() { return m_batchCount; }
944
945
946 // ------ edit control functions
947 //
948 bool IsEditable() { return m_editable; }
949 void EnableEditing( bool edit );
950
951 void EnableCellEditControl( bool enable = TRUE );
952 void DisableCellEditControl() { EnableCellEditControl(FALSE); }
953 bool CanEnableCellControl() const;
954 bool IsCellEditControlEnabled() const;
955
956 bool IsCurrentCellReadOnly() const;
957
958 void ShowCellEditControl();
959 void HideCellEditControl();
960 void SaveEditControlValue();
961
962
963 // ------ grid location functions
964 // Note that all of these functions work with the logical coordinates of
965 // grid cells and labels so you will need to convert from device
966 // coordinates for mouse events etc.
967 //
968 void XYToCell( int x, int y, wxGridCellCoords& );
969 int YToRow( int y );
970 int XToCol( int x );
971
972 int YToEdgeOfRow( int y );
973 int XToEdgeOfCol( int x );
974
975 wxRect CellToRect( int row, int col );
976 wxRect CellToRect( const wxGridCellCoords& coords )
977 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
978
979 int GetGridCursorRow() { return m_currentCellCoords.GetRow(); }
980 int GetGridCursorCol() { return m_currentCellCoords.GetCol(); }
981
982 // check to see if a cell is either wholly visible (the default arg) or
983 // at least partially visible in the grid window
984 //
985 bool IsVisible( int row, int col, bool wholeCellVisible = TRUE );
986 bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = TRUE )
987 { return IsVisible( coords.GetRow(), coords.GetCol(), wholeCellVisible ); }
988 void MakeCellVisible( int row, int col );
989 void MakeCellVisible( const wxGridCellCoords& coords )
990 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
991
992
993 // ------ grid cursor movement functions
994 //
995 void SetGridCursor( int row, int col )
996 { SetCurrentCell( wxGridCellCoords(row, col) ); }
997
998 bool MoveCursorUp();
999 bool MoveCursorDown();
1000 bool MoveCursorLeft();
1001 bool MoveCursorRight();
1002 bool MovePageDown();
1003 bool MovePageUp();
1004 bool MoveCursorUpBlock();
1005 bool MoveCursorDownBlock();
1006 bool MoveCursorLeftBlock();
1007 bool MoveCursorRightBlock();
1008
1009
1010 // ------ label and gridline formatting
1011 //
1012 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
1013 int GetRowLabelSize() { return m_rowLabelWidth; }
1014 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
1015 int GetColLabelSize() { return m_colLabelHeight; }
1016 wxColour GetLabelBackgroundColour() { return m_labelBackgroundColour; }
1017 wxColour GetLabelTextColour() { return m_labelTextColour; }
1018 wxFont GetLabelFont() { return m_labelFont; }
1019 void GetRowLabelAlignment( int *horiz, int *vert );
1020 void GetColLabelAlignment( int *horiz, int *vert );
1021 wxString GetRowLabelValue( int row );
1022 wxString GetColLabelValue( int col );
1023 wxColour GetGridLineColour() { return m_gridLineColour; }
1024
1025 void SetRowLabelSize( int width );
1026 void SetColLabelSize( int height );
1027 void SetLabelBackgroundColour( const wxColour& );
1028 void SetLabelTextColour( const wxColour& );
1029 void SetLabelFont( const wxFont& );
1030 void SetRowLabelAlignment( int horiz, int vert );
1031 void SetColLabelAlignment( int horiz, int vert );
1032 void SetRowLabelValue( int row, const wxString& );
1033 void SetColLabelValue( int col, const wxString& );
1034 void SetGridLineColour( const wxColour& );
1035
1036 void EnableDragRowSize( bool enable = TRUE );
1037 void DisableDragRowSize() { EnableDragRowSize( FALSE ); }
1038 bool CanDragRowSize() { return m_canDragRowSize; }
1039 void EnableDragColSize( bool enable = TRUE );
1040 void DisableDragColSize() { EnableDragColSize( FALSE ); }
1041 bool CanDragColSize() { return m_canDragColSize; }
1042 void EnableDragGridSize(bool enable = TRUE);
1043 void DisableDragGridSize() { EnableDragGridSize(FALSE); }
1044 bool CanDragGridSize() { return m_canDragGridSize; }
1045
1046
1047 // this sets the specified attribute for all cells in this row/col
1048 void SetRowAttr(int row, wxGridCellAttr *attr);
1049 void SetColAttr(int col, wxGridCellAttr *attr);
1050
1051 void EnableGridLines( bool enable = TRUE );
1052 bool GridLinesEnabled() { return m_gridLinesEnabled; }
1053
1054 // ------ row and col formatting
1055 //
1056 int GetDefaultRowSize();
1057 int GetRowSize( int row );
1058 int GetDefaultColSize();
1059 int GetColSize( int col );
1060 wxColour GetDefaultCellBackgroundColour();
1061 wxColour GetCellBackgroundColour( int row, int col );
1062 wxColour GetDefaultCellTextColour();
1063 wxColour GetCellTextColour( int row, int col );
1064 wxFont GetDefaultCellFont();
1065 wxFont GetCellFont( int row, int col );
1066 void GetDefaultCellAlignment( int *horiz, int *vert );
1067 void GetCellAlignment( int row, int col, int *horiz, int *vert );
1068
1069 void SetDefaultRowSize( int height, bool resizeExistingRows = FALSE );
1070 void SetRowSize( int row, int height );
1071 void SetDefaultColSize( int width, bool resizeExistingCols = FALSE );
1072
1073 void SetColSize( int col, int width );
1074
1075 // automatically size the column to fit to its contents, if setAsMin is
1076 // TRUE, this optimal width will also be set as minimal width for this
1077 // column
1078 void AutoSizeColumn( int col, bool setAsMin = TRUE );
1079
1080 // auto size all columns (very ineffective for big grids!)
1081 void AutoSizeColumns( bool setAsMin = TRUE );
1082
1083 void AutoSizeRows( bool setAsMin = TRUE );
1084
1085 // auto size the grid, that is make the columns/rows of the "right" size
1086 // and also set the grid size to just fit its contents
1087 void AutoSize();
1088
1089 // column won't be resized to be lesser width - this must be called during
1090 // the grid creation because it won't resize the column if it's already
1091 // narrower than the minimal width
1092 void SetColMinimalWidth( int col, int width );
1093
1094 void SetDefaultCellBackgroundColour( const wxColour& );
1095 void SetCellBackgroundColour( int row, int col, const wxColour& );
1096 void SetDefaultCellTextColour( const wxColour& );
1097
1098 void SetCellTextColour( int row, int col, const wxColour& );
1099 void SetDefaultCellFont( const wxFont& );
1100 void SetCellFont( int row, int col, const wxFont& );
1101 void SetDefaultCellAlignment( int horiz, int vert );
1102 void SetCellAlignment( int row, int col, int horiz, int vert );
1103
1104 // takes ownership of the pointer
1105 void SetDefaultRenderer(wxGridCellRenderer *renderer);
1106 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
1107 wxGridCellRenderer *GetDefaultRenderer() const;
1108 wxGridCellRenderer* GetCellRenderer(int row, int col);
1109
1110 // takes ownership of the pointer
1111 void SetDefaultEditor(wxGridCellEditor *editor);
1112 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
1113 wxGridCellEditor *GetDefaultEditor() const;
1114 wxGridCellEditor* GetCellEditor(int row, int col);
1115
1116
1117
1118 // ------ cell value accessors
1119 //
1120 wxString GetCellValue( int row, int col )
1121 {
1122 if ( m_table )
1123 {
1124 return m_table->GetValue( row, col );
1125 }
1126 else
1127 {
1128 return wxEmptyString;
1129 }
1130 }
1131
1132 wxString GetCellValue( const wxGridCellCoords& coords )
1133 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
1134
1135 void SetCellValue( int row, int col, const wxString& s );
1136 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1137 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
1138
1139 // returns TRUE if the cell can't be edited
1140 bool IsReadOnly(int row, int col) const;
1141
1142 // make the cell editable/readonly
1143 void SetReadOnly(int row, int col, bool isReadOnly = TRUE);
1144
1145 // ------ selections of blocks of cells
1146 //
1147 void SelectRow( int row, bool addToSelected = FALSE );
1148 void SelectCol( int col, bool addToSelected = FALSE );
1149
1150 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol );
1151
1152 void SelectBlock( const wxGridCellCoords& topLeft,
1153 const wxGridCellCoords& bottomRight )
1154 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
1155 bottomRight.GetRow(), bottomRight.GetCol() ); }
1156
1157 void SelectAll();
1158
1159 bool IsSelection()
1160 { return ( m_selectedTopLeft != wxGridNoCellCoords &&
1161 m_selectedBottomRight != wxGridNoCellCoords );
1162 }
1163
1164 void ClearSelection();
1165
1166 bool IsInSelection( int row, int col )
1167 { return ( IsSelection() &&
1168 row >= m_selectedTopLeft.GetRow() &&
1169 col >= m_selectedTopLeft.GetCol() &&
1170 row <= m_selectedBottomRight.GetRow() &&
1171 col <= m_selectedBottomRight.GetCol() );
1172 }
1173
1174 bool IsInSelection( const wxGridCellCoords& coords )
1175 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
1176
1177 void GetSelection( int* topRow, int* leftCol, int* bottomRow, int* rightCol )
1178 {
1179 // these will all be -1 if there is no selected block
1180 //
1181 *topRow = m_selectedTopLeft.GetRow();
1182 *leftCol = m_selectedTopLeft.GetCol();
1183 *bottomRow = m_selectedBottomRight.GetRow();
1184 *rightCol = m_selectedBottomRight.GetCol();
1185 }
1186
1187
1188 // This function returns the rectangle that encloses the block of cells
1189 // limited by TopLeft and BottomRight cell in device coords and clipped
1190 // to the client size of the grid window.
1191 //
1192 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
1193 const wxGridCellCoords & bottomRight );
1194
1195 // This function returns the rectangle that encloses the selected cells
1196 // in device coords and clipped to the client size of the grid window.
1197 //
1198 wxRect SelectionToDeviceRect()
1199 {
1200 return BlockToDeviceRect( m_selectedTopLeft,
1201 m_selectedBottomRight );
1202 }
1203
1204 // Access or update the selection fore/back colours
1205 wxColour GetSelectionBackground() const
1206 { return m_selectionBackground; }
1207 wxColour GetSelectionForeground() const
1208 { return m_selectionForeground; }
1209
1210 void SetSelectionBackground(const wxColour& c) { m_selectionBackground = c; }
1211 void SetSelectionForeground(const wxColour& c) { m_selectionForeground = c; }
1212
1213
1214 // Methods for a registry for mapping data types to Renderers/Editors
1215 void RegisterDataType(const wxString& typeName,
1216 wxGridCellRenderer* renderer,
1217 wxGridCellEditor* editor);
1218 wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
1219 wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1220 { return GetDefaultEditorForCell(c.GetRow(), c.GetCol()); }
1221 wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1222 wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1223 wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
1224
1225
1226
1227 // ------ For compatibility with previous wxGrid only...
1228 //
1229 // ************************************************
1230 // ** Don't use these in new code because they **
1231 // ** are liable to disappear in a future **
1232 // ** revision **
1233 // ************************************************
1234 //
1235
1236 wxGrid( wxWindow *parent,
1237 int x, int y, int w = -1, int h = -1,
1238 long style = 0,
1239 const wxString& name = wxPanelNameStr )
1240 : wxScrolledWindow( parent, -1, wxPoint(x,y), wxSize(w,h), style, name )
1241 {
1242 Create();
1243 }
1244
1245 void SetCellValue( const wxString& val, int row, int col )
1246 { SetCellValue( row, col, val ); }
1247
1248 void UpdateDimensions()
1249 { CalcDimensions(); }
1250
1251 int GetRows() { return GetNumberRows(); }
1252 int GetCols() { return GetNumberCols(); }
1253 int GetCursorRow() { return GetGridCursorRow(); }
1254 int GetCursorColumn() { return GetGridCursorCol(); }
1255
1256 int GetScrollPosX() { return 0; }
1257 int GetScrollPosY() { return 0; }
1258
1259 void SetScrollX( int x ) { }
1260 void SetScrollY( int y ) { }
1261
1262 void SetColumnWidth( int col, int width )
1263 { SetColSize( col, width ); }
1264
1265 int GetColumnWidth( int col )
1266 { return GetColSize( col ); }
1267
1268 void SetRowHeight( int row, int height )
1269 { SetRowSize( row, height ); }
1270
1271 // GetRowHeight() is below
1272
1273 int GetViewHeight() // returned num whole rows visible
1274 { return 0; }
1275
1276 int GetViewWidth() // returned num whole cols visible
1277 { return 0; }
1278
1279 void SetLabelSize( int orientation, int sz )
1280 {
1281 if ( orientation == wxHORIZONTAL )
1282 SetColLabelSize( sz );
1283 else
1284 SetRowLabelSize( sz );
1285 }
1286
1287 int GetLabelSize( int orientation )
1288 {
1289 if ( orientation == wxHORIZONTAL )
1290 return GetColLabelSize();
1291 else
1292 return GetRowLabelSize();
1293 }
1294
1295 void SetLabelAlignment( int orientation, int align )
1296 {
1297 if ( orientation == wxHORIZONTAL )
1298 SetColLabelAlignment( align, -1 );
1299 else
1300 SetRowLabelAlignment( align, -1 );
1301 }
1302
1303 int GetLabelAlignment( int orientation, int WXUNUSED(align) )
1304 {
1305 int h, v;
1306 if ( orientation == wxHORIZONTAL )
1307 {
1308 GetColLabelAlignment( &h, &v );
1309 return h;
1310 }
1311 else
1312 {
1313 GetRowLabelAlignment( &h, &v );
1314 return h;
1315 }
1316 }
1317
1318 void SetLabelValue( int orientation, const wxString& val, int pos )
1319 {
1320 if ( orientation == wxHORIZONTAL )
1321 SetColLabelValue( pos, val );
1322 else
1323 SetRowLabelValue( pos, val );
1324 }
1325
1326 wxString GetLabelValue( int orientation, int pos)
1327 {
1328 if ( orientation == wxHORIZONTAL )
1329 return GetColLabelValue( pos );
1330 else
1331 return GetRowLabelValue( pos );
1332 }
1333
1334 wxFont GetCellTextFont() const
1335 { return m_defaultCellAttr->GetFont(); }
1336
1337 wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
1338 { return m_defaultCellAttr->GetFont(); }
1339
1340 void SetCellTextFont(const wxFont& fnt)
1341 { SetDefaultCellFont( fnt ); }
1342
1343 void SetCellTextFont(const wxFont& fnt, int row, int col)
1344 { SetCellFont( row, col, fnt ); }
1345
1346 void SetCellTextColour(const wxColour& val, int row, int col)
1347 { SetCellTextColour( row, col, val ); }
1348
1349 void SetCellTextColour(const wxColour& col)
1350 { SetDefaultCellTextColour( col ); }
1351
1352 void SetCellBackgroundColour(const wxColour& col)
1353 { SetDefaultCellBackgroundColour( col ); }
1354
1355 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
1356 { SetCellBackgroundColour( row, col, colour ); }
1357
1358 bool GetEditable() { return IsEditable(); }
1359 void SetEditable( bool edit = TRUE ) { EnableEditing( edit ); }
1360 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
1361
1362 void SetEditInPlace(bool edit = TRUE) { }
1363
1364 void SetCellAlignment( int align, int row, int col)
1365 { SetCellAlignment(row, col, align, wxCENTER); }
1366 void SetCellAlignment( int WXUNUSED(align) ) {}
1367 void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
1368 { }
1369 void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
1370 wxPen& GetDividerPen() const { return wxNullPen; }
1371 void OnActivate(bool WXUNUSED(active)) {}
1372
1373 // ******** End of compatibility functions **********
1374
1375
1376
1377 // ------ control IDs
1378 enum { wxGRID_CELLCTRL = 2000,
1379 wxGRID_TOPCTRL };
1380
1381 // ------ control types
1382 enum { wxGRID_TEXTCTRL = 2100,
1383 wxGRID_CHECKBOX,
1384 wxGRID_CHOICE,
1385 wxGRID_COMBOBOX };
1386
1387 protected:
1388 bool m_created;
1389 bool m_displayed;
1390
1391 wxGridWindow *m_gridWin;
1392 wxGridRowLabelWindow *m_rowLabelWin;
1393 wxGridColLabelWindow *m_colLabelWin;
1394 wxGridCornerLabelWindow *m_cornerLabelWin;
1395
1396 wxGridTableBase *m_table;
1397 bool m_ownTable;
1398
1399 int m_left;
1400 int m_top;
1401 int m_right;
1402 int m_bottom;
1403
1404 int m_numRows;
1405 int m_numCols;
1406
1407 wxGridCellCoords m_currentCellCoords;
1408
1409 wxGridCellCoords m_selectedTopLeft;
1410 wxGridCellCoords m_selectedBottomRight;
1411 wxColour m_selectionBackground;
1412 wxColour m_selectionForeground;
1413
1414 // NB: *never* access m_row/col arrays directly because they are created
1415 // on demand, *always* use accessor functions instead!
1416
1417 // init the m_rowHeights/Bottoms arrays with default values
1418 void InitRowHeights();
1419
1420 int m_defaultRowHeight;
1421 wxArrayInt m_rowHeights;
1422 wxArrayInt m_rowBottoms;
1423
1424 // init the m_colWidths/Rights arrays
1425 void InitColWidths();
1426
1427 int m_defaultColWidth;
1428 wxArrayInt m_colWidths;
1429 wxArrayInt m_colRights;
1430
1431 // get the col/row coords
1432 int GetColWidth(int col) const;
1433 int GetColLeft(int col) const;
1434 int GetColRight(int col) const;
1435
1436 // this function must be public for compatibility...
1437 public:
1438 int GetRowHeight(int row) const;
1439 protected:
1440
1441 int GetRowTop(int row) const;
1442 int GetRowBottom(int row) const;
1443
1444 int m_rowLabelWidth;
1445 int m_colLabelHeight;
1446
1447 wxColour m_labelBackgroundColour;
1448 wxColour m_labelTextColour;
1449 wxFont m_labelFont;
1450
1451 int m_rowLabelHorizAlign;
1452 int m_rowLabelVertAlign;
1453 int m_colLabelHorizAlign;
1454 int m_colLabelVertAlign;
1455
1456 bool m_defaultRowLabelValues;
1457 bool m_defaultColLabelValues;
1458
1459 wxColour m_gridLineColour;
1460 bool m_gridLinesEnabled;
1461
1462 // if a column has a minimal width, it will be the value for it in this
1463 // hash table
1464 wxHashTable m_colMinWidths;
1465
1466 // get the minimal width of the given column
1467 int GetColMinimalWidth(int col) const;
1468
1469 // do we have some place to store attributes in?
1470 bool CanHaveAttributes();
1471
1472 // returns the attribute we may modify in place: a new one if this cell
1473 // doesn't have any yet or the existing one if it does
1474 //
1475 // DecRef() must be called on the returned pointer, as usual
1476 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1477
1478 // cell attribute cache (currently we only cache 1, may be will do
1479 // more/better later)
1480 struct CachedAttr
1481 {
1482 int row, col;
1483 wxGridCellAttr *attr;
1484 } m_attrCache;
1485
1486 // invalidates the attribute cache
1487 void ClearAttrCache();
1488
1489 // adds an attribute to cache
1490 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1491
1492 // looks for an attr in cache, returns TRUE if found
1493 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1494
1495 // looks for the attr in cache, if not found asks the table and caches the
1496 // result
1497 wxGridCellAttr *GetCellAttr(int row, int col) const;
1498 wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords )
1499 { return GetCellAttr( coords.GetRow(), coords.GetCol() ); }
1500
1501 // the default cell attr object for cells that don't have their own
1502 wxGridCellAttr* m_defaultCellAttr;
1503
1504
1505 wxGridCellCoordsArray m_cellsExposed;
1506 wxArrayInt m_rowsExposed;
1507 wxArrayInt m_colsExposed;
1508 wxArrayInt m_rowLabelsExposed;
1509 wxArrayInt m_colLabelsExposed;
1510
1511 bool m_inOnKeyDown;
1512 int m_batchCount;
1513
1514
1515 wxGridTypeRegistry* m_typeRegistry;
1516
1517 enum CursorMode
1518 {
1519 WXGRID_CURSOR_SELECT_CELL,
1520 WXGRID_CURSOR_RESIZE_ROW,
1521 WXGRID_CURSOR_RESIZE_COL,
1522 WXGRID_CURSOR_SELECT_ROW,
1523 WXGRID_CURSOR_SELECT_COL
1524 };
1525
1526 // this method not only sets m_cursorMode but also sets the correct cursor
1527 // for the given mode and, if captureMouse is not FALSE releases the mouse
1528 // if it was captured and captures it if it must be captured
1529 //
1530 // for this to work, you should always use it and not set m_cursorMode
1531 // directly!
1532 void ChangeCursorMode(CursorMode mode,
1533 wxWindow *win = (wxWindow *)NULL,
1534 bool captureMouse = TRUE);
1535
1536 wxWindow *m_winCapture; // the window which captured the mouse
1537 CursorMode m_cursorMode;
1538
1539 bool m_canDragRowSize;
1540 bool m_canDragColSize;
1541 bool m_canDragGridSize;
1542 int m_dragLastPos;
1543 int m_dragRowOrCol;
1544 bool m_isDragging;
1545 wxPoint m_startDragPos;
1546
1547 bool m_waitForSlowClick;
1548
1549 wxGridCellCoords m_selectionStart;
1550
1551 wxCursor m_rowResizeCursor;
1552 wxCursor m_colResizeCursor;
1553
1554 bool m_editable; // applies to whole grid
1555 bool m_cellEditCtrlEnabled; // is in-place edit currently shown?
1556
1557
1558 void Create();
1559 void Init();
1560 void CalcDimensions();
1561 void CalcWindowSizes();
1562 bool Redimension( wxGridTableMessage& );
1563
1564
1565 bool SendEvent( const wxEventType, int row, int col, wxMouseEvent& );
1566 bool SendEvent( const wxEventType, int row, int col );
1567 bool SendEvent( const wxEventType type)
1568 {
1569 return SendEvent(type,
1570 m_currentCellCoords.GetRow(),
1571 m_currentCellCoords.GetCol());
1572 }
1573
1574 void OnPaint( wxPaintEvent& );
1575 void OnSize( wxSizeEvent& );
1576 void OnKeyDown( wxKeyEvent& );
1577 void OnEraseBackground( wxEraseEvent& );
1578
1579
1580 void SetCurrentCell( const wxGridCellCoords& coords );
1581 void SetCurrentCell( int row, int col )
1582 { SetCurrentCell( wxGridCellCoords(row, col) ); }
1583
1584
1585 // ------ functions to get/send data (see also public functions)
1586 //
1587 bool GetModelValues();
1588 bool SetModelValues();
1589
1590
1591 DECLARE_DYNAMIC_CLASS( wxGrid )
1592 DECLARE_EVENT_TABLE()
1593 };
1594
1595 // ----------------------------------------------------------------------------
1596 // Grid event class and event types
1597 // ----------------------------------------------------------------------------
1598
1599 class WXDLLEXPORT wxGridEvent : public wxNotifyEvent
1600 {
1601 public:
1602 wxGridEvent()
1603 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
1604 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1605 {
1606 }
1607
1608 wxGridEvent(int id, wxEventType type, wxObject* obj,
1609 int row=-1, int col=-1, int x=-1, int y=-1,
1610 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
1611
1612 virtual int GetRow() { return m_row; }
1613 virtual int GetCol() { return m_col; }
1614 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1615 bool ControlDown() { return m_control; }
1616 bool MetaDown() { return m_meta; }
1617 bool ShiftDown() { return m_shift; }
1618 bool AltDown() { return m_alt; }
1619
1620 protected:
1621 int m_row;
1622 int m_col;
1623 int m_x;
1624 int m_y;
1625 bool m_control;
1626 bool m_meta;
1627 bool m_shift;
1628 bool m_alt;
1629
1630 DECLARE_DYNAMIC_CLASS(wxGridEvent)
1631 };
1632
1633 class WXDLLEXPORT wxGridSizeEvent : public wxNotifyEvent
1634 {
1635 public:
1636 wxGridSizeEvent()
1637 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
1638 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1639 {
1640 }
1641
1642 wxGridSizeEvent(int id, wxEventType type, wxObject* obj,
1643 int rowOrCol=-1, int x=-1, int y=-1,
1644 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
1645
1646 int GetRowOrCol() { return m_rowOrCol; }
1647 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1648 bool ControlDown() { return m_control; }
1649 bool MetaDown() { return m_meta; }
1650 bool ShiftDown() { return m_shift; }
1651 bool AltDown() { return m_alt; }
1652
1653 protected:
1654 int m_rowOrCol;
1655 int m_x;
1656 int m_y;
1657 bool m_control;
1658 bool m_meta;
1659 bool m_shift;
1660 bool m_alt;
1661
1662 DECLARE_DYNAMIC_CLASS(wxGridSizeEvent)
1663 };
1664
1665
1666 class WXDLLEXPORT wxGridRangeSelectEvent : public wxNotifyEvent
1667 {
1668 public:
1669 wxGridRangeSelectEvent()
1670 : wxNotifyEvent()
1671 {
1672 m_topLeft = wxGridNoCellCoords;
1673 m_bottomRight = wxGridNoCellCoords;
1674 m_control = FALSE;
1675 m_meta = FALSE;
1676 m_shift = FALSE;
1677 m_alt = FALSE;
1678 }
1679
1680 wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj,
1681 const wxGridCellCoords& topLeft,
1682 const wxGridCellCoords& bottomRight,
1683 bool control=FALSE, bool shift=FALSE,
1684 bool alt=FALSE, bool meta=FALSE);
1685
1686 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
1687 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
1688 int GetTopRow() { return m_topLeft.GetRow(); }
1689 int GetBottomRow() { return m_bottomRight.GetRow(); }
1690 int GetLeftCol() { return m_topLeft.GetCol(); }
1691 int GetRightCol() { return m_bottomRight.GetCol(); }
1692 bool ControlDown() { return m_control; }
1693 bool MetaDown() { return m_meta; }
1694 bool ShiftDown() { return m_shift; }
1695 bool AltDown() { return m_alt; }
1696
1697 protected:
1698 wxGridCellCoords m_topLeft;
1699 wxGridCellCoords m_bottomRight;
1700 bool m_control;
1701 bool m_meta;
1702 bool m_shift;
1703 bool m_alt;
1704
1705 DECLARE_DYNAMIC_CLASS(wxGridRangeSelectEvent)
1706 };
1707
1708 // TODO move to wx/event.h
1709 const wxEventType wxEVT_GRID_CELL_LEFT_CLICK = wxEVT_FIRST + 1580;
1710 const wxEventType wxEVT_GRID_CELL_RIGHT_CLICK = wxEVT_FIRST + 1581;
1711 const wxEventType wxEVT_GRID_CELL_LEFT_DCLICK = wxEVT_FIRST + 1582;
1712 const wxEventType wxEVT_GRID_CELL_RIGHT_DCLICK = wxEVT_FIRST + 1583;
1713 const wxEventType wxEVT_GRID_LABEL_LEFT_CLICK = wxEVT_FIRST + 1584;
1714 const wxEventType wxEVT_GRID_LABEL_RIGHT_CLICK = wxEVT_FIRST + 1585;
1715 const wxEventType wxEVT_GRID_LABEL_LEFT_DCLICK = wxEVT_FIRST + 1586;
1716 const wxEventType wxEVT_GRID_LABEL_RIGHT_DCLICK = wxEVT_FIRST + 1587;
1717 const wxEventType wxEVT_GRID_ROW_SIZE = wxEVT_FIRST + 1588;
1718 const wxEventType wxEVT_GRID_COL_SIZE = wxEVT_FIRST + 1589;
1719 const wxEventType wxEVT_GRID_RANGE_SELECT = wxEVT_FIRST + 1590;
1720 const wxEventType wxEVT_GRID_CELL_CHANGE = wxEVT_FIRST + 1591;
1721 const wxEventType wxEVT_GRID_SELECT_CELL = wxEVT_FIRST + 1592;
1722 const wxEventType wxEVT_GRID_EDITOR_SHOWN = wxEVT_FIRST + 1593;
1723 const wxEventType wxEVT_GRID_EDITOR_HIDDEN = wxEVT_FIRST + 1594;
1724
1725
1726 typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
1727 typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
1728 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
1729
1730 #define EVT_GRID_CELL_LEFT_CLICK(fn) { wxEVT_GRID_CELL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1731 #define EVT_GRID_CELL_RIGHT_CLICK(fn) { wxEVT_GRID_CELL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1732 #define EVT_GRID_CELL_LEFT_DCLICK(fn) { wxEVT_GRID_CELL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1733 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) { wxEVT_GRID_CELL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1734 #define EVT_GRID_LABEL_LEFT_CLICK(fn) { wxEVT_GRID_LABEL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1735 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) { wxEVT_GRID_LABEL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1736 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) { wxEVT_GRID_LABEL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1737 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) { wxEVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1738 #define EVT_GRID_ROW_SIZE(fn) { wxEVT_GRID_ROW_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1739 #define EVT_GRID_COL_SIZE(fn) { wxEVT_GRID_COL_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1740 #define EVT_GRID_RANGE_SELECT(fn) { wxEVT_GRID_RANGE_SELECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridRangeSelectEventFunction) &fn, NULL },
1741 #define EVT_GRID_CELL_CHANGE(fn) { wxEVT_GRID_CELL_CHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1742 #define EVT_GRID_SELECT_CELL(fn) { wxEVT_GRID_SELECT_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1743 #define EVT_GRID_EDITOR_SHOWN(fn) { wxEVT_GRID_EDITOR_SHOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1744 #define EVT_GRID_EDITOR_HIDDEN(fn) { wxEVT_GRID_EDITOR_HIDDEN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1745
1746
1747 #if 0 // TODO: implement these ? others ?
1748
1749 const wxEventType wxEVT_GRID_CREATE_CELL = wxEVT_FIRST + 1576;
1750 const wxEventType wxEVT_GRID_CHANGE_LABELS = wxEVT_FIRST + 1577;
1751 const wxEventType wxEVT_GRID_CHANGE_SEL_LABEL = wxEVT_FIRST + 1578;
1752
1753 #define EVT_GRID_CREATE_CELL(fn) { wxEVT_GRID_CREATE_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1754 #define EVT_GRID_CHANGE_LABELS(fn) { wxEVT_GRID_CHANGE_LABELS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1755 #define EVT_GRID_CHANGE_SEL_LABEL(fn) { wxEVT_GRID_CHANGE_SEL_LABEL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1756
1757 #endif
1758
1759 #endif // #ifndef __WXGRID_H__
1760
1761 #endif // ifndef wxUSE_NEW_GRID
1762