]> git.saurik.com Git - wxWidgets.git/blame - samples/grid/griddemo.h
use bitmap mask if any in splash screen (closes #10470)
[wxWidgets.git] / samples / grid / griddemo.h
CommitLineData
f7556ff0
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: griddemo.h
be5a51fb 3// Purpose: Grid control wxWidgets sample
f7556ff0
JS
4// Author: Michael Bedward
5// Modified by:
6// RCS-ID: $Id$
7// Copyright: (c) Michael Bedward, Julian Smart
8// Licence: wxWindows license
9/////////////////////////////////////////////////////////////////////////////
10
11
12#ifndef griddemo_h
13#define griddemo_h
14
f7556ff0
JS
15class wxGrid;
16
17class GridApp : public wxApp
18{
19public:
20 bool OnInit();
21};
22
23
24class GridFrame : public wxFrame
25{
26 wxGrid *grid;
f07941fc 27#if wxUSE_LOG
f7556ff0
JS
28 wxTextCtrl *logWin;
29 wxLogTextCtrl *logger;
f07941fc 30#endif // wxUSE_LOG
f7556ff0
JS
31
32 void SetDefaults();
33
34 void ToggleRowLabels( wxCommandEvent& );
35 void ToggleColLabels( wxCommandEvent& );
36 void ToggleEditing( wxCommandEvent& );
37 void ToggleRowSizing( wxCommandEvent& );
38 void ToggleColSizing( wxCommandEvent& );
d4175745 39 void ToggleColMoving( wxCommandEvent& );
f7556ff0 40 void ToggleGridSizing( wxCommandEvent& );
79dbea21 41 void ToggleGridDragCell ( wxCommandEvent& );
4a25320b 42 void ToggleNativeHeader ( wxCommandEvent& );
f7556ff0
JS
43 void ToggleGridLines( wxCommandEvent& );
44 void AutoSizeCols( wxCommandEvent& );
45 void CellOverflow( wxCommandEvent& );
46 void ResizeCell( wxCommandEvent& );
47 void SetLabelColour( wxCommandEvent& );
48 void SetLabelTextColour( wxCommandEvent& );
49 void SetLabelFont(wxCommandEvent &);
50 void SetRowLabelHorizAlignment( wxCommandEvent& );
51 void SetRowLabelVertAlignment( wxCommandEvent& );
52 void SetColLabelHorizAlignment( wxCommandEvent& );
53 void SetColLabelVertAlignment( wxCommandEvent& );
54 void SetGridLineColour( wxCommandEvent& );
55
56 void SetCellFgColour(wxCommandEvent &);
57 void SetCellBgColour(wxCommandEvent &);
58
59 void InsertRow( wxCommandEvent& );
60 void InsertCol( wxCommandEvent& );
61 void DeleteSelectedRows( wxCommandEvent& );
62 void DeleteSelectedCols( wxCommandEvent& );
63 void ClearGrid( wxCommandEvent& );
64 void SelectCells( wxCommandEvent& );
65 void SelectRows( wxCommandEvent& );
66 void SelectCols( wxCommandEvent& );
8a3e536c 67 void SelectRowsOrCols( wxCommandEvent& );
f7556ff0
JS
68
69 void DeselectCell(wxCommandEvent& event);
70 void DeselectCol(wxCommandEvent& event);
71 void DeselectRow(wxCommandEvent& event);
72 void DeselectAll(wxCommandEvent& event);
73 void SelectCell(wxCommandEvent& event);
74 void SelectCol(wxCommandEvent& event);
75 void SelectRow(wxCommandEvent& event);
76 void SelectAll(wxCommandEvent& event);
77 void OnAddToSelectToggle(wxCommandEvent& event);
1ecf2613 78 void OnShowSelection(wxCommandEvent& event);
f7556ff0 79
733f486a
VZ
80 void AutoSizeRow(wxCommandEvent& event);
81 void AutoSizeCol(wxCommandEvent& event);
82 void AutoSizeRowLabel(wxCommandEvent& event);
83 void AutoSizeColLabel(wxCommandEvent& event);
84 void AutoSizeLabelsCol(wxCommandEvent& event);
85 void AutoSizeLabelsRow(wxCommandEvent& event);
86 void AutoSizeTable(wxCommandEvent& event);
87
f7556ff0
JS
88 void OnLabelLeftClick( wxGridEvent& );
89 void OnCellLeftClick( wxGridEvent& );
90 void OnRowSize( wxGridSizeEvent& );
91 void OnColSize( wxGridSizeEvent& );
92 void OnSelectCell( wxGridEvent& );
93 void OnRangeSelected( wxGridRangeSelectEvent& );
763163a8 94 void OnCellValueChanging( wxGridEvent& );
f7556ff0 95 void OnCellValueChanged( wxGridEvent& );
79dbea21 96 void OnCellBeginDrag( wxGridEvent& );
f7556ff0
JS
97
98 void OnEditorShown(wxGridEvent&);
99 void OnEditorHidden(wxGridEvent&);
100
101 void OnSetHighlightWidth(wxCommandEvent&);
102 void OnSetROHighlightWidth(wxCommandEvent&);
103
104public:
105 GridFrame();
106 ~GridFrame();
107
108 void OnQuit( wxCommandEvent& );
109 void About( wxCommandEvent& );
110 void OnVTable( wxCommandEvent& );
111 void OnBugsTable( wxCommandEvent& );
e7ae8a69 112 void OnTabularTable( wxCommandEvent& );
f7556ff0
JS
113
114 enum
115 {
116 ID_TOGGLEROWLABELS = 100,
117 ID_TOGGLECOLLABELS,
118 ID_TOGGLEEDIT,
119 ID_TOGGLEROWSIZING,
120 ID_TOGGLECOLSIZING,
d4175745 121 ID_TOGGLECOLMOVING,
f7556ff0 122 ID_TOGGLEGRIDSIZING,
79dbea21 123 ID_TOGGLEGRIDDRAGCELL,
4a25320b 124 ID_TOGGLENATIVEHEADER,
f7556ff0
JS
125 ID_TOGGLEGRIDLINES,
126 ID_AUTOSIZECOLS,
127 ID_CELLOVERFLOW,
128 ID_RESIZECELL,
129 ID_SETLABELCOLOUR,
130 ID_SETLABELTEXTCOLOUR,
131 ID_SETLABEL_FONT,
132 ID_ROWLABELALIGN,
133 ID_ROWLABELHORIZALIGN,
134 ID_ROWLABELVERTALIGN,
135 ID_COLLABELALIGN,
136 ID_COLLABELHORIZALIGN,
137 ID_COLLABELVERTALIGN,
138 ID_GRIDLINECOLOUR,
139 ID_INSERTROW,
140 ID_INSERTCOL,
141 ID_DELETEROW,
142 ID_DELETECOL,
143 ID_CLEARGRID,
144 ID_CHANGESEL,
145 ID_SELCELLS,
146 ID_SELROWS,
147 ID_SELCOLS,
8a3e536c 148 ID_SELROWSORCOLS,
f7556ff0
JS
149 ID_SET_CELL_FG_COLOUR,
150 ID_SET_CELL_BG_COLOUR,
f7556ff0
JS
151 ID_VTABLE,
152 ID_BUGS_TABLE,
e7ae8a69 153 ID_TABULAR_TABLE,
f7556ff0 154 ID_SELECT_UNSELECT,
1ecf2613 155 ID_SHOW_SELECTION,
f7556ff0
JS
156 ID_SELECT_ALL,
157 ID_SELECT_ROW,
158 ID_SELECT_COL,
159 ID_SELECT_CELL,
160 ID_DESELECT_ALL,
161 ID_DESELECT_ROW,
162 ID_DESELECT_COL,
163 ID_DESELECT_CELL,
733f486a
VZ
164 ID_SIZE_ROW,
165 ID_SIZE_COL,
166 ID_SIZE_ROW_LABEL,
167 ID_SIZE_COL_LABEL,
168 ID_SIZE_LABELS_COL,
169 ID_SIZE_LABELS_ROW,
170 ID_SIZE_GRID,
f7556ff0
JS
171
172 ID_SET_HIGHLIGHT_WIDTH,
173 ID_SET_RO_HIGHLIGHT_WIDTH,
174
175 ID_TESTFUNC
176 };
177
f07941fc 178#if wxUSE_LOG
f7556ff0 179 wxLog *m_logOld;
f07941fc 180#endif // wxUSE_LOG
f7556ff0
JS
181
182 // add the cells to selection when using commands from select menu?
183 bool m_addToSel;
184
185 DECLARE_EVENT_TABLE()
186};
187
188class MyGridCellRenderer : public wxGridCellStringRenderer
189{
190public:
191 virtual void Draw(wxGrid& grid,
192 wxGridCellAttr& attr,
193 wxDC& dc,
194 const wxRect& rect,
195 int row, int col,
196 bool isSelected);
197};
198
199// ----------------------------------------------------------------------------
200// demonstration of virtual table which doesn't store all of its data in
201// memory
202// ----------------------------------------------------------------------------
203
204class BigGridTable : public wxGridTableBase
205{
206public:
207 BigGridTable(long sizeGrid) { m_sizeGrid = sizeGrid; }
208
209 int GetNumberRows() { return m_sizeGrid; }
210 int GetNumberCols() { return m_sizeGrid; }
211 wxString GetValue( int row, int col )
212 {
213 return wxString::Format(wxT("(%d, %d)"), row, col);
214 }
215
216 void SetValue( int , int , const wxString& ) { /* ignore */ }
af870ed8 217 bool IsEmptyCell( int , int ) { return false; }
f7556ff0
JS
218
219private:
220 long m_sizeGrid;
221};
222
223class BigGridFrame : public wxFrame
224{
225public:
226 BigGridFrame(long sizeGrid);
227
228private:
229 wxGrid* m_grid;
230 BigGridTable* m_table;
231};
232
233// ----------------------------------------------------------------------------
234// an example of custom attr provider: this one makes all odd rows appear grey
235// ----------------------------------------------------------------------------
236
237class MyGridCellAttrProvider : public wxGridCellAttrProvider
238{
239public:
240 MyGridCellAttrProvider();
241 virtual ~MyGridCellAttrProvider();
242
243 virtual wxGridCellAttr *GetAttr(int row, int col,
244 wxGridCellAttr::wxAttrKind kind) const;
245
246private:
247 wxGridCellAttr *m_attrForOddRows;
248};
249
250// ----------------------------------------------------------------------------
251// another, more realistic, grid example: shows typed columns and more
252// ----------------------------------------------------------------------------
253
254class BugsGridTable : public wxGridTableBase
255{
256public:
e7ae8a69 257 BugsGridTable() { }
f7556ff0
JS
258
259 virtual int GetNumberRows();
260 virtual int GetNumberCols();
261 virtual bool IsEmptyCell( int row, int col );
262 virtual wxString GetValue( int row, int col );
263 virtual void SetValue( int row, int col, const wxString& value );
264
265 virtual wxString GetColLabelValue( int col );
266
267 virtual wxString GetTypeName( int row, int col );
268 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
269 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
270
271 virtual long GetValueAsLong( int row, int col );
272 virtual bool GetValueAsBool( int row, int col );
273
274 virtual void SetValueAsLong( int row, int col, long value );
275 virtual void SetValueAsBool( int row, int col, bool value );
276};
277
278class BugsGridFrame : public wxFrame
279{
280public:
281 BugsGridFrame();
282};
283
284
285#endif // griddemo_h
286