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