]> git.saurik.com Git - wxWidgets.git/blame - samples/grid/griddemo.h
added wxChoice:: and wxCombobox::GetCurrentSelection()
[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 wxString logBuf;
32
33 void SetDefaults();
34
35 void ToggleRowLabels( wxCommandEvent& );
36 void ToggleColLabels( wxCommandEvent& );
37 void ToggleEditing( wxCommandEvent& );
38 void ToggleRowSizing( wxCommandEvent& );
39 void ToggleColSizing( wxCommandEvent& );
40 void ToggleGridSizing( wxCommandEvent& );
79dbea21 41 void ToggleGridDragCell ( wxCommandEvent& );
f7556ff0
JS
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& );
54
55 void SetCellFgColour(wxCommandEvent &);
56 void SetCellBgColour(wxCommandEvent &);
57
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& );
66
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
77 void OnLabelLeftClick( wxGridEvent& );
78 void OnCellLeftClick( wxGridEvent& );
79 void OnRowSize( wxGridSizeEvent& );
80 void OnColSize( wxGridSizeEvent& );
81 void OnSelectCell( wxGridEvent& );
82 void OnRangeSelected( wxGridRangeSelectEvent& );
83 void OnCellValueChanged( wxGridEvent& );
79dbea21 84 void OnCellBeginDrag( wxGridEvent& );
f7556ff0
JS
85
86 void OnEditorShown(wxGridEvent&);
87 void OnEditorHidden(wxGridEvent&);
88
89 void OnSetHighlightWidth(wxCommandEvent&);
90 void OnSetROHighlightWidth(wxCommandEvent&);
91
92public:
93 GridFrame();
94 ~GridFrame();
95
96 void OnQuit( wxCommandEvent& );
97 void About( wxCommandEvent& );
98 void OnVTable( wxCommandEvent& );
99 void OnBugsTable( wxCommandEvent& );
100 void OnSmallGrid( wxCommandEvent& );
101
102 enum
103 {
104 ID_TOGGLEROWLABELS = 100,
105 ID_TOGGLECOLLABELS,
106 ID_TOGGLEEDIT,
107 ID_TOGGLEROWSIZING,
108 ID_TOGGLECOLSIZING,
109 ID_TOGGLEGRIDSIZING,
79dbea21 110 ID_TOGGLEGRIDDRAGCELL,
f7556ff0
JS
111 ID_TOGGLEGRIDLINES,
112 ID_AUTOSIZECOLS,
113 ID_CELLOVERFLOW,
114 ID_RESIZECELL,
115 ID_SETLABELCOLOUR,
116 ID_SETLABELTEXTCOLOUR,
117 ID_SETLABEL_FONT,
118 ID_ROWLABELALIGN,
119 ID_ROWLABELHORIZALIGN,
120 ID_ROWLABELVERTALIGN,
121 ID_COLLABELALIGN,
122 ID_COLLABELHORIZALIGN,
123 ID_COLLABELVERTALIGN,
124 ID_GRIDLINECOLOUR,
125 ID_INSERTROW,
126 ID_INSERTCOL,
127 ID_DELETEROW,
128 ID_DELETECOL,
129 ID_CLEARGRID,
130 ID_CHANGESEL,
131 ID_SELCELLS,
132 ID_SELROWS,
133 ID_SELCOLS,
134 ID_SET_CELL_FG_COLOUR,
135 ID_SET_CELL_BG_COLOUR,
f7556ff0
JS
136 ID_VTABLE,
137 ID_BUGS_TABLE,
138 ID_SMALL_GRID,
139 ID_SELECT_UNSELECT,
140 ID_SELECT_ALL,
141 ID_SELECT_ROW,
142 ID_SELECT_COL,
143 ID_SELECT_CELL,
144 ID_DESELECT_ALL,
145 ID_DESELECT_ROW,
146 ID_DESELECT_COL,
147 ID_DESELECT_CELL,
148
149 ID_SET_HIGHLIGHT_WIDTH,
150 ID_SET_RO_HIGHLIGHT_WIDTH,
151
152 ID_TESTFUNC
153 };
154
f07941fc 155#if wxUSE_LOG
f7556ff0 156 wxLog *m_logOld;
f07941fc 157#endif // wxUSE_LOG
f7556ff0
JS
158
159 // add the cells to selection when using commands from select menu?
160 bool m_addToSel;
161
162 DECLARE_EVENT_TABLE()
163};
164
165class MyGridCellRenderer : public wxGridCellStringRenderer
166{
167public:
168 virtual void Draw(wxGrid& grid,
169 wxGridCellAttr& attr,
170 wxDC& dc,
171 const wxRect& rect,
172 int row, int col,
173 bool isSelected);
174};
175
176// ----------------------------------------------------------------------------
177// demonstration of virtual table which doesn't store all of its data in
178// memory
179// ----------------------------------------------------------------------------
180
181class BigGridTable : public wxGridTableBase
182{
183public:
184 BigGridTable(long sizeGrid) { m_sizeGrid = sizeGrid; }
185
186 int GetNumberRows() { return m_sizeGrid; }
187 int GetNumberCols() { return m_sizeGrid; }
188 wxString GetValue( int row, int col )
189 {
190 return wxString::Format(wxT("(%d, %d)"), row, col);
191 }
192
193 void SetValue( int , int , const wxString& ) { /* ignore */ }
af870ed8 194 bool IsEmptyCell( int , int ) { return false; }
f7556ff0
JS
195
196private:
197 long m_sizeGrid;
198};
199
200class BigGridFrame : public wxFrame
201{
202public:
203 BigGridFrame(long sizeGrid);
204
205private:
206 wxGrid* m_grid;
207 BigGridTable* m_table;
208};
209
210// ----------------------------------------------------------------------------
211// an example of custom attr provider: this one makes all odd rows appear grey
212// ----------------------------------------------------------------------------
213
214class MyGridCellAttrProvider : public wxGridCellAttrProvider
215{
216public:
217 MyGridCellAttrProvider();
218 virtual ~MyGridCellAttrProvider();
219
220 virtual wxGridCellAttr *GetAttr(int row, int col,
221 wxGridCellAttr::wxAttrKind kind) const;
222
223private:
224 wxGridCellAttr *m_attrForOddRows;
225};
226
227// ----------------------------------------------------------------------------
228// another, more realistic, grid example: shows typed columns and more
229// ----------------------------------------------------------------------------
230
231class BugsGridTable : public wxGridTableBase
232{
233public:
925e9792 234 BugsGridTable(){};
f7556ff0
JS
235
236 virtual int GetNumberRows();
237 virtual int GetNumberCols();
238 virtual bool IsEmptyCell( int row, int col );
239 virtual wxString GetValue( int row, int col );
240 virtual void SetValue( int row, int col, const wxString& value );
241
242 virtual wxString GetColLabelValue( int col );
243
244 virtual wxString GetTypeName( int row, int col );
245 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
246 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
247
248 virtual long GetValueAsLong( int row, int col );
249 virtual bool GetValueAsBool( int row, int col );
250
251 virtual void SetValueAsLong( int row, int col, long value );
252 virtual void SetValueAsBool( int row, int col, bool value );
253};
254
255class BugsGridFrame : public wxFrame
256{
257public:
258 BugsGridFrame();
259};
260
261
262#endif // griddemo_h
263