1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Grid control wxWidgets sample
4 // Author: Michael Bedward
7 // Copyright: (c) Michael Bedward, Julian Smart
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
17 class GridApp
: public wxApp
24 class GridFrame
: public wxFrame
29 wxLogTextCtrl
*logger
;
35 void ToggleRowLabels( wxCommandEvent
& );
36 void ToggleColLabels( wxCommandEvent
& );
37 void ToggleEditing( wxCommandEvent
& );
38 void ToggleRowSizing( wxCommandEvent
& );
39 void ToggleColSizing( wxCommandEvent
& );
40 void ToggleGridSizing( wxCommandEvent
& );
41 void ToggleGridDragCell ( wxCommandEvent
& );
42 void ToggleGridLines( wxCommandEvent
& );
43 void AutoSizeCols( wxCommandEvent
& );
44 void CellOverflow( wxCommandEvent
& );
45 void ResizeCell( wxCommandEvent
& );
46 void SetLabelColour( wxCommandEvent
& );
47 void SetLabelTextColour( wxCommandEvent
& );
48 void SetLabelFont(wxCommandEvent
&);
49 void SetRowLabelHorizAlignment( wxCommandEvent
& );
50 void SetRowLabelVertAlignment( wxCommandEvent
& );
51 void SetColLabelHorizAlignment( wxCommandEvent
& );
52 void SetColLabelVertAlignment( wxCommandEvent
& );
53 void SetGridLineColour( wxCommandEvent
& );
55 void SetCellFgColour(wxCommandEvent
&);
56 void SetCellBgColour(wxCommandEvent
&);
58 void InsertRow( wxCommandEvent
& );
59 void InsertCol( wxCommandEvent
& );
60 void DeleteSelectedRows( wxCommandEvent
& );
61 void DeleteSelectedCols( wxCommandEvent
& );
62 void ClearGrid( wxCommandEvent
& );
63 void SelectCells( wxCommandEvent
& );
64 void SelectRows( wxCommandEvent
& );
65 void SelectCols( wxCommandEvent
& );
67 void DeselectCell(wxCommandEvent
& event
);
68 void DeselectCol(wxCommandEvent
& event
);
69 void DeselectRow(wxCommandEvent
& event
);
70 void DeselectAll(wxCommandEvent
& event
);
71 void SelectCell(wxCommandEvent
& event
);
72 void SelectCol(wxCommandEvent
& event
);
73 void SelectRow(wxCommandEvent
& event
);
74 void SelectAll(wxCommandEvent
& event
);
75 void OnAddToSelectToggle(wxCommandEvent
& event
);
76 void OnShowSelection(wxCommandEvent
& event
);
78 void OnLabelLeftClick( wxGridEvent
& );
79 void OnCellLeftClick( wxGridEvent
& );
80 void OnRowSize( wxGridSizeEvent
& );
81 void OnColSize( wxGridSizeEvent
& );
82 void OnSelectCell( wxGridEvent
& );
83 void OnRangeSelected( wxGridRangeSelectEvent
& );
84 void OnCellValueChanged( wxGridEvent
& );
85 void OnCellBeginDrag( wxGridEvent
& );
87 void OnEditorShown(wxGridEvent
&);
88 void OnEditorHidden(wxGridEvent
&);
90 void OnSetHighlightWidth(wxCommandEvent
&);
91 void OnSetROHighlightWidth(wxCommandEvent
&);
97 void OnQuit( wxCommandEvent
& );
98 void About( wxCommandEvent
& );
99 void OnVTable( wxCommandEvent
& );
100 void OnBugsTable( wxCommandEvent
& );
101 void OnSmallGrid( wxCommandEvent
& );
105 ID_TOGGLEROWLABELS
= 100,
111 ID_TOGGLEGRIDDRAGCELL
,
117 ID_SETLABELTEXTCOLOUR
,
120 ID_ROWLABELHORIZALIGN
,
121 ID_ROWLABELVERTALIGN
,
123 ID_COLLABELHORIZALIGN
,
124 ID_COLLABELVERTALIGN
,
135 ID_SET_CELL_FG_COLOUR
,
136 ID_SET_CELL_BG_COLOUR
,
151 ID_SET_HIGHLIGHT_WIDTH
,
152 ID_SET_RO_HIGHLIGHT_WIDTH
,
161 // add the cells to selection when using commands from select menu?
164 DECLARE_EVENT_TABLE()
167 class MyGridCellRenderer
: public wxGridCellStringRenderer
170 virtual void Draw(wxGrid
& grid
,
171 wxGridCellAttr
& attr
,
178 // ----------------------------------------------------------------------------
179 // demonstration of virtual table which doesn't store all of its data in
181 // ----------------------------------------------------------------------------
183 class BigGridTable
: public wxGridTableBase
186 BigGridTable(long sizeGrid
) { m_sizeGrid
= sizeGrid
; }
188 int GetNumberRows() { return m_sizeGrid
; }
189 int GetNumberCols() { return m_sizeGrid
; }
190 wxString
GetValue( int row
, int col
)
192 return wxString::Format(wxT("(%d, %d)"), row
, col
);
195 void SetValue( int , int , const wxString
& ) { /* ignore */ }
196 bool IsEmptyCell( int , int ) { return false; }
202 class BigGridFrame
: public wxFrame
205 BigGridFrame(long sizeGrid
);
209 BigGridTable
* m_table
;
212 // ----------------------------------------------------------------------------
213 // an example of custom attr provider: this one makes all odd rows appear grey
214 // ----------------------------------------------------------------------------
216 class MyGridCellAttrProvider
: public wxGridCellAttrProvider
219 MyGridCellAttrProvider();
220 virtual ~MyGridCellAttrProvider();
222 virtual wxGridCellAttr
*GetAttr(int row
, int col
,
223 wxGridCellAttr::wxAttrKind kind
) const;
226 wxGridCellAttr
*m_attrForOddRows
;
229 // ----------------------------------------------------------------------------
230 // another, more realistic, grid example: shows typed columns and more
231 // ----------------------------------------------------------------------------
233 class BugsGridTable
: public wxGridTableBase
238 virtual int GetNumberRows();
239 virtual int GetNumberCols();
240 virtual bool IsEmptyCell( int row
, int col
);
241 virtual wxString
GetValue( int row
, int col
);
242 virtual void SetValue( int row
, int col
, const wxString
& value
);
244 virtual wxString
GetColLabelValue( int col
);
246 virtual wxString
GetTypeName( int row
, int col
);
247 virtual bool CanGetValueAs( int row
, int col
, const wxString
& typeName
);
248 virtual bool CanSetValueAs( int row
, int col
, const wxString
& typeName
);
250 virtual long GetValueAsLong( int row
, int col
);
251 virtual bool GetValueAsBool( int row
, int col
);
253 virtual void SetValueAsLong( int row
, int col
, long value
);
254 virtual void SetValueAsBool( int row
, int col
, bool value
);
257 class BugsGridFrame
: public wxFrame