]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/grid.h
no changes, just remove #if'd out code
[wxWidgets.git] / include / wx / generic / grid.h
CommitLineData
f85afd4e 1/////////////////////////////////////////////////////////////////////////////
43947979 2// Name: wx/generic/grid.h
f85afd4e
MB
3// Purpose: wxGrid and related classes
4// Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
d4175745 5// Modified by: Santiago Palacios
f85afd4e
MB
6// Created: 1/08/1999
7// RCS-ID: $Id$
8// Copyright: (c) Michael Bedward
65571936 9// Licence: wxWindows licence
f85afd4e
MB
10/////////////////////////////////////////////////////////////////////////////
11
df9fac6d
PC
12#ifndef _WX_GENERIC_GRID_H_
13#define _WX_GENERIC_GRID_H_
14
15#include "wx/defs.h"
16
17#if wxUSE_GRID
f85afd4e 18
82edfbe7
VZ
19#include "wx/hashmap.h"
20
2d66e025 21#include "wx/scrolwin.h"
f85afd4e 22
816be743
VZ
23// ----------------------------------------------------------------------------
24// constants
25// ----------------------------------------------------------------------------
26
23318a53 27extern WXDLLIMPEXP_DATA_ADV(const char) wxGridNameStr[];
61961a3c 28
f85afd4e
MB
29// Default parameters for wxGrid
30//
31#define WXGRID_DEFAULT_NUMBER_ROWS 10
32#define WXGRID_DEFAULT_NUMBER_COLS 10
e6002250 33#if defined(__WXMSW__) || defined(__WXGTK20__)
f85afd4e
MB
34#define WXGRID_DEFAULT_ROW_HEIGHT 25
35#else
36#define WXGRID_DEFAULT_ROW_HEIGHT 30
37#endif // __WXMSW__
38#define WXGRID_DEFAULT_COL_WIDTH 80
39#define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
40#define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
f1567cdd 41#define WXGRID_LABEL_EDGE_ZONE 2
f85afd4e
MB
42#define WXGRID_MIN_ROW_HEIGHT 15
43#define WXGRID_MIN_COL_WIDTH 15
44#define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
f85afd4e 45
816be743
VZ
46// type names for grid table values
47#define wxGRID_VALUE_STRING _T("string")
48#define wxGRID_VALUE_BOOL _T("bool")
49#define wxGRID_VALUE_NUMBER _T("long")
50#define wxGRID_VALUE_FLOAT _T("double")
c4608a8a 51#define wxGRID_VALUE_CHOICE _T("choice")
816be743
VZ
52
53#define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
54#define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
55
733f486a
VZ
56// magic constant which tells (to some functions) to automatically calculate
57// the appropriate size
58#define wxGRID_AUTOSIZE (-1)
59
60// many wxGrid methods work either with columns or rows, this enum is used for
61// the parameter indicating which one should it be
62enum wxGridDirection
63{
64 wxGRID_COLUMN,
05cc594a 65 wxGRID_ROW
733f486a
VZ
66};
67
b99be8fb
VZ
68// ----------------------------------------------------------------------------
69// forward declarations
70// ----------------------------------------------------------------------------
71
b5dbe15d
VS
72class WXDLLIMPEXP_FWD_ADV wxGrid;
73class WXDLLIMPEXP_FWD_ADV wxGridCellAttr;
74class WXDLLIMPEXP_FWD_ADV wxGridCellAttrProviderData;
75class WXDLLIMPEXP_FWD_ADV wxGridColLabelWindow;
76class WXDLLIMPEXP_FWD_ADV wxGridCornerLabelWindow;
77class WXDLLIMPEXP_FWD_ADV wxGridRowLabelWindow;
78class WXDLLIMPEXP_FWD_ADV wxGridWindow;
79class WXDLLIMPEXP_FWD_ADV wxGridTypeRegistry;
80class WXDLLIMPEXP_FWD_ADV wxGridSelection;
81
ad805b9e 82class WXDLLIMPEXP_FWD_CORE wxHeaderCtrl;
b5dbe15d
VS
83class WXDLLIMPEXP_FWD_CORE wxCheckBox;
84class WXDLLIMPEXP_FWD_CORE wxComboBox;
85class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
0e871ad0 86#if wxUSE_SPINCTRL
b5dbe15d 87class WXDLLIMPEXP_FWD_CORE wxSpinCtrl;
0e871ad0 88#endif
508011ce 89
82edfbe7
VZ
90class wxGridFixedIndicesSet;
91
bec70262
VZ
92class wxGridOperations;
93class wxGridRowOperations;
94class wxGridColumnOperations;
10a4531d 95class wxGridDirectionOperations;
bec70262 96
29efc6e4 97
39bcce60
VZ
98// ----------------------------------------------------------------------------
99// macros
100// ----------------------------------------------------------------------------
101
102#define wxSafeIncRef(p) if ( p ) (p)->IncRef()
103#define wxSafeDecRef(p) if ( p ) (p)->DecRef()
104
ab79958a 105// ----------------------------------------------------------------------------
c4608a8a
VZ
106// wxGridCellWorker: common base class for wxGridCellRenderer and
107// wxGridCellEditor
108//
109// NB: this is more an implementation convenience than a design issue, so this
110// class is not documented and is not public at all
ab79958a
VZ
111// ----------------------------------------------------------------------------
112
12f190b0 113class WXDLLIMPEXP_ADV wxGridCellWorker : public wxClientDataContainer
ab79958a
VZ
114{
115public:
c4608a8a 116 wxGridCellWorker() { m_nRef = 1; }
39bcce60
VZ
117
118 // this class is ref counted: it is created with ref count of 1, so
119 // calling DecRef() once will delete it. Calling IncRef() allows to lock
120 // it until the matching DecRef() is called
121 void IncRef() { m_nRef++; }
8d7eaf91 122 void DecRef() { if ( --m_nRef == 0 ) delete this; }
39bcce60 123
c4608a8a
VZ
124 // interpret renderer parameters: arbitrary string whose interpretatin is
125 // left to the derived classes
126 virtual void SetParameters(const wxString& params);
127
128protected:
129 // virtual dtor for any base class - private because only DecRef() can
130 // delete us
131 virtual ~wxGridCellWorker();
132
133private:
134 size_t m_nRef;
135
136 // suppress the stupid gcc warning about the class having private dtor and
137 // no friends
138 friend class wxGridCellWorkerDummyFriend;
139};
140
141// ----------------------------------------------------------------------------
142// wxGridCellRenderer: this class is responsible for actually drawing the cell
143// in the grid. You may pass it to the wxGridCellAttr (below) to change the
144// format of one given cell or to wxGrid::SetDefaultRenderer() to change the
145// view of all cells. This is an ABC, you will normally use one of the
146// predefined derived classes or derive your own class from it.
147// ----------------------------------------------------------------------------
148
12f190b0 149class WXDLLIMPEXP_ADV wxGridCellRenderer : public wxGridCellWorker
c4608a8a
VZ
150{
151public:
ab79958a
VZ
152 // draw the given cell on the provided DC inside the given rectangle
153 // using the style specified by the attribute and the default or selected
154 // state corresponding to the isSelected value.
155 //
156 // this pure virtual function has a default implementation which will
157 // prepare the DC using the given attribute: it will draw the rectangle
158 // with the bg colour from attr and set the text colour and font
159 virtual void Draw(wxGrid& grid,
2796cce3 160 wxGridCellAttr& attr,
ab79958a
VZ
161 wxDC& dc,
162 const wxRect& rect,
163 int row, int col,
164 bool isSelected) = 0;
816be743 165
65e4e78e
VZ
166 // get the preferred size of the cell for its contents
167 virtual wxSize GetBestSize(wxGrid& grid,
168 wxGridCellAttr& attr,
169 wxDC& dc,
170 int row, int col) = 0;
171
e72b4213
VZ
172 // create a new object which is the copy of this one
173 virtual wxGridCellRenderer *Clone() const = 0;
ab79958a
VZ
174};
175
2796cce3
RD
176// ----------------------------------------------------------------------------
177// wxGridCellEditor: This class is responsible for providing and manipulating
178// the in-place edit controls for the grid. Instances of wxGridCellEditor
179// (actually, instances of derived classes since it is an ABC) can be
180// associated with the cell attributes for individual cells, rows, columns, or
181// even for the entire grid.
182// ----------------------------------------------------------------------------
183
12f190b0 184class WXDLLIMPEXP_ADV wxGridCellEditor : public wxGridCellWorker
2796cce3
RD
185{
186public:
187 wxGridCellEditor();
39bcce60 188
2796cce3 189 bool IsCreated() { return m_control != NULL; }
f6bcfd97
BP
190 wxControl* GetControl() { return m_control; }
191 void SetControl(wxControl* control) { m_control = control; }
2796cce3 192
1bd71df9
JS
193 wxGridCellAttr* GetCellAttr() { return m_attr; }
194 void SetCellAttr(wxGridCellAttr* attr) { m_attr = attr; }
195
2796cce3
RD
196 // Creates the actual edit control
197 virtual void Create(wxWindow* parent,
198 wxWindowID id,
2796cce3
RD
199 wxEvtHandler* evtHandler) = 0;
200
201 // Size and position the edit control
202 virtual void SetSize(const wxRect& rect);
203
3da93aae
VZ
204 // Show or hide the edit control, use the specified attributes to set
205 // colours/fonts for it
8a3e536c 206 virtual void Show(bool show, wxGridCellAttr *attr = NULL);
2796cce3 207
189d0213
VZ
208 // Draws the part of the cell not occupied by the control: the base class
209 // version just fills it with background colour from the attribute
210 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
211
763163a8
VZ
212
213 // The methods called by wxGrid when a cell is edited: first BeginEdit() is
214 // called, then EndEdit() is and if it returns true and if the change is
215 // not vetoed by a user-defined event handler, finally ApplyEdit() is called
216
2796cce3
RD
217 // Fetch the value from the table and prepare the edit control
218 // to begin editing. Set the focus to the edit control.
3da93aae 219 virtual void BeginEdit(int row, int col, wxGrid* grid) = 0;
2796cce3 220
763163a8
VZ
221 // Returns false if nothing changed, otherwise returns true and return the
222 // new value in its string form in the newval output parameter.
223 //
224 // This should also store the new value in its real type internally so that
78e78812
VZ
225 // it could be used by ApplyEdit() but it must not modify the grid as the
226 // change could still be vetoed.
227 virtual bool EndEdit(int row, int col, const wxGrid *grid,
228 const wxString& oldval, wxString *newval) = 0;
763163a8
VZ
229
230 // Complete the editing of the current cell by storing the value saved by
231 // the previous call to EndEdit() in the grid
232 virtual void ApplyEdit(int row, int col, wxGrid* grid) = 0;
233
2796cce3
RD
234
235 // Reset the value in the control back to its starting value
236 virtual void Reset() = 0;
237
ca65c044 238 // return true to allow the given key to start editing: the base class
f6bcfd97
BP
239 // version only checks that the event has no modifiers. The derived
240 // classes are supposed to do "if ( base::IsAcceptedKey() && ... )" in
241 // their IsAcceptedKey() implementation, although, of course, it is not a
242 // mandatory requirment.
243 //
244 // NB: if the key is F2 (special), editing will always start and this
245 // method will not be called at all (but StartingKey() will)
246 virtual bool IsAcceptedKey(wxKeyEvent& event);
247
248 // If the editor is enabled by pressing keys on the grid, this will be
249 // called to let the editor do something about that first key if desired
2c9a89e0
RD
250 virtual void StartingKey(wxKeyEvent& event);
251
e195a54c
VZ
252 // if the editor is enabled by clicking on the cell, this method will be
253 // called
254 virtual void StartingClick();
255
2796cce3
RD
256 // Some types of controls on some platforms may need some help
257 // with the Return key.
258 virtual void HandleReturn(wxKeyEvent& event);
259
260 // Final cleanup
261 virtual void Destroy();
262
c4608a8a
VZ
263 // create a new object which is the copy of this one
264 virtual wxGridCellEditor *Clone() const = 0;
265
73145b0e
JS
266 // added GetValue so we can get the value which is in the control
267 virtual wxString GetValue() const = 0;
268
2796cce3 269protected:
39bcce60
VZ
270 // the dtor is private because only DecRef() can delete us
271 virtual ~wxGridCellEditor();
272
3da93aae 273 // the control we show on screen
2796cce3 274 wxControl* m_control;
3da93aae 275
1bd71df9
JS
276 // a temporary pointer to the attribute being edited
277 wxGridCellAttr* m_attr;
278
3da93aae
VZ
279 // if we change the colours/font of the control from the default ones, we
280 // must restore the default later and we save them here between calls to
ca65c044 281 // Show(true) and Show(false)
3da93aae
VZ
282 wxColour m_colFgOld,
283 m_colBgOld;
284 wxFont m_fontOld;
39bcce60
VZ
285
286 // suppress the stupid gcc warning about the class having private dtor and
287 // no friends
288 friend class wxGridCellEditorDummyFriend;
22f3361e 289
c0c133e1 290 wxDECLARE_NO_COPY_CLASS(wxGridCellEditor);
2796cce3
RD
291};
292
3379ed37 293
b99be8fb
VZ
294// ----------------------------------------------------------------------------
295// wxGridCellAttr: this class can be used to alter the cells appearance in
296// the grid by changing their colour/font/... from default. An object of this
297// class may be returned by wxGridTable::GetAttr().
298// ----------------------------------------------------------------------------
299
12f190b0 300class WXDLLIMPEXP_ADV wxGridCellAttr : public wxClientDataContainer
b99be8fb
VZ
301{
302public:
19d7140e
VZ
303 enum wxAttrKind
304 {
305 Any,
306 Default,
307 Cell,
308 Row,
309 Col,
310 Merged
311 };
312
b99be8fb 313 // ctors
1df4050d 314 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL)
b99be8fb 315 {
1df4050d
VZ
316 Init(attrDefault);
317
0767cb6f
MB
318 // MB: args used to be 0,0 here but wxALIGN_LEFT is 0
319 SetAlignment(-1, -1);
b99be8fb
VZ
320 }
321
283b7808
VZ
322 // VZ: considering the number of members wxGridCellAttr has now, this ctor
323 // seems to be pretty useless... may be we should just remove it?
b99be8fb
VZ
324 wxGridCellAttr(const wxColour& colText,
325 const wxColour& colBack,
326 const wxFont& font,
327 int hAlign,
328 int vAlign)
329 : m_colText(colText), m_colBack(colBack), m_font(font)
330 {
2e9a6788 331 Init();
b99be8fb
VZ
332 SetAlignment(hAlign, vAlign);
333 }
334
39bcce60
VZ
335 // creates a new copy of this object
336 wxGridCellAttr *Clone() const;
19d7140e 337 void MergeWith(wxGridCellAttr *mergefrom);
b99be8fb 338
2e9a6788
VZ
339 // this class is ref counted: it is created with ref count of 1, so
340 // calling DecRef() once will delete it. Calling IncRef() allows to lock
341 // it until the matching DecRef() is called
342 void IncRef() { m_nRef++; }
8d7eaf91 343 void DecRef() { if ( --m_nRef == 0 ) delete this; }
2e9a6788 344
b99be8fb
VZ
345 // setters
346 void SetTextColour(const wxColour& colText) { m_colText = colText; }
347 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
348 void SetFont(const wxFont& font) { m_font = font; }
349 void SetAlignment(int hAlign, int vAlign)
350 {
351 m_hAlign = hAlign;
352 m_vAlign = vAlign;
353 }
27f35b66 354 void SetSize(int num_rows, int num_cols);
ca65c044 355 void SetOverflow(bool allow = true)
ef5df12b 356 { m_overflow = allow ? Overflow : SingleCell; }
ca65c044 357 void SetReadOnly(bool isReadOnly = true)
19d7140e 358 { m_isReadOnly = isReadOnly ? ReadOnly : ReadWrite; }
b99be8fb 359
ab79958a
VZ
360 // takes ownership of the pointer
361 void SetRenderer(wxGridCellRenderer *renderer)
39bcce60 362 { wxSafeDecRef(m_renderer); m_renderer = renderer; }
07296f0b 363 void SetEditor(wxGridCellEditor* editor)
39bcce60 364 { wxSafeDecRef(m_editor); m_editor = editor; }
ab79958a 365
19d7140e
VZ
366 void SetKind(wxAttrKind kind) { m_attrkind = kind; }
367
b99be8fb
VZ
368 // accessors
369 bool HasTextColour() const { return m_colText.Ok(); }
370 bool HasBackgroundColour() const { return m_colBack.Ok(); }
371 bool HasFont() const { return m_font.Ok(); }
0767cb6f 372 bool HasAlignment() const { return (m_hAlign != -1 || m_vAlign != -1); }
2796cce3 373 bool HasRenderer() const { return m_renderer != NULL; }
07296f0b 374 bool HasEditor() const { return m_editor != NULL; }
19d7140e 375 bool HasReadWriteMode() const { return m_isReadOnly != Unset; }
b63fce94 376 bool HasOverflowMode() const { return m_overflow != UnsetOverflow; }
3100c3db 377 bool HasSize() const { return m_sizeRows != 1 || m_sizeCols != 1; }
b99be8fb 378
2796cce3
RD
379 const wxColour& GetTextColour() const;
380 const wxColour& GetBackgroundColour() const;
381 const wxFont& GetFont() const;
382 void GetAlignment(int *hAlign, int *vAlign) const;
27f35b66 383 void GetSize(int *num_rows, int *num_cols) const;
ef5df12b 384 bool GetOverflow() const
b63fce94 385 { return m_overflow != SingleCell; }
ef316e23
VZ
386 wxGridCellRenderer *GetRenderer(const wxGrid* grid, int row, int col) const;
387 wxGridCellEditor *GetEditor(const wxGrid* grid, int row, int col) const;
b99be8fb 388
19d7140e
VZ
389 bool IsReadOnly() const { return m_isReadOnly == wxGridCellAttr::ReadOnly; }
390
391 wxAttrKind GetKind() { return m_attrkind; }
283b7808 392
2796cce3 393 void SetDefAttr(wxGridCellAttr* defAttr) { m_defGridAttr = defAttr; }
ab79958a 394
338d1deb
VZ
395protected:
396 // the dtor is private because only DecRef() can delete us
397 virtual ~wxGridCellAttr()
398 {
399 wxSafeDecRef(m_renderer);
400 wxSafeDecRef(m_editor);
401 }
402
b99be8fb 403private:
19d7140e
VZ
404 enum wxAttrReadMode
405 {
406 Unset = -1,
407 ReadWrite,
408 ReadOnly
30bc4a8f 409 };
19d7140e 410
b63fce94
RD
411 enum wxAttrOverflowMode
412 {
413 UnsetOverflow = -1,
414 Overflow,
415 SingleCell
416 };
417
2e9a6788 418 // the common part of all ctors
1df4050d 419 void Init(wxGridCellAttr *attrDefault = NULL);
2e9a6788 420
2e9a6788
VZ
421
422 // the ref count - when it goes to 0, we die
423 size_t m_nRef;
424
b99be8fb
VZ
425 wxColour m_colText,
426 m_colBack;
427 wxFont m_font;
428 int m_hAlign,
429 m_vAlign;
27f35b66
SN
430 int m_sizeRows,
431 m_sizeCols;
ef5df12b
RD
432
433 wxAttrOverflowMode m_overflow;
2e9a6788 434
07296f0b
RD
435 wxGridCellRenderer* m_renderer;
436 wxGridCellEditor* m_editor;
437 wxGridCellAttr* m_defGridAttr;
ab79958a 438
19d7140e
VZ
439 wxAttrReadMode m_isReadOnly;
440
441 wxAttrKind m_attrkind;
283b7808 442
a68c1246 443 // use Clone() instead
c0c133e1 444 wxDECLARE_NO_COPY_CLASS(wxGridCellAttr);
a68c1246 445
2e9a6788
VZ
446 // suppress the stupid gcc warning about the class having private dtor and
447 // no friends
448 friend class wxGridCellAttrDummyFriend;
b99be8fb
VZ
449};
450
451// ----------------------------------------------------------------------------
452// wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
453// cell attributes.
454// ----------------------------------------------------------------------------
455
456// implementation note: we separate it from wxGridTableBase because we wish to
457// avoid deriving a new table class if possible, and sometimes it will be
458// enough to just derive another wxGridCellAttrProvider instead
758cbedf
VZ
459//
460// the default implementation is reasonably efficient for the generic case,
461// but you might still wish to implement your own for some specific situations
462// if you have performance problems with the stock one
12f190b0 463class WXDLLIMPEXP_ADV wxGridCellAttrProvider : public wxClientDataContainer
b99be8fb
VZ
464{
465public:
466 wxGridCellAttrProvider();
467 virtual ~wxGridCellAttrProvider();
468
2e9a6788 469 // DecRef() must be called on the returned pointer
19d7140e
VZ
470 virtual wxGridCellAttr *GetAttr(int row, int col,
471 wxGridCellAttr::wxAttrKind kind ) const;
2e9a6788 472
758cbedf
VZ
473 // all these functions take ownership of the pointer, don't call DecRef()
474 // on it
2e9a6788 475 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
758cbedf
VZ
476 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
477 virtual void SetColAttr(wxGridCellAttr *attr, int col);
d1c0b4f9
VZ
478
479 // these functions must be called whenever some rows/cols are deleted
480 // because the internal data must be updated then
4d60017a
SN
481 void UpdateAttrRows( size_t pos, int numRows );
482 void UpdateAttrCols( size_t pos, int numCols );
b99be8fb
VZ
483
484private:
485 void InitData();
486
487 wxGridCellAttrProviderData *m_data;
22f3361e 488
c0c133e1 489 wxDECLARE_NO_COPY_CLASS(wxGridCellAttrProvider);
b99be8fb 490};
f85afd4e 491
10a4531d
VZ
492// ----------------------------------------------------------------------------
493// wxGridCellCoords: location of a cell in the grid
494// ----------------------------------------------------------------------------
495
496class WXDLLIMPEXP_ADV wxGridCellCoords
497{
498public:
499 wxGridCellCoords() { m_row = m_col = -1; }
500 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
501
502 // default copy ctor is ok
503
504 int GetRow() const { return m_row; }
505 void SetRow( int n ) { m_row = n; }
506 int GetCol() const { return m_col; }
507 void SetCol( int n ) { m_col = n; }
508 void Set( int row, int col ) { m_row = row; m_col = col; }
509
510 wxGridCellCoords& operator=( const wxGridCellCoords& other )
511 {
512 if ( &other != this )
513 {
514 m_row=other.m_row;
515 m_col=other.m_col;
516 }
517 return *this;
518 }
519
520 bool operator==( const wxGridCellCoords& other ) const
521 {
522 return (m_row == other.m_row && m_col == other.m_col);
523 }
524
525 bool operator!=( const wxGridCellCoords& other ) const
526 {
527 return (m_row != other.m_row || m_col != other.m_col);
528 }
529
530 bool operator!() const
531 {
532 return (m_row == -1 && m_col == -1 );
533 }
534
535private:
536 int m_row;
537 int m_col;
538};
539
540
541// For comparisons...
f85afd4e 542//
10a4531d
VZ
543extern WXDLLIMPEXP_ADV wxGridCellCoords wxGridNoCellCoords;
544extern WXDLLIMPEXP_ADV wxRect wxGridNoCellRect;
545
546// An array of cell coords...
f85afd4e 547//
10a4531d
VZ
548WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellCoords, wxGridCellCoordsArray,
549 class WXDLLIMPEXP_ADV);
f85afd4e 550
10a4531d
VZ
551// ----------------------------------------------------------------------------
552// Grid table classes
553// ----------------------------------------------------------------------------
f85afd4e 554
10a4531d
VZ
555// the abstract base class
556class WXDLLIMPEXP_ADV wxGridTableBase : public wxObject,
557 public wxClientDataContainer
f85afd4e 558{
60ff3b99 559public:
f85afd4e
MB
560 wxGridTableBase();
561 virtual ~wxGridTableBase();
562
563 // You must override these functions in a derived table class
564 //
77d2c45c
VZ
565
566 // return the number of rows and columns in this table
e32352cf
SN
567 virtual int GetNumberRows() = 0;
568 virtual int GetNumberCols() = 0;
77d2c45c
VZ
569
570 // the methods above are unfortunately non-const even though they should
571 // have been const -- but changing it now is not possible any longer as it
572 // would break the existing code overriding them, so instead we provide
573 // these const synonyms which can be used from const-correct code
574 int GetRowsCount() const
5c33522f 575 { return const_cast<wxGridTableBase *>(this)->GetNumberRows(); }
77d2c45c 576 int GetColsCount() const
5c33522f 577 { return const_cast<wxGridTableBase *>(this)->GetNumberCols(); }
77d2c45c
VZ
578
579
8acad210
VZ
580 virtual bool IsEmptyCell( int row, int col )
581 {
582 return GetValue(row, col).empty();
583 }
10a4531d
VZ
584
585 bool IsEmpty(const wxGridCellCoords& coord)
586 {
587 return IsEmptyCell(coord.GetRow(), coord.GetCol());
588 }
589
f2d76237
RD
590 virtual wxString GetValue( int row, int col ) = 0;
591 virtual void SetValue( int row, int col, const wxString& value ) = 0;
592
593 // Data type determination and value access
594 virtual wxString GetTypeName( int row, int col );
595 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
596 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
597
598 virtual long GetValueAsLong( int row, int col );
599 virtual double GetValueAsDouble( int row, int col );
600 virtual bool GetValueAsBool( int row, int col );
601
602 virtual void SetValueAsLong( int row, int col, long value );
603 virtual void SetValueAsDouble( int row, int col, double value );
604 virtual void SetValueAsBool( int row, int col, bool value );
605
606 // For user defined types
607 virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
608 virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
609
60ff3b99 610
f85afd4e
MB
611 // Overriding these is optional
612 //
613 virtual void SetView( wxGrid *grid ) { m_view = grid; }
614 virtual wxGrid * GetView() const { return m_view; }
615
616 virtual void Clear() {}
617 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
618 virtual bool AppendRows( size_t numRows = 1 );
619 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
620 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
621 virtual bool AppendCols( size_t numCols = 1 );
622 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
623
624 virtual wxString GetRowLabelValue( int row );
625 virtual wxString GetColLabelValue( int col );
af111fc3
JS
626 virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
627 virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
60ff3b99 628
b99be8fb
VZ
629 // Attribute handling
630 //
631
632 // give us the attr provider to use - we take ownership of the pointer
633 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
634
635 // get the currently used attr provider (may be NULL)
636 wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
637
f2d76237
RD
638 // Does this table allow attributes? Default implementation creates
639 // a wxGridCellAttrProvider if necessary.
640 virtual bool CanHaveAttributes();
641
b99be8fb 642 // by default forwarded to wxGridCellAttrProvider if any. May be
f2d76237 643 // overridden to handle attributes directly in the table.
19d7140e
VZ
644 virtual wxGridCellAttr *GetAttr( int row, int col,
645 wxGridCellAttr::wxAttrKind kind );
646
b99be8fb 647
758cbedf
VZ
648 // these functions take ownership of the pointer
649 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
650 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
651 virtual void SetColAttr(wxGridCellAttr *attr, int col);
b99be8fb 652
60ff3b99
VZ
653private:
654 wxGrid * m_view;
b99be8fb 655 wxGridCellAttrProvider *m_attrProvider;
60ff3b99 656
3839f37e 657 DECLARE_ABSTRACT_CLASS(wxGridTableBase)
c0c133e1 658 wxDECLARE_NO_COPY_CLASS(wxGridTableBase);
f85afd4e
MB
659};
660
661
b99be8fb
VZ
662// ----------------------------------------------------------------------------
663// wxGridTableMessage
664// ----------------------------------------------------------------------------
f85afd4e
MB
665
666// IDs for messages sent from grid table to view
667//
60ff3b99
VZ
668enum wxGridTableRequest
669{
f85afd4e
MB
670 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
671 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
672 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
673 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
674 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
675 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
676 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
677 wxGRIDTABLE_NOTIFY_COLS_DELETED
678};
679
12f190b0 680class WXDLLIMPEXP_ADV wxGridTableMessage
f85afd4e 681{
60ff3b99 682public:
f85afd4e
MB
683 wxGridTableMessage();
684 wxGridTableMessage( wxGridTableBase *table, int id,
685 int comInt1 = -1,
686 int comInt2 = -1 );
687
688 void SetTableObject( wxGridTableBase *table ) { m_table = table; }
689 wxGridTableBase * GetTableObject() const { return m_table; }
690 void SetId( int id ) { m_id = id; }
691 int GetId() { return m_id; }
692 void SetCommandInt( int comInt1 ) { m_comInt1 = comInt1; }
693 int GetCommandInt() { return m_comInt1; }
694 void SetCommandInt2( int comInt2 ) { m_comInt2 = comInt2; }
60ff3b99
VZ
695 int GetCommandInt2() { return m_comInt2; }
696
697private:
698 wxGridTableBase *m_table;
699 int m_id;
700 int m_comInt1;
701 int m_comInt2;
22f3361e 702
c0c133e1 703 wxDECLARE_NO_COPY_CLASS(wxGridTableMessage);
f85afd4e
MB
704};
705
706
707
708// ------ wxGridStringArray
709// A 2-dimensional array of strings for data values
710//
711
160ba750
VS
712WX_DECLARE_OBJARRAY_WITH_DECL(wxArrayString, wxGridStringArray,
713 class WXDLLIMPEXP_ADV);
2d66e025 714
f85afd4e
MB
715
716
717// ------ wxGridStringTable
718//
719// Simplest type of data table for a grid for small tables of strings
720// that are stored in memory
721//
722
12f190b0 723class WXDLLIMPEXP_ADV wxGridStringTable : public wxGridTableBase
f85afd4e 724{
60ff3b99 725public:
f85afd4e
MB
726 wxGridStringTable();
727 wxGridStringTable( int numRows, int numCols );
e669d97a 728 virtual ~wxGridStringTable();
f85afd4e
MB
729
730 // these are pure virtual in wxGridTableBase
731 //
e32352cf
SN
732 int GetNumberRows();
733 int GetNumberCols();
f85afd4e
MB
734 wxString GetValue( int row, int col );
735 void SetValue( int row, int col, const wxString& s );
60ff3b99 736
f85afd4e
MB
737 // overridden functions from wxGridTableBase
738 //
739 void Clear();
740 bool InsertRows( size_t pos = 0, size_t numRows = 1 );
741 bool AppendRows( size_t numRows = 1 );
742 bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
743 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
744 bool AppendCols( size_t numCols = 1 );
745 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
746
747 void SetRowLabelValue( int row, const wxString& );
748 void SetColLabelValue( int col, const wxString& );
749 wxString GetRowLabelValue( int row );
750 wxString GetColLabelValue( int col );
60ff3b99
VZ
751
752private:
753 wxGridStringArray m_data;
754
755 // These only get used if you set your own labels, otherwise the
756 // GetRow/ColLabelValue functions return wxGridTableBase defaults
757 //
758 wxArrayString m_rowLabels;
759 wxArrayString m_colLabels;
760
fc7a2a60 761 DECLARE_DYNAMIC_CLASS_NO_COPY( wxGridStringTable )
f85afd4e
MB
762};
763
764
765
43947979 766// ============================================================================
f85afd4e 767// Grid view classes
43947979
VZ
768// ============================================================================
769
574e1c5a
VZ
770// ----------------------------------------------------------------------------
771// wxGridSizesInfo stores information about sizes of the rows or columns.
772//
773// It assumes that most of the columns or rows have default size and so stores
774// the default size separately and uses a hash to map column or row numbers to
775// their non default size for those which don't have the default size.
776// ----------------------------------------------------------------------------
777
82edfbe7 778// hash map to store positions as the keys and sizes as the values
574e1c5a
VZ
779WX_DECLARE_HASH_MAP_WITH_DECL( unsigned, int, wxIntegerHash, wxIntegerEqual,
780 wxUnsignedToIntHashMap, class WXDLLIMPEXP_ADV );
781
782struct WXDLLIMPEXP_ADV wxGridSizesInfo
783{
784 // default ctor, initialize m_sizeDefault and m_customSizes later
785 wxGridSizesInfo() { }
786
787 // ctor used by wxGrid::Get{Col,Row}Sizes()
788 wxGridSizesInfo(int defSize, const wxArrayInt& allSizes);
789
790 // default copy ctor, assignment operator and dtor are ok
791
792 // Get the size of the element with the given index
793 int GetSize(unsigned pos) const;
794
795
796 // default size
797 int m_sizeDefault;
798
799 // position -> size map containing all elements with non-default size
800 wxUnsignedToIntHashMap m_customSizes;
801};
802
b99be8fb
VZ
803// ----------------------------------------------------------------------------
804// wxGrid
805// ----------------------------------------------------------------------------
f85afd4e 806
12f190b0 807class WXDLLIMPEXP_ADV wxGrid : public wxScrolledWindow
60ff3b99
VZ
808{
809public:
bf2c8b31
VZ
810 // possible selection modes
811 enum wxGridSelectionModes
812 {
813 wxGridSelectCells = 0, // allow selecting anything
814 wxGridSelectRows = 1, // allow selecting only entire rows
815 wxGridSelectColumns = 2, // allow selecting only entire columns
816 wxGridSelectRowsOrColumns = wxGridSelectRows | wxGridSelectColumns
817 };
818
819 // creation and destruction
820 // ------------------------
821
822 // ctor and Create() create the grid window, as with the other controls
ad805b9e 823 wxGrid() { Init(); }
986a98c6 824
bf2c8b31 825 wxGrid(wxWindow *parent,
986a98c6
SC
826 wxWindowID id,
827 const wxPoint& pos = wxDefaultPosition,
828 const wxSize& size = wxDefaultSize,
829 long style = wxWANTS_CHARS,
ad805b9e
VZ
830 const wxString& name = wxGridNameStr)
831 {
832 Init();
833
834 Create(parent, id, pos, size, style, name);
835 }
60ff3b99 836
bf2c8b31
VZ
837 bool Create(wxWindow *parent,
838 wxWindowID id,
839 const wxPoint& pos = wxDefaultPosition,
840 const wxSize& size = wxDefaultSize,
841 long style = wxWANTS_CHARS,
842 const wxString& name = wxGridNameStr);
2d66e025 843
e669d97a 844 virtual ~wxGrid();
f85afd4e 845
bf2c8b31
VZ
846 // however to initialize grid data either CreateGrid() or SetTable() must
847 // be also called
b5808881 848
bf2c8b31
VZ
849 // this is basically equivalent to
850 //
851 // SetTable(new wxGridStringTable(numRows, numCols), true, selmode)
852 //
b5808881 853 bool CreateGrid( int numRows, int numCols,
801a9641 854 wxGridSelectionModes selmode = wxGridSelectCells );
2d66e025 855
bf2c8b31
VZ
856 bool SetTable( wxGridTableBase *table,
857 bool takeOwnership = false,
858 wxGridSelectionModes selmode = wxGridSelectCells );
859
8a3e536c
VZ
860 bool ProcessTableMessage(wxGridTableMessage&);
861
862 wxGridTableBase *GetTable() const { return m_table; }
863
bf2c8b31 864
801a9641
VZ
865 void SetSelectionMode(wxGridSelectionModes selmode);
866 wxGridSelectionModes GetSelectionMode() const;
60ff3b99 867
2d66e025
MB
868 // ------ grid dimensions
869 //
ef316e23
VZ
870 int GetNumberRows() const { return m_numRows; }
871 int GetNumberCols() const { return m_numCols; }
2d66e025 872
60ff3b99 873
2d66e025
MB
874 // ------ display update functions
875 //
ef316e23 876 wxArrayInt CalcRowLabelsExposed( const wxRegion& reg ) const;
8fb66724 877
ef316e23
VZ
878 wxArrayInt CalcColLabelsExposed( const wxRegion& reg ) const;
879 wxGridCellCoordsArray CalcCellsExposed( const wxRegion& reg ) const;
60ff3b99 880
2d66e025 881
f85afd4e 882 void ClearGrid();
10a4531d
VZ
883 bool InsertRows(int pos = 0, int numRows = 1, bool updateLabels = true)
884 {
885 return DoModifyLines(&wxGridTableBase::InsertRows,
886 pos, numRows, updateLabels);
887 }
888 bool InsertCols(int pos = 0, int numCols = 1, bool updateLabels = true)
889 {
890 return DoModifyLines(&wxGridTableBase::InsertCols,
891 pos, numCols, updateLabels);
892 }
893
894 bool AppendRows(int numRows = 1, bool updateLabels = true)
895 {
896 return DoAppendLines(&wxGridTableBase::AppendRows, numRows, updateLabels);
897 }
898 bool AppendCols(int numCols = 1, bool updateLabels = true)
899 {
900 return DoAppendLines(&wxGridTableBase::AppendCols, numCols, updateLabels);
901 }
902
903 bool DeleteRows(int pos = 0, int numRows = 1, bool updateLabels = true)
904 {
905 return DoModifyLines(&wxGridTableBase::DeleteRows,
906 pos, numRows, updateLabels);
907 }
908 bool DeleteCols(int pos = 0, int numCols = 1, bool updateLabels = true)
909 {
910 return DoModifyLines(&wxGridTableBase::DeleteCols,
911 pos, numCols, updateLabels);
912 }
f85afd4e 913
d10f4bf9 914 void DrawGridCellArea( wxDC& dc , const wxGridCellCoordsArray& cells );
7c8a8ad5 915 void DrawGridSpace( wxDC& dc );
2d66e025 916 void DrawCellBorder( wxDC& dc, const wxGridCellCoords& );
4634a5d6 917 void DrawAllGridLines( wxDC& dc, const wxRegion & reg );
2d66e025 918 void DrawCell( wxDC& dc, const wxGridCellCoords& );
d10f4bf9 919 void DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells);
d16c04bb
VZ
920
921 // this function is called when the current cell highlight must be redrawn
922 // and may be overridden by the user
923 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1f1ce288 924
6914b57a
JS
925 virtual void DrawRowLabels( wxDC& dc, const wxArrayInt& rows );
926 virtual void DrawRowLabel( wxDC& dc, int row );
8fb66724 927
6914b57a
JS
928 virtual void DrawColLabels( wxDC& dc, const wxArrayInt& cols );
929 virtual void DrawColLabel( wxDC& dc, int col );
60ff3b99 930
ff72f628 931 virtual void DrawCornerLabel(wxDC& dc);
f85afd4e 932
2d66e025 933 // ------ Cell text drawing functions
f85afd4e 934 //
2d66e025 935 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
4c7277db 936 int horizontalAlignment = wxALIGN_LEFT,
d43851f7
JS
937 int verticalAlignment = wxALIGN_TOP,
938 int textOrientation = wxHORIZONTAL );
30bc4a8f 939
d10f4bf9
VZ
940 void DrawTextRectangle( wxDC& dc, const wxArrayString& lines, const wxRect&,
941 int horizontalAlignment = wxALIGN_LEFT,
d43851f7
JS
942 int verticalAlignment = wxALIGN_TOP,
943 int textOrientation = wxHORIZONTAL );
d10f4bf9 944
f85afd4e 945
ef316e23 946 // Split a string containing newline characters into an array of
2d66e025
MB
947 // strings and return the number of lines
948 //
ef316e23 949 void StringToLines( const wxString& value, wxArrayString& lines ) const;
60ff3b99 950
fbfb8bcc 951 void GetTextBoxSize( const wxDC& dc,
d10f4bf9 952 const wxArrayString& lines,
ef316e23 953 long *width, long *height ) const;
60ff3b99 954
2d66e025 955
f85afd4e
MB
956 // ------
957 // Code that does a lot of grid modification can be enclosed
958 // between BeginBatch() and EndBatch() calls to avoid screen
959 // flicker
960 //
961 void BeginBatch() { m_batchCount++; }
f6bcfd97
BP
962 void EndBatch();
963
f85afd4e
MB
964 int GetBatchCount() { return m_batchCount; }
965
8a3e536c 966 virtual void Refresh(bool eraseb = true, const wxRect* rect = NULL);
27f35b66 967
d8232393
MB
968 // Use this, rather than wxWindow::Refresh(), to force an
969 // immediate repainting of the grid. Has no effect if you are
970 // already inside a BeginBatch / EndBatch block.
971 //
972 // This function is necessary because wxGrid has a minimal OnPaint()
973 // handler to reduce screen flicker.
974 //
975 void ForceRefresh();
d2520c85 976
2d66e025
MB
977
978 // ------ edit control functions
979 //
84035150 980 bool IsEditable() const { return m_editable; }
2d66e025
MB
981 void EnableEditing( bool edit );
982
ca65c044
WS
983 void EnableCellEditControl( bool enable = true );
984 void DisableCellEditControl() { EnableCellEditControl(false); }
b54ba671
VZ
985 bool CanEnableCellControl() const;
986 bool IsCellEditControlEnabled() const;
f6bcfd97 987 bool IsCellEditControlShown() const;
2d66e025 988
b54ba671 989 bool IsCurrentCellReadOnly() const;
2d66e025 990
2d66e025
MB
991 void ShowCellEditControl();
992 void HideCellEditControl();
2d66e025
MB
993 void SaveEditControlValue();
994
60ff3b99 995
2d66e025 996 // ------ grid location functions
60ff3b99 997 // Note that all of these functions work with the logical coordinates of
2d66e025
MB
998 // grid cells and labels so you will need to convert from device
999 // coordinates for mouse events etc.
1000 //
8a3e536c
VZ
1001 wxGridCellCoords XYToCell(int x, int y) const;
1002 void XYToCell(int x, int y, wxGridCellCoords& coords) const
1003 { coords = XYToCell(x, y); }
1004 wxGridCellCoords XYToCell(const wxPoint& pos) const
1005 { return XYToCell(pos.x, pos.y); }
1006
cd4f6f5f
VZ
1007 // these functions return the index of the row/columns corresponding to the
1008 // given logical position in pixels
1009 //
1010 // if clipToMinMax is false (default, wxNOT_FOUND is returned if the
1011 // position is outside any row/column, otherwise the first/last element is
1012 // returned in this case
bec70262 1013 int YToRow( int y, bool clipToMinMax = false ) const;
ef316e23 1014 int XToCol( int x, bool clipToMinMax = false ) const;
2d66e025 1015
ef316e23
VZ
1016 int YToEdgeOfRow( int y ) const;
1017 int XToEdgeOfCol( int x ) const;
2d66e025 1018
ef316e23
VZ
1019 wxRect CellToRect( int row, int col ) const;
1020 wxRect CellToRect( const wxGridCellCoords& coords ) const
2d66e025
MB
1021 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
1022
ef316e23
VZ
1023 int GetGridCursorRow() const { return m_currentCellCoords.GetRow(); }
1024 int GetGridCursorCol() const { return m_currentCellCoords.GetCol(); }
60ff3b99 1025
2d66e025
MB
1026 // check to see if a cell is either wholly visible (the default arg) or
1027 // at least partially visible in the grid window
1028 //
ef316e23
VZ
1029 bool IsVisible( int row, int col, bool wholeCellVisible = true ) const;
1030 bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = true ) const
2d66e025
MB
1031 { return IsVisible( coords.GetRow(), coords.GetCol(), wholeCellVisible ); }
1032 void MakeCellVisible( int row, int col );
1033 void MakeCellVisible( const wxGridCellCoords& coords )
1034 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
1035
60ff3b99 1036
2d66e025
MB
1037 // ------ grid cursor movement functions
1038 //
8a3e536c
VZ
1039 void SetGridCursor(int row, int col) { SetCurrentCell(row, col); }
1040 void SetGridCursor(const wxGridCellCoords& c) { SetCurrentCell(c); }
1041
1042 void GoToCell(int row, int col)
1043 {
1044 if ( SetCurrentCell(row, col) )
1045 MakeCellVisible(row, col);
1046 }
1047
1048 void GoToCell(const wxGridCellCoords& coords)
1049 {
1050 if ( SetCurrentCell(coords) )
1051 MakeCellVisible(coords);
1052 }
dfaf42d2 1053
5c8fc7c1
SN
1054 bool MoveCursorUp( bool expandSelection );
1055 bool MoveCursorDown( bool expandSelection );
1056 bool MoveCursorLeft( bool expandSelection );
1057 bool MoveCursorRight( bool expandSelection );
2d66e025
MB
1058 bool MovePageDown();
1059 bool MovePageUp();
5c8fc7c1
SN
1060 bool MoveCursorUpBlock( bool expandSelection );
1061 bool MoveCursorDownBlock( bool expandSelection );
1062 bool MoveCursorLeftBlock( bool expandSelection );
1063 bool MoveCursorRightBlock( bool expandSelection );
2d66e025 1064
60ff3b99 1065
f85afd4e
MB
1066 // ------ label and gridline formatting
1067 //
ef316e23
VZ
1068 int GetDefaultRowLabelSize() const { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
1069 int GetRowLabelSize() const { return m_rowLabelWidth; }
1070 int GetDefaultColLabelSize() const { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
1071 int GetColLabelSize() const { return m_colLabelHeight; }
1072 wxColour GetLabelBackgroundColour() const { return m_labelBackgroundColour; }
1073 wxColour GetLabelTextColour() const { return m_labelTextColour; }
1074 wxFont GetLabelFont() const { return m_labelFont; }
1075 void GetRowLabelAlignment( int *horiz, int *vert ) const;
1076 void GetColLabelAlignment( int *horiz, int *vert ) const;
1077 int GetColLabelTextOrientation() const;
1078 wxString GetRowLabelValue( int row ) const;
1079 wxString GetColLabelValue( int col ) const;
3d3f3e37 1080
ef316e23
VZ
1081 wxColour GetCellHighlightColour() const { return m_cellHighlightColour; }
1082 int GetCellHighlightPenWidth() const { return m_cellHighlightPenWidth; }
1083 int GetCellHighlightROPenWidth() const { return m_cellHighlightROPenWidth; }
f85afd4e 1084
ad805b9e
VZ
1085 // this one will use wxHeaderCtrl for the column labels
1086 void UseNativeColHeader(bool native = true);
1087
1088 // this one will still draw them manually but using the native renderer
1089 // instead of using the same appearance as for the row labels
1090 void SetUseNativeColLabels( bool native = true );
1091
ab79958a 1092 void SetRowLabelSize( int width );
f85afd4e 1093 void SetColLabelSize( int height );
0a9ca9c4
RR
1094 void HideRowLabels() { SetRowLabelSize( 0 ); }
1095 void HideColLabels() { SetColLabelSize( 0 ); }
f85afd4e
MB
1096 void SetLabelBackgroundColour( const wxColour& );
1097 void SetLabelTextColour( const wxColour& );
1098 void SetLabelFont( const wxFont& );
1099 void SetRowLabelAlignment( int horiz, int vert );
1100 void SetColLabelAlignment( int horiz, int vert );
d43851f7 1101 void SetColLabelTextOrientation( int textOrientation );
f85afd4e
MB
1102 void SetRowLabelValue( int row, const wxString& );
1103 void SetColLabelValue( int col, const wxString& );
f6bcfd97 1104 void SetCellHighlightColour( const wxColour& );
d2520c85
RD
1105 void SetCellHighlightPenWidth(int width);
1106 void SetCellHighlightROPenWidth(int width);
28a77bc4 1107
82edfbe7
VZ
1108
1109 // interactive grid mouse operations control
1110 // -----------------------------------------
1111
1112 // functions globally enabling row/column interactive resizing (enabled by
1113 // default)
ca65c044
WS
1114 void EnableDragRowSize( bool enable = true );
1115 void DisableDragRowSize() { EnableDragRowSize( false ); }
82edfbe7 1116
ca65c044
WS
1117 void EnableDragColSize( bool enable = true );
1118 void DisableDragColSize() { EnableDragColSize( false ); }
82edfbe7
VZ
1119
1120 // if interactive resizing is enabled, some rows/columns can still have
1121 // fixed size
1122 void DisableRowResize(int row) { DoDisableLineResize(row, m_setFixedRows); }
1123 void DisableColResize(int col) { DoDisableLineResize(col, m_setFixedCols); }
1124
1125 // these functions return whether the given row/column can be
1126 // effectively resized: for this interactive resizing must be enabled
1127 // and this index must not have been passed to DisableRow/ColResize()
1128 bool CanDragRowSize(int row) const
1129 { return m_canDragRowSize && DoCanResizeLine(row, m_setFixedRows); }
1130 bool CanDragColSize(int col) const
1131 { return m_canDragColSize && DoCanResizeLine(col, m_setFixedCols); }
1132
1133 // interactive column reordering (disabled by default)
d4175745
VZ
1134 void EnableDragColMove( bool enable = true );
1135 void DisableDragColMove() { EnableDragColMove( false ); }
ef316e23 1136 bool CanDragColMove() const { return m_canDragColMove; }
82edfbe7
VZ
1137
1138 // interactive resizing of grid cells (enabled by default)
ca65c044
WS
1139 void EnableDragGridSize(bool enable = true);
1140 void DisableDragGridSize() { EnableDragGridSize(false); }
ef316e23 1141 bool CanDragGridSize() const { return m_canDragGridSize; }
4cfa5de6 1142
82edfbe7 1143 // interactive dragging of cells (disabled by default)
79dbea21
RD
1144 void EnableDragCell( bool enable = true );
1145 void DisableDragCell() { EnableDragCell( false ); }
ef316e23 1146 bool CanDragCell() const { return m_canDragCell; }
79dbea21 1147
9f7aee01
VZ
1148
1149 // grid lines
1150 // ----------
1151
1152 // enable or disable drawing of the lines
1153 void EnableGridLines(bool enable = true);
1154 bool GridLinesEnabled() const { return m_gridLinesEnabled; }
1155
1156 // by default grid lines stop at last column/row, but this may be changed
1157 void ClipHorzGridLines(bool clip)
1158 { DoClipGridLines(m_gridLinesClipHorz, clip); }
1159 void ClipVertGridLines(bool clip)
1160 { DoClipGridLines(m_gridLinesClipVert, clip); }
1161 bool AreHorzGridLinesClipped() const { return m_gridLinesClipHorz; }
1162 bool AreVertGridLinesClipped() const { return m_gridLinesClipVert; }
1163
1164 // this can be used to change the global grid lines colour
1165 void SetGridLineColour(const wxColour& col);
1166 wxColour GetGridLineColour() const { return m_gridLineColour; }
1167
1168 // these methods may be overridden to customize individual grid lines
1169 // appearance
1170 virtual wxPen GetDefaultGridLinePen();
1171 virtual wxPen GetRowGridLinePen(int row);
1172 virtual wxPen GetColGridLinePen(int col);
1173
1174
1175 // attributes
1176 // ----------
1177
27f35b66
SN
1178 // this sets the specified attribute for this cell or in this row/col
1179 void SetAttr(int row, int col, wxGridCellAttr *attr);
758cbedf
VZ
1180 void SetRowAttr(int row, wxGridCellAttr *attr);
1181 void SetColAttr(int col, wxGridCellAttr *attr);
1182
71e60f70
RD
1183 // returns the attribute we may modify in place: a new one if this cell
1184 // doesn't have any yet or the existing one if it does
1185 //
1186 // DecRef() must be called on the returned pointer, as usual
1187 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1188
d94c09cd 1189
0b190b0f
VZ
1190 // shortcuts for setting the column parameters
1191
1192 // set the format for the data in the column: default is string
1193 void SetColFormatBool(int col);
1194 void SetColFormatNumber(int col);
1195 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1196 void SetColFormatCustom(int col, const wxString& typeName);
1197
f85afd4e
MB
1198 // ------ row and col formatting
1199 //
ef316e23
VZ
1200 int GetDefaultRowSize() const;
1201 int GetRowSize( int row ) const;
fe79f76b 1202 bool IsRowShown(int row) const { return GetRowSize(row) != 0; }
ef316e23
VZ
1203 int GetDefaultColSize() const;
1204 int GetColSize( int col ) const;
fe79f76b 1205 bool IsColShown(int col) const { return GetColSize(col) != 0; }
ef316e23
VZ
1206 wxColour GetDefaultCellBackgroundColour() const;
1207 wxColour GetCellBackgroundColour( int row, int col ) const;
1208 wxColour GetDefaultCellTextColour() const;
1209 wxColour GetCellTextColour( int row, int col ) const;
1210 wxFont GetDefaultCellFont() const;
1211 wxFont GetCellFont( int row, int col ) const;
1212 void GetDefaultCellAlignment( int *horiz, int *vert ) const;
1213 void GetCellAlignment( int row, int col, int *horiz, int *vert ) const;
1214 bool GetDefaultCellOverflow() const;
1215 bool GetCellOverflow( int row, int col ) const;
1216 void GetCellSize( int row, int col, int *num_rows, int *num_cols ) const;
bec70262
VZ
1217 wxSize GetCellSize(const wxGridCellCoords& coords)
1218 {
1219 wxSize s;
1220 GetCellSize(coords.GetRow(), coords.GetCol(), &s.x, &s.y);
1221 return s;
1222 }
60ff3b99 1223
009c7216 1224 // ------ row and col sizes
ca65c044 1225 void SetDefaultRowSize( int height, bool resizeExistingRows = false );
f85afd4e 1226 void SetRowSize( int row, int height );
009c7216
VZ
1227 void HideRow(int row) { SetRowSize(row, 0); }
1228 void ShowRow(int row) { SetRowSize(row, -1); }
8fb66724 1229
009c7216 1230 void SetDefaultColSize( int width, bool resizeExistingCols = false );
f85afd4e 1231 void SetColSize( int col, int width );
009c7216
VZ
1232 void HideCol(int col) { SetColSize(col, 0); }
1233 void ShowCol(int col) { SetColSize(col, -1); }
1234
574e1c5a
VZ
1235 // the row and column sizes can be also set all at once using
1236 // wxGridSizesInfo which holds all of them at once
1237
1238 wxGridSizesInfo GetColSizes() const
1239 { return wxGridSizesInfo(GetDefaultColSize(), m_colWidths); }
1240 wxGridSizesInfo GetRowSizes() const
1241 { return wxGridSizesInfo(GetDefaultRowSize(), m_rowHeights); }
1242
1243 void SetColSizes(const wxGridSizesInfo& sizeInfo);
1244 void SetRowSizes(const wxGridSizesInfo& sizeInfo);
1245
009c7216
VZ
1246
1247 // ------- columns (only, for now) reordering
43947979 1248
cd4f6f5f
VZ
1249 // columns index <-> positions mapping: by default, the position of the
1250 // column is the same as its index, but the columns can also be reordered
1251 // (either by calling SetColPos() explicitly or by the user dragging the
1252 // columns around) in which case their indices don't correspond to their
1253 // positions on display any longer
1254 //
1255 // internally we always work with indices except for the functions which
1256 // have "Pos" in their names (and which work with columns, not pixels) and
1257 // only the display and hit testing code really cares about display
1258 // positions at all
1259
31ec8b4e
VZ
1260 // set the positions of all columns at once (this method uses the same
1261 // conventions as wxHeaderCtrl::SetColumnsOrder() for the order array)
1262 void SetColumnsOrder(const wxArrayInt& order);
1263
cd4f6f5f
VZ
1264 // return the column index corresponding to the given (valid) position
1265 int GetColAt(int pos) const
d4175745 1266 {
cd4f6f5f 1267 return m_colAt.empty() ? pos : m_colAt[pos];
d4175745
VZ
1268 }
1269
cd4f6f5f
VZ
1270 // reorder the columns so that the column with the given index is now shown
1271 // as the position pos
1272 void SetColPos(int idx, int pos);
d4175745 1273
cd4f6f5f
VZ
1274 // return the position at which the column with the given index is
1275 // displayed: notice that this is a slow operation as we don't maintain the
1276 // reverse mapping currently
1277 int GetColPos(int idx) const
d4175745
VZ
1278 {
1279 if ( m_colAt.IsEmpty() )
cd4f6f5f
VZ
1280 return idx;
1281
1282 for ( int i = 0; i < m_numCols; i++ )
d4175745 1283 {
cd4f6f5f
VZ
1284 if ( m_colAt[i] == idx )
1285 return i;
d4175745
VZ
1286 }
1287
cd4f6f5f
VZ
1288 wxFAIL_MSG( "invalid column index" );
1289
1290 return wxNOT_FOUND;
d4175745
VZ
1291 }
1292
009c7216
VZ
1293 // reset the columns positions to the default order
1294 void ResetColPos();
cd4f6f5f
VZ
1295
1296
af547d51 1297 // automatically size the column or row to fit to its contents, if
ca65c044 1298 // setAsMin is true, this optimal width will also be set as minimal width
af547d51 1299 // for this column
ca65c044 1300 void AutoSizeColumn( int col, bool setAsMin = true )
733f486a 1301 { AutoSizeColOrRow(col, setAsMin, wxGRID_COLUMN); }
ca65c044 1302 void AutoSizeRow( int row, bool setAsMin = true )
733f486a 1303 { AutoSizeColOrRow(row, setAsMin, wxGRID_ROW); }
65e4e78e
VZ
1304
1305 // auto size all columns (very ineffective for big grids!)
ca65c044
WS
1306 void AutoSizeColumns( bool setAsMin = true )
1307 { (void)SetOrCalcColumnSizes(false, setAsMin); }
65e4e78e 1308
ca65c044
WS
1309 void AutoSizeRows( bool setAsMin = true )
1310 { (void)SetOrCalcRowSizes(false, setAsMin); }
57c086ef
VZ
1311
1312 // auto size the grid, that is make the columns/rows of the "right" size
1313 // and also set the grid size to just fit its contents
1314 void AutoSize();
1315
733f486a
VZ
1316 // Note for both AutoSizeRowLabelSize and AutoSizeColLabelSize:
1317 // If col equals to wxGRID_AUTOSIZE value then function autosizes labels column
1318 // instead of data column. Note that this operation may be slow for large
1319 // tables.
d43851f7
JS
1320 // autosize row height depending on label text
1321 void AutoSizeRowLabelSize( int row );
1322
1323 // autosize column width depending on label text
1324 void AutoSizeColLabelSize( int col );
1325
43947979
VZ
1326 // column won't be resized to be lesser width - this must be called during
1327 // the grid creation because it won't resize the column if it's already
1328 // narrower than the minimal width
1329 void SetColMinimalWidth( int col, int width );
af547d51 1330 void SetRowMinimalHeight( int row, int width );
43947979 1331
b8d24d4e
RG
1332 /* These members can be used to query and modify the minimal
1333 * acceptable size of grid rows and columns. Call this function in
1334 * your code which creates the grid if you want to display cells
1335 * with a size smaller than the default acceptable minimum size.
1336 * Like the members SetColMinimalWidth and SetRowMinimalWidth,
1337 * the existing rows or columns will not be checked/resized.
1338 */
1339 void SetColMinimalAcceptableWidth( int width );
1340 void SetRowMinimalAcceptableHeight( int width );
1341 int GetColMinimalAcceptableWidth() const;
1342 int GetRowMinimalAcceptableHeight() const;
1343
f85afd4e
MB
1344 void SetDefaultCellBackgroundColour( const wxColour& );
1345 void SetCellBackgroundColour( int row, int col, const wxColour& );
1346 void SetDefaultCellTextColour( const wxColour& );
8fb66724 1347
f85afd4e 1348 void SetCellTextColour( int row, int col, const wxColour& );
f85afd4e
MB
1349 void SetDefaultCellFont( const wxFont& );
1350 void SetCellFont( int row, int col, const wxFont& );
1351 void SetDefaultCellAlignment( int horiz, int vert );
1352 void SetCellAlignment( int row, int col, int horiz, int vert );
27f35b66
SN
1353 void SetDefaultCellOverflow( bool allow );
1354 void SetCellOverflow( int row, int col, bool allow );
1355 void SetCellSize( int row, int col, int num_rows, int num_cols );
f85afd4e 1356
ab79958a 1357 // takes ownership of the pointer
2796cce3 1358 void SetDefaultRenderer(wxGridCellRenderer *renderer);
ab79958a 1359 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
2796cce3 1360 wxGridCellRenderer *GetDefaultRenderer() const;
ef316e23 1361 wxGridCellRenderer* GetCellRenderer(int row, int col) const;
2796cce3 1362
283b7808 1363 // takes ownership of the pointer
0ba143c9 1364 void SetDefaultEditor(wxGridCellEditor *editor);
9b4aede2 1365 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
0ba143c9 1366 wxGridCellEditor *GetDefaultEditor() const;
ef316e23 1367 wxGridCellEditor* GetCellEditor(int row, int col) const;
9b4aede2 1368
60a67569 1369
f2d76237 1370
f85afd4e
MB
1371 // ------ cell value accessors
1372 //
ef316e23 1373 wxString GetCellValue( int row, int col ) const
f85afd4e
MB
1374 {
1375 if ( m_table )
1376 {
1377 return m_table->GetValue( row, col );
1378 }
1379 else
1380 {
1381 return wxEmptyString;
1382 }
1383 }
1384
ef316e23 1385 wxString GetCellValue( const wxGridCellCoords& coords ) const
f85afd4e 1386 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
60ff3b99 1387
f85afd4e
MB
1388 void SetCellValue( int row, int col, const wxString& s );
1389 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1390 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
f85afd4e 1391
ca65c044 1392 // returns true if the cell can't be edited
283b7808 1393 bool IsReadOnly(int row, int col) const;
60ff3b99 1394
283b7808 1395 // make the cell editable/readonly
ca65c044 1396 void SetReadOnly(int row, int col, bool isReadOnly = true);
f85afd4e 1397
aa5b8857 1398 // ------ select blocks of cells
f85afd4e 1399 //
ca65c044
WS
1400 void SelectRow( int row, bool addToSelected = false );
1401 void SelectCol( int col, bool addToSelected = false );
60ff3b99 1402
c9097836 1403 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
ca65c044 1404 bool addToSelected = false );
f85afd4e
MB
1405
1406 void SelectBlock( const wxGridCellCoords& topLeft,
c9097836 1407 const wxGridCellCoords& bottomRight,
ca65c044 1408 bool addToSelected = false )
f85afd4e 1409 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
c9097836
MB
1410 bottomRight.GetRow(), bottomRight.GetCol(),
1411 addToSelected ); }
f85afd4e
MB
1412
1413 void SelectAll();
60ff3b99 1414
ef316e23 1415 bool IsSelection() const;
f85afd4e 1416
aa5b8857 1417 // ------ deselect blocks or cells
f7b4b343
VZ
1418 //
1419 void DeselectRow( int row );
1420 void DeselectCol( int col );
1421 void DeselectCell( int row, int col );
1422
f85afd4e
MB
1423 void ClearSelection();
1424
84035150 1425 bool IsInSelection( int row, int col ) const;
f85afd4e 1426
84035150 1427 bool IsInSelection( const wxGridCellCoords& coords ) const
f85afd4e
MB
1428 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
1429
aa5b8857
SN
1430 wxGridCellCoordsArray GetSelectedCells() const;
1431 wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1432 wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1433 wxArrayInt GetSelectedRows() const;
1434 wxArrayInt GetSelectedCols() const;
c3baf426
SN
1435
1436 // This function returns the rectangle that encloses the block of cells
1437 // limited by TopLeft and BottomRight cell in device coords and clipped
1438 // to the client size of the grid window.
1439 //
58dd5b3b 1440 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
ef316e23 1441 const wxGridCellCoords & bottomRight ) const;
c3baf426 1442
2796cce3
RD
1443 // Access or update the selection fore/back colours
1444 wxColour GetSelectionBackground() const
1445 { return m_selectionBackground; }
1446 wxColour GetSelectionForeground() const
1447 { return m_selectionForeground; }
1448
1449 void SetSelectionBackground(const wxColour& c) { m_selectionBackground = c; }
1450 void SetSelectionForeground(const wxColour& c) { m_selectionForeground = c; }
1451
1452
f2d76237
RD
1453 // Methods for a registry for mapping data types to Renderers/Editors
1454 void RegisterDataType(const wxString& typeName,
1455 wxGridCellRenderer* renderer,
1456 wxGridCellEditor* editor);
73145b0e
JS
1457 // DJC MAPTEK
1458 virtual wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
99306db2
VZ
1459 wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1460 { return GetDefaultEditorForCell(c.GetRow(), c.GetCol()); }
73145b0e
JS
1461 virtual wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1462 virtual wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1463 virtual wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
f2d76237 1464
266e8367
VZ
1465 // grid may occupy more space than needed for its rows/columns, this
1466 // function allows to set how big this extra space is
1467 void SetMargins(int extraWidth, int extraHeight)
1468 {
1469 m_extraWidth = extraWidth;
1470 m_extraHeight = extraHeight;
b8125adf
VZ
1471
1472 CalcDimensions();
266e8367 1473 }
f85afd4e 1474
d2520c85 1475 // Accessors for component windows
ef316e23
VZ
1476 wxWindow* GetGridWindow() const { return (wxWindow*)m_gridWin; }
1477 wxWindow* GetGridRowLabelWindow() const { return (wxWindow*)m_rowLabelWin; }
ad805b9e 1478 wxWindow* GetGridColLabelWindow() const { return m_colWindow; }
ef316e23 1479 wxWindow* GetGridCornerLabelWindow() const { return (wxWindow*)m_cornerLabelWin; }
d2520c85 1480
3039ade9
VZ
1481 // This one can only be called if we are using the native header window
1482 wxHeaderCtrl *GetGridColHeader() const
1483 {
1484 wxASSERT_MSG( m_useNativeHeader, "no column header window" );
1485
1486 // static_cast<> doesn't work without the full class declaration in
1487 // view and we prefer to avoid adding more compile-time dependencies
1488 // even at the cost of using reinterpret_cast<>
1489 return reinterpret_cast<wxHeaderCtrl *>(m_colWindow);
1490 }
1491
608754c4
JS
1492 // Allow adjustment of scroll increment. The default is (15, 15).
1493 void SetScrollLineX(int x) { m_scrollLineX = x; }
1494 void SetScrollLineY(int y) { m_scrollLineY = y; }
1495 int GetScrollLineX() const { return m_scrollLineX; }
1496 int GetScrollLineY() const { return m_scrollLineY; }
1497
1edce33f
VZ
1498 // ------- drag and drop
1499#if wxUSE_DRAG_AND_DROP
1500 virtual void SetDropTarget(wxDropTarget *dropTarget);
1501#endif // wxUSE_DRAG_AND_DROP
bf646121 1502
bf2c8b31 1503
11393d29
VZ
1504 // ------- sorting support
1505
1506 // wxGrid doesn't support sorting on its own but it can indicate the sort
1507 // order in the column header (currently only if native header control is
1508 // used though)
1509
1510 // return the column currently displaying the sort indicator or wxNOT_FOUND
1511 // if none
1512 int GetSortingColumn() const { return m_sortCol; }
1513
1514 // return true if this column is currently used for sorting
1515 bool IsSortingBy(int col) const { return GetSortingColumn() == col; }
1516
1517 // return the current sorting order (on GetSortingColumn()): true for
1518 // ascending sort and false for descending; it doesn't make sense to call
1519 // it if GetSortingColumn() returns wxNOT_FOUND
1520 bool IsSortOrderAscending() const { return m_sortIsAscending; }
1521
1522 // set the sorting column (or unsets any existing one if wxNOT_FOUND) and
1523 // the order in which to sort
1524 void SetSortingColumn(int col, bool ascending = true);
1525
1526 // unset any existing sorting column
1527 void UnsetSortingColumn() { SetSortingColumn(wxNOT_FOUND); }
1528
bf2c8b31 1529#ifdef WXWIN_COMPATIBILITY_2_8
f85afd4e
MB
1530 // ------ For compatibility with previous wxGrid only...
1531 //
1532 // ************************************************
1533 // ** Don't use these in new code because they **
1534 // ** are liable to disappear in a future **
1535 // ** revision **
1536 // ************************************************
1537 //
1538
1539 wxGrid( wxWindow *parent,
422d0ff0 1540 int x, int y, int w = wxDefaultCoord, int h = wxDefaultCoord,
ebd773c6 1541 long style = wxWANTS_CHARS,
f85afd4e 1542 const wxString& name = wxPanelNameStr )
ad805b9e
VZ
1543 {
1544 Init();
1545 Create(parent, wxID_ANY, wxPoint(x, y), wxSize(w, h), style, name);
1546 }
f85afd4e
MB
1547
1548 void SetCellValue( const wxString& val, int row, int col )
1549 { SetCellValue( row, col, val ); }
60ff3b99 1550
f85afd4e
MB
1551 void UpdateDimensions()
1552 { CalcDimensions(); }
1553
ef316e23
VZ
1554 int GetRows() const { return GetNumberRows(); }
1555 int GetCols() const { return GetNumberCols(); }
1556 int GetCursorRow() const { return GetGridCursorRow(); }
1557 int GetCursorColumn() const { return GetGridCursorCol(); }
60ff3b99 1558
ef316e23
VZ
1559 int GetScrollPosX() const { return 0; }
1560 int GetScrollPosY() const { return 0; }
60ff3b99 1561
aa5e1f75
SN
1562 void SetScrollX( int WXUNUSED(x) ) { }
1563 void SetScrollY( int WXUNUSED(y) ) { }
f85afd4e
MB
1564
1565 void SetColumnWidth( int col, int width )
1566 { SetColSize( col, width ); }
60ff3b99 1567
ef316e23 1568 int GetColumnWidth( int col ) const
f85afd4e 1569 { return GetColSize( col ); }
60ff3b99 1570
f85afd4e
MB
1571 void SetRowHeight( int row, int height )
1572 { SetRowSize( row, height ); }
60ff3b99 1573
7c1cb261 1574 // GetRowHeight() is below
60ff3b99 1575
ef316e23 1576 int GetViewHeight() const // returned num whole rows visible
2d66e025 1577 { return 0; }
60ff3b99 1578
ef316e23 1579 int GetViewWidth() const // returned num whole cols visible
2d66e025 1580 { return 0; }
f85afd4e
MB
1581
1582 void SetLabelSize( int orientation, int sz )
1583 {
1584 if ( orientation == wxHORIZONTAL )
1585 SetColLabelSize( sz );
1586 else
1587 SetRowLabelSize( sz );
1588 }
1589
ef316e23 1590 int GetLabelSize( int orientation ) const
f85afd4e
MB
1591 {
1592 if ( orientation == wxHORIZONTAL )
1593 return GetColLabelSize();
1594 else
1595 return GetRowLabelSize();
1596 }
1597
1598 void SetLabelAlignment( int orientation, int align )
1599 {
1600 if ( orientation == wxHORIZONTAL )
1601 SetColLabelAlignment( align, -1 );
1602 else
1603 SetRowLabelAlignment( align, -1 );
1604 }
1605
ef316e23 1606 int GetLabelAlignment( int orientation, int WXUNUSED(align) ) const
f85afd4e
MB
1607 {
1608 int h, v;
1609 if ( orientation == wxHORIZONTAL )
1610 {
1611 GetColLabelAlignment( &h, &v );
1612 return h;
1613 }
1614 else
1615 {
1616 GetRowLabelAlignment( &h, &v );
1617 return h;
1618 }
1619 }
1620
1621 void SetLabelValue( int orientation, const wxString& val, int pos )
1622 {
1623 if ( orientation == wxHORIZONTAL )
1624 SetColLabelValue( pos, val );
1625 else
1626 SetRowLabelValue( pos, val );
1627 }
60ff3b99 1628
ef316e23 1629 wxString GetLabelValue( int orientation, int pos) const
f85afd4e
MB
1630 {
1631 if ( orientation == wxHORIZONTAL )
1632 return GetColLabelValue( pos );
1633 else
1634 return GetRowLabelValue( pos );
1635 }
1636
60ff3b99 1637 wxFont GetCellTextFont() const
2796cce3 1638 { return m_defaultCellAttr->GetFont(); }
60ff3b99 1639
af111fc3 1640 wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
2796cce3 1641 { return m_defaultCellAttr->GetFont(); }
60ff3b99 1642
f85afd4e
MB
1643 void SetCellTextFont(const wxFont& fnt)
1644 { SetDefaultCellFont( fnt ); }
60ff3b99 1645
f85afd4e
MB
1646 void SetCellTextFont(const wxFont& fnt, int row, int col)
1647 { SetCellFont( row, col, fnt ); }
60ff3b99 1648
f85afd4e
MB
1649 void SetCellTextColour(const wxColour& val, int row, int col)
1650 { SetCellTextColour( row, col, val ); }
60ff3b99 1651
f85afd4e
MB
1652 void SetCellTextColour(const wxColour& col)
1653 { SetDefaultCellTextColour( col ); }
60ff3b99 1654
f85afd4e
MB
1655 void SetCellBackgroundColour(const wxColour& col)
1656 { SetDefaultCellBackgroundColour( col ); }
60ff3b99 1657
f85afd4e
MB
1658 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
1659 { SetCellBackgroundColour( row, col, colour ); }
60ff3b99 1660
ef316e23 1661 bool GetEditable() const { return IsEditable(); }
ca65c044 1662 void SetEditable( bool edit = true ) { EnableEditing( edit ); }
ef316e23 1663 bool GetEditInPlace() const { return IsCellEditControlEnabled(); }
8fb66724 1664
ca65c044 1665 void SetEditInPlace(bool WXUNUSED(edit) = true) { }
f85afd4e 1666
60a67569 1667 void SetCellAlignment( int align, int row, int col)
4c7277db 1668 { SetCellAlignment(row, col, align, wxALIGN_CENTER); }
60a67569
JS
1669 void SetCellAlignment( int WXUNUSED(align) ) {}
1670 void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
1671 { }
1672 void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
6fc0f38f 1673 wxPen& GetDividerPen() const;
60a67569 1674 void OnActivate(bool WXUNUSED(active)) {}
60ff3b99 1675
f85afd4e
MB
1676 // ******** End of compatibility functions **********
1677
2d66e025
MB
1678
1679
f85afd4e 1680 // ------ control IDs
2d66e025 1681 enum { wxGRID_CELLCTRL = 2000,
f85afd4e
MB
1682 wxGRID_TOPCTRL };
1683
1684 // ------ control types
2d66e025 1685 enum { wxGRID_TEXTCTRL = 2100,
f85afd4e
MB
1686 wxGRID_CHECKBOX,
1687 wxGRID_CHOICE,
1688 wxGRID_COMBOBOX };
82edfbe7
VZ
1689
1690 wxDEPRECATED_INLINE(bool CanDragRowSize() const, return m_canDragRowSize; )
1691 wxDEPRECATED_INLINE(bool CanDragColSize() const, return m_canDragColSize; )
bf2c8b31
VZ
1692#endif // WXWIN_COMPATIBILITY_2_8
1693
f85afd4e 1694
bf2c8b31
VZ
1695 // override some base class functions
1696 virtual bool Enable(bool enable = true);
1697 virtual wxWindow *GetMainWindowOfCompositeControl()
1698 { return (wxWindow*)m_gridWin; }
266e8367
VZ
1699 virtual void Fit();
1700
86033c4b
VZ
1701 // implementation only
1702 void CancelMouseCapture();
1703
60ff3b99 1704protected:
266e8367
VZ
1705 virtual wxSize DoGetBestSize() const;
1706
60ff3b99
VZ
1707 bool m_created;
1708
1709 wxGridWindow *m_gridWin;
60ff3b99 1710 wxGridCornerLabelWindow *m_cornerLabelWin;
ad805b9e
VZ
1711 wxGridRowLabelWindow *m_rowLabelWin;
1712
1713 // the real type of the column window depends on m_useNativeHeader value:
1714 // if it is true, its dynamic type is wxHeaderCtrl, otherwise it is
1715 // wxGridColLabelWindow, use accessors below when the real type matters
1716 wxWindow *m_colWindow;
1717
ad805b9e
VZ
1718 wxGridColLabelWindow *GetColLabelWindow() const
1719 {
1720 wxASSERT_MSG( !m_useNativeHeader, "no column label window" );
1721
1722 return reinterpret_cast<wxGridColLabelWindow *>(m_colWindow);
1723 }
60ff3b99 1724
60ff3b99 1725 wxGridTableBase *m_table;
2796cce3 1726 bool m_ownTable;
60ff3b99 1727
60ff3b99
VZ
1728 int m_numRows;
1729 int m_numCols;
1730
1731 wxGridCellCoords m_currentCellCoords;
1732
8a3e536c
VZ
1733 // the corners of the block being currently selected or wxGridNoCellCoords
1734 wxGridCellCoords m_selectedBlockTopLeft;
1735 wxGridCellCoords m_selectedBlockBottomRight;
1736
1737 // when selecting blocks of cells (either from the keyboard using Shift
1738 // with cursor keys, or by dragging the mouse), the selection is anchored
1739 // at m_currentCellCoords which defines one of the corners of the rectangle
1740 // being selected -- and this variable defines the other corner, i.e. it's
1741 // either m_selectedBlockTopLeft or m_selectedBlockBottomRight depending on
1742 // which of them is not m_currentCellCoords
1743 //
1744 // if no block selection is in process, it is set to wxGridNoCellCoords
1745 wxGridCellCoords m_selectedBlockCorner;
1746
b5808881 1747 wxGridSelection *m_selection;
8a3e536c 1748
2796cce3
RD
1749 wxColour m_selectionBackground;
1750 wxColour m_selectionForeground;
60ff3b99 1751
7c1cb261
VZ
1752 // NB: *never* access m_row/col arrays directly because they are created
1753 // on demand, *always* use accessor functions instead!
1754
1755 // init the m_rowHeights/Bottoms arrays with default values
1756 void InitRowHeights();
1757
60ff3b99 1758 int m_defaultRowHeight;
b8d24d4e 1759 int m_minAcceptableRowHeight;
60ff3b99
VZ
1760 wxArrayInt m_rowHeights;
1761 wxArrayInt m_rowBottoms;
1762
7c1cb261
VZ
1763 // init the m_colWidths/Rights arrays
1764 void InitColWidths();
1765
60ff3b99 1766 int m_defaultColWidth;
b8d24d4e 1767 int m_minAcceptableColWidth;
60ff3b99
VZ
1768 wxArrayInt m_colWidths;
1769 wxArrayInt m_colRights;
bf2c8b31 1770
11393d29
VZ
1771 int m_sortCol;
1772 bool m_sortIsAscending;
1773
ad805b9e
VZ
1774 bool m_useNativeHeader,
1775 m_nativeColumnLabels;
7c1cb261
VZ
1776
1777 // get the col/row coords
1778 int GetColWidth(int col) const;
1779 int GetColLeft(int col) const;
1780 int GetColRight(int col) const;
1781
1782 // this function must be public for compatibility...
1783public:
1784 int GetRowHeight(int row) const;
1785protected:
1786
1787 int GetRowTop(int row) const;
1788 int GetRowBottom(int row) const;
1789
60ff3b99
VZ
1790 int m_rowLabelWidth;
1791 int m_colLabelHeight;
1792
266e8367
VZ
1793 // the size of the margin left to the right and bottom of the cell area
1794 int m_extraWidth,
1795 m_extraHeight;
1796
60ff3b99
VZ
1797 wxColour m_labelBackgroundColour;
1798 wxColour m_labelTextColour;
1799 wxFont m_labelFont;
1800
1801 int m_rowLabelHorizAlign;
1802 int m_rowLabelVertAlign;
1803 int m_colLabelHorizAlign;
1804 int m_colLabelVertAlign;
d43851f7 1805 int m_colLabelTextOrientation;
60ff3b99
VZ
1806
1807 bool m_defaultRowLabelValues;
1808 bool m_defaultColLabelValues;
1809
1810 wxColour m_gridLineColour;
1811 bool m_gridLinesEnabled;
9f7aee01
VZ
1812 bool m_gridLinesClipHorz,
1813 m_gridLinesClipVert;
f6bcfd97 1814 wxColour m_cellHighlightColour;
d2520c85
RD
1815 int m_cellHighlightPenWidth;
1816 int m_cellHighlightROPenWidth;
1817
60ff3b99 1818
266e8367 1819 // common part of AutoSizeColumn/Row() and GetBestSize()
ca65c044
WS
1820 int SetOrCalcColumnSizes(bool calcOnly, bool setAsMin = true);
1821 int SetOrCalcRowSizes(bool calcOnly, bool setAsMin = true);
266e8367 1822
af547d51 1823 // common part of AutoSizeColumn/Row()
733f486a
VZ
1824 void AutoSizeColOrRow(int n, bool setAsMin, wxGridDirection direction);
1825
1826 // Calculate the minimum acceptable size for labels area
1827 wxCoord CalcColOrRowLabelAreaMinSize(wxGridDirection direction);
af547d51 1828
43947979
VZ
1829 // if a column has a minimal width, it will be the value for it in this
1830 // hash table
ba8c1601
MB
1831 wxLongToLongHashMap m_colMinWidths,
1832 m_rowMinHeights;
43947979 1833
af547d51
VZ
1834 // get the minimal width of the given column/row
1835 int GetColMinimalWidth(int col) const;
1836 int GetRowMinimalHeight(int col) const;
b99be8fb
VZ
1837
1838 // do we have some place to store attributes in?
ef316e23 1839 bool CanHaveAttributes() const;
60ff3b99 1840
0a976765
VZ
1841 // cell attribute cache (currently we only cache 1, may be will do
1842 // more/better later)
1843 struct CachedAttr
1844 {
1845 int row, col;
1846 wxGridCellAttr *attr;
1847 } m_attrCache;
1848
1849 // invalidates the attribute cache
1850 void ClearAttrCache();
1851
1852 // adds an attribute to cache
1853 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1854
ca65c044 1855 // looks for an attr in cache, returns true if found
0a976765
VZ
1856 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1857
1858 // looks for the attr in cache, if not found asks the table and caches the
1859 // result
2e9a6788 1860 wxGridCellAttr *GetCellAttr(int row, int col) const;
ef316e23 1861 wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords ) const
2c9a89e0 1862 { return GetCellAttr( coords.GetRow(), coords.GetCol() ); }
2e9a6788 1863
2796cce3
RD
1864 // the default cell attr object for cells that don't have their own
1865 wxGridCellAttr* m_defaultCellAttr;
1866
1867
60ff3b99
VZ
1868 bool m_inOnKeyDown;
1869 int m_batchCount;
1870
f2d76237
RD
1871
1872 wxGridTypeRegistry* m_typeRegistry;
1873
e2b42eeb
VZ
1874 enum CursorMode
1875 {
1876 WXGRID_CURSOR_SELECT_CELL,
1877 WXGRID_CURSOR_RESIZE_ROW,
1878 WXGRID_CURSOR_RESIZE_COL,
1879 WXGRID_CURSOR_SELECT_ROW,
d4175745
VZ
1880 WXGRID_CURSOR_SELECT_COL,
1881 WXGRID_CURSOR_MOVE_COL
60ff3b99
VZ
1882 };
1883
e2b42eeb 1884 // this method not only sets m_cursorMode but also sets the correct cursor
ca65c044 1885 // for the given mode and, if captureMouse is not false releases the mouse
e2b42eeb
VZ
1886 // if it was captured and captures it if it must be captured
1887 //
1888 // for this to work, you should always use it and not set m_cursorMode
1889 // directly!
1890 void ChangeCursorMode(CursorMode mode,
8a3e536c 1891 wxWindow *win = NULL,
ca65c044 1892 bool captureMouse = true);
e2b42eeb
VZ
1893
1894 wxWindow *m_winCapture; // the window which captured the mouse
8a3e536c
VZ
1895
1896 // this variable is used not for finding the correct current cursor but
1897 // mainly for finding out what is going to happen if the mouse starts being
1898 // dragged right now
1899 //
1900 // by default it is WXGRID_CURSOR_SELECT_CELL meaning that nothing else is
1901 // going on, and it is set to one of RESIZE/SELECT/MOVE values while the
1902 // corresponding operation will be started if the user starts dragging the
1903 // mouse from the current position
e2b42eeb
VZ
1904 CursorMode m_cursorMode;
1905
8a3e536c 1906
d4175745
VZ
1907 //Column positions
1908 wxArrayInt m_colAt;
d4175745 1909
6e8524b1
MB
1910 bool m_canDragRowSize;
1911 bool m_canDragColSize;
d4175745 1912 bool m_canDragColMove;
4cfa5de6 1913 bool m_canDragGridSize;
79dbea21 1914 bool m_canDragCell;
bec70262
VZ
1915
1916 // the last position (horizontal or vertical depending on whether the user
1917 // is resizing a column or a row) where a row or column separator line was
1918 // dragged by the user or -1 of there is no drag operation in progress
07296f0b
RD
1919 int m_dragLastPos;
1920 int m_dragRowOrCol;
bec70262 1921
8a3e536c
VZ
1922 // true if a drag operation is in progress; when this is true,
1923 // m_startDragPos is valid, i.e. not wxDefaultPosition
07296f0b 1924 bool m_isDragging;
8a3e536c
VZ
1925
1926 // the position (in physical coordinates) where the user started dragging
1927 // the mouse or wxDefaultPosition if mouse isn't being dragged
1928 //
1929 // notice that this can be != wxDefaultPosition while m_isDragging is still
1930 // false because we wait until the mouse is moved some distance away before
1931 // setting m_isDragging to true
07296f0b 1932 wxPoint m_startDragPos;
60ff3b99 1933
75ecbe45 1934 bool m_waitForSlowClick;
025562fe 1935
60ff3b99
VZ
1936 wxGridCellCoords m_selectionStart;
1937
1938 wxCursor m_rowResizeCursor;
1939 wxCursor m_colResizeCursor;
1940
b54ba671
VZ
1941 bool m_editable; // applies to whole grid
1942 bool m_cellEditCtrlEnabled; // is in-place edit currently shown?
60ff3b99 1943
608754c4
JS
1944 int m_scrollLineX; // X scroll increment
1945 int m_scrollLineY; // Y scroll increment
60ff3b99 1946
ad805b9e 1947 void Init(); // common part of all ctors
60ff3b99 1948 void Create();
ad805b9e 1949 void CreateColumnWindow();
60ff3b99 1950 void CalcDimensions();
7807d81c 1951 void CalcWindowSizes();
60ff3b99
VZ
1952 bool Redimension( wxGridTableMessage& );
1953
1954
8a3e536c
VZ
1955 // generate the appropriate grid event and return -1 if it was vetoed, 1 if
1956 // it was processed (but not vetoed) and 0 if it wasn't processed
1957 int SendEvent(const wxEventType evtType,
1958 int row, int col,
27bb2c8c 1959 const wxMouseEvent& e);
8a3e536c
VZ
1960 int SendEvent(const wxEventType evtType,
1961 const wxGridCellCoords& coords,
27bb2c8c 1962 const wxMouseEvent& e)
8a3e536c 1963 { return SendEvent(evtType, coords.GetRow(), coords.GetCol(), e); }
763163a8
VZ
1964 int SendEvent(const wxEventType evtType,
1965 int row, int col,
1966 const wxString& s = wxString());
1967 int SendEvent(const wxEventType evtType,
1968 const wxGridCellCoords& coords,
1969 const wxString& s = wxString())
1970 { return SendEvent(evtType, coords.GetRow(), coords.GetCol(), s); }
1971 int SendEvent(const wxEventType evtType, const wxString& s = wxString())
1972 { return SendEvent(evtType, m_currentCellCoords, s); }
60ff3b99 1973
27bb2c8c
VZ
1974 // send wxEVT_GRID_{ROW,COL}_SIZE
1975 void SendSizeEvent(wxEventType type,
1976 int row, int col,
1977 const wxMouseEvent& mouseEv);
1978
60ff3b99
VZ
1979 void OnPaint( wxPaintEvent& );
1980 void OnSize( wxSizeEvent& );
1981 void OnKeyDown( wxKeyEvent& );
f6bcfd97 1982 void OnKeyUp( wxKeyEvent& );
63e2147c 1983 void OnChar( wxKeyEvent& );
2796cce3 1984 void OnEraseBackground( wxEraseEvent& );
60ff3b99
VZ
1985
1986
8a3e536c
VZ
1987 bool SetCurrentCell( const wxGridCellCoords& coords );
1988 bool SetCurrentCell( int row, int col )
1989 { return SetCurrentCell( wxGridCellCoords(row, col) ); }
1990
60ff3b99 1991
8a3e536c
VZ
1992 // this function is called to extend the block being currently selected
1993 // from mouse and keyboard event handlers
1994 void UpdateBlockBeingSelected(int topRow, int leftCol,
1995 int bottomRow, int rightCol);
c9097836 1996
8a3e536c
VZ
1997 void UpdateBlockBeingSelected(const wxGridCellCoords& topLeft,
1998 const wxGridCellCoords& bottomRight)
1999 { UpdateBlockBeingSelected(topLeft.GetRow(), topLeft.GetCol(),
2000 bottomRight.GetRow(), bottomRight.GetCol()); }
60ff3b99
VZ
2001
2002 // ------ functions to get/send data (see also public functions)
2003 //
2004 bool GetModelValues();
2005 bool SetModelValues();
2006
b5dbe15d 2007 friend class WXDLLIMPEXP_FWD_ADV wxGridSelection;
bec70262
VZ
2008 friend class wxGridRowOperations;
2009 friend class wxGridColumnOperations;
60ff3b99 2010
8a3e536c
VZ
2011 // they call our private Process{{Corner,Col,Row}Label,GridCell}MouseEvent()
2012 friend class wxGridCornerLabelWindow;
2013 friend class wxGridColLabelWindow;
2014 friend class wxGridRowLabelWindow;
2015 friend class wxGridWindow;
2016
ad805b9e
VZ
2017 friend class wxGridHeaderCtrl;
2018
69367c56
VZ
2019private:
2020 // implement wxScrolledWindow method to return m_gridWin size
2021 virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size);
2022
9f7aee01
VZ
2023 // redraw the grid lines, should be called after changing their attributes
2024 void RedrawGridLines();
2025
2026 // common part of Clip{Horz,Vert}GridLines
2027 void DoClipGridLines(bool& var, bool clip);
2028
11393d29
VZ
2029 // update the sorting indicator shown in the specified column (whose index
2030 // must be valid)
2031 //
2032 // this will use GetSortingColumn() and IsSortOrderAscending() to determine
2033 // the sorting indicator to effectively show
2034 void UpdateColumnSortingIndicator(int col);
2035
4797b014
VZ
2036 // update the grid after changing the columns order (common part of
2037 // SetColPos() and ResetColPos())
2038 void RefreshAfterColPosChange();
009c7216 2039
9f7aee01 2040
cd4f6f5f
VZ
2041 // return the position (not index) of the column at the given logical pixel
2042 // position
2043 //
2044 // this always returns a valid position, even if the coordinate is out of
2045 // bounds (in which case first/last column is returned)
2046 int XToPos(int x) const;
2047
2048
8a3e536c
VZ
2049 // event handlers and their helpers
2050 // --------------------------------
2051
2052 // process mouse drag event in WXGRID_CURSOR_SELECT_CELL mode
2053 void DoGridCellDrag(wxMouseEvent& event,
2054 const wxGridCellCoords& coords,
2055 bool isFirstDrag);
2056
2057 // process row/column resizing drag event
2058 void DoGridLineDrag(wxMouseEvent& event, const wxGridOperations& oper);
2059
2060 // process mouse drag event in the grid window
2061 void DoGridDragEvent(wxMouseEvent& event, const wxGridCellCoords& coords);
2062
2063 // process different clicks on grid cells
2064 void DoGridCellLeftDown(wxMouseEvent& event,
2065 const wxGridCellCoords& coords,
2066 const wxPoint& pos);
2067 void DoGridCellLeftDClick(wxMouseEvent& event,
2068 const wxGridCellCoords& coords,
2069 const wxPoint& pos);
2070 void DoGridCellLeftUp(wxMouseEvent& event, const wxGridCellCoords& coords);
2071
2072 // process movement (but not dragging) event in the grid cell area
2073 void DoGridMouseMoveEvent(wxMouseEvent& event,
2074 const wxGridCellCoords& coords,
2075 const wxPoint& pos);
2076
2077 // process mouse events in the grid window
2078 void ProcessGridCellMouseEvent(wxMouseEvent& event);
2079
2080 // process mouse events in the row/column labels/corner windows
2081 void ProcessRowLabelMouseEvent(wxMouseEvent& event);
2082 void ProcessColLabelMouseEvent(wxMouseEvent& event);
2083 void ProcessCornerLabelMouseEvent(wxMouseEvent& event);
2084
11393d29
VZ
2085 void DoColHeaderClick(int col);
2086
ad805b9e
VZ
2087 void DoStartResizeCol(int col);
2088 void DoUpdateResizeCol(int x);
2089 void DoUpdateResizeColWidth(int w);
cd68daf5 2090 void DoStartMoveCol(int col);
ad805b9e 2091
27bb2c8c
VZ
2092 void DoEndDragResizeRow(const wxMouseEvent& event);
2093 void DoEndDragResizeCol(const wxMouseEvent& event);
cd68daf5 2094 void DoEndMoveCol(int pos);
8a3e536c 2095
bec70262
VZ
2096
2097 // common implementations of methods defined for both rows and columns
2098 void DeselectLine(int line, const wxGridOperations& oper);
27bb2c8c 2099 bool DoEndDragResizeLine(const wxGridOperations& oper);
cd4f6f5f
VZ
2100 int PosToLinePos(int pos, bool clipToMinMax,
2101 const wxGridOperations& oper) const;
2102 int PosToLine(int pos, bool clipToMinMax,
2103 const wxGridOperations& oper) const;
10a4531d
VZ
2104 int PosToEdgeOfLine(int pos, const wxGridOperations& oper) const;
2105
2106 bool DoMoveCursor(bool expandSelection,
2107 const wxGridDirectionOperations& diroper);
2108 bool DoMoveCursorByPage(const wxGridDirectionOperations& diroper);
2109 bool DoMoveCursorByBlock(bool expandSelection,
2110 const wxGridDirectionOperations& diroper);
2111 void AdvanceToNextNonEmpty(wxGridCellCoords& coords,
2112 const wxGridDirectionOperations& diroper);
2113
2114 // common part of {Insert,Delete}{Rows,Cols}
2115 bool DoModifyLines(bool (wxGridTableBase::*funcModify)(size_t, size_t),
2116 int pos, int num, bool updateLabels);
2117 // Append{Rows,Cols} is a bit different because of one less parameter
2118 bool DoAppendLines(bool (wxGridTableBase::*funcAppend)(size_t),
2119 int num, bool updateLabels);
bec70262 2120
82edfbe7 2121 // common part of Set{Col,Row}Sizes
574e1c5a
VZ
2122 void DoSetSizes(const wxGridSizesInfo& sizeInfo,
2123 const wxGridOperations& oper);
2124
82edfbe7
VZ
2125 // common part of Disable{Row,Col}Resize and CanDrag{Row,Col}Size
2126 void DoDisableLineResize(int line, wxGridFixedIndicesSet *& setFixed);
2127 bool DoCanResizeLine(int line, const wxGridFixedIndicesSet *setFixed) const;
2128
2129
2130
2131 // these sets contain the indices of fixed, i.e. non-resizable
2132 // interactively, grid rows or columns and are NULL if there are no fixed
2133 // elements (which is the default)
2134 wxGridFixedIndicesSet *m_setFixedRows,
2135 *m_setFixedCols;
2136
2d66e025 2137 DECLARE_DYNAMIC_CLASS( wxGrid )
f85afd4e 2138 DECLARE_EVENT_TABLE()
c0c133e1 2139 wxDECLARE_NO_COPY_CLASS(wxGrid);
f85afd4e
MB
2140};
2141
b62f94ff
VZ
2142// ----------------------------------------------------------------------------
2143// wxGridUpdateLocker prevents updates to a grid during its lifetime
2144// ----------------------------------------------------------------------------
2145
2146class WXDLLIMPEXP_ADV wxGridUpdateLocker
2147{
2148public:
2149 // if the pointer is NULL, Create() can be called later
2150 wxGridUpdateLocker(wxGrid *grid = NULL)
2151 {
2152 Init(grid);
2153 }
2154
2155 // can be called if ctor was used with a NULL pointer, must not be called
2156 // more than once
2157 void Create(wxGrid *grid)
2158 {
2159 wxASSERT_MSG( !m_grid, _T("shouldn't be called more than once") );
2160
2161 Init(grid);
2162 }
2163
2164 ~wxGridUpdateLocker()
2165 {
2166 if ( m_grid )
2167 m_grid->EndBatch();
2168 }
2169
2170private:
2171 void Init(wxGrid *grid)
2172 {
2173 m_grid = grid;
2174 if ( m_grid )
2175 m_grid->BeginBatch();
2176 }
2177
2178 wxGrid *m_grid;
2179
c0c133e1 2180 wxDECLARE_NO_COPY_CLASS(wxGridUpdateLocker);
b62f94ff
VZ
2181};
2182
43947979
VZ
2183// ----------------------------------------------------------------------------
2184// Grid event class and event types
2185// ----------------------------------------------------------------------------
f85afd4e 2186
8b5f6d9d
VZ
2187class WXDLLIMPEXP_ADV wxGridEvent : public wxNotifyEvent,
2188 public wxKeyboardState
f85afd4e 2189{
60ff3b99 2190public:
f85afd4e 2191 wxGridEvent()
8b5f6d9d
VZ
2192 : wxNotifyEvent()
2193 {
2194 Init(-1, -1, -1, -1, false);
2195 }
f85afd4e 2196
8b5f6d9d
VZ
2197 wxGridEvent(int id,
2198 wxEventType type,
2199 wxObject* obj,
2200 int row = -1, int col = -1,
2201 int x = -1, int y = -1,
2202 bool sel = true,
2203 const wxKeyboardState& kbd = wxKeyboardState())
2204 : wxNotifyEvent(type, id),
2205 wxKeyboardState(kbd)
2206 {
2207 Init(row, col, x, y, sel);
2208 SetEventObject(obj);
2209 }
2210
23318a53
FM
2211 // explicitly specifying inline allows gcc < 3.4 to
2212 // handle the deprecation attribute even in the constructor.
a05e6efe 2213 wxDEPRECATED_CONSTRUCTOR(
8b5f6d9d
VZ
2214 wxGridEvent(int id,
2215 wxEventType type,
2216 wxObject* obj,
2217 int row, int col,
2218 int x, int y,
2219 bool sel,
2220 bool control,
2221 bool shift = false, bool alt = false, bool meta = false));
f85afd4e
MB
2222
2223 virtual int GetRow() { return m_row; }
2224 virtual int GetCol() { return m_col; }
2225 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
5c8fc7c1 2226 bool Selecting() { return m_selecting; }
2d66e025 2227
e1f8ec29
RD
2228 virtual wxEvent *Clone() const { return new wxGridEvent(*this); }
2229
60ff3b99
VZ
2230protected:
2231 int m_row;
2232 int m_col;
f85afd4e
MB
2233 int m_x;
2234 int m_y;
5c8fc7c1 2235 bool m_selecting;
8b5f6d9d
VZ
2236
2237private:
2238 void Init(int row, int col, int x, int y, bool sel)
2239 {
2240 m_row = row;
2241 m_col = col;
2242 m_x = x;
2243 m_y = y;
2244 m_selecting = sel;
2245 }
60ff3b99 2246
e1f8ec29 2247 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEvent)
60ff3b99
VZ
2248};
2249
8b5f6d9d
VZ
2250class WXDLLIMPEXP_ADV wxGridSizeEvent : public wxNotifyEvent,
2251 public wxKeyboardState
60ff3b99
VZ
2252{
2253public:
f85afd4e 2254 wxGridSizeEvent()
8b5f6d9d
VZ
2255 : wxNotifyEvent()
2256 {
2257 Init(-1, -1, -1);
2258 }
2259
2260 wxGridSizeEvent(int id,
2261 wxEventType type,
2262 wxObject* obj,
2263 int rowOrCol = -1,
2264 int x = -1, int y = -1,
2265 const wxKeyboardState& kbd = wxKeyboardState())
2266 : wxNotifyEvent(type, id),
2267 wxKeyboardState(kbd)
2268 {
2269 Init(rowOrCol, x, y);
f85afd4e 2270
8b5f6d9d
VZ
2271 SetEventObject(obj);
2272 }
2273
a05e6efe 2274 wxDEPRECATED_CONSTRUCTOR(
8b5f6d9d
VZ
2275 wxGridSizeEvent(int id,
2276 wxEventType type,
2277 wxObject* obj,
2278 int rowOrCol,
2279 int x, int y,
2280 bool control,
2281 bool shift = false,
2282 bool alt = false,
2283 bool meta = false) );
f85afd4e
MB
2284
2285 int GetRowOrCol() { return m_rowOrCol; }
2286 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
733f486a 2287
e1f8ec29 2288 virtual wxEvent *Clone() const { return new wxGridSizeEvent(*this); }
2d66e025 2289
60ff3b99
VZ
2290protected:
2291 int m_rowOrCol;
2292 int m_x;
2293 int m_y;
8b5f6d9d
VZ
2294
2295private:
2296 void Init(int rowOrCol, int x, int y)
2297 {
2298 m_rowOrCol = rowOrCol;
2299 m_x = x;
2300 m_y = y;
2301 }
60ff3b99 2302
e1f8ec29 2303 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridSizeEvent)
f85afd4e
MB
2304};
2305
2306
8b5f6d9d
VZ
2307class WXDLLIMPEXP_ADV wxGridRangeSelectEvent : public wxNotifyEvent,
2308 public wxKeyboardState
f85afd4e 2309{
60ff3b99 2310public:
f85afd4e 2311 wxGridRangeSelectEvent()
60ff3b99 2312 : wxNotifyEvent()
8b5f6d9d
VZ
2313 {
2314 Init(wxGridNoCellCoords, wxGridNoCellCoords, false);
2315 }
f85afd4e 2316
8b5f6d9d
VZ
2317 wxGridRangeSelectEvent(int id,
2318 wxEventType type,
2319 wxObject* obj,
60ff3b99
VZ
2320 const wxGridCellCoords& topLeft,
2321 const wxGridCellCoords& bottomRight,
ca65c044 2322 bool sel = true,
8b5f6d9d
VZ
2323 const wxKeyboardState& kbd = wxKeyboardState())
2324 : wxNotifyEvent(type, id),
2325 wxKeyboardState(kbd)
2326 {
2327 Init(topLeft, bottomRight, sel);
2328
2329 SetEventObject(obj);
2330 }
2331
a05e6efe 2332 wxDEPRECATED_CONSTRUCTOR(
8b5f6d9d
VZ
2333 wxGridRangeSelectEvent(int id,
2334 wxEventType type,
2335 wxObject* obj,
2336 const wxGridCellCoords& topLeft,
2337 const wxGridCellCoords& bottomRight,
2338 bool sel,
2339 bool control,
2340 bool shift = false,
2341 bool alt = false,
2342 bool meta = false) );
f85afd4e
MB
2343
2344 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
2345 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
2346 int GetTopRow() { return m_topLeft.GetRow(); }
2347 int GetBottomRow() { return m_bottomRight.GetRow(); }
2348 int GetLeftCol() { return m_topLeft.GetCol(); }
2349 int GetRightCol() { return m_bottomRight.GetCol(); }
5c8fc7c1 2350 bool Selecting() { return m_selecting; }
733f486a 2351
e1f8ec29 2352 virtual wxEvent *Clone() const { return new wxGridRangeSelectEvent(*this); }
2d66e025 2353
60ff3b99 2354protected:
8b5f6d9d
VZ
2355 void Init(const wxGridCellCoords& topLeft,
2356 const wxGridCellCoords& bottomRight,
2357 bool selecting)
2358 {
2359 m_topLeft = topLeft;
2360 m_bottomRight = bottomRight;
2361 m_selecting = selecting;
2362 }
2363
60ff3b99
VZ
2364 wxGridCellCoords m_topLeft;
2365 wxGridCellCoords m_bottomRight;
5c8fc7c1 2366 bool m_selecting;
60ff3b99 2367
e1f8ec29 2368 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridRangeSelectEvent)
f85afd4e
MB
2369};
2370
bf7945ce 2371
8b5f6d9d
VZ
2372class WXDLLIMPEXP_ADV wxGridEditorCreatedEvent : public wxCommandEvent
2373{
bf7945ce
RD
2374public:
2375 wxGridEditorCreatedEvent()
2376 : wxCommandEvent()
2377 {
2378 m_row = 0;
2379 m_col = 0;
2380 m_ctrl = NULL;
2381 }
2382
2383 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2384 int row, int col, wxControl* ctrl);
2385
2386 int GetRow() { return m_row; }
2387 int GetCol() { return m_col; }
2388 wxControl* GetControl() { return m_ctrl; }
2389 void SetRow(int row) { m_row = row; }
2390 void SetCol(int col) { m_col = col; }
2391 void SetControl(wxControl* ctrl) { m_ctrl = ctrl; }
733f486a 2392
e1f8ec29 2393 virtual wxEvent *Clone() const { return new wxGridEditorCreatedEvent(*this); }
bf7945ce
RD
2394
2395private:
2396 int m_row;
2397 int m_col;
2398 wxControl* m_ctrl;
2399
e1f8ec29 2400 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEditorCreatedEvent)
bf7945ce
RD
2401};
2402
2403
9b11752c
VZ
2404wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_CLICK, wxGridEvent );
2405wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_CLICK, wxGridEvent );
2406wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_DCLICK, wxGridEvent );
2407wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_DCLICK, wxGridEvent );
2408wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_CLICK, wxGridEvent );
2409wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_CLICK, wxGridEvent );
2410wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_DCLICK, wxGridEvent );
2411wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_DCLICK, wxGridEvent );
2412wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_ROW_SIZE, wxGridSizeEvent );
2413wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_COL_SIZE, wxGridSizeEvent );
2414wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_RANGE_SELECT, wxGridRangeSelectEvent );
2415wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_CHANGING, wxGridEvent );
2416wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_CHANGED, wxGridEvent );
2417wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_SELECT_CELL, wxGridEvent );
2418wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_SHOWN, wxGridEvent );
2419wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_HIDDEN, wxGridEvent );
2420wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_CREATED, wxGridEditorCreatedEvent );
2421wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_BEGIN_DRAG, wxGridEvent );
2422wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_COL_MOVE, wxGridEvent );
2423wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_GRID_COL_SORT, wxGridEvent );
749692cc 2424
f85afd4e
MB
2425typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
2426typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
2427typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
bf7945ce 2428typedef void (wxEvtHandler::*wxGridEditorCreatedEventFunction)(wxGridEditorCreatedEvent&);
f85afd4e 2429
7fa03f04 2430#define wxGridEventHandler(func) \
3c778901 2431 wxEVENT_HANDLER_CAST(wxGridEventFunction, func)
7fa03f04
VZ
2432
2433#define wxGridSizeEventHandler(func) \
3c778901 2434 wxEVENT_HANDLER_CAST(wxGridSizeEventFunction, func)
7fa03f04
VZ
2435
2436#define wxGridRangeSelectEventHandler(func) \
3c778901 2437 wxEVENT_HANDLER_CAST(wxGridRangeSelectEventFunction, func)
7fa03f04
VZ
2438
2439#define wxGridEditorCreatedEventHandler(func) \
3c778901 2440 wxEVENT_HANDLER_CAST(wxGridEditorCreatedEventFunction, func)
7fa03f04
VZ
2441
2442#define wx__DECLARE_GRIDEVT(evt, id, fn) \
2443 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEventHandler(fn))
2444
2445#define wx__DECLARE_GRIDSIZEEVT(evt, id, fn) \
2446 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridSizeEventHandler(fn))
2447
2448#define wx__DECLARE_GRIDRANGESELEVT(evt, id, fn) \
2449 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridRangeSelectEventHandler(fn))
2450
2451#define wx__DECLARE_GRIDEDITOREVT(evt, id, fn) \
2452 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEditorCreatedEventHandler(fn))
2453
2454#define EVT_GRID_CMD_CELL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_CLICK, id, fn)
2455#define EVT_GRID_CMD_CELL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_CLICK, id, fn)
2456#define EVT_GRID_CMD_CELL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_DCLICK, id, fn)
2457#define EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_DCLICK, id, fn)
2458#define EVT_GRID_CMD_LABEL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_CLICK, id, fn)
2459#define EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_CLICK, id, fn)
2460#define EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_DCLICK, id, fn)
2461#define EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_DCLICK, id, fn)
2462#define EVT_GRID_CMD_ROW_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(ROW_SIZE, id, fn)
2463#define EVT_GRID_CMD_COL_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(COL_SIZE, id, fn)
5d984f5d 2464#define EVT_GRID_CMD_COL_MOVE(id, fn) wx__DECLARE_GRIDEVT(COL_MOVE, id, fn)
11393d29 2465#define EVT_GRID_CMD_COL_SORT(id, fn) wx__DECLARE_GRIDEVT(COL_SORT, id, fn)
7fa03f04 2466#define EVT_GRID_CMD_RANGE_SELECT(id, fn) wx__DECLARE_GRIDRANGESELEVT(RANGE_SELECT, id, fn)
763163a8
VZ
2467#define EVT_GRID_CMD_CELL_CHANGING(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGING, id, fn)
2468#define EVT_GRID_CMD_CELL_CHANGED(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGED, id, fn)
7fa03f04
VZ
2469#define EVT_GRID_CMD_SELECT_CELL(id, fn) wx__DECLARE_GRIDEVT(SELECT_CELL, id, fn)
2470#define EVT_GRID_CMD_EDITOR_SHOWN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_SHOWN, id, fn)
2471#define EVT_GRID_CMD_EDITOR_HIDDEN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_HIDDEN, id, fn)
2472#define EVT_GRID_CMD_EDITOR_CREATED(id, fn) wx__DECLARE_GRIDEDITOREVT(EDITOR_CREATED, id, fn)
2473#define EVT_GRID_CMD_CELL_BEGIN_DRAG(id, fn) wx__DECLARE_GRIDEVT(CELL_BEGIN_DRAG, id, fn)
2474
2475// same as above but for any id (exists mainly for backwards compatibility but
2476// then it's also true that you rarely have multiple grid in the same window)
2477#define EVT_GRID_CELL_LEFT_CLICK(fn) EVT_GRID_CMD_CELL_LEFT_CLICK(wxID_ANY, fn)
2478#define EVT_GRID_CELL_RIGHT_CLICK(fn) EVT_GRID_CMD_CELL_RIGHT_CLICK(wxID_ANY, fn)
2479#define EVT_GRID_CELL_LEFT_DCLICK(fn) EVT_GRID_CMD_CELL_LEFT_DCLICK(wxID_ANY, fn)
2480#define EVT_GRID_CELL_RIGHT_DCLICK(fn) EVT_GRID_CMD_CELL_RIGHT_DCLICK(wxID_ANY, fn)
2481#define EVT_GRID_LABEL_LEFT_CLICK(fn) EVT_GRID_CMD_LABEL_LEFT_CLICK(wxID_ANY, fn)
2482#define EVT_GRID_LABEL_RIGHT_CLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_CLICK(wxID_ANY, fn)
2483#define EVT_GRID_LABEL_LEFT_DCLICK(fn) EVT_GRID_CMD_LABEL_LEFT_DCLICK(wxID_ANY, fn)
2484#define EVT_GRID_LABEL_RIGHT_DCLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_DCLICK(wxID_ANY, fn)
2485#define EVT_GRID_ROW_SIZE(fn) EVT_GRID_CMD_ROW_SIZE(wxID_ANY, fn)
2486#define EVT_GRID_COL_SIZE(fn) EVT_GRID_CMD_COL_SIZE(wxID_ANY, fn)
4d5a1b0a 2487#define EVT_GRID_COL_MOVE(fn) EVT_GRID_CMD_COL_MOVE(wxID_ANY, fn)
11393d29 2488#define EVT_GRID_COL_SORT(fn) EVT_GRID_CMD_COL_SORT(wxID_ANY, fn)
7fa03f04 2489#define EVT_GRID_RANGE_SELECT(fn) EVT_GRID_CMD_RANGE_SELECT(wxID_ANY, fn)
763163a8
VZ
2490#define EVT_GRID_CELL_CHANGING(fn) EVT_GRID_CMD_CELL_CHANGING(wxID_ANY, fn)
2491#define EVT_GRID_CELL_CHANGED(fn) EVT_GRID_CMD_CELL_CHANGED(wxID_ANY, fn)
7fa03f04
VZ
2492#define EVT_GRID_SELECT_CELL(fn) EVT_GRID_CMD_SELECT_CELL(wxID_ANY, fn)
2493#define EVT_GRID_EDITOR_SHOWN(fn) EVT_GRID_CMD_EDITOR_SHOWN(wxID_ANY, fn)
2494#define EVT_GRID_EDITOR_HIDDEN(fn) EVT_GRID_CMD_EDITOR_HIDDEN(wxID_ANY, fn)
2495#define EVT_GRID_EDITOR_CREATED(fn) EVT_GRID_CMD_EDITOR_CREATED(wxID_ANY, fn)
2496#define EVT_GRID_CELL_BEGIN_DRAG(fn) EVT_GRID_CMD_CELL_BEGIN_DRAG(wxID_ANY, fn)
f85afd4e 2497
763163a8
VZ
2498// we used to have a single wxEVT_GRID_CELL_CHANGE event but it was split into
2499// wxEVT_GRID_CELL_CHANGING and CHANGED ones in wx 2.9.0, however the CHANGED
2500// is basically the same as the old CHANGE event so we keep the name for
2501// compatibility
2502#if WXWIN_COMPATIBILITY_2_8
2503 #define wxEVT_GRID_CELL_CHANGE wxEVT_GRID_CELL_CHANGED
2504
2505 #define EVT_GRID_CMD_CELL_CHANGE EVT_GRID_CMD_CELL_CHANGED
2506 #define EVT_GRID_CELL_CHANGE EVT_GRID_CELL_CHANGED
2507#endif // WXWIN_COMPATIBILITY_2_8
2508
f85afd4e
MB
2509#if 0 // TODO: implement these ? others ?
2510
77d4384e
RR
2511extern const int wxEVT_GRID_CREATE_CELL;
2512extern const int wxEVT_GRID_CHANGE_LABELS;
2513extern const int wxEVT_GRID_CHANGE_SEL_LABEL;
f85afd4e 2514
ca65c044
WS
2515#define EVT_GRID_CREATE_CELL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CREATE_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2516#define EVT_GRID_CHANGE_LABELS(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_LABELS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2517#define EVT_GRID_CHANGE_SEL_LABEL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_SEL_LABEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
f85afd4e
MB
2518
2519#endif
2520
df9fac6d
PC
2521#endif // wxUSE_GRID
2522#endif // _WX_GENERIC_GRID_H_