1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/grid.h
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by: Santiago Palacios
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_GRID_H_
13 #define _WX_GENERIC_GRID_H_
19 #include "wx/hashmap.h"
21 #include "wx/scrolwin.h"
23 // ----------------------------------------------------------------------------
25 // ----------------------------------------------------------------------------
27 extern WXDLLIMPEXP_DATA_ADV(const char) wxGridNameStr
[];
29 // Default parameters for wxGrid
31 #define WXGRID_DEFAULT_NUMBER_ROWS 10
32 #define WXGRID_DEFAULT_NUMBER_COLS 10
33 #if defined(__WXMSW__) || defined(__WXGTK20__)
34 #define WXGRID_DEFAULT_ROW_HEIGHT 25
36 #define WXGRID_DEFAULT_ROW_HEIGHT 30
38 #define WXGRID_DEFAULT_COL_WIDTH 80
39 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
40 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
41 #define WXGRID_LABEL_EDGE_ZONE 2
42 #define WXGRID_MIN_ROW_HEIGHT 15
43 #define WXGRID_MIN_COL_WIDTH 15
44 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
46 // type names for grid table values
47 #define wxGRID_VALUE_STRING wxT("string")
48 #define wxGRID_VALUE_BOOL wxT("bool")
49 #define wxGRID_VALUE_NUMBER wxT("long")
50 #define wxGRID_VALUE_FLOAT wxT("double")
51 #define wxGRID_VALUE_CHOICE wxT("choice")
53 #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
54 #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
56 // magic constant which tells (to some functions) to automatically calculate
57 // the appropriate size
58 #define wxGRID_AUTOSIZE (-1)
60 // many wxGrid methods work either with columns or rows, this enum is used for
61 // the parameter indicating which one should it be
68 // Flags used with wxGrid::Render() to select parts of the grid to draw.
69 enum wxGridRenderStyle
71 wxGRID_DRAW_ROWS_HEADER
= 0x001,
72 wxGRID_DRAW_COLS_HEADER
= 0x002,
73 wxGRID_DRAW_CELL_LINES
= 0x004,
74 wxGRID_DRAW_BOX_RECT
= 0x008,
75 wxGRID_DRAW_SELECTION
= 0x010,
76 wxGRID_DRAW_DEFAULT
= wxGRID_DRAW_ROWS_HEADER
|
77 wxGRID_DRAW_COLS_HEADER
|
78 wxGRID_DRAW_CELL_LINES
|
82 // ----------------------------------------------------------------------------
83 // forward declarations
84 // ----------------------------------------------------------------------------
86 class WXDLLIMPEXP_FWD_ADV wxGrid
;
87 class WXDLLIMPEXP_FWD_ADV wxGridCellAttr
;
88 class WXDLLIMPEXP_FWD_ADV wxGridCellAttrProviderData
;
89 class WXDLLIMPEXP_FWD_ADV wxGridColLabelWindow
;
90 class WXDLLIMPEXP_FWD_ADV wxGridCornerLabelWindow
;
91 class WXDLLIMPEXP_FWD_ADV wxGridRowLabelWindow
;
92 class WXDLLIMPEXP_FWD_ADV wxGridWindow
;
93 class WXDLLIMPEXP_FWD_ADV wxGridTypeRegistry
;
94 class WXDLLIMPEXP_FWD_ADV wxGridSelection
;
96 class WXDLLIMPEXP_FWD_CORE wxHeaderCtrl
;
97 class WXDLLIMPEXP_FWD_CORE wxCheckBox
;
98 class WXDLLIMPEXP_FWD_CORE wxComboBox
;
99 class WXDLLIMPEXP_FWD_CORE wxTextCtrl
;
101 class WXDLLIMPEXP_FWD_CORE wxSpinCtrl
;
104 class wxGridFixedIndicesSet
;
106 class wxGridOperations
;
107 class wxGridRowOperations
;
108 class wxGridColumnOperations
;
109 class wxGridDirectionOperations
;
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 #define wxSafeIncRef(p) if ( p ) (p)->IncRef()
117 #define wxSafeDecRef(p) if ( p ) (p)->DecRef()
119 // ----------------------------------------------------------------------------
120 // wxGridCellWorker: common base class for wxGridCellRenderer and
123 // NB: this is more an implementation convenience than a design issue, so this
124 // class is not documented and is not public at all
125 // ----------------------------------------------------------------------------
127 class WXDLLIMPEXP_ADV wxGridCellWorker
: public wxClientDataContainer
, public wxRefCounter
130 wxGridCellWorker() { }
132 // interpret renderer parameters: arbitrary string whose interpretation is
133 // left to the derived classes
134 virtual void SetParameters(const wxString
& params
);
137 // virtual dtor for any base class - private because only DecRef() can
139 virtual ~wxGridCellWorker();
142 // suppress the stupid gcc warning about the class having private dtor and
144 friend class wxGridCellWorkerDummyFriend
;
147 // ----------------------------------------------------------------------------
148 // wxGridCellRenderer: this class is responsible for actually drawing the cell
149 // in the grid. You may pass it to the wxGridCellAttr (below) to change the
150 // format of one given cell or to wxGrid::SetDefaultRenderer() to change the
151 // view of all cells. This is an ABC, you will normally use one of the
152 // predefined derived classes or derive your own class from it.
153 // ----------------------------------------------------------------------------
155 class WXDLLIMPEXP_ADV wxGridCellRenderer
: public wxGridCellWorker
158 // draw the given cell on the provided DC inside the given rectangle
159 // using the style specified by the attribute and the default or selected
160 // state corresponding to the isSelected value.
162 // this pure virtual function has a default implementation which will
163 // prepare the DC using the given attribute: it will draw the rectangle
164 // with the bg colour from attr and set the text colour and font
165 virtual void Draw(wxGrid
& grid
,
166 wxGridCellAttr
& attr
,
170 bool isSelected
) = 0;
172 // get the preferred size of the cell for its contents
173 virtual wxSize
GetBestSize(wxGrid
& grid
,
174 wxGridCellAttr
& attr
,
176 int row
, int col
) = 0;
178 // create a new object which is the copy of this one
179 virtual wxGridCellRenderer
*Clone() const = 0;
182 // ----------------------------------------------------------------------------
183 // wxGridCellEditor: This class is responsible for providing and manipulating
184 // the in-place edit controls for the grid. Instances of wxGridCellEditor
185 // (actually, instances of derived classes since it is an ABC) can be
186 // associated with the cell attributes for individual cells, rows, columns, or
187 // even for the entire grid.
188 // ----------------------------------------------------------------------------
190 class WXDLLIMPEXP_ADV wxGridCellEditor
: public wxGridCellWorker
195 bool IsCreated() const { return m_control
!= NULL
; }
196 wxControl
* GetControl() const { return m_control
; }
197 void SetControl(wxControl
* control
) { m_control
= control
; }
199 wxGridCellAttr
* GetCellAttr() const { return m_attr
; }
200 void SetCellAttr(wxGridCellAttr
* attr
) { m_attr
= attr
; }
202 // Creates the actual edit control
203 virtual void Create(wxWindow
* parent
,
205 wxEvtHandler
* evtHandler
) = 0;
207 // Size and position the edit control
208 virtual void SetSize(const wxRect
& rect
);
210 // Show or hide the edit control, use the specified attributes to set
211 // colours/fonts for it
212 virtual void Show(bool show
, wxGridCellAttr
*attr
= NULL
);
214 // Draws the part of the cell not occupied by the control: the base class
215 // version just fills it with background colour from the attribute
216 virtual void PaintBackground(wxDC
& dc
,
217 const wxRect
& rectCell
,
218 const wxGridCellAttr
& attr
);
221 // The methods called by wxGrid when a cell is edited: first BeginEdit() is
222 // called, then EndEdit() is and if it returns true and if the change is
223 // not vetoed by a user-defined event handler, finally ApplyEdit() is called
225 // Fetch the value from the table and prepare the edit control
226 // to begin editing. Set the focus to the edit control.
227 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
) = 0;
229 // Returns false if nothing changed, otherwise returns true and return the
230 // new value in its string form in the newval output parameter.
232 // This should also store the new value in its real type internally so that
233 // it could be used by ApplyEdit() but it must not modify the grid as the
234 // change could still be vetoed.
235 virtual bool EndEdit(int row
, int col
, const wxGrid
*grid
,
236 const wxString
& oldval
, wxString
*newval
) = 0;
238 // Complete the editing of the current cell by storing the value saved by
239 // the previous call to EndEdit() in the grid
240 virtual void ApplyEdit(int row
, int col
, wxGrid
* grid
) = 0;
243 // Reset the value in the control back to its starting value
244 virtual void Reset() = 0;
246 // return true to allow the given key to start editing: the base class
247 // version only checks that the event has no modifiers. The derived
248 // classes are supposed to do "if ( base::IsAcceptedKey() && ... )" in
249 // their IsAcceptedKey() implementation, although, of course, it is not a
250 // mandatory requirment.
252 // NB: if the key is F2 (special), editing will always start and this
253 // method will not be called at all (but StartingKey() will)
254 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
256 // If the editor is enabled by pressing keys on the grid, this will be
257 // called to let the editor do something about that first key if desired
258 virtual void StartingKey(wxKeyEvent
& event
);
260 // if the editor is enabled by clicking on the cell, this method will be
262 virtual void StartingClick();
264 // Some types of controls on some platforms may need some help
265 // with the Return key.
266 virtual void HandleReturn(wxKeyEvent
& event
);
269 virtual void Destroy();
271 // create a new object which is the copy of this one
272 virtual wxGridCellEditor
*Clone() const = 0;
274 // added GetValue so we can get the value which is in the control
275 virtual wxString
GetValue() const = 0;
278 // the dtor is private because only DecRef() can delete us
279 virtual ~wxGridCellEditor();
281 // the control we show on screen
282 wxControl
* m_control
;
284 // a temporary pointer to the attribute being edited
285 wxGridCellAttr
* m_attr
;
287 // if we change the colours/font of the control from the default ones, we
288 // must restore the default later and we save them here between calls to
289 // Show(true) and Show(false)
294 // suppress the stupid gcc warning about the class having private dtor and
296 friend class wxGridCellEditorDummyFriend
;
298 wxDECLARE_NO_COPY_CLASS(wxGridCellEditor
);
301 // ----------------------------------------------------------------------------
302 // wxGridHeaderRenderer and company: like wxGridCellRenderer but for headers
303 // ----------------------------------------------------------------------------
305 // Base class for corner window renderer: it is the simplest of all renderers
306 // and only has a single function
307 class WXDLLIMPEXP_ADV wxGridCornerHeaderRenderer
310 // Draw the border around the corner window.
311 virtual void DrawBorder(const wxGrid
& grid
,
313 wxRect
& rect
) const = 0;
315 // make the dtor of a class with virtual functions virtual to avoid g++
316 // warnings, even though this class is not supposed to be used
318 virtual ~wxGridCornerHeaderRenderer() { }
322 // Base class for the row/column header cells renderers
323 class WXDLLIMPEXP_ADV wxGridHeaderLabelsRenderer
324 : public wxGridCornerHeaderRenderer
327 // Draw header cell label
328 virtual void DrawLabel(const wxGrid
& grid
,
330 const wxString
& value
,
334 int textOrientation
) const;
337 // Currently the row/column/corner renders don't need any methods other than
338 // those already in wxGridHeaderLabelsRenderer but still define separate classes
339 // for them for future extensions and also for better type safety (i.e. to
340 // avoid inadvertently using a column header renderer for the row headers)
341 class WXDLLIMPEXP_ADV wxGridRowHeaderRenderer
342 : public wxGridHeaderLabelsRenderer
346 class WXDLLIMPEXP_ADV wxGridColumnHeaderRenderer
347 : public wxGridHeaderLabelsRenderer
351 // Also define the default renderers which are used by wxGridCellAttrProvider
353 class WXDLLIMPEXP_ADV wxGridRowHeaderRendererDefault
354 : public wxGridRowHeaderRenderer
357 virtual void DrawBorder(const wxGrid
& grid
,
362 // Column header cells renderers
363 class WXDLLIMPEXP_ADV wxGridColumnHeaderRendererDefault
364 : public wxGridColumnHeaderRenderer
367 virtual void DrawBorder(const wxGrid
& grid
,
372 // Header corner renderer
373 class WXDLLIMPEXP_ADV wxGridCornerHeaderRendererDefault
374 : public wxGridCornerHeaderRenderer
377 virtual void DrawBorder(const wxGrid
& grid
,
383 // ----------------------------------------------------------------------------
384 // wxGridCellAttr: this class can be used to alter the cells appearance in
385 // the grid by changing their colour/font/... from default. An object of this
386 // class may be returned by wxGridTable::GetAttr().
387 // ----------------------------------------------------------------------------
389 class WXDLLIMPEXP_ADV wxGridCellAttr
: public wxClientDataContainer
, public wxRefCounter
403 wxGridCellAttr(wxGridCellAttr
*attrDefault
= NULL
)
407 SetAlignment(wxALIGN_INVALID
, wxALIGN_INVALID
);
410 // VZ: considering the number of members wxGridCellAttr has now, this ctor
411 // seems to be pretty useless... may be we should just remove it?
412 wxGridCellAttr(const wxColour
& colText
,
413 const wxColour
& colBack
,
417 : m_colText(colText
), m_colBack(colBack
), m_font(font
)
420 SetAlignment(hAlign
, vAlign
);
423 // creates a new copy of this object
424 wxGridCellAttr
*Clone() const;
425 void MergeWith(wxGridCellAttr
*mergefrom
);
428 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; }
429 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; }
430 void SetFont(const wxFont
& font
) { m_font
= font
; }
431 void SetAlignment(int hAlign
, int vAlign
)
436 void SetSize(int num_rows
, int num_cols
);
437 void SetOverflow(bool allow
= true)
438 { m_overflow
= allow
? Overflow
: SingleCell
; }
439 void SetReadOnly(bool isReadOnly
= true)
440 { m_isReadOnly
= isReadOnly
? ReadOnly
: ReadWrite
; }
442 // takes ownership of the pointer
443 void SetRenderer(wxGridCellRenderer
*renderer
)
444 { wxSafeDecRef(m_renderer
); m_renderer
= renderer
; }
445 void SetEditor(wxGridCellEditor
* editor
)
446 { wxSafeDecRef(m_editor
); m_editor
= editor
; }
448 void SetKind(wxAttrKind kind
) { m_attrkind
= kind
; }
451 bool HasTextColour() const { return m_colText
.IsOk(); }
452 bool HasBackgroundColour() const { return m_colBack
.IsOk(); }
453 bool HasFont() const { return m_font
.IsOk(); }
454 bool HasAlignment() const
456 return m_hAlign
!= wxALIGN_INVALID
|| m_vAlign
!= wxALIGN_INVALID
;
458 bool HasRenderer() const { return m_renderer
!= NULL
; }
459 bool HasEditor() const { return m_editor
!= NULL
; }
460 bool HasReadWriteMode() const { return m_isReadOnly
!= Unset
; }
461 bool HasOverflowMode() const { return m_overflow
!= UnsetOverflow
; }
462 bool HasSize() const { return m_sizeRows
!= 1 || m_sizeCols
!= 1; }
464 const wxColour
& GetTextColour() const;
465 const wxColour
& GetBackgroundColour() const;
466 const wxFont
& GetFont() const;
467 void GetAlignment(int *hAlign
, int *vAlign
) const;
469 // unlike GetAlignment() which always overwrites its output arguments with
470 // the alignment values to use, falling back on default alignment if this
471 // attribute doesn't have any, this function will preserve the values of
472 // parameters on entry if the corresponding alignment is not set in this
473 // attribute meaning that they can be initialized to default alignment (and
474 // also that they must be initialized, unlike with GetAlignment())
475 void GetNonDefaultAlignment(int *hAlign
, int *vAlign
) const;
477 void GetSize(int *num_rows
, int *num_cols
) const;
478 bool GetOverflow() const
479 { return m_overflow
!= SingleCell
; }
480 wxGridCellRenderer
*GetRenderer(const wxGrid
* grid
, int row
, int col
) const;
481 wxGridCellEditor
*GetEditor(const wxGrid
* grid
, int row
, int col
) const;
483 bool IsReadOnly() const { return m_isReadOnly
== wxGridCellAttr::ReadOnly
; }
485 wxAttrKind
GetKind() { return m_attrkind
; }
487 void SetDefAttr(wxGridCellAttr
* defAttr
) { m_defGridAttr
= defAttr
; }
490 // the dtor is private because only DecRef() can delete us
491 virtual ~wxGridCellAttr()
493 wxSafeDecRef(m_renderer
);
494 wxSafeDecRef(m_editor
);
505 enum wxAttrOverflowMode
512 // the common part of all ctors
513 void Init(wxGridCellAttr
*attrDefault
= NULL
);
524 wxAttrOverflowMode m_overflow
;
526 wxGridCellRenderer
* m_renderer
;
527 wxGridCellEditor
* m_editor
;
528 wxGridCellAttr
* m_defGridAttr
;
530 wxAttrReadMode m_isReadOnly
;
532 wxAttrKind m_attrkind
;
534 // use Clone() instead
535 wxDECLARE_NO_COPY_CLASS(wxGridCellAttr
);
537 // suppress the stupid gcc warning about the class having private dtor and
539 friend class wxGridCellAttrDummyFriend
;
542 // ----------------------------------------------------------------------------
543 // wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
545 // ----------------------------------------------------------------------------
547 // implementation note: we separate it from wxGridTableBase because we wish to
548 // avoid deriving a new table class if possible, and sometimes it will be
549 // enough to just derive another wxGridCellAttrProvider instead
551 // the default implementation is reasonably efficient for the generic case,
552 // but you might still wish to implement your own for some specific situations
553 // if you have performance problems with the stock one
554 class WXDLLIMPEXP_ADV wxGridCellAttrProvider
: public wxClientDataContainer
557 wxGridCellAttrProvider();
558 virtual ~wxGridCellAttrProvider();
560 // DecRef() must be called on the returned pointer
561 virtual wxGridCellAttr
*GetAttr(int row
, int col
,
562 wxGridCellAttr::wxAttrKind kind
) const;
564 // all these functions take ownership of the pointer, don't call DecRef()
566 virtual void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
567 virtual void SetRowAttr(wxGridCellAttr
*attr
, int row
);
568 virtual void SetColAttr(wxGridCellAttr
*attr
, int col
);
570 // these functions must be called whenever some rows/cols are deleted
571 // because the internal data must be updated then
572 void UpdateAttrRows( size_t pos
, int numRows
);
573 void UpdateAttrCols( size_t pos
, int numCols
);
576 // get renderers for the given row/column header label and the corner
577 // window: unlike cell renderers, these objects are not reference counted
578 // and are never NULL so they are returned by reference
579 virtual const wxGridColumnHeaderRenderer
& GetColumnHeaderRenderer(int col
);
580 virtual const wxGridRowHeaderRenderer
& GetRowHeaderRenderer(int row
);
581 virtual const wxGridCornerHeaderRenderer
& GetCornerRenderer();
586 wxGridCellAttrProviderData
*m_data
;
588 wxDECLARE_NO_COPY_CLASS(wxGridCellAttrProvider
);
591 // ----------------------------------------------------------------------------
592 // wxGridCellCoords: location of a cell in the grid
593 // ----------------------------------------------------------------------------
595 class WXDLLIMPEXP_ADV wxGridCellCoords
598 wxGridCellCoords() { m_row
= m_col
= -1; }
599 wxGridCellCoords( int r
, int c
) { m_row
= r
; m_col
= c
; }
601 // default copy ctor is ok
603 int GetRow() const { return m_row
; }
604 void SetRow( int n
) { m_row
= n
; }
605 int GetCol() const { return m_col
; }
606 void SetCol( int n
) { m_col
= n
; }
607 void Set( int row
, int col
) { m_row
= row
; m_col
= col
; }
609 wxGridCellCoords
& operator=( const wxGridCellCoords
& other
)
611 if ( &other
!= this )
619 bool operator==( const wxGridCellCoords
& other
) const
621 return (m_row
== other
.m_row
&& m_col
== other
.m_col
);
624 bool operator!=( const wxGridCellCoords
& other
) const
626 return (m_row
!= other
.m_row
|| m_col
!= other
.m_col
);
629 bool operator!() const
631 return (m_row
== -1 && m_col
== -1 );
640 // For comparisons...
642 extern WXDLLIMPEXP_ADV wxGridCellCoords wxGridNoCellCoords
;
643 extern WXDLLIMPEXP_ADV wxRect wxGridNoCellRect
;
645 // An array of cell coords...
647 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellCoords
, wxGridCellCoordsArray
,
648 class WXDLLIMPEXP_ADV
);
650 // ----------------------------------------------------------------------------
651 // Grid table classes
652 // ----------------------------------------------------------------------------
654 // the abstract base class
655 class WXDLLIMPEXP_ADV wxGridTableBase
: public wxObject
,
656 public wxClientDataContainer
660 virtual ~wxGridTableBase();
662 // You must override these functions in a derived table class
665 // return the number of rows and columns in this table
666 virtual int GetNumberRows() = 0;
667 virtual int GetNumberCols() = 0;
669 // the methods above are unfortunately non-const even though they should
670 // have been const -- but changing it now is not possible any longer as it
671 // would break the existing code overriding them, so instead we provide
672 // these const synonyms which can be used from const-correct code
673 int GetRowsCount() const
674 { return const_cast<wxGridTableBase
*>(this)->GetNumberRows(); }
675 int GetColsCount() const
676 { return const_cast<wxGridTableBase
*>(this)->GetNumberCols(); }
679 virtual bool IsEmptyCell( int row
, int col
)
681 return GetValue(row
, col
).empty();
684 bool IsEmpty(const wxGridCellCoords
& coord
)
686 return IsEmptyCell(coord
.GetRow(), coord
.GetCol());
689 virtual wxString
GetValue( int row
, int col
) = 0;
690 virtual void SetValue( int row
, int col
, const wxString
& value
) = 0;
692 // Data type determination and value access
693 virtual wxString
GetTypeName( int row
, int col
);
694 virtual bool CanGetValueAs( int row
, int col
, const wxString
& typeName
);
695 virtual bool CanSetValueAs( int row
, int col
, const wxString
& typeName
);
697 virtual long GetValueAsLong( int row
, int col
);
698 virtual double GetValueAsDouble( int row
, int col
);
699 virtual bool GetValueAsBool( int row
, int col
);
701 virtual void SetValueAsLong( int row
, int col
, long value
);
702 virtual void SetValueAsDouble( int row
, int col
, double value
);
703 virtual void SetValueAsBool( int row
, int col
, bool value
);
705 // For user defined types
706 virtual void* GetValueAsCustom( int row
, int col
, const wxString
& typeName
);
707 virtual void SetValueAsCustom( int row
, int col
, const wxString
& typeName
, void* value
);
710 // Overriding these is optional
712 virtual void SetView( wxGrid
*grid
) { m_view
= grid
; }
713 virtual wxGrid
* GetView() const { return m_view
; }
715 virtual void Clear() {}
716 virtual bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
717 virtual bool AppendRows( size_t numRows
= 1 );
718 virtual bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
719 virtual bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
720 virtual bool AppendCols( size_t numCols
= 1 );
721 virtual bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
723 virtual wxString
GetRowLabelValue( int row
);
724 virtual wxString
GetColLabelValue( int col
);
725 virtual void SetRowLabelValue( int WXUNUSED(row
), const wxString
& ) {}
726 virtual void SetColLabelValue( int WXUNUSED(col
), const wxString
& ) {}
728 // Attribute handling
731 // give us the attr provider to use - we take ownership of the pointer
732 void SetAttrProvider(wxGridCellAttrProvider
*attrProvider
);
734 // get the currently used attr provider (may be NULL)
735 wxGridCellAttrProvider
*GetAttrProvider() const { return m_attrProvider
; }
737 // Does this table allow attributes? Default implementation creates
738 // a wxGridCellAttrProvider if necessary.
739 virtual bool CanHaveAttributes();
741 // by default forwarded to wxGridCellAttrProvider if any. May be
742 // overridden to handle attributes directly in the table.
743 virtual wxGridCellAttr
*GetAttr( int row
, int col
,
744 wxGridCellAttr::wxAttrKind kind
);
747 // these functions take ownership of the pointer
748 virtual void SetAttr(wxGridCellAttr
* attr
, int row
, int col
);
749 virtual void SetRowAttr(wxGridCellAttr
*attr
, int row
);
750 virtual void SetColAttr(wxGridCellAttr
*attr
, int col
);
754 wxGridCellAttrProvider
*m_attrProvider
;
756 DECLARE_ABSTRACT_CLASS(wxGridTableBase
)
757 wxDECLARE_NO_COPY_CLASS(wxGridTableBase
);
761 // ----------------------------------------------------------------------------
762 // wxGridTableMessage
763 // ----------------------------------------------------------------------------
765 // IDs for messages sent from grid table to view
767 enum wxGridTableRequest
769 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
= 2000,
770 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
,
771 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
772 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
773 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
774 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
775 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
776 wxGRIDTABLE_NOTIFY_COLS_DELETED
779 class WXDLLIMPEXP_ADV wxGridTableMessage
782 wxGridTableMessage();
783 wxGridTableMessage( wxGridTableBase
*table
, int id
,
787 void SetTableObject( wxGridTableBase
*table
) { m_table
= table
; }
788 wxGridTableBase
* GetTableObject() const { return m_table
; }
789 void SetId( int id
) { m_id
= id
; }
790 int GetId() { return m_id
; }
791 void SetCommandInt( int comInt1
) { m_comInt1
= comInt1
; }
792 int GetCommandInt() { return m_comInt1
; }
793 void SetCommandInt2( int comInt2
) { m_comInt2
= comInt2
; }
794 int GetCommandInt2() { return m_comInt2
; }
797 wxGridTableBase
*m_table
;
802 wxDECLARE_NO_COPY_CLASS(wxGridTableMessage
);
807 // ------ wxGridStringArray
808 // A 2-dimensional array of strings for data values
811 WX_DECLARE_OBJARRAY_WITH_DECL(wxArrayString
, wxGridStringArray
,
812 class WXDLLIMPEXP_ADV
);
816 // ------ wxGridStringTable
818 // Simplest type of data table for a grid for small tables of strings
819 // that are stored in memory
822 class WXDLLIMPEXP_ADV wxGridStringTable
: public wxGridTableBase
826 wxGridStringTable( int numRows
, int numCols
);
828 // these are pure virtual in wxGridTableBase
830 virtual int GetNumberRows() { return static_cast<int>(m_data
.size()); }
831 virtual int GetNumberCols() { return m_numCols
; }
832 virtual wxString
GetValue( int row
, int col
);
833 virtual void SetValue( int row
, int col
, const wxString
& s
);
835 // overridden functions from wxGridTableBase
838 bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
839 bool AppendRows( size_t numRows
= 1 );
840 bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
841 bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
842 bool AppendCols( size_t numCols
= 1 );
843 bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
845 void SetRowLabelValue( int row
, const wxString
& );
846 void SetColLabelValue( int col
, const wxString
& );
847 wxString
GetRowLabelValue( int row
);
848 wxString
GetColLabelValue( int col
);
851 wxGridStringArray m_data
;
853 // notice that while we don't need to store the number of our rows as it's
854 // always equal to the size of m_data array, we do need to store the number
855 // of our columns as we can't retrieve it from m_data when the number of
856 // rows is 0 (see #10818)
859 // These only get used if you set your own labels, otherwise the
860 // GetRow/ColLabelValue functions return wxGridTableBase defaults
862 wxArrayString m_rowLabels
;
863 wxArrayString m_colLabels
;
865 DECLARE_DYNAMIC_CLASS_NO_COPY( wxGridStringTable
)
870 // ============================================================================
872 // ============================================================================
874 // ----------------------------------------------------------------------------
875 // wxGridSizesInfo stores information about sizes of the rows or columns.
877 // It assumes that most of the columns or rows have default size and so stores
878 // the default size separately and uses a hash to map column or row numbers to
879 // their non default size for those which don't have the default size.
880 // ----------------------------------------------------------------------------
882 // hash map to store positions as the keys and sizes as the values
883 WX_DECLARE_HASH_MAP_WITH_DECL( unsigned, int, wxIntegerHash
, wxIntegerEqual
,
884 wxUnsignedToIntHashMap
, class WXDLLIMPEXP_ADV
);
886 struct WXDLLIMPEXP_ADV wxGridSizesInfo
888 // default ctor, initialize m_sizeDefault and m_customSizes later
889 wxGridSizesInfo() { }
891 // ctor used by wxGrid::Get{Col,Row}Sizes()
892 wxGridSizesInfo(int defSize
, const wxArrayInt
& allSizes
);
894 // default copy ctor, assignment operator and dtor are ok
896 // Get the size of the element with the given index
897 int GetSize(unsigned pos
) const;
903 // position -> size map containing all elements with non-default size
904 wxUnsignedToIntHashMap m_customSizes
;
907 // ----------------------------------------------------------------------------
909 // ----------------------------------------------------------------------------
911 class WXDLLIMPEXP_ADV wxGrid
: public wxScrolledWindow
914 // possible selection modes
915 enum wxGridSelectionModes
917 wxGridSelectCells
= 0, // allow selecting anything
918 wxGridSelectRows
= 1, // allow selecting only entire rows
919 wxGridSelectColumns
= 2, // allow selecting only entire columns
920 wxGridSelectRowsOrColumns
= wxGridSelectRows
| wxGridSelectColumns
923 // Different behaviour of the TAB key when the end (or the beginning, for
924 // Shift-TAB) of the current row is reached:
927 Tab_Stop
, // Do nothing, this is default.
928 Tab_Wrap
, // Move to the next (or previous) row.
929 Tab_Leave
// Move to the next (or previous) control.
932 // creation and destruction
933 // ------------------------
935 // ctor and Create() create the grid window, as with the other controls
938 wxGrid(wxWindow
*parent
,
940 const wxPoint
& pos
= wxDefaultPosition
,
941 const wxSize
& size
= wxDefaultSize
,
942 long style
= wxWANTS_CHARS
,
943 const wxString
& name
= wxGridNameStr
)
947 Create(parent
, id
, pos
, size
, style
, name
);
950 bool Create(wxWindow
*parent
,
952 const wxPoint
& pos
= wxDefaultPosition
,
953 const wxSize
& size
= wxDefaultSize
,
954 long style
= wxWANTS_CHARS
,
955 const wxString
& name
= wxGridNameStr
);
959 // however to initialize grid data either CreateGrid() or SetTable() must
962 // this is basically equivalent to
964 // SetTable(new wxGridStringTable(numRows, numCols), true, selmode)
966 bool CreateGrid( int numRows
, int numCols
,
967 wxGridSelectionModes selmode
= wxGridSelectCells
);
969 bool SetTable( wxGridTableBase
*table
,
970 bool takeOwnership
= false,
971 wxGridSelectionModes selmode
= wxGridSelectCells
);
973 bool ProcessTableMessage(wxGridTableMessage
&);
975 wxGridTableBase
*GetTable() const { return m_table
; }
978 void SetSelectionMode(wxGridSelectionModes selmode
);
979 wxGridSelectionModes
GetSelectionMode() const;
981 // ------ grid dimensions
983 int GetNumberRows() const { return m_numRows
; }
984 int GetNumberCols() const { return m_numCols
; }
987 // ------ display update functions
989 wxArrayInt
CalcRowLabelsExposed( const wxRegion
& reg
) const;
991 wxArrayInt
CalcColLabelsExposed( const wxRegion
& reg
) const;
992 wxGridCellCoordsArray
CalcCellsExposed( const wxRegion
& reg
) const;
996 bool InsertRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true)
998 return DoModifyLines(&wxGridTableBase::InsertRows
,
999 pos
, numRows
, updateLabels
);
1001 bool InsertCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true)
1003 return DoModifyLines(&wxGridTableBase::InsertCols
,
1004 pos
, numCols
, updateLabels
);
1007 bool AppendRows(int numRows
= 1, bool updateLabels
= true)
1009 return DoAppendLines(&wxGridTableBase::AppendRows
, numRows
, updateLabels
);
1011 bool AppendCols(int numCols
= 1, bool updateLabels
= true)
1013 return DoAppendLines(&wxGridTableBase::AppendCols
, numCols
, updateLabels
);
1016 bool DeleteRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true)
1018 return DoModifyLines(&wxGridTableBase::DeleteRows
,
1019 pos
, numRows
, updateLabels
);
1021 bool DeleteCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true)
1023 return DoModifyLines(&wxGridTableBase::DeleteCols
,
1024 pos
, numCols
, updateLabels
);
1027 void DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
);
1028 void DrawGridSpace( wxDC
& dc
);
1029 void DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& );
1030 void DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
);
1031 void DrawCell( wxDC
& dc
, const wxGridCellCoords
& );
1032 void DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
);
1034 // this function is called when the current cell highlight must be redrawn
1035 // and may be overridden by the user
1036 virtual void DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
);
1038 virtual void DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
);
1039 virtual void DrawRowLabel( wxDC
& dc
, int row
);
1041 virtual void DrawColLabels( wxDC
& dc
, const wxArrayInt
& cols
);
1042 virtual void DrawColLabel( wxDC
& dc
, int col
);
1044 virtual void DrawCornerLabel(wxDC
& dc
);
1046 // ------ Cell text drawing functions
1048 void DrawTextRectangle( wxDC
& dc
, const wxString
&, const wxRect
&,
1049 int horizontalAlignment
= wxALIGN_LEFT
,
1050 int verticalAlignment
= wxALIGN_TOP
,
1051 int textOrientation
= wxHORIZONTAL
) const;
1053 void DrawTextRectangle( wxDC
& dc
, const wxArrayString
& lines
, const wxRect
&,
1054 int horizontalAlignment
= wxALIGN_LEFT
,
1055 int verticalAlignment
= wxALIGN_TOP
,
1056 int textOrientation
= wxHORIZONTAL
) const;
1058 // ------ grid render function for printing
1060 void Render( wxDC
& dc
,
1061 const wxPoint
& pos
= wxDefaultPosition
,
1062 const wxSize
& size
= wxDefaultSize
,
1063 const wxGridCellCoords
& topLeft
= wxGridCellCoords(-1, -1),
1064 const wxGridCellCoords
& bottomRight
= wxGridCellCoords(-1, -1),
1065 int style
= wxGRID_DRAW_DEFAULT
);
1067 // Split a string containing newline characters into an array of
1068 // strings and return the number of lines
1070 void StringToLines( const wxString
& value
, wxArrayString
& lines
) const;
1072 void GetTextBoxSize( const wxDC
& dc
,
1073 const wxArrayString
& lines
,
1074 long *width
, long *height
) const;
1078 // Code that does a lot of grid modification can be enclosed
1079 // between BeginBatch() and EndBatch() calls to avoid screen
1082 void BeginBatch() { m_batchCount
++; }
1085 int GetBatchCount() { return m_batchCount
; }
1087 virtual void Refresh(bool eraseb
= true, const wxRect
* rect
= NULL
);
1089 // Use this, rather than wxWindow::Refresh(), to force an
1090 // immediate repainting of the grid. Has no effect if you are
1091 // already inside a BeginBatch / EndBatch block.
1093 // This function is necessary because wxGrid has a minimal OnPaint()
1094 // handler to reduce screen flicker.
1096 void ForceRefresh();
1099 // ------ edit control functions
1101 bool IsEditable() const { return m_editable
; }
1102 void EnableEditing( bool edit
);
1104 void EnableCellEditControl( bool enable
= true );
1105 void DisableCellEditControl() { EnableCellEditControl(false); }
1106 bool CanEnableCellControl() const;
1107 bool IsCellEditControlEnabled() const;
1108 bool IsCellEditControlShown() const;
1110 bool IsCurrentCellReadOnly() const;
1112 void ShowCellEditControl();
1113 void HideCellEditControl();
1114 void SaveEditControlValue();
1117 // ------ grid location functions
1118 // Note that all of these functions work with the logical coordinates of
1119 // grid cells and labels so you will need to convert from device
1120 // coordinates for mouse events etc.
1122 wxGridCellCoords
XYToCell(int x
, int y
) const;
1123 void XYToCell(int x
, int y
, wxGridCellCoords
& coords
) const
1124 { coords
= XYToCell(x
, y
); }
1125 wxGridCellCoords
XYToCell(const wxPoint
& pos
) const
1126 { return XYToCell(pos
.x
, pos
.y
); }
1128 // these functions return the index of the row/columns corresponding to the
1129 // given logical position in pixels
1131 // if clipToMinMax is false (default, wxNOT_FOUND is returned if the
1132 // position is outside any row/column, otherwise the first/last element is
1133 // returned in this case
1134 int YToRow( int y
, bool clipToMinMax
= false ) const;
1135 int XToCol( int x
, bool clipToMinMax
= false ) const;
1137 int YToEdgeOfRow( int y
) const;
1138 int XToEdgeOfCol( int x
) const;
1140 wxRect
CellToRect( int row
, int col
) const;
1141 wxRect
CellToRect( const wxGridCellCoords
& coords
) const
1142 { return CellToRect( coords
.GetRow(), coords
.GetCol() ); }
1144 int GetGridCursorRow() const { return m_currentCellCoords
.GetRow(); }
1145 int GetGridCursorCol() const { return m_currentCellCoords
.GetCol(); }
1147 // check to see if a cell is either wholly visible (the default arg) or
1148 // at least partially visible in the grid window
1150 bool IsVisible( int row
, int col
, bool wholeCellVisible
= true ) const;
1151 bool IsVisible( const wxGridCellCoords
& coords
, bool wholeCellVisible
= true ) const
1152 { return IsVisible( coords
.GetRow(), coords
.GetCol(), wholeCellVisible
); }
1153 void MakeCellVisible( int row
, int col
);
1154 void MakeCellVisible( const wxGridCellCoords
& coords
)
1155 { MakeCellVisible( coords
.GetRow(), coords
.GetCol() ); }
1158 // ------ grid cursor movement functions
1160 void SetGridCursor(int row
, int col
) { SetCurrentCell(row
, col
); }
1161 void SetGridCursor(const wxGridCellCoords
& c
) { SetCurrentCell(c
); }
1163 void GoToCell(int row
, int col
)
1165 if ( SetCurrentCell(row
, col
) )
1166 MakeCellVisible(row
, col
);
1169 void GoToCell(const wxGridCellCoords
& coords
)
1171 if ( SetCurrentCell(coords
) )
1172 MakeCellVisible(coords
);
1175 bool MoveCursorUp( bool expandSelection
);
1176 bool MoveCursorDown( bool expandSelection
);
1177 bool MoveCursorLeft( bool expandSelection
);
1178 bool MoveCursorRight( bool expandSelection
);
1179 bool MovePageDown();
1181 bool MoveCursorUpBlock( bool expandSelection
);
1182 bool MoveCursorDownBlock( bool expandSelection
);
1183 bool MoveCursorLeftBlock( bool expandSelection
);
1184 bool MoveCursorRightBlock( bool expandSelection
);
1186 void SetTabBehaviour(TabBehaviour behaviour
) { m_tabBehaviour
= behaviour
; }
1189 // ------ label and gridline formatting
1191 int GetDefaultRowLabelSize() const { return WXGRID_DEFAULT_ROW_LABEL_WIDTH
; }
1192 int GetRowLabelSize() const { return m_rowLabelWidth
; }
1193 int GetDefaultColLabelSize() const { return WXGRID_DEFAULT_COL_LABEL_HEIGHT
; }
1194 int GetColLabelSize() const { return m_colLabelHeight
; }
1195 wxColour
GetLabelBackgroundColour() const { return m_labelBackgroundColour
; }
1196 wxColour
GetLabelTextColour() const { return m_labelTextColour
; }
1197 wxFont
GetLabelFont() const { return m_labelFont
; }
1198 void GetRowLabelAlignment( int *horiz
, int *vert
) const;
1199 void GetColLabelAlignment( int *horiz
, int *vert
) const;
1200 int GetColLabelTextOrientation() const;
1201 wxString
GetRowLabelValue( int row
) const;
1202 wxString
GetColLabelValue( int col
) const;
1204 wxColour
GetCellHighlightColour() const { return m_cellHighlightColour
; }
1205 int GetCellHighlightPenWidth() const { return m_cellHighlightPenWidth
; }
1206 int GetCellHighlightROPenWidth() const { return m_cellHighlightROPenWidth
; }
1208 // this one will use wxHeaderCtrl for the column labels
1209 void UseNativeColHeader(bool native
= true);
1211 // this one will still draw them manually but using the native renderer
1212 // instead of using the same appearance as for the row labels
1213 void SetUseNativeColLabels( bool native
= true );
1215 void SetRowLabelSize( int width
);
1216 void SetColLabelSize( int height
);
1217 void HideRowLabels() { SetRowLabelSize( 0 ); }
1218 void HideColLabels() { SetColLabelSize( 0 ); }
1219 void SetLabelBackgroundColour( const wxColour
& );
1220 void SetLabelTextColour( const wxColour
& );
1221 void SetLabelFont( const wxFont
& );
1222 void SetRowLabelAlignment( int horiz
, int vert
);
1223 void SetColLabelAlignment( int horiz
, int vert
);
1224 void SetColLabelTextOrientation( int textOrientation
);
1225 void SetRowLabelValue( int row
, const wxString
& );
1226 void SetColLabelValue( int col
, const wxString
& );
1227 void SetCellHighlightColour( const wxColour
& );
1228 void SetCellHighlightPenWidth(int width
);
1229 void SetCellHighlightROPenWidth(int width
);
1232 // interactive grid mouse operations control
1233 // -----------------------------------------
1235 // functions globally enabling row/column interactive resizing (enabled by
1237 void EnableDragRowSize( bool enable
= true );
1238 void DisableDragRowSize() { EnableDragRowSize( false ); }
1240 void EnableDragColSize( bool enable
= true );
1241 void DisableDragColSize() { EnableDragColSize( false ); }
1243 // if interactive resizing is enabled, some rows/columns can still have
1245 void DisableRowResize(int row
) { DoDisableLineResize(row
, m_setFixedRows
); }
1246 void DisableColResize(int col
) { DoDisableLineResize(col
, m_setFixedCols
); }
1248 // these functions return whether the given row/column can be
1249 // effectively resized: for this interactive resizing must be enabled
1250 // and this index must not have been passed to DisableRow/ColResize()
1251 bool CanDragRowSize(int row
) const
1252 { return m_canDragRowSize
&& DoCanResizeLine(row
, m_setFixedRows
); }
1253 bool CanDragColSize(int col
) const
1254 { return m_canDragColSize
&& DoCanResizeLine(col
, m_setFixedCols
); }
1256 // interactive column reordering (disabled by default)
1257 void EnableDragColMove( bool enable
= true );
1258 void DisableDragColMove() { EnableDragColMove( false ); }
1259 bool CanDragColMove() const { return m_canDragColMove
; }
1261 // interactive resizing of grid cells (enabled by default)
1262 void EnableDragGridSize(bool enable
= true);
1263 void DisableDragGridSize() { EnableDragGridSize(false); }
1264 bool CanDragGridSize() const { return m_canDragGridSize
; }
1266 // interactive dragging of cells (disabled by default)
1267 void EnableDragCell( bool enable
= true );
1268 void DisableDragCell() { EnableDragCell( false ); }
1269 bool CanDragCell() const { return m_canDragCell
; }
1275 // enable or disable drawing of the lines
1276 void EnableGridLines(bool enable
= true);
1277 bool GridLinesEnabled() const { return m_gridLinesEnabled
; }
1279 // by default grid lines stop at last column/row, but this may be changed
1280 void ClipHorzGridLines(bool clip
)
1281 { DoClipGridLines(m_gridLinesClipHorz
, clip
); }
1282 void ClipVertGridLines(bool clip
)
1283 { DoClipGridLines(m_gridLinesClipVert
, clip
); }
1284 bool AreHorzGridLinesClipped() const { return m_gridLinesClipHorz
; }
1285 bool AreVertGridLinesClipped() const { return m_gridLinesClipVert
; }
1287 // this can be used to change the global grid lines colour
1288 void SetGridLineColour(const wxColour
& col
);
1289 wxColour
GetGridLineColour() const { return m_gridLineColour
; }
1291 // these methods may be overridden to customize individual grid lines
1293 virtual wxPen
GetDefaultGridLinePen();
1294 virtual wxPen
GetRowGridLinePen(int row
);
1295 virtual wxPen
GetColGridLinePen(int col
);
1301 // this sets the specified attribute for this cell or in this row/col
1302 void SetAttr(int row
, int col
, wxGridCellAttr
*attr
);
1303 void SetRowAttr(int row
, wxGridCellAttr
*attr
);
1304 void SetColAttr(int col
, wxGridCellAttr
*attr
);
1306 // the grid can cache attributes for the recently used cells (currently it
1307 // only caches one attribute for the most recently used one) and might
1308 // notice that its value in the attribute provider has changed -- if this
1309 // happens, call this function to force it
1310 void RefreshAttr(int row
, int col
);
1312 // returns the attribute we may modify in place: a new one if this cell
1313 // doesn't have any yet or the existing one if it does
1315 // DecRef() must be called on the returned pointer, as usual
1316 wxGridCellAttr
*GetOrCreateCellAttr(int row
, int col
) const;
1319 // shortcuts for setting the column parameters
1321 // set the format for the data in the column: default is string
1322 void SetColFormatBool(int col
);
1323 void SetColFormatNumber(int col
);
1324 void SetColFormatFloat(int col
, int width
= -1, int precision
= -1);
1325 void SetColFormatCustom(int col
, const wxString
& typeName
);
1327 // ------ row and col formatting
1329 int GetDefaultRowSize() const;
1330 int GetRowSize( int row
) const;
1331 bool IsRowShown(int row
) const { return GetRowSize(row
) != 0; }
1332 int GetDefaultColSize() const;
1333 int GetColSize( int col
) const;
1334 bool IsColShown(int col
) const { return GetColSize(col
) != 0; }
1335 wxColour
GetDefaultCellBackgroundColour() const;
1336 wxColour
GetCellBackgroundColour( int row
, int col
) const;
1337 wxColour
GetDefaultCellTextColour() const;
1338 wxColour
GetCellTextColour( int row
, int col
) const;
1339 wxFont
GetDefaultCellFont() const;
1340 wxFont
GetCellFont( int row
, int col
) const;
1341 void GetDefaultCellAlignment( int *horiz
, int *vert
) const;
1342 void GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const;
1343 bool GetDefaultCellOverflow() const;
1344 bool GetCellOverflow( int row
, int col
) const;
1346 // this function returns 1 in num_rows and num_cols for normal cells,
1347 // positive numbers for a cell spanning multiple columns/rows (as set with
1348 // SetCellSize()) and _negative_ numbers corresponding to the offset of the
1349 // top left cell of the span from this one for the other cells covered by
1352 // the return value is CellSpan_None, CellSpan_Main or CellSpan_Inside for
1353 // each of these cases respectively
1356 CellSpan_Inside
= -1,
1361 CellSpan
GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const;
1363 wxSize
GetCellSize(const wxGridCellCoords
& coords
)
1366 GetCellSize(coords
.GetRow(), coords
.GetCol(), &s
.x
, &s
.y
);
1370 // ------ row and col sizes
1371 void SetDefaultRowSize( int height
, bool resizeExistingRows
= false );
1372 void SetRowSize( int row
, int height
);
1373 void HideRow(int row
) { DoSetRowSize(row
, 0); }
1374 void ShowRow(int row
) { DoSetRowSize(row
, -1); }
1376 void SetDefaultColSize( int width
, bool resizeExistingCols
= false );
1377 void SetColSize( int col
, int width
);
1378 void HideCol(int col
) { DoSetColSize(col
, 0); }
1379 void ShowCol(int col
) { DoSetColSize(col
, -1); }
1381 // the row and column sizes can be also set all at once using
1382 // wxGridSizesInfo which holds all of them at once
1384 wxGridSizesInfo
GetColSizes() const
1385 { return wxGridSizesInfo(GetDefaultColSize(), m_colWidths
); }
1386 wxGridSizesInfo
GetRowSizes() const
1387 { return wxGridSizesInfo(GetDefaultRowSize(), m_rowHeights
); }
1389 void SetColSizes(const wxGridSizesInfo
& sizeInfo
);
1390 void SetRowSizes(const wxGridSizesInfo
& sizeInfo
);
1393 // ------- columns (only, for now) reordering
1395 // columns index <-> positions mapping: by default, the position of the
1396 // column is the same as its index, but the columns can also be reordered
1397 // (either by calling SetColPos() explicitly or by the user dragging the
1398 // columns around) in which case their indices don't correspond to their
1399 // positions on display any longer
1401 // internally we always work with indices except for the functions which
1402 // have "Pos" in their names (and which work with columns, not pixels) and
1403 // only the display and hit testing code really cares about display
1406 // set the positions of all columns at once (this method uses the same
1407 // conventions as wxHeaderCtrl::SetColumnsOrder() for the order array)
1408 void SetColumnsOrder(const wxArrayInt
& order
);
1410 // return the column index corresponding to the given (valid) position
1411 int GetColAt(int pos
) const
1413 return m_colAt
.empty() ? pos
: m_colAt
[pos
];
1416 // reorder the columns so that the column with the given index is now shown
1417 // as the position pos
1418 void SetColPos(int idx
, int pos
);
1420 // return the position at which the column with the given index is
1421 // displayed: notice that this is a slow operation as we don't maintain the
1422 // reverse mapping currently
1423 int GetColPos(int idx
) const
1425 if ( m_colAt
.IsEmpty() )
1428 for ( int i
= 0; i
< m_numCols
; i
++ )
1430 if ( m_colAt
[i
] == idx
)
1434 wxFAIL_MSG( "invalid column index" );
1439 // reset the columns positions to the default order
1443 // automatically size the column or row to fit to its contents, if
1444 // setAsMin is true, this optimal width will also be set as minimal width
1446 void AutoSizeColumn( int col
, bool setAsMin
= true )
1447 { AutoSizeColOrRow(col
, setAsMin
, wxGRID_COLUMN
); }
1448 void AutoSizeRow( int row
, bool setAsMin
= true )
1449 { AutoSizeColOrRow(row
, setAsMin
, wxGRID_ROW
); }
1451 // auto size all columns (very ineffective for big grids!)
1452 void AutoSizeColumns( bool setAsMin
= true )
1453 { (void)SetOrCalcColumnSizes(false, setAsMin
); }
1455 void AutoSizeRows( bool setAsMin
= true )
1456 { (void)SetOrCalcRowSizes(false, setAsMin
); }
1458 // auto size the grid, that is make the columns/rows of the "right" size
1459 // and also set the grid size to just fit its contents
1462 // Note for both AutoSizeRowLabelSize and AutoSizeColLabelSize:
1463 // If col equals to wxGRID_AUTOSIZE value then function autosizes labels column
1464 // instead of data column. Note that this operation may be slow for large
1466 // autosize row height depending on label text
1467 void AutoSizeRowLabelSize( int row
);
1469 // autosize column width depending on label text
1470 void AutoSizeColLabelSize( int col
);
1472 // column won't be resized to be lesser width - this must be called during
1473 // the grid creation because it won't resize the column if it's already
1474 // narrower than the minimal width
1475 void SetColMinimalWidth( int col
, int width
);
1476 void SetRowMinimalHeight( int row
, int width
);
1478 /* These members can be used to query and modify the minimal
1479 * acceptable size of grid rows and columns. Call this function in
1480 * your code which creates the grid if you want to display cells
1481 * with a size smaller than the default acceptable minimum size.
1482 * Like the members SetColMinimalWidth and SetRowMinimalWidth,
1483 * the existing rows or columns will not be checked/resized.
1485 void SetColMinimalAcceptableWidth( int width
);
1486 void SetRowMinimalAcceptableHeight( int width
);
1487 int GetColMinimalAcceptableWidth() const;
1488 int GetRowMinimalAcceptableHeight() const;
1490 void SetDefaultCellBackgroundColour( const wxColour
& );
1491 void SetCellBackgroundColour( int row
, int col
, const wxColour
& );
1492 void SetDefaultCellTextColour( const wxColour
& );
1494 void SetCellTextColour( int row
, int col
, const wxColour
& );
1495 void SetDefaultCellFont( const wxFont
& );
1496 void SetCellFont( int row
, int col
, const wxFont
& );
1497 void SetDefaultCellAlignment( int horiz
, int vert
);
1498 void SetCellAlignment( int row
, int col
, int horiz
, int vert
);
1499 void SetDefaultCellOverflow( bool allow
);
1500 void SetCellOverflow( int row
, int col
, bool allow
);
1501 void SetCellSize( int row
, int col
, int num_rows
, int num_cols
);
1503 // takes ownership of the pointer
1504 void SetDefaultRenderer(wxGridCellRenderer
*renderer
);
1505 void SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
);
1506 wxGridCellRenderer
*GetDefaultRenderer() const;
1507 wxGridCellRenderer
* GetCellRenderer(int row
, int col
) const;
1509 // takes ownership of the pointer
1510 void SetDefaultEditor(wxGridCellEditor
*editor
);
1511 void SetCellEditor(int row
, int col
, wxGridCellEditor
*editor
);
1512 wxGridCellEditor
*GetDefaultEditor() const;
1513 wxGridCellEditor
* GetCellEditor(int row
, int col
) const;
1517 // ------ cell value accessors
1519 wxString
GetCellValue( int row
, int col
) const
1523 return m_table
->GetValue( row
, col
);
1527 return wxEmptyString
;
1531 wxString
GetCellValue( const wxGridCellCoords
& coords
) const
1532 { return GetCellValue( coords
.GetRow(), coords
.GetCol() ); }
1534 void SetCellValue( int row
, int col
, const wxString
& s
);
1535 void SetCellValue( const wxGridCellCoords
& coords
, const wxString
& s
)
1536 { SetCellValue( coords
.GetRow(), coords
.GetCol(), s
); }
1538 // returns true if the cell can't be edited
1539 bool IsReadOnly(int row
, int col
) const;
1541 // make the cell editable/readonly
1542 void SetReadOnly(int row
, int col
, bool isReadOnly
= true);
1544 // ------ select blocks of cells
1546 void SelectRow( int row
, bool addToSelected
= false );
1547 void SelectCol( int col
, bool addToSelected
= false );
1549 void SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
1550 bool addToSelected
= false );
1552 void SelectBlock( const wxGridCellCoords
& topLeft
,
1553 const wxGridCellCoords
& bottomRight
,
1554 bool addToSelected
= false )
1555 { SelectBlock( topLeft
.GetRow(), topLeft
.GetCol(),
1556 bottomRight
.GetRow(), bottomRight
.GetCol(),
1561 bool IsSelection() const;
1563 // ------ deselect blocks or cells
1565 void DeselectRow( int row
);
1566 void DeselectCol( int col
);
1567 void DeselectCell( int row
, int col
);
1569 void ClearSelection();
1571 bool IsInSelection( int row
, int col
) const;
1573 bool IsInSelection( const wxGridCellCoords
& coords
) const
1574 { return IsInSelection( coords
.GetRow(), coords
.GetCol() ); }
1576 wxGridCellCoordsArray
GetSelectedCells() const;
1577 wxGridCellCoordsArray
GetSelectionBlockTopLeft() const;
1578 wxGridCellCoordsArray
GetSelectionBlockBottomRight() const;
1579 wxArrayInt
GetSelectedRows() const;
1580 wxArrayInt
GetSelectedCols() const;
1582 // This function returns the rectangle that encloses the block of cells
1583 // limited by TopLeft and BottomRight cell in device coords and clipped
1584 // to the client size of the grid window.
1586 wxRect
BlockToDeviceRect( const wxGridCellCoords
& topLeft
,
1587 const wxGridCellCoords
& bottomRight
) const;
1589 // Access or update the selection fore/back colours
1590 wxColour
GetSelectionBackground() const
1591 { return m_selectionBackground
; }
1592 wxColour
GetSelectionForeground() const
1593 { return m_selectionForeground
; }
1595 void SetSelectionBackground(const wxColour
& c
) { m_selectionBackground
= c
; }
1596 void SetSelectionForeground(const wxColour
& c
) { m_selectionForeground
= c
; }
1599 // Methods for a registry for mapping data types to Renderers/Editors
1600 void RegisterDataType(const wxString
& typeName
,
1601 wxGridCellRenderer
* renderer
,
1602 wxGridCellEditor
* editor
);
1604 virtual wxGridCellEditor
* GetDefaultEditorForCell(int row
, int col
) const;
1605 wxGridCellEditor
* GetDefaultEditorForCell(const wxGridCellCoords
& c
) const
1606 { return GetDefaultEditorForCell(c
.GetRow(), c
.GetCol()); }
1607 virtual wxGridCellRenderer
* GetDefaultRendererForCell(int row
, int col
) const;
1608 virtual wxGridCellEditor
* GetDefaultEditorForType(const wxString
& typeName
) const;
1609 virtual wxGridCellRenderer
* GetDefaultRendererForType(const wxString
& typeName
) const;
1611 // grid may occupy more space than needed for its rows/columns, this
1612 // function allows to set how big this extra space is
1613 void SetMargins(int extraWidth
, int extraHeight
)
1615 m_extraWidth
= extraWidth
;
1616 m_extraHeight
= extraHeight
;
1621 // Accessors for component windows
1622 wxWindow
* GetGridWindow() const { return (wxWindow
*)m_gridWin
; }
1623 wxWindow
* GetGridRowLabelWindow() const { return (wxWindow
*)m_rowLabelWin
; }
1624 wxWindow
* GetGridColLabelWindow() const { return m_colWindow
; }
1625 wxWindow
* GetGridCornerLabelWindow() const { return (wxWindow
*)m_cornerLabelWin
; }
1627 // This one can only be called if we are using the native header window
1628 wxHeaderCtrl
*GetGridColHeader() const
1630 wxASSERT_MSG( m_useNativeHeader
, "no column header window" );
1632 // static_cast<> doesn't work without the full class declaration in
1633 // view and we prefer to avoid adding more compile-time dependencies
1634 // even at the cost of using reinterpret_cast<>
1635 return reinterpret_cast<wxHeaderCtrl
*>(m_colWindow
);
1638 // Allow adjustment of scroll increment. The default is (15, 15).
1639 void SetScrollLineX(int x
) { m_xScrollPixelsPerLine
= x
; }
1640 void SetScrollLineY(int y
) { m_yScrollPixelsPerLine
= y
; }
1641 int GetScrollLineX() const { return m_xScrollPixelsPerLine
; }
1642 int GetScrollLineY() const { return m_yScrollPixelsPerLine
; }
1644 // ------- drag and drop
1645 #if wxUSE_DRAG_AND_DROP
1646 virtual void SetDropTarget(wxDropTarget
*dropTarget
);
1647 #endif // wxUSE_DRAG_AND_DROP
1650 // ------- sorting support
1652 // wxGrid doesn't support sorting on its own but it can indicate the sort
1653 // order in the column header (currently only if native header control is
1656 // return the column currently displaying the sort indicator or wxNOT_FOUND
1658 int GetSortingColumn() const { return m_sortCol
; }
1660 // return true if this column is currently used for sorting
1661 bool IsSortingBy(int col
) const { return GetSortingColumn() == col
; }
1663 // return the current sorting order (on GetSortingColumn()): true for
1664 // ascending sort and false for descending; it doesn't make sense to call
1665 // it if GetSortingColumn() returns wxNOT_FOUND
1666 bool IsSortOrderAscending() const { return m_sortIsAscending
; }
1668 // set the sorting column (or unsets any existing one if wxNOT_FOUND) and
1669 // the order in which to sort
1670 void SetSortingColumn(int col
, bool ascending
= true);
1672 // unset any existing sorting column
1673 void UnsetSortingColumn() { SetSortingColumn(wxNOT_FOUND
); }
1675 #if WXWIN_COMPATIBILITY_2_8
1676 // ------ For compatibility with previous wxGrid only...
1678 // ************************************************
1679 // ** Don't use these in new code because they **
1680 // ** are liable to disappear in a future **
1682 // ************************************************
1685 wxGrid( wxWindow
*parent
,
1686 int x
, int y
, int w
= wxDefaultCoord
, int h
= wxDefaultCoord
,
1687 long style
= wxWANTS_CHARS
,
1688 const wxString
& name
= wxPanelNameStr
)
1691 Create(parent
, wxID_ANY
, wxPoint(x
, y
), wxSize(w
, h
), style
, name
);
1694 void SetCellValue( const wxString
& val
, int row
, int col
)
1695 { SetCellValue( row
, col
, val
); }
1697 void UpdateDimensions()
1698 { CalcDimensions(); }
1700 int GetRows() const { return GetNumberRows(); }
1701 int GetCols() const { return GetNumberCols(); }
1702 int GetCursorRow() const { return GetGridCursorRow(); }
1703 int GetCursorColumn() const { return GetGridCursorCol(); }
1705 int GetScrollPosX() const { return 0; }
1706 int GetScrollPosY() const { return 0; }
1708 void SetScrollX( int WXUNUSED(x
) ) { }
1709 void SetScrollY( int WXUNUSED(y
) ) { }
1711 void SetColumnWidth( int col
, int width
)
1712 { SetColSize( col
, width
); }
1714 int GetColumnWidth( int col
) const
1715 { return GetColSize( col
); }
1717 void SetRowHeight( int row
, int height
)
1718 { SetRowSize( row
, height
); }
1720 // GetRowHeight() is below
1722 int GetViewHeight() const // returned num whole rows visible
1725 int GetViewWidth() const // returned num whole cols visible
1728 void SetLabelSize( int orientation
, int sz
)
1730 if ( orientation
== wxHORIZONTAL
)
1731 SetColLabelSize( sz
);
1733 SetRowLabelSize( sz
);
1736 int GetLabelSize( int orientation
) const
1738 if ( orientation
== wxHORIZONTAL
)
1739 return GetColLabelSize();
1741 return GetRowLabelSize();
1744 void SetLabelAlignment( int orientation
, int align
)
1746 if ( orientation
== wxHORIZONTAL
)
1747 SetColLabelAlignment( align
, wxALIGN_INVALID
);
1749 SetRowLabelAlignment( align
, wxALIGN_INVALID
);
1752 int GetLabelAlignment( int orientation
, int WXUNUSED(align
) ) const
1755 if ( orientation
== wxHORIZONTAL
)
1757 GetColLabelAlignment( &h
, &v
);
1762 GetRowLabelAlignment( &h
, &v
);
1767 void SetLabelValue( int orientation
, const wxString
& val
, int pos
)
1769 if ( orientation
== wxHORIZONTAL
)
1770 SetColLabelValue( pos
, val
);
1772 SetRowLabelValue( pos
, val
);
1775 wxString
GetLabelValue( int orientation
, int pos
) const
1777 if ( orientation
== wxHORIZONTAL
)
1778 return GetColLabelValue( pos
);
1780 return GetRowLabelValue( pos
);
1783 wxFont
GetCellTextFont() const
1784 { return m_defaultCellAttr
->GetFont(); }
1786 wxFont
GetCellTextFont(int WXUNUSED(row
), int WXUNUSED(col
)) const
1787 { return m_defaultCellAttr
->GetFont(); }
1789 void SetCellTextFont(const wxFont
& fnt
)
1790 { SetDefaultCellFont( fnt
); }
1792 void SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
1793 { SetCellFont( row
, col
, fnt
); }
1795 void SetCellTextColour(const wxColour
& val
, int row
, int col
)
1796 { SetCellTextColour( row
, col
, val
); }
1798 void SetCellTextColour(const wxColour
& col
)
1799 { SetDefaultCellTextColour( col
); }
1801 void SetCellBackgroundColour(const wxColour
& col
)
1802 { SetDefaultCellBackgroundColour( col
); }
1804 void SetCellBackgroundColour(const wxColour
& colour
, int row
, int col
)
1805 { SetCellBackgroundColour( row
, col
, colour
); }
1807 bool GetEditable() const { return IsEditable(); }
1808 void SetEditable( bool edit
= true ) { EnableEditing( edit
); }
1809 bool GetEditInPlace() const { return IsCellEditControlEnabled(); }
1811 void SetEditInPlace(bool WXUNUSED(edit
) = true) { }
1813 void SetCellAlignment( int align
, int row
, int col
)
1814 { SetCellAlignment(row
, col
, align
, wxALIGN_CENTER
); }
1815 void SetCellAlignment( int WXUNUSED(align
) ) {}
1816 void SetCellBitmap(wxBitmap
*WXUNUSED(bitmap
), int WXUNUSED(row
), int WXUNUSED(col
))
1818 void SetDividerPen(const wxPen
& WXUNUSED(pen
)) { }
1819 wxPen
& GetDividerPen() const;
1820 void OnActivate(bool WXUNUSED(active
)) {}
1822 // ******** End of compatibility functions **********
1826 // ------ control IDs
1827 enum { wxGRID_CELLCTRL
= 2000,
1830 // ------ control types
1831 enum { wxGRID_TEXTCTRL
= 2100,
1836 wxDEPRECATED_INLINE(bool CanDragRowSize() const, return m_canDragRowSize
; )
1837 wxDEPRECATED_INLINE(bool CanDragColSize() const, return m_canDragColSize
; )
1838 #endif // WXWIN_COMPATIBILITY_2_8
1841 // override some base class functions
1842 virtual bool Enable(bool enable
= true);
1843 virtual wxWindow
*GetMainWindowOfCompositeControl()
1844 { return (wxWindow
*)m_gridWin
; }
1847 // implementation only
1848 void CancelMouseCapture();
1851 virtual wxSize
DoGetBestSize() const;
1855 wxGridWindow
*m_gridWin
;
1856 wxGridCornerLabelWindow
*m_cornerLabelWin
;
1857 wxGridRowLabelWindow
*m_rowLabelWin
;
1859 // the real type of the column window depends on m_useNativeHeader value:
1860 // if it is true, its dynamic type is wxHeaderCtrl, otherwise it is
1861 // wxGridColLabelWindow, use accessors below when the real type matters
1862 wxWindow
*m_colWindow
;
1864 wxGridColLabelWindow
*GetColLabelWindow() const
1866 wxASSERT_MSG( !m_useNativeHeader
, "no column label window" );
1868 return reinterpret_cast<wxGridColLabelWindow
*>(m_colWindow
);
1871 wxGridTableBase
*m_table
;
1877 wxGridCellCoords m_currentCellCoords
;
1879 // the corners of the block being currently selected or wxGridNoCellCoords
1880 wxGridCellCoords m_selectedBlockTopLeft
;
1881 wxGridCellCoords m_selectedBlockBottomRight
;
1883 // when selecting blocks of cells (either from the keyboard using Shift
1884 // with cursor keys, or by dragging the mouse), the selection is anchored
1885 // at m_currentCellCoords which defines one of the corners of the rectangle
1886 // being selected -- and this variable defines the other corner, i.e. it's
1887 // either m_selectedBlockTopLeft or m_selectedBlockBottomRight depending on
1888 // which of them is not m_currentCellCoords
1890 // if no block selection is in process, it is set to wxGridNoCellCoords
1891 wxGridCellCoords m_selectedBlockCorner
;
1893 wxGridSelection
*m_selection
;
1895 wxColour m_selectionBackground
;
1896 wxColour m_selectionForeground
;
1898 // NB: *never* access m_row/col arrays directly because they are created
1899 // on demand, *always* use accessor functions instead!
1901 // init the m_rowHeights/Bottoms arrays with default values
1902 void InitRowHeights();
1904 int m_defaultRowHeight
;
1905 int m_minAcceptableRowHeight
;
1906 wxArrayInt m_rowHeights
;
1907 wxArrayInt m_rowBottoms
;
1909 // init the m_colWidths/Rights arrays
1910 void InitColWidths();
1912 int m_defaultColWidth
;
1913 int m_minAcceptableColWidth
;
1914 wxArrayInt m_colWidths
;
1915 wxArrayInt m_colRights
;
1918 bool m_sortIsAscending
;
1920 bool m_useNativeHeader
,
1921 m_nativeColumnLabels
;
1923 // get the col/row coords
1924 int GetColWidth(int col
) const;
1925 int GetColLeft(int col
) const;
1926 int GetColRight(int col
) const;
1928 // this function must be public for compatibility...
1930 int GetRowHeight(int row
) const;
1933 int GetRowTop(int row
) const;
1934 int GetRowBottom(int row
) const;
1936 int m_rowLabelWidth
;
1937 int m_colLabelHeight
;
1939 // the size of the margin left to the right and bottom of the cell area
1943 wxColour m_labelBackgroundColour
;
1944 wxColour m_labelTextColour
;
1947 int m_rowLabelHorizAlign
;
1948 int m_rowLabelVertAlign
;
1949 int m_colLabelHorizAlign
;
1950 int m_colLabelVertAlign
;
1951 int m_colLabelTextOrientation
;
1953 bool m_defaultRowLabelValues
;
1954 bool m_defaultColLabelValues
;
1956 wxColour m_gridLineColour
;
1957 bool m_gridLinesEnabled
;
1958 bool m_gridLinesClipHorz
,
1959 m_gridLinesClipVert
;
1960 wxColour m_cellHighlightColour
;
1961 int m_cellHighlightPenWidth
;
1962 int m_cellHighlightROPenWidth
;
1965 // common part of AutoSizeColumn/Row() and GetBestSize()
1966 int SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
= true);
1967 int SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
= true);
1969 // common part of AutoSizeColumn/Row()
1970 void AutoSizeColOrRow(int n
, bool setAsMin
, wxGridDirection direction
);
1972 // Calculate the minimum acceptable size for labels area
1973 wxCoord
CalcColOrRowLabelAreaMinSize(wxGridDirection direction
);
1975 // if a column has a minimal width, it will be the value for it in this
1977 wxLongToLongHashMap m_colMinWidths
,
1980 // get the minimal width of the given column/row
1981 int GetColMinimalWidth(int col
) const;
1982 int GetRowMinimalHeight(int col
) const;
1984 // do we have some place to store attributes in?
1985 bool CanHaveAttributes() const;
1987 // cell attribute cache (currently we only cache 1, may be will do
1988 // more/better later)
1992 wxGridCellAttr
*attr
;
1995 // invalidates the attribute cache
1996 void ClearAttrCache();
1998 // adds an attribute to cache
1999 void CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const;
2001 // looks for an attr in cache, returns true if found
2002 bool LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const;
2004 // looks for the attr in cache, if not found asks the table and caches the
2006 wxGridCellAttr
*GetCellAttr(int row
, int col
) const;
2007 wxGridCellAttr
*GetCellAttr(const wxGridCellCoords
& coords
) const
2008 { return GetCellAttr( coords
.GetRow(), coords
.GetCol() ); }
2010 // the default cell attr object for cells that don't have their own
2011 wxGridCellAttr
* m_defaultCellAttr
;
2018 wxGridTypeRegistry
* m_typeRegistry
;
2022 WXGRID_CURSOR_SELECT_CELL
,
2023 WXGRID_CURSOR_RESIZE_ROW
,
2024 WXGRID_CURSOR_RESIZE_COL
,
2025 WXGRID_CURSOR_SELECT_ROW
,
2026 WXGRID_CURSOR_SELECT_COL
,
2027 WXGRID_CURSOR_MOVE_COL
2030 // this method not only sets m_cursorMode but also sets the correct cursor
2031 // for the given mode and, if captureMouse is not false releases the mouse
2032 // if it was captured and captures it if it must be captured
2034 // for this to work, you should always use it and not set m_cursorMode
2036 void ChangeCursorMode(CursorMode mode
,
2037 wxWindow
*win
= NULL
,
2038 bool captureMouse
= true);
2040 wxWindow
*m_winCapture
; // the window which captured the mouse
2042 // this variable is used not for finding the correct current cursor but
2043 // mainly for finding out what is going to happen if the mouse starts being
2044 // dragged right now
2046 // by default it is WXGRID_CURSOR_SELECT_CELL meaning that nothing else is
2047 // going on, and it is set to one of RESIZE/SELECT/MOVE values while the
2048 // corresponding operation will be started if the user starts dragging the
2049 // mouse from the current position
2050 CursorMode m_cursorMode
;
2056 bool m_canDragRowSize
;
2057 bool m_canDragColSize
;
2058 bool m_canDragColMove
;
2059 bool m_canDragGridSize
;
2062 // the last position (horizontal or vertical depending on whether the user
2063 // is resizing a column or a row) where a row or column separator line was
2064 // dragged by the user or -1 of there is no drag operation in progress
2068 // true if a drag operation is in progress; when this is true,
2069 // m_startDragPos is valid, i.e. not wxDefaultPosition
2072 // the position (in physical coordinates) where the user started dragging
2073 // the mouse or wxDefaultPosition if mouse isn't being dragged
2075 // notice that this can be != wxDefaultPosition while m_isDragging is still
2076 // false because we wait until the mouse is moved some distance away before
2077 // setting m_isDragging to true
2078 wxPoint m_startDragPos
;
2080 bool m_waitForSlowClick
;
2082 wxGridCellCoords m_selectionStart
;
2084 wxCursor m_rowResizeCursor
;
2085 wxCursor m_colResizeCursor
;
2087 bool m_editable
; // applies to whole grid
2088 bool m_cellEditCtrlEnabled
; // is in-place edit currently shown?
2090 TabBehaviour m_tabBehaviour
; // determines how the TAB key behaves
2092 void Init(); // common part of all ctors
2094 void CreateColumnWindow();
2095 void CalcDimensions();
2096 void CalcWindowSizes();
2097 bool Redimension( wxGridTableMessage
& );
2100 // generate the appropriate grid event and return -1 if it was vetoed, 1 if
2101 // it was processed (but not vetoed) and 0 if it wasn't processed
2102 int SendEvent(const wxEventType evtType
,
2104 const wxMouseEvent
& e
);
2105 int SendEvent(const wxEventType evtType
,
2106 const wxGridCellCoords
& coords
,
2107 const wxMouseEvent
& e
)
2108 { return SendEvent(evtType
, coords
.GetRow(), coords
.GetCol(), e
); }
2109 int SendEvent(const wxEventType evtType
,
2111 const wxString
& s
= wxString());
2112 int SendEvent(const wxEventType evtType
,
2113 const wxGridCellCoords
& coords
,
2114 const wxString
& s
= wxString())
2115 { return SendEvent(evtType
, coords
.GetRow(), coords
.GetCol(), s
); }
2116 int SendEvent(const wxEventType evtType
, const wxString
& s
= wxString())
2117 { return SendEvent(evtType
, m_currentCellCoords
, s
); }
2119 // send wxEVT_GRID_{ROW,COL}_SIZE or wxEVT_GRID_COL_AUTO_SIZE, return true
2120 // if the event was processed, false otherwise
2121 bool SendGridSizeEvent(wxEventType type
,
2123 const wxMouseEvent
& mouseEv
);
2125 void OnPaint( wxPaintEvent
& );
2126 void OnSize( wxSizeEvent
& );
2127 void OnKeyDown( wxKeyEvent
& );
2128 void OnKeyUp( wxKeyEvent
& );
2129 void OnChar( wxKeyEvent
& );
2130 void OnEraseBackground( wxEraseEvent
& );
2131 void OnHideEditor( wxCommandEvent
& );
2134 bool SetCurrentCell( const wxGridCellCoords
& coords
);
2135 bool SetCurrentCell( int row
, int col
)
2136 { return SetCurrentCell( wxGridCellCoords(row
, col
) ); }
2139 // this function is called to extend the block being currently selected
2140 // from mouse and keyboard event handlers
2141 void UpdateBlockBeingSelected(int topRow
, int leftCol
,
2142 int bottomRow
, int rightCol
);
2144 void UpdateBlockBeingSelected(const wxGridCellCoords
& topLeft
,
2145 const wxGridCellCoords
& bottomRight
)
2146 { UpdateBlockBeingSelected(topLeft
.GetRow(), topLeft
.GetCol(),
2147 bottomRight
.GetRow(), bottomRight
.GetCol()); }
2149 // ------ functions to get/send data (see also public functions)
2151 bool GetModelValues();
2152 bool SetModelValues();
2154 friend class WXDLLIMPEXP_FWD_ADV wxGridSelection
;
2155 friend class wxGridRowOperations
;
2156 friend class wxGridColumnOperations
;
2158 // they call our private Process{{Corner,Col,Row}Label,GridCell}MouseEvent()
2159 friend class wxGridCornerLabelWindow
;
2160 friend class wxGridColLabelWindow
;
2161 friend class wxGridRowLabelWindow
;
2162 friend class wxGridWindow
;
2163 friend class wxGridHeaderRenderer
;
2165 friend class wxGridHeaderCtrl
;
2169 // implement wxScrolledWindow method to return m_gridWin size
2170 virtual wxSize
GetSizeAvailableForScrollTarget(const wxSize
& size
);
2172 // redraw the grid lines, should be called after changing their attributes
2173 void RedrawGridLines();
2175 // draw all grid lines in the given cell region (unlike the public
2176 // DrawAllGridLines() which just draws all of them)
2177 void DrawRangeGridLines(wxDC
& dc
, const wxRegion
& reg
,
2178 const wxGridCellCoords
& topLeft
,
2179 const wxGridCellCoords
& bottomRight
);
2181 // draw all lines from top to bottom row and left to right column in the
2182 // rectangle determined by (top, left)-(bottom, right) -- but notice that
2183 // the caller must have set up the clipping correctly, this rectangle is
2184 // only used here for optimization
2185 void DoDrawGridLines(wxDC
& dc
,
2187 int bottom
, int right
,
2188 int topRow
, int leftCol
,
2189 int bottomRight
, int rightCol
);
2191 // common part of Clip{Horz,Vert}GridLines
2192 void DoClipGridLines(bool& var
, bool clip
);
2194 // update the sorting indicator shown in the specified column (whose index
2197 // this will use GetSortingColumn() and IsSortOrderAscending() to determine
2198 // the sorting indicator to effectively show
2199 void UpdateColumnSortingIndicator(int col
);
2201 // update the grid after changing the columns order (common part of
2202 // SetColPos() and ResetColPos())
2203 void RefreshAfterColPosChange();
2206 // return the position (not index) of the column at the given logical pixel
2209 // this always returns a valid position, even if the coordinate is out of
2210 // bounds (in which case first/last column is returned)
2211 int XToPos(int x
) const;
2214 // event handlers and their helpers
2215 // --------------------------------
2217 // process mouse drag event in WXGRID_CURSOR_SELECT_CELL mode
2218 bool DoGridCellDrag(wxMouseEvent
& event
,
2219 const wxGridCellCoords
& coords
,
2222 // process row/column resizing drag event
2223 void DoGridLineDrag(wxMouseEvent
& event
, const wxGridOperations
& oper
);
2225 // process mouse drag event in the grid window
2226 void DoGridDragEvent(wxMouseEvent
& event
, const wxGridCellCoords
& coords
);
2228 // process different clicks on grid cells
2229 void DoGridCellLeftDown(wxMouseEvent
& event
,
2230 const wxGridCellCoords
& coords
,
2231 const wxPoint
& pos
);
2232 void DoGridCellLeftDClick(wxMouseEvent
& event
,
2233 const wxGridCellCoords
& coords
,
2234 const wxPoint
& pos
);
2235 void DoGridCellLeftUp(wxMouseEvent
& event
, const wxGridCellCoords
& coords
);
2237 // process movement (but not dragging) event in the grid cell area
2238 void DoGridMouseMoveEvent(wxMouseEvent
& event
,
2239 const wxGridCellCoords
& coords
,
2240 const wxPoint
& pos
);
2242 // process mouse events in the grid window
2243 void ProcessGridCellMouseEvent(wxMouseEvent
& event
);
2245 // process mouse events in the row/column labels/corner windows
2246 void ProcessRowLabelMouseEvent(wxMouseEvent
& event
);
2247 void ProcessColLabelMouseEvent(wxMouseEvent
& event
);
2248 void ProcessCornerLabelMouseEvent(wxMouseEvent
& event
);
2250 void DoColHeaderClick(int col
);
2252 void DoStartResizeCol(int col
);
2253 void DoUpdateResizeCol(int x
);
2254 void DoUpdateResizeColWidth(int w
);
2255 void DoStartMoveCol(int col
);
2257 void DoEndDragResizeRow(const wxMouseEvent
& event
);
2258 void DoEndDragResizeCol(const wxMouseEvent
& event
);
2259 void DoEndMoveCol(int pos
);
2261 // process a TAB keypress
2262 void DoGridProcessTab(wxKeyboardState
& kbdState
);
2264 // common implementations of methods defined for both rows and columns
2265 void DeselectLine(int line
, const wxGridOperations
& oper
);
2266 bool DoEndDragResizeLine(const wxGridOperations
& oper
);
2267 int PosToLinePos(int pos
, bool clipToMinMax
,
2268 const wxGridOperations
& oper
) const;
2269 int PosToLine(int pos
, bool clipToMinMax
,
2270 const wxGridOperations
& oper
) const;
2271 int PosToEdgeOfLine(int pos
, const wxGridOperations
& oper
) const;
2273 bool DoMoveCursor(bool expandSelection
,
2274 const wxGridDirectionOperations
& diroper
);
2275 bool DoMoveCursorByPage(const wxGridDirectionOperations
& diroper
);
2276 bool DoMoveCursorByBlock(bool expandSelection
,
2277 const wxGridDirectionOperations
& diroper
);
2278 void AdvanceToNextNonEmpty(wxGridCellCoords
& coords
,
2279 const wxGridDirectionOperations
& diroper
);
2281 // common part of {Insert,Delete}{Rows,Cols}
2282 bool DoModifyLines(bool (wxGridTableBase::*funcModify
)(size_t, size_t),
2283 int pos
, int num
, bool updateLabels
);
2284 // Append{Rows,Cols} is a bit different because of one less parameter
2285 bool DoAppendLines(bool (wxGridTableBase::*funcAppend
)(size_t),
2286 int num
, bool updateLabels
);
2288 // common part of Set{Col,Row}Sizes
2289 void DoSetSizes(const wxGridSizesInfo
& sizeInfo
,
2290 const wxGridOperations
& oper
);
2292 // common part of Disable{Row,Col}Resize and CanDrag{Row,Col}Size
2293 void DoDisableLineResize(int line
, wxGridFixedIndicesSet
*& setFixed
);
2294 bool DoCanResizeLine(int line
, const wxGridFixedIndicesSet
*setFixed
) const;
2296 // Helper of Render(): get grid size, origin offset and fill cell arrays
2297 void GetRenderSizes( const wxGridCellCoords
& topLeft
,
2298 const wxGridCellCoords
& bottomRight
,
2299 wxPoint
& pointOffSet
, wxSize
& sizeGrid
,
2300 wxGridCellCoordsArray
& renderCells
,
2301 wxArrayInt
& arrayCols
, wxArrayInt
& arrayRows
);
2303 // Helper of Render(): set the scale to draw the cells at the right size.
2304 void SetRenderScale( wxDC
& dc
, const wxPoint
& pos
, const wxSize
& size
,
2305 const wxSize
& sizeGrid
);
2307 // Helper of Render(): get render start position from passed parameter
2308 wxPoint
GetRenderPosition( wxDC
& dc
, const wxPoint
& position
);
2310 // Helper of Render(): draws a box around the rendered area
2311 void DoRenderBox( wxDC
& dc
, const int& style
,
2312 const wxPoint
& pointOffSet
,
2313 const wxSize
& sizeCellArea
,
2314 const wxGridCellCoords
& topLeft
,
2315 const wxGridCellCoords
& bottomRight
);
2317 // Implementation of public Set{Row,Col}Size() and {Hide,Show}{Row,Col}().
2318 // They interpret their height or width parameter slightly different from
2319 // the public methods where -1 in it means "auto fit to the label" for the
2320 // compatibility reasons. Here it means "show a previously hidden row or
2321 // column" while 0 means "hide it" just as in the public methods. And any
2322 // positive values are handled naturally, i.e. they just specify the size.
2323 void DoSetRowSize( int row
, int height
);
2324 void DoSetColSize( int col
, int width
);
2327 // these sets contain the indices of fixed, i.e. non-resizable
2328 // interactively, grid rows or columns and are NULL if there are no fixed
2329 // elements (which is the default)
2330 wxGridFixedIndicesSet
*m_setFixedRows
,
2333 DECLARE_DYNAMIC_CLASS( wxGrid
)
2334 DECLARE_EVENT_TABLE()
2335 wxDECLARE_NO_COPY_CLASS(wxGrid
);
2338 // ----------------------------------------------------------------------------
2339 // wxGridUpdateLocker prevents updates to a grid during its lifetime
2340 // ----------------------------------------------------------------------------
2342 class WXDLLIMPEXP_ADV wxGridUpdateLocker
2345 // if the pointer is NULL, Create() can be called later
2346 wxGridUpdateLocker(wxGrid
*grid
= NULL
)
2351 // can be called if ctor was used with a NULL pointer, must not be called
2353 void Create(wxGrid
*grid
)
2355 wxASSERT_MSG( !m_grid
, wxT("shouldn't be called more than once") );
2360 ~wxGridUpdateLocker()
2367 void Init(wxGrid
*grid
)
2371 m_grid
->BeginBatch();
2376 wxDECLARE_NO_COPY_CLASS(wxGridUpdateLocker
);
2379 // ----------------------------------------------------------------------------
2380 // Grid event class and event types
2381 // ----------------------------------------------------------------------------
2383 class WXDLLIMPEXP_ADV wxGridEvent
: public wxNotifyEvent
,
2384 public wxKeyboardState
2390 Init(-1, -1, -1, -1, false);
2396 int row
= -1, int col
= -1,
2397 int x
= -1, int y
= -1,
2399 const wxKeyboardState
& kbd
= wxKeyboardState())
2400 : wxNotifyEvent(type
, id
),
2401 wxKeyboardState(kbd
)
2403 Init(row
, col
, x
, y
, sel
);
2404 SetEventObject(obj
);
2407 // explicitly specifying inline allows gcc < 3.4 to
2408 // handle the deprecation attribute even in the constructor.
2409 wxDEPRECATED_CONSTRUCTOR(
2417 bool shift
= false, bool alt
= false, bool meta
= false));
2419 virtual int GetRow() { return m_row
; }
2420 virtual int GetCol() { return m_col
; }
2421 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
2422 bool Selecting() { return m_selecting
; }
2424 virtual wxEvent
*Clone() const { return new wxGridEvent(*this); }
2434 void Init(int row
, int col
, int x
, int y
, bool sel
)
2443 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEvent
)
2446 class WXDLLIMPEXP_ADV wxGridSizeEvent
: public wxNotifyEvent
,
2447 public wxKeyboardState
2456 wxGridSizeEvent(int id
,
2460 int x
= -1, int y
= -1,
2461 const wxKeyboardState
& kbd
= wxKeyboardState())
2462 : wxNotifyEvent(type
, id
),
2463 wxKeyboardState(kbd
)
2465 Init(rowOrCol
, x
, y
);
2467 SetEventObject(obj
);
2470 wxDEPRECATED_CONSTRUCTOR(
2471 wxGridSizeEvent(int id
,
2479 bool meta
= false) );
2481 int GetRowOrCol() { return m_rowOrCol
; }
2482 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
2484 virtual wxEvent
*Clone() const { return new wxGridSizeEvent(*this); }
2492 void Init(int rowOrCol
, int x
, int y
)
2494 m_rowOrCol
= rowOrCol
;
2499 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridSizeEvent
)
2503 class WXDLLIMPEXP_ADV wxGridRangeSelectEvent
: public wxNotifyEvent
,
2504 public wxKeyboardState
2507 wxGridRangeSelectEvent()
2510 Init(wxGridNoCellCoords
, wxGridNoCellCoords
, false);
2513 wxGridRangeSelectEvent(int id
,
2516 const wxGridCellCoords
& topLeft
,
2517 const wxGridCellCoords
& bottomRight
,
2519 const wxKeyboardState
& kbd
= wxKeyboardState())
2520 : wxNotifyEvent(type
, id
),
2521 wxKeyboardState(kbd
)
2523 Init(topLeft
, bottomRight
, sel
);
2525 SetEventObject(obj
);
2528 wxDEPRECATED_CONSTRUCTOR(
2529 wxGridRangeSelectEvent(int id
,
2532 const wxGridCellCoords
& topLeft
,
2533 const wxGridCellCoords
& bottomRight
,
2538 bool meta
= false) );
2540 wxGridCellCoords
GetTopLeftCoords() { return m_topLeft
; }
2541 wxGridCellCoords
GetBottomRightCoords() { return m_bottomRight
; }
2542 int GetTopRow() { return m_topLeft
.GetRow(); }
2543 int GetBottomRow() { return m_bottomRight
.GetRow(); }
2544 int GetLeftCol() { return m_topLeft
.GetCol(); }
2545 int GetRightCol() { return m_bottomRight
.GetCol(); }
2546 bool Selecting() { return m_selecting
; }
2548 virtual wxEvent
*Clone() const { return new wxGridRangeSelectEvent(*this); }
2551 void Init(const wxGridCellCoords
& topLeft
,
2552 const wxGridCellCoords
& bottomRight
,
2555 m_topLeft
= topLeft
;
2556 m_bottomRight
= bottomRight
;
2557 m_selecting
= selecting
;
2560 wxGridCellCoords m_topLeft
;
2561 wxGridCellCoords m_bottomRight
;
2564 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridRangeSelectEvent
)
2568 class WXDLLIMPEXP_ADV wxGridEditorCreatedEvent
: public wxCommandEvent
2571 wxGridEditorCreatedEvent()
2579 wxGridEditorCreatedEvent(int id
, wxEventType type
, wxObject
* obj
,
2580 int row
, int col
, wxControl
* ctrl
);
2582 int GetRow() { return m_row
; }
2583 int GetCol() { return m_col
; }
2584 wxControl
* GetControl() { return m_ctrl
; }
2585 void SetRow(int row
) { m_row
= row
; }
2586 void SetCol(int col
) { m_col
= col
; }
2587 void SetControl(wxControl
* ctrl
) { m_ctrl
= ctrl
; }
2589 virtual wxEvent
*Clone() const { return new wxGridEditorCreatedEvent(*this); }
2596 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEditorCreatedEvent
)
2600 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_LEFT_CLICK
, wxGridEvent
);
2601 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_RIGHT_CLICK
, wxGridEvent
);
2602 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_LEFT_DCLICK
, wxGridEvent
);
2603 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_RIGHT_DCLICK
, wxGridEvent
);
2604 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_LABEL_LEFT_CLICK
, wxGridEvent
);
2605 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_LABEL_RIGHT_CLICK
, wxGridEvent
);
2606 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_LABEL_LEFT_DCLICK
, wxGridEvent
);
2607 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_LABEL_RIGHT_DCLICK
, wxGridEvent
);
2608 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_ROW_SIZE
, wxGridSizeEvent
);
2609 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_COL_SIZE
, wxGridSizeEvent
);
2610 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_COL_AUTO_SIZE
, wxGridSizeEvent
);
2611 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_RANGE_SELECT
, wxGridRangeSelectEvent
);
2612 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_CHANGING
, wxGridEvent
);
2613 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_CHANGED
, wxGridEvent
);
2614 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_SELECT_CELL
, wxGridEvent
);
2615 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_EDITOR_SHOWN
, wxGridEvent
);
2616 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_EDITOR_HIDDEN
, wxGridEvent
);
2617 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_EDITOR_CREATED
, wxGridEditorCreatedEvent
);
2618 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_CELL_BEGIN_DRAG
, wxGridEvent
);
2619 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_COL_MOVE
, wxGridEvent
);
2620 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_COL_SORT
, wxGridEvent
);
2621 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_GRID_TABBING
, wxGridEvent
);
2623 typedef void (wxEvtHandler::*wxGridEventFunction
)(wxGridEvent
&);
2624 typedef void (wxEvtHandler::*wxGridSizeEventFunction
)(wxGridSizeEvent
&);
2625 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction
)(wxGridRangeSelectEvent
&);
2626 typedef void (wxEvtHandler::*wxGridEditorCreatedEventFunction
)(wxGridEditorCreatedEvent
&);
2628 #define wxGridEventHandler(func) \
2629 wxEVENT_HANDLER_CAST(wxGridEventFunction, func)
2631 #define wxGridSizeEventHandler(func) \
2632 wxEVENT_HANDLER_CAST(wxGridSizeEventFunction, func)
2634 #define wxGridRangeSelectEventHandler(func) \
2635 wxEVENT_HANDLER_CAST(wxGridRangeSelectEventFunction, func)
2637 #define wxGridEditorCreatedEventHandler(func) \
2638 wxEVENT_HANDLER_CAST(wxGridEditorCreatedEventFunction, func)
2640 #define wx__DECLARE_GRIDEVT(evt, id, fn) \
2641 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEventHandler(fn))
2643 #define wx__DECLARE_GRIDSIZEEVT(evt, id, fn) \
2644 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridSizeEventHandler(fn))
2646 #define wx__DECLARE_GRIDRANGESELEVT(evt, id, fn) \
2647 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridRangeSelectEventHandler(fn))
2649 #define wx__DECLARE_GRIDEDITOREVT(evt, id, fn) \
2650 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEditorCreatedEventHandler(fn))
2652 #define EVT_GRID_CMD_CELL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_CLICK, id, fn)
2653 #define EVT_GRID_CMD_CELL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_CLICK, id, fn)
2654 #define EVT_GRID_CMD_CELL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_DCLICK, id, fn)
2655 #define EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_DCLICK, id, fn)
2656 #define EVT_GRID_CMD_LABEL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_CLICK, id, fn)
2657 #define EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_CLICK, id, fn)
2658 #define EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_DCLICK, id, fn)
2659 #define EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_DCLICK, id, fn)
2660 #define EVT_GRID_CMD_ROW_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(ROW_SIZE, id, fn)
2661 #define EVT_GRID_CMD_COL_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(COL_SIZE, id, fn)
2662 #define EVT_GRID_CMD_COL_AUTO_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(COL_AUTO_SIZE, id, fn)
2663 #define EVT_GRID_CMD_COL_MOVE(id, fn) wx__DECLARE_GRIDEVT(COL_MOVE, id, fn)
2664 #define EVT_GRID_CMD_COL_SORT(id, fn) wx__DECLARE_GRIDEVT(COL_SORT, id, fn)
2665 #define EVT_GRID_CMD_RANGE_SELECT(id, fn) wx__DECLARE_GRIDRANGESELEVT(RANGE_SELECT, id, fn)
2666 #define EVT_GRID_CMD_CELL_CHANGING(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGING, id, fn)
2667 #define EVT_GRID_CMD_CELL_CHANGED(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGED, id, fn)
2668 #define EVT_GRID_CMD_SELECT_CELL(id, fn) wx__DECLARE_GRIDEVT(SELECT_CELL, id, fn)
2669 #define EVT_GRID_CMD_EDITOR_SHOWN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_SHOWN, id, fn)
2670 #define EVT_GRID_CMD_EDITOR_HIDDEN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_HIDDEN, id, fn)
2671 #define EVT_GRID_CMD_EDITOR_CREATED(id, fn) wx__DECLARE_GRIDEDITOREVT(EDITOR_CREATED, id, fn)
2672 #define EVT_GRID_CMD_CELL_BEGIN_DRAG(id, fn) wx__DECLARE_GRIDEVT(CELL_BEGIN_DRAG, id, fn)
2673 #define EVT_GRID_CMD_TABBING(id, fn) wx__DECLARE_GRIDEVT(TABBING, id, fn)
2675 // same as above but for any id (exists mainly for backwards compatibility but
2676 // then it's also true that you rarely have multiple grid in the same window)
2677 #define EVT_GRID_CELL_LEFT_CLICK(fn) EVT_GRID_CMD_CELL_LEFT_CLICK(wxID_ANY, fn)
2678 #define EVT_GRID_CELL_RIGHT_CLICK(fn) EVT_GRID_CMD_CELL_RIGHT_CLICK(wxID_ANY, fn)
2679 #define EVT_GRID_CELL_LEFT_DCLICK(fn) EVT_GRID_CMD_CELL_LEFT_DCLICK(wxID_ANY, fn)
2680 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) EVT_GRID_CMD_CELL_RIGHT_DCLICK(wxID_ANY, fn)
2681 #define EVT_GRID_LABEL_LEFT_CLICK(fn) EVT_GRID_CMD_LABEL_LEFT_CLICK(wxID_ANY, fn)
2682 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_CLICK(wxID_ANY, fn)
2683 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) EVT_GRID_CMD_LABEL_LEFT_DCLICK(wxID_ANY, fn)
2684 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_DCLICK(wxID_ANY, fn)
2685 #define EVT_GRID_ROW_SIZE(fn) EVT_GRID_CMD_ROW_SIZE(wxID_ANY, fn)
2686 #define EVT_GRID_COL_SIZE(fn) EVT_GRID_CMD_COL_SIZE(wxID_ANY, fn)
2687 #define EVT_GRID_COL_AUTO_SIZE(fn) EVT_GRID_CMD_COL_AUTO_SIZE(wxID_ANY, fn)
2688 #define EVT_GRID_COL_MOVE(fn) EVT_GRID_CMD_COL_MOVE(wxID_ANY, fn)
2689 #define EVT_GRID_COL_SORT(fn) EVT_GRID_CMD_COL_SORT(wxID_ANY, fn)
2690 #define EVT_GRID_RANGE_SELECT(fn) EVT_GRID_CMD_RANGE_SELECT(wxID_ANY, fn)
2691 #define EVT_GRID_CELL_CHANGING(fn) EVT_GRID_CMD_CELL_CHANGING(wxID_ANY, fn)
2692 #define EVT_GRID_CELL_CHANGED(fn) EVT_GRID_CMD_CELL_CHANGED(wxID_ANY, fn)
2693 #define EVT_GRID_SELECT_CELL(fn) EVT_GRID_CMD_SELECT_CELL(wxID_ANY, fn)
2694 #define EVT_GRID_EDITOR_SHOWN(fn) EVT_GRID_CMD_EDITOR_SHOWN(wxID_ANY, fn)
2695 #define EVT_GRID_EDITOR_HIDDEN(fn) EVT_GRID_CMD_EDITOR_HIDDEN(wxID_ANY, fn)
2696 #define EVT_GRID_EDITOR_CREATED(fn) EVT_GRID_CMD_EDITOR_CREATED(wxID_ANY, fn)
2697 #define EVT_GRID_CELL_BEGIN_DRAG(fn) EVT_GRID_CMD_CELL_BEGIN_DRAG(wxID_ANY, fn)
2698 #define EVT_GRID_TABBING(fn) EVT_GRID_CMD_TABBING(wxID_ANY, fn)
2700 // we used to have a single wxEVT_GRID_CELL_CHANGE event but it was split into
2701 // wxEVT_GRID_CELL_CHANGING and CHANGED ones in wx 2.9.0, however the CHANGED
2702 // is basically the same as the old CHANGE event so we keep the name for
2704 #if WXWIN_COMPATIBILITY_2_8
2705 #define wxEVT_GRID_CELL_CHANGE wxEVT_GRID_CELL_CHANGED
2707 #define EVT_GRID_CMD_CELL_CHANGE EVT_GRID_CMD_CELL_CHANGED
2708 #define EVT_GRID_CELL_CHANGE EVT_GRID_CELL_CHANGED
2709 #endif // WXWIN_COMPATIBILITY_2_8
2711 #if 0 // TODO: implement these ? others ?
2713 extern const int wxEVT_GRID_CREATE_CELL
;
2714 extern const int wxEVT_GRID_CHANGE_LABELS
;
2715 extern const int wxEVT_GRID_CHANGE_SEL_LABEL
;
2717 #define EVT_GRID_CREATE_CELL(fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CREATE_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2718 #define EVT_GRID_CHANGE_LABELS(fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_LABELS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2719 #define EVT_GRID_CHANGE_SEL_LABEL(fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_SEL_LABEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2723 #endif // wxUSE_GRID
2724 #endif // _WX_GENERIC_GRID_H_