]>
Commit | Line | Data |
---|---|---|
10434f3c MB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: griddemo.cpp | |
3 | // Purpose: Grid control wxWindows sample | |
4 | // Author: Michael Bedward | |
5 | // Modified by: | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) Michael Bedward, Julian Smart | |
8 | // Licence: wxWindows license | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
e442cc0d | 10 | |
ab79958a VZ |
11 | // ============================================================================ |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
e442cc0d | 19 | #ifdef __GNUG__ |
ab79958a VZ |
20 | #pragma implementation |
21 | #pragma interface | |
e442cc0d MB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx/wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
bf9adb3a | 32 | #include "wx/wx.h" |
e442cc0d MB |
33 | #endif |
34 | ||
2f6c54eb VZ |
35 | #include "wx/colordlg.h" |
36 | #include "wx/fontdlg.h" | |
37 | ||
e442cc0d | 38 | #include "wx/grid.h" |
d10f4bf9 | 39 | #include "wx/generic/gridctrl.h" |
e442cc0d MB |
40 | |
41 | #include "griddemo.h" | |
42 | ||
ab79958a VZ |
43 | // ---------------------------------------------------------------------------- |
44 | // wxWin macros | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
e442cc0d MB |
47 | IMPLEMENT_APP( GridApp ) |
48 | ||
ab79958a VZ |
49 | // ============================================================================ |
50 | // implementation | |
51 | // ============================================================================ | |
e442cc0d | 52 | |
ab79958a VZ |
53 | // ---------------------------------------------------------------------------- |
54 | // GridApp | |
55 | // ---------------------------------------------------------------------------- | |
e442cc0d MB |
56 | |
57 | bool GridApp::OnInit() | |
58 | { | |
59 | GridFrame *frame = new GridFrame; | |
60 | frame->Show( TRUE ); | |
f0102d2a | 61 | |
e442cc0d MB |
62 | return TRUE; |
63 | } | |
64 | ||
ab79958a VZ |
65 | // ---------------------------------------------------------------------------- |
66 | // GridFrame | |
67 | // ---------------------------------------------------------------------------- | |
e442cc0d MB |
68 | |
69 | BEGIN_EVENT_TABLE( GridFrame, wxFrame ) | |
70 | EVT_MENU( ID_TOGGLEROWLABELS, GridFrame::ToggleRowLabels ) | |
f0102d2a | 71 | EVT_MENU( ID_TOGGLECOLLABELS, GridFrame::ToggleColLabels ) |
f445b853 | 72 | EVT_MENU( ID_TOGGLEEDIT, GridFrame::ToggleEditing ) |
dd16fdae | 73 | EVT_MENU( ID_TOGGLEROWSIZING, GridFrame::ToggleRowSizing ) |
ea179c7b | 74 | EVT_MENU( ID_TOGGLECOLSIZING, GridFrame::ToggleColSizing ) |
4cfa5de6 | 75 | EVT_MENU( ID_TOGGLEGRIDSIZING, GridFrame::ToggleGridSizing ) |
f6bcfd97 BP |
76 | EVT_MENU( ID_TOGGLEGRIDLINES, GridFrame::ToggleGridLines ) |
77 | EVT_MENU( ID_AUTOSIZECOLS, GridFrame::AutoSizeCols ) | |
ecd69fb6 SN |
78 | EVT_MENU( ID_CELLOVERFLOW, GridFrame::CellOverflow ) |
79 | EVT_MENU( ID_RESIZECELL, GridFrame::ResizeCell ) | |
f0102d2a VZ |
80 | EVT_MENU( ID_SETLABELCOLOUR, GridFrame::SetLabelColour ) |
81 | EVT_MENU( ID_SETLABELTEXTCOLOUR, GridFrame::SetLabelTextColour ) | |
bf9adb3a | 82 | EVT_MENU( ID_SETLABEL_FONT, GridFrame::SetLabelFont ) |
f0102d2a VZ |
83 | EVT_MENU( ID_ROWLABELHORIZALIGN, GridFrame::SetRowLabelHorizAlignment ) |
84 | EVT_MENU( ID_ROWLABELVERTALIGN, GridFrame::SetRowLabelVertAlignment ) | |
85 | EVT_MENU( ID_COLLABELHORIZALIGN, GridFrame::SetColLabelHorizAlignment ) | |
86 | EVT_MENU( ID_COLLABELVERTALIGN, GridFrame::SetColLabelVertAlignment ) | |
e442cc0d | 87 | EVT_MENU( ID_GRIDLINECOLOUR, GridFrame::SetGridLineColour ) |
0eee5283 MB |
88 | EVT_MENU( ID_INSERTROW, GridFrame::InsertRow ) |
89 | EVT_MENU( ID_INSERTCOL, GridFrame::InsertCol ) | |
f445b853 MB |
90 | EVT_MENU( ID_DELETEROW, GridFrame::DeleteSelectedRows ) |
91 | EVT_MENU( ID_DELETECOL, GridFrame::DeleteSelectedCols ) | |
e442cc0d | 92 | EVT_MENU( ID_CLEARGRID, GridFrame::ClearGrid ) |
043d16b2 SN |
93 | EVT_MENU( ID_SELCELLS, GridFrame::SelectCells ) |
94 | EVT_MENU( ID_SELROWS, GridFrame::SelectRows ) | |
95 | EVT_MENU( ID_SELCOLS, GridFrame::SelectCols ) | |
f0102d2a | 96 | |
ab79958a VZ |
97 | EVT_MENU( ID_SET_CELL_FG_COLOUR, GridFrame::SetCellFgColour ) |
98 | EVT_MENU( ID_SET_CELL_BG_COLOUR, GridFrame::SetCellBgColour ) | |
99 | ||
e442cc0d MB |
100 | EVT_MENU( ID_ABOUT, GridFrame::About ) |
101 | EVT_MENU( wxID_EXIT, GridFrame::OnQuit ) | |
f97c9b5b | 102 | EVT_MENU( ID_VTABLE, GridFrame::OnVTable) |
35f97e95 | 103 | EVT_MENU( ID_BUGS_TABLE, GridFrame::OnBugsTable) |
671bcff5 | 104 | EVT_MENU( ID_SMALL_GRID, GridFrame::OnSmallGrid) |
e442cc0d | 105 | |
14e5a313 VZ |
106 | EVT_MENU( ID_DESELECT_CELL, GridFrame::DeselectCell) |
107 | EVT_MENU( ID_DESELECT_COL, GridFrame::DeselectCol) | |
108 | EVT_MENU( ID_DESELECT_ROW, GridFrame::DeselectRow) | |
109 | EVT_MENU( ID_DESELECT_ALL, GridFrame::DeselectAll) | |
110 | EVT_MENU( ID_SELECT_CELL, GridFrame::SelectCell) | |
111 | EVT_MENU( ID_SELECT_COL, GridFrame::SelectCol) | |
112 | EVT_MENU( ID_SELECT_ROW, GridFrame::SelectRow) | |
113 | EVT_MENU( ID_SELECT_ALL, GridFrame::SelectAll) | |
93521c94 | 114 | EVT_MENU( ID_SELECT_UNSELECT, GridFrame::OnAddToSelectToggle) |
14e5a313 | 115 | |
d2520c85 RD |
116 | EVT_MENU( ID_SET_HIGHLIGHT_WIDTH, GridFrame::OnSetHighlightWidth) |
117 | EVT_MENU( ID_SET_RO_HIGHLIGHT_WIDTH, GridFrame::OnSetROHighlightWidth) | |
118 | ||
5795d034 MB |
119 | EVT_GRID_LABEL_LEFT_CLICK( GridFrame::OnLabelLeftClick ) |
120 | EVT_GRID_CELL_LEFT_CLICK( GridFrame::OnCellLeftClick ) | |
121 | EVT_GRID_ROW_SIZE( GridFrame::OnRowSize ) | |
122 | EVT_GRID_COL_SIZE( GridFrame::OnColSize ) | |
c336585e | 123 | EVT_GRID_SELECT_CELL( GridFrame::OnSelectCell ) |
5795d034 MB |
124 | EVT_GRID_RANGE_SELECT( GridFrame::OnRangeSelected ) |
125 | EVT_GRID_CELL_CHANGE( GridFrame::OnCellValueChanged ) | |
b54ba671 VZ |
126 | |
127 | EVT_GRID_EDITOR_SHOWN( GridFrame::OnEditorShown ) | |
128 | EVT_GRID_EDITOR_HIDDEN( GridFrame::OnEditorHidden ) | |
e442cc0d MB |
129 | END_EVENT_TABLE() |
130 | ||
f0102d2a | 131 | |
e442cc0d | 132 | GridFrame::GridFrame() |
600683ca | 133 | : wxFrame( (wxFrame *)NULL, -1, _T("wxWindows grid class demo"), |
e442cc0d MB |
134 | wxDefaultPosition, |
135 | wxDefaultSize ) | |
136 | { | |
137 | int gridW = 600, gridH = 300; | |
07296f0b | 138 | int logW = gridW, logH = 100; |
f0102d2a | 139 | |
e442cc0d | 140 | wxMenu *fileMenu = new wxMenu; |
600683ca MB |
141 | fileMenu->Append( ID_VTABLE, _T("&Virtual table test\tCtrl-V")); |
142 | fileMenu->Append( ID_BUGS_TABLE, _T("&Bugs table test\tCtrl-B")); | |
143 | fileMenu->Append( ID_SMALL_GRID, _T("&Small Grid test\tCtrl-S")); | |
f97c9b5b | 144 | fileMenu->AppendSeparator(); |
600683ca | 145 | fileMenu->Append( wxID_EXIT, _T("E&xit\tAlt-X") ); |
f0102d2a | 146 | |
e442cc0d | 147 | wxMenu *viewMenu = new wxMenu; |
600683ca MB |
148 | viewMenu->Append( ID_TOGGLEROWLABELS, _T("&Row labels"), _T(""), TRUE ); |
149 | viewMenu->Append( ID_TOGGLECOLLABELS, _T("&Col labels"), _T(""), TRUE ); | |
150 | viewMenu->Append( ID_TOGGLEEDIT, _T("&Editable"), _T(""), TRUE ); | |
151 | viewMenu->Append( ID_TOGGLEROWSIZING, _T("Ro&w drag-resize"), _T(""), TRUE ); | |
152 | viewMenu->Append( ID_TOGGLECOLSIZING, _T("C&ol drag-resize"), _T(""), TRUE ); | |
153 | viewMenu->Append( ID_TOGGLEGRIDSIZING, _T("&Grid drag-resize"), _T(""), TRUE ); | |
154 | viewMenu->Append( ID_TOGGLEGRIDLINES, _T("&Grid Lines"), _T(""), TRUE ); | |
155 | viewMenu->Append( ID_SET_HIGHLIGHT_WIDTH, _T("&Set Cell Highlight Width..."), _T("") ); | |
156 | viewMenu->Append( ID_SET_RO_HIGHLIGHT_WIDTH, _T("&Set Cell RO Highlight Width..."), _T("") ); | |
157 | viewMenu->Append( ID_AUTOSIZECOLS, _T("&Auto-size cols") ); | |
158 | viewMenu->Append( ID_CELLOVERFLOW, _T("&Overflow cells"), _T(""), TRUE ); | |
159 | viewMenu->Append( ID_RESIZECELL, _T("&Resize cell (7,1)"), _T(""), TRUE ); | |
f0102d2a | 160 | |
e442cc0d MB |
161 | wxMenu *rowLabelMenu = new wxMenu; |
162 | ||
600683ca | 163 | viewMenu->Append( ID_ROWLABELALIGN, _T("R&ow label alignment"), |
e442cc0d | 164 | rowLabelMenu, |
600683ca | 165 | _T("Change alignment of row labels") ); |
e442cc0d | 166 | |
600683ca MB |
167 | rowLabelMenu->Append( ID_ROWLABELHORIZALIGN, _T("&Horizontal") ); |
168 | rowLabelMenu->Append( ID_ROWLABELVERTALIGN, _T("&Vertical") ); | |
f0102d2a | 169 | |
e442cc0d MB |
170 | wxMenu *colLabelMenu = new wxMenu; |
171 | ||
600683ca | 172 | viewMenu->Append( ID_COLLABELALIGN, _T("Col l&abel alignment"), |
e442cc0d | 173 | colLabelMenu, |
600683ca | 174 | _T("Change alignment of col labels") ); |
e442cc0d | 175 | |
600683ca MB |
176 | colLabelMenu->Append( ID_COLLABELHORIZALIGN, _T("&Horizontal") ); |
177 | colLabelMenu->Append( ID_COLLABELVERTALIGN, _T("&Vertical") ); | |
e442cc0d | 178 | |
ab79958a | 179 | wxMenu *colMenu = new wxMenu; |
600683ca MB |
180 | colMenu->Append( ID_SETLABELCOLOUR, _T("Set &label colour...") ); |
181 | colMenu->Append( ID_SETLABELTEXTCOLOUR, _T("Set label &text colour...") ); | |
182 | colMenu->Append( ID_SETLABEL_FONT, _T("Set label fo&nt...") ); | |
183 | colMenu->Append( ID_GRIDLINECOLOUR, _T("&Grid line colour...") ); | |
184 | colMenu->Append( ID_SET_CELL_FG_COLOUR, _T("Set cell &foreground colour...") ); | |
185 | colMenu->Append( ID_SET_CELL_BG_COLOUR, _T("Set cell &background colour...") ); | |
e442cc0d | 186 | |
0eee5283 | 187 | wxMenu *editMenu = new wxMenu; |
600683ca MB |
188 | editMenu->Append( ID_INSERTROW, _T("Insert &row") ); |
189 | editMenu->Append( ID_INSERTCOL, _T("Insert &column") ); | |
190 | editMenu->Append( ID_DELETEROW, _T("Delete selected ro&ws") ); | |
191 | editMenu->Append( ID_DELETECOL, _T("Delete selected co&ls") ); | |
192 | editMenu->Append( ID_CLEARGRID, _T("Cl&ear grid cell contents") ); | |
f0102d2a | 193 | |
14e5a313 | 194 | wxMenu *selectMenu = new wxMenu; |
600683ca MB |
195 | selectMenu->Append( ID_SELECT_UNSELECT, _T("Add new cells to the selection"), |
196 | _T("When off, old selection is deselected before ") | |
197 | _T("selecting the new cells"), TRUE ); | |
198 | selectMenu->Append( ID_SELECT_ALL, _T("Select all")); | |
199 | selectMenu->Append( ID_SELECT_ROW, _T("Select row 2")); | |
200 | selectMenu->Append( ID_SELECT_COL, _T("Select col 2")); | |
201 | selectMenu->Append( ID_SELECT_CELL, _T("Select cell (3, 1)")); | |
202 | selectMenu->Append( ID_DESELECT_ALL, _T("Deselect all")); | |
203 | selectMenu->Append( ID_DESELECT_ROW, _T("Deselect row 2")); | |
204 | selectMenu->Append( ID_DESELECT_COL, _T("Deselect col 2")); | |
205 | selectMenu->Append( ID_DESELECT_CELL, _T("Deselect cell (3, 1)")); | |
043d16b2 | 206 | wxMenu *selectionMenu = new wxMenu; |
600683ca | 207 | selectMenu->Append( ID_CHANGESEL, _T("Change &selection mode"), |
5c8fc7c1 | 208 | selectionMenu, |
600683ca | 209 | _T("Change selection mode") ); |
043d16b2 | 210 | |
600683ca MB |
211 | selectionMenu->Append( ID_SELCELLS, _T("Select &Cells") ); |
212 | selectionMenu->Append( ID_SELROWS, _T("Select &Rows") ); | |
213 | selectionMenu->Append( ID_SELCOLS, _T("Select C&ols") ); | |
043d16b2 | 214 | |
14e5a313 | 215 | |
e442cc0d | 216 | wxMenu *helpMenu = new wxMenu; |
600683ca | 217 | helpMenu->Append( ID_ABOUT, _T("&About wxGrid demo") ); |
f0102d2a | 218 | |
e442cc0d | 219 | wxMenuBar *menuBar = new wxMenuBar; |
600683ca MB |
220 | menuBar->Append( fileMenu, _T("&File") ); |
221 | menuBar->Append( viewMenu, _T("&View") ); | |
222 | menuBar->Append( colMenu, _T("&Colours") ); | |
223 | menuBar->Append( editMenu, _T("&Edit") ); | |
224 | menuBar->Append( selectMenu, _T("&Select") ); | |
225 | menuBar->Append( helpMenu, _T("&Help") ); | |
e442cc0d MB |
226 | |
227 | SetMenuBar( menuBar ); | |
228 | ||
93521c94 VZ |
229 | m_addToSel = FALSE; |
230 | ||
e442cc0d MB |
231 | grid = new wxGrid( this, |
232 | -1, | |
233 | wxPoint( 0, 0 ), | |
234 | wxSize( 400, 300 ) ); | |
f0102d2a | 235 | |
e442cc0d MB |
236 | logWin = new wxTextCtrl( this, |
237 | -1, | |
238 | wxEmptyString, | |
239 | wxPoint( 0, gridH + 20 ), | |
240 | wxSize( logW, logH ), | |
241 | wxTE_MULTILINE ); | |
f0102d2a | 242 | |
e442cc0d | 243 | logger = new wxLogTextCtrl( logWin ); |
66b3609e | 244 | m_logOld = logger->SetActiveTarget( logger ); |
e442cc0d MB |
245 | logger->SetTimestamp( NULL ); |
246 | ||
247 | // this will create a grid and, by default, an associated grid | |
984ef9dc | 248 | // table for strings |
2b5f62a0 VZ |
249 | grid->CreateGrid( 0, 0 ); |
250 | grid->AppendRows(100); | |
251 | grid->AppendCols(100); | |
252 | ||
253 | int ir = grid->GetNumberRows(); | |
254 | grid->DeleteRows(0, ir); | |
255 | grid->AppendRows(ir); | |
f2d76237 | 256 | |
e442cc0d | 257 | grid->SetRowSize( 0, 60 ); |
600683ca | 258 | grid->SetCellValue( 0, 0, _T("Ctrl+Home\nwill go to\nthis cell") ); |
f0102d2a | 259 | |
600683ca | 260 | grid->SetCellValue( 0, 1, _T("A long piece of text to demonstrate wrapping.") ); |
d10f4bf9 VZ |
261 | grid->SetCellRenderer(0 , 1, new wxGridCellAutoWrapStringRenderer); |
262 | grid->SetCellEditor( 0, 1 , new wxGridCellAutoWrapStringEditor); | |
671bcff5 | 263 | |
600683ca MB |
264 | grid->SetCellValue( 0, 2, _T("Blah") ); |
265 | grid->SetCellValue( 0, 3, _T("Read only") ); | |
283b7808 | 266 | grid->SetReadOnly( 0, 3 ); |
671bcff5 | 267 | |
600683ca | 268 | grid->SetCellValue( 0, 4, _T("Can veto edit this cell") ); |
e442cc0d | 269 | |
600683ca | 270 | grid->SetCellValue( 0, 5, _T("Press\nCtrl+arrow\nto skip over\ncells") ); |
e442cc0d MB |
271 | |
272 | grid->SetRowSize( 99, 60 ); | |
600683ca MB |
273 | grid->SetCellValue( 99, 99, _T("Ctrl+End\nwill go to\nthis cell") ); |
274 | grid->SetCellValue( 1, 0, _T("This default cell will overflow into neighboring cells, but not if you turn overflow off.")); | |
ecd69fb6 SN |
275 | |
276 | grid->SetCellTextColour(1, 2, *wxRED); | |
277 | grid->SetCellBackgroundColour(1, 2, *wxGREEN); | |
278 | ||
600683ca | 279 | grid->SetCellValue( 1, 4, _T("I'm in the middle")); |
f445b853 | 280 | |
600683ca | 281 | grid->SetCellValue(2, 2, _T("red")); |
ab79958a | 282 | |
b99be8fb | 283 | grid->SetCellTextColour(2, 2, *wxRED); |
600683ca | 284 | grid->SetCellValue(3, 3, _T("green on grey")); |
b99be8fb | 285 | grid->SetCellTextColour(3, 3, *wxGREEN); |
2e9a6788 | 286 | grid->SetCellBackgroundColour(3, 3, *wxLIGHT_GREY); |
b99be8fb | 287 | |
600683ca | 288 | grid->SetCellValue(4, 4, _T("a weird looking cell")); |
0767cb6f | 289 | grid->SetCellAlignment(4, 4, wxALIGN_CENTRE, wxALIGN_CENTRE); |
ab79958a VZ |
290 | grid->SetCellRenderer(4, 4, new MyGridCellRenderer); |
291 | ||
600683ca | 292 | grid->SetCellValue(3, 0, _T("0")); |
508011ce VZ |
293 | grid->SetCellRenderer(3, 0, new wxGridCellBoolRenderer); |
294 | grid->SetCellEditor(3, 0, new wxGridCellBoolEditor); | |
295 | ||
758cbedf VZ |
296 | wxGridCellAttr *attr; |
297 | attr = new wxGridCellAttr; | |
298 | attr->SetTextColour(*wxBLUE); | |
299 | grid->SetColAttr(5, attr); | |
300 | attr = new wxGridCellAttr; | |
19d7140e | 301 | attr->SetBackgroundColour(*wxRED); |
758cbedf VZ |
302 | grid->SetRowAttr(5, attr); |
303 | ||
600683ca | 304 | grid->SetCellValue(2, 4, _T("a wider column")); |
43947979 VZ |
305 | grid->SetColSize(4, 120); |
306 | grid->SetColMinimalWidth(4, 120); | |
283b7808 | 307 | |
19d7140e | 308 | grid->SetCellTextColour(5, 8, *wxGREEN); |
600683ca MB |
309 | grid->SetCellValue(5, 8, _T("Bg from row attr\nText col from cell attr")); |
310 | grid->SetCellValue(5, 5, _T("Bg from row attr Text col from col attr and this text is so long that it covers over many many empty cells but is broken by one that isn't")); | |
0b190b0f | 311 | |
19d7140e | 312 | grid->SetColFormatFloat(6); |
600683ca MB |
313 | grid->SetCellValue(0, 6, _T("3.1415")); |
314 | grid->SetCellValue(1, 6, _T("1415")); | |
315 | grid->SetCellValue(2, 6, _T("12345.67890")); | |
0b190b0f | 316 | |
19d7140e | 317 | grid->SetColFormatFloat(7, 6, 2); |
600683ca MB |
318 | grid->SetCellValue(0, 7, _T("3.1415")); |
319 | grid->SetCellValue(1, 7, _T("1415")); | |
320 | grid->SetCellValue(2, 7, _T("12345.67890")); | |
19d7140e | 321 | |
ecd69fb6 SN |
322 | const wxString choices[] = |
323 | { | |
324 | _T("Please select a choice"), | |
325 | _T("This takes two cells"), | |
326 | _T("Another choice"), | |
327 | }; | |
328 | grid->SetCellEditor(4, 0, new wxGridCellChoiceEditor(WXSIZEOF(choices), choices)); | |
329 | grid->SetCellSize(4, 0, 1, 2); | |
330 | grid->SetCellValue(4, 0, choices[0]); | |
331 | grid->SetCellOverflow(4, 0, FALSE); | |
332 | ||
333 | grid->SetCellSize(7, 1, 3, 4); | |
334 | grid->SetCellAlignment(7, 1, wxALIGN_CENTRE, wxALIGN_CENTRE); | |
600683ca | 335 | grid->SetCellValue(7, 1, _T("Big box!")); |
ecd69fb6 | 336 | |
e442cc0d MB |
337 | wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL ); |
338 | topSizer->Add( grid, | |
339 | 1, | |
340 | wxEXPAND ); | |
f0102d2a | 341 | |
e442cc0d | 342 | topSizer->Add( logWin, |
f0102d2a | 343 | 0, |
e442cc0d | 344 | wxEXPAND ); |
f0102d2a | 345 | |
e442cc0d MB |
346 | SetAutoLayout( TRUE ); |
347 | SetSizer( topSizer ); | |
f0102d2a | 348 | |
e442cc0d MB |
349 | topSizer->Fit( this ); |
350 | topSizer->SetSizeHints( this ); | |
f0102d2a | 351 | |
e442cc0d MB |
352 | Centre(); |
353 | SetDefaults(); | |
354 | } | |
355 | ||
356 | ||
357 | GridFrame::~GridFrame() | |
358 | { | |
66b3609e | 359 | delete wxLog::SetActiveTarget(m_logOld); |
e442cc0d MB |
360 | } |
361 | ||
f445b853 | 362 | |
e442cc0d MB |
363 | void GridFrame::SetDefaults() |
364 | { | |
365 | GetMenuBar()->Check( ID_TOGGLEROWLABELS, TRUE ); | |
366 | GetMenuBar()->Check( ID_TOGGLECOLLABELS, TRUE ); | |
f445b853 | 367 | GetMenuBar()->Check( ID_TOGGLEEDIT, TRUE ); |
dd16fdae MB |
368 | GetMenuBar()->Check( ID_TOGGLEROWSIZING, TRUE ); |
369 | GetMenuBar()->Check( ID_TOGGLECOLSIZING, TRUE ); | |
4cfa5de6 | 370 | GetMenuBar()->Check( ID_TOGGLEGRIDSIZING, TRUE ); |
f6bcfd97 | 371 | GetMenuBar()->Check( ID_TOGGLEGRIDLINES, TRUE ); |
ecd69fb6 | 372 | GetMenuBar()->Check( ID_CELLOVERFLOW, TRUE ); |
e442cc0d MB |
373 | } |
374 | ||
375 | ||
376 | void GridFrame::ToggleRowLabels( wxCommandEvent& WXUNUSED(ev) ) | |
377 | { | |
378 | if ( GetMenuBar()->IsChecked( ID_TOGGLEROWLABELS ) ) | |
379 | { | |
380 | grid->SetRowLabelSize( grid->GetDefaultRowLabelSize() ); | |
381 | } | |
382 | else | |
383 | { | |
384 | grid->SetRowLabelSize( 0 ); | |
385 | } | |
386 | } | |
387 | ||
388 | ||
389 | void GridFrame::ToggleColLabels( wxCommandEvent& WXUNUSED(ev) ) | |
390 | { | |
391 | if ( GetMenuBar()->IsChecked( ID_TOGGLECOLLABELS ) ) | |
392 | { | |
393 | grid->SetColLabelSize( grid->GetDefaultColLabelSize() ); | |
394 | } | |
395 | else | |
396 | { | |
397 | grid->SetColLabelSize( 0 ); | |
398 | } | |
399 | } | |
400 | ||
401 | ||
f445b853 | 402 | void GridFrame::ToggleEditing( wxCommandEvent& WXUNUSED(ev) ) |
e442cc0d | 403 | { |
f445b853 MB |
404 | grid->EnableEditing( |
405 | GetMenuBar()->IsChecked( ID_TOGGLEEDIT ) ); | |
e442cc0d MB |
406 | } |
407 | ||
408 | ||
dd16fdae MB |
409 | void GridFrame::ToggleRowSizing( wxCommandEvent& WXUNUSED(ev) ) |
410 | { | |
ea179c7b | 411 | grid->EnableDragRowSize( |
dd16fdae MB |
412 | GetMenuBar()->IsChecked( ID_TOGGLEROWSIZING ) ); |
413 | } | |
414 | ||
415 | ||
416 | void GridFrame::ToggleColSizing( wxCommandEvent& WXUNUSED(ev) ) | |
417 | { | |
ea179c7b | 418 | grid->EnableDragColSize( |
dd16fdae MB |
419 | GetMenuBar()->IsChecked( ID_TOGGLECOLSIZING ) ); |
420 | } | |
421 | ||
4cfa5de6 RD |
422 | void GridFrame::ToggleGridSizing( wxCommandEvent& WXUNUSED(ev) ) |
423 | { | |
424 | grid->EnableDragGridSize( | |
425 | GetMenuBar()->IsChecked( ID_TOGGLEGRIDSIZING ) ); | |
426 | } | |
427 | ||
dd16fdae | 428 | |
f6bcfd97 BP |
429 | void GridFrame::ToggleGridLines( wxCommandEvent& WXUNUSED(ev) ) |
430 | { | |
431 | grid->EnableGridLines( | |
432 | GetMenuBar()->IsChecked( ID_TOGGLEGRIDLINES ) ); | |
433 | } | |
434 | ||
d2520c85 RD |
435 | void GridFrame::OnSetHighlightWidth( wxCommandEvent& WXUNUSED(ev) ) |
436 | { | |
600683ca | 437 | wxString choices[] = { _T("0"), _T("1"), _T("2"), _T("3"), _T("4"), _T("5"), _T("6"), _T("7"), _T("8"), _T("9"), _T("10")}; |
d2520c85 | 438 | |
600683ca MB |
439 | wxSingleChoiceDialog dlg(this, _T("Choose the thickness of the highlight pen:"), |
440 | _T("Pen Width"), 11, choices); | |
d2520c85 RD |
441 | |
442 | int current = grid->GetCellHighlightPenWidth(); | |
443 | dlg.SetSelection(current); | |
444 | if (dlg.ShowModal() == wxID_OK) { | |
445 | grid->SetCellHighlightPenWidth(dlg.GetSelection()); | |
446 | } | |
447 | } | |
448 | ||
449 | void GridFrame::OnSetROHighlightWidth( wxCommandEvent& WXUNUSED(ev) ) | |
450 | { | |
600683ca | 451 | wxString choices[] = { _T("0"), _T("1"), _T("2"), _T("3"), _T("4"), _T("5"), _T("6"), _T("7"), _T("8"), _T("9"), _T("10")}; |
d2520c85 | 452 | |
600683ca MB |
453 | wxSingleChoiceDialog dlg(this, _T("Choose the thickness of the highlight pen:"), |
454 | _T("Pen Width"), 11, choices); | |
d2520c85 RD |
455 | |
456 | int current = grid->GetCellHighlightROPenWidth(); | |
457 | dlg.SetSelection(current); | |
458 | if (dlg.ShowModal() == wxID_OK) { | |
459 | grid->SetCellHighlightROPenWidth(dlg.GetSelection()); | |
460 | } | |
461 | } | |
462 | ||
463 | ||
f6bcfd97 BP |
464 | |
465 | void GridFrame::AutoSizeCols( wxCommandEvent& WXUNUSED(ev) ) | |
466 | { | |
467 | grid->AutoSizeColumns(); | |
468 | grid->Refresh(); | |
469 | } | |
470 | ||
ecd69fb6 SN |
471 | void GridFrame::CellOverflow( wxCommandEvent& ev ) |
472 | { | |
473 | grid->SetDefaultCellOverflow(ev.IsChecked()); | |
474 | grid->Refresh(); | |
475 | } | |
476 | ||
477 | void GridFrame::ResizeCell( wxCommandEvent& ev ) | |
478 | { | |
479 | if (ev.IsChecked()) | |
480 | grid->SetCellSize( 7, 1, 5, 5 ); | |
481 | else | |
482 | grid->SetCellSize( 7, 1, 1, 5 ); | |
483 | grid->Refresh(); | |
484 | } | |
f6bcfd97 | 485 | |
e442cc0d MB |
486 | void GridFrame::SetLabelColour( wxCommandEvent& WXUNUSED(ev) ) |
487 | { | |
488 | wxColourDialog dlg( NULL ); | |
489 | if ( dlg.ShowModal() == wxID_OK ) | |
490 | { | |
491 | wxColourData retData; | |
492 | retData = dlg.GetColourData(); | |
493 | wxColour colour = retData.GetColour(); | |
494 | ||
495 | grid->SetLabelBackgroundColour( colour ); | |
496 | } | |
497 | } | |
498 | ||
499 | ||
500 | void GridFrame::SetLabelTextColour( wxCommandEvent& WXUNUSED(ev) ) | |
501 | { | |
502 | wxColourDialog dlg( NULL ); | |
503 | if ( dlg.ShowModal() == wxID_OK ) | |
504 | { | |
505 | wxColourData retData; | |
506 | retData = dlg.GetColourData(); | |
507 | wxColour colour = retData.GetColour(); | |
508 | ||
509 | grid->SetLabelTextColour( colour ); | |
510 | } | |
511 | } | |
512 | ||
bf9adb3a VZ |
513 | void GridFrame::SetLabelFont( wxCommandEvent& WXUNUSED(ev) ) |
514 | { | |
515 | wxFont font = wxGetFontFromUser(this); | |
516 | if ( font.Ok() ) | |
517 | { | |
518 | grid->SetLabelFont(font); | |
519 | } | |
520 | } | |
e442cc0d MB |
521 | |
522 | void GridFrame::SetRowLabelHorizAlignment( wxCommandEvent& WXUNUSED(ev) ) | |
523 | { | |
524 | int horiz, vert; | |
525 | grid->GetRowLabelAlignment( &horiz, &vert ); | |
f0102d2a | 526 | |
e442cc0d MB |
527 | switch ( horiz ) |
528 | { | |
0767cb6f MB |
529 | case wxALIGN_LEFT: |
530 | horiz = wxALIGN_CENTRE; | |
e442cc0d | 531 | break; |
f0102d2a | 532 | |
0767cb6f MB |
533 | case wxALIGN_CENTRE: |
534 | horiz = wxALIGN_RIGHT; | |
e442cc0d MB |
535 | break; |
536 | ||
0767cb6f MB |
537 | case wxALIGN_RIGHT: |
538 | horiz = wxALIGN_LEFT; | |
e442cc0d MB |
539 | break; |
540 | } | |
541 | ||
542 | grid->SetRowLabelAlignment( horiz, -1 ); | |
543 | } | |
544 | ||
545 | void GridFrame::SetRowLabelVertAlignment( wxCommandEvent& WXUNUSED(ev) ) | |
546 | { | |
547 | int horiz, vert; | |
548 | grid->GetRowLabelAlignment( &horiz, &vert ); | |
f0102d2a | 549 | |
e442cc0d MB |
550 | switch ( vert ) |
551 | { | |
0767cb6f MB |
552 | case wxALIGN_TOP: |
553 | vert = wxALIGN_CENTRE; | |
e442cc0d | 554 | break; |
f0102d2a | 555 | |
0767cb6f MB |
556 | case wxALIGN_CENTRE: |
557 | vert = wxALIGN_BOTTOM; | |
e442cc0d MB |
558 | break; |
559 | ||
0767cb6f MB |
560 | case wxALIGN_BOTTOM: |
561 | vert = wxALIGN_TOP; | |
e442cc0d MB |
562 | break; |
563 | } | |
564 | ||
565 | grid->SetRowLabelAlignment( -1, vert ); | |
566 | } | |
567 | ||
568 | ||
569 | void GridFrame::SetColLabelHorizAlignment( wxCommandEvent& WXUNUSED(ev) ) | |
570 | { | |
571 | int horiz, vert; | |
572 | grid->GetColLabelAlignment( &horiz, &vert ); | |
f0102d2a | 573 | |
e442cc0d MB |
574 | switch ( horiz ) |
575 | { | |
0767cb6f MB |
576 | case wxALIGN_LEFT: |
577 | horiz = wxALIGN_CENTRE; | |
e442cc0d | 578 | break; |
f0102d2a | 579 | |
0767cb6f MB |
580 | case wxALIGN_CENTRE: |
581 | horiz = wxALIGN_RIGHT; | |
e442cc0d MB |
582 | break; |
583 | ||
0767cb6f MB |
584 | case wxALIGN_RIGHT: |
585 | horiz = wxALIGN_LEFT; | |
e442cc0d MB |
586 | break; |
587 | } | |
588 | ||
589 | grid->SetColLabelAlignment( horiz, -1 ); | |
590 | } | |
591 | ||
592 | ||
593 | void GridFrame::SetColLabelVertAlignment( wxCommandEvent& WXUNUSED(ev) ) | |
594 | { | |
595 | int horiz, vert; | |
596 | grid->GetColLabelAlignment( &horiz, &vert ); | |
f0102d2a | 597 | |
e442cc0d MB |
598 | switch ( vert ) |
599 | { | |
0767cb6f MB |
600 | case wxALIGN_TOP: |
601 | vert = wxALIGN_CENTRE; | |
e442cc0d | 602 | break; |
f0102d2a | 603 | |
0767cb6f MB |
604 | case wxALIGN_CENTRE: |
605 | vert = wxALIGN_BOTTOM; | |
e442cc0d MB |
606 | break; |
607 | ||
0767cb6f MB |
608 | case wxALIGN_BOTTOM: |
609 | vert = wxALIGN_TOP; | |
e442cc0d MB |
610 | break; |
611 | } | |
612 | ||
613 | grid->SetColLabelAlignment( -1, vert ); | |
614 | } | |
615 | ||
616 | ||
617 | void GridFrame::SetGridLineColour( wxCommandEvent& WXUNUSED(ev) ) | |
618 | { | |
619 | wxColourDialog dlg( NULL ); | |
620 | if ( dlg.ShowModal() == wxID_OK ) | |
621 | { | |
622 | wxColourData retData; | |
623 | retData = dlg.GetColourData(); | |
624 | wxColour colour = retData.GetColour(); | |
625 | ||
626 | grid->SetGridLineColour( colour ); | |
627 | } | |
628 | } | |
629 | ||
630 | ||
0eee5283 MB |
631 | void GridFrame::InsertRow( wxCommandEvent& WXUNUSED(ev) ) |
632 | { | |
4e5b5abb | 633 | grid->InsertRows( grid->GetGridCursorRow(), 1 ); |
0eee5283 MB |
634 | } |
635 | ||
636 | ||
637 | void GridFrame::InsertCol( wxCommandEvent& WXUNUSED(ev) ) | |
638 | { | |
4e5b5abb | 639 | grid->InsertCols( grid->GetGridCursorCol(), 1 ); |
0eee5283 MB |
640 | } |
641 | ||
642 | ||
f445b853 | 643 | void GridFrame::DeleteSelectedRows( wxCommandEvent& WXUNUSED(ev) ) |
0eee5283 | 644 | { |
f445b853 MB |
645 | if ( grid->IsSelection() ) |
646 | { | |
f6bcfd97 BP |
647 | grid->BeginBatch(); |
648 | for ( int n = 0; n < grid->GetNumberRows(); ) | |
5c8fc7c1 SN |
649 | if ( grid->IsInSelection( n , 0 ) ) |
650 | grid->DeleteRows( n, 1 ); | |
2f6c54eb VZ |
651 | else |
652 | n++; | |
f6bcfd97 | 653 | grid->EndBatch(); |
f445b853 | 654 | } |
0eee5283 MB |
655 | } |
656 | ||
657 | ||
f445b853 | 658 | void GridFrame::DeleteSelectedCols( wxCommandEvent& WXUNUSED(ev) ) |
0eee5283 | 659 | { |
f445b853 MB |
660 | if ( grid->IsSelection() ) |
661 | { | |
f6bcfd97 BP |
662 | grid->BeginBatch(); |
663 | for ( int n = 0; n < grid->GetNumberCols(); ) | |
5c8fc7c1 SN |
664 | if ( grid->IsInSelection( 0 , n ) ) |
665 | grid->DeleteCols( n, 1 ); | |
2f6c54eb VZ |
666 | else |
667 | n++; | |
f6bcfd97 | 668 | grid->EndBatch(); |
f445b853 | 669 | } |
0eee5283 MB |
670 | } |
671 | ||
672 | ||
e442cc0d MB |
673 | void GridFrame::ClearGrid( wxCommandEvent& WXUNUSED(ev) ) |
674 | { | |
675 | grid->ClearGrid(); | |
676 | } | |
677 | ||
043d16b2 SN |
678 | void GridFrame::SelectCells( wxCommandEvent& WXUNUSED(ev) ) |
679 | { | |
680 | grid->SetSelectionMode( wxGrid::wxGridSelectCells ); | |
681 | } | |
682 | ||
683 | void GridFrame::SelectRows( wxCommandEvent& WXUNUSED(ev) ) | |
684 | { | |
685 | grid->SetSelectionMode( wxGrid::wxGridSelectRows ); | |
686 | } | |
687 | ||
688 | void GridFrame::SelectCols( wxCommandEvent& WXUNUSED(ev) ) | |
689 | { | |
690 | grid->SetSelectionMode( wxGrid::wxGridSelectColumns ); | |
691 | } | |
692 | ||
ab79958a VZ |
693 | void GridFrame::SetCellFgColour( wxCommandEvent& WXUNUSED(ev) ) |
694 | { | |
695 | wxColour col = wxGetColourFromUser(this); | |
696 | if ( col.Ok() ) | |
758cbedf | 697 | { |
ab79958a | 698 | grid->SetDefaultCellTextColour(col); |
758cbedf VZ |
699 | grid->Refresh(); |
700 | } | |
ab79958a VZ |
701 | } |
702 | ||
703 | void GridFrame::SetCellBgColour( wxCommandEvent& WXUNUSED(ev) ) | |
704 | { | |
705 | wxColour col = wxGetColourFromUser(this); | |
706 | if ( col.Ok() ) | |
758cbedf | 707 | { |
2918e2d2 SN |
708 | // Check the new Refresh function by passing it a rectangle |
709 | // which exactly fits the grid. | |
710 | wxRect r(wxPoint(0, 0), grid->GetSize()); | |
ab79958a | 711 | grid->SetDefaultCellBackgroundColour(col); |
2918e2d2 | 712 | grid->Refresh(TRUE, &r); |
758cbedf | 713 | } |
ab79958a | 714 | } |
e442cc0d | 715 | |
14e5a313 VZ |
716 | void GridFrame::DeselectCell(wxCommandEvent& WXUNUSED(event)) |
717 | { | |
718 | grid->DeselectCell(3, 1); | |
719 | } | |
720 | ||
721 | void GridFrame::DeselectCol(wxCommandEvent& WXUNUSED(event)) | |
722 | { | |
723 | grid->DeselectCol(2); | |
724 | } | |
725 | ||
726 | void GridFrame::DeselectRow(wxCommandEvent& WXUNUSED(event)) | |
727 | { | |
728 | grid->DeselectRow(2); | |
729 | } | |
730 | ||
731 | void GridFrame::DeselectAll(wxCommandEvent& WXUNUSED(event)) | |
732 | { | |
733 | grid->ClearSelection(); | |
734 | } | |
735 | ||
736 | void GridFrame::SelectCell(wxCommandEvent& WXUNUSED(event)) | |
737 | { | |
93521c94 | 738 | grid->SelectBlock(3, 1, 3, 1, m_addToSel); |
14e5a313 VZ |
739 | } |
740 | ||
741 | void GridFrame::SelectCol(wxCommandEvent& WXUNUSED(event)) | |
742 | { | |
93521c94 | 743 | grid->SelectCol(2, m_addToSel); |
14e5a313 VZ |
744 | } |
745 | ||
746 | void GridFrame::SelectRow(wxCommandEvent& WXUNUSED(event)) | |
747 | { | |
93521c94 | 748 | grid->SelectRow(2, m_addToSel); |
14e5a313 VZ |
749 | } |
750 | ||
751 | void GridFrame::SelectAll(wxCommandEvent& WXUNUSED(event)) | |
752 | { | |
753 | grid->SelectAll(); | |
754 | } | |
755 | ||
93521c94 VZ |
756 | void GridFrame::OnAddToSelectToggle(wxCommandEvent& event) |
757 | { | |
758 | m_addToSel = event.IsChecked(); | |
759 | } | |
760 | ||
e442cc0d MB |
761 | void GridFrame::OnLabelLeftClick( wxGridEvent& ev ) |
762 | { | |
600683ca | 763 | logBuf = _T(""); |
e442cc0d MB |
764 | if ( ev.GetRow() != -1 ) |
765 | { | |
600683ca | 766 | logBuf << _T("Left click on row label ") << ev.GetRow(); |
e442cc0d MB |
767 | } |
768 | else if ( ev.GetCol() != -1 ) | |
769 | { | |
600683ca | 770 | logBuf << _T("Left click on col label ") << ev.GetCol(); |
e442cc0d MB |
771 | } |
772 | else | |
773 | { | |
600683ca | 774 | logBuf << _T("Left click on corner label"); |
e442cc0d MB |
775 | } |
776 | ||
600683ca MB |
777 | if ( ev.ShiftDown() ) logBuf << _T(" (shift down)"); |
778 | if ( ev.ControlDown() ) logBuf << _T(" (control down)"); | |
4693b20c | 779 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 780 | |
c336585e MB |
781 | // you must call event skip if you want default grid processing |
782 | // | |
e442cc0d MB |
783 | ev.Skip(); |
784 | } | |
785 | ||
786 | ||
787 | void GridFrame::OnCellLeftClick( wxGridEvent& ev ) | |
788 | { | |
600683ca MB |
789 | logBuf = _T(""); |
790 | logBuf << _T("Left click at row ") << ev.GetRow() | |
791 | << _T(" col ") << ev.GetCol(); | |
4693b20c | 792 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
0eee5283 | 793 | |
e442cc0d MB |
794 | // you must call event skip if you want default grid processing |
795 | // (cell highlighting etc.) | |
796 | // | |
797 | ev.Skip(); | |
798 | } | |
799 | ||
800 | ||
801 | void GridFrame::OnRowSize( wxGridSizeEvent& ev ) | |
802 | { | |
600683ca MB |
803 | logBuf = _T(""); |
804 | logBuf << _T("Resized row ") << ev.GetRowOrCol(); | |
4693b20c | 805 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 806 | |
e442cc0d MB |
807 | ev.Skip(); |
808 | } | |
809 | ||
810 | ||
811 | void GridFrame::OnColSize( wxGridSizeEvent& ev ) | |
812 | { | |
600683ca MB |
813 | logBuf = _T(""); |
814 | logBuf << _T("Resized col ") << ev.GetRowOrCol(); | |
4693b20c | 815 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 816 | |
e442cc0d MB |
817 | ev.Skip(); |
818 | } | |
819 | ||
c336585e MB |
820 | |
821 | void GridFrame::OnSelectCell( wxGridEvent& ev ) | |
822 | { | |
600683ca | 823 | logBuf = _T(""); |
5c8fc7c1 | 824 | if ( ev.Selecting() ) |
600683ca | 825 | logBuf << _T("Selected "); |
5c8fc7c1 | 826 | else |
600683ca MB |
827 | logBuf << _T("Deselected "); |
828 | logBuf << _T("cell at row ") << ev.GetRow() | |
829 | << _T(" col ") << ev.GetCol() | |
830 | << _T(" ( ControlDown: ")<< (ev.ControlDown() ? 'T':'F') | |
831 | << _T(", ShiftDown: ")<< (ev.ShiftDown() ? 'T':'F') | |
832 | << _T(", AltDown: ")<< (ev.AltDown() ? 'T':'F') | |
833 | << _T(", MetaDown: ")<< (ev.MetaDown() ? 'T':'F') << _T(" )"); | |
4693b20c | 834 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 835 | |
c336585e MB |
836 | // you must call Skip() if you want the default processing |
837 | // to occur in wxGrid | |
838 | ev.Skip(); | |
839 | } | |
840 | ||
e442cc0d MB |
841 | void GridFrame::OnRangeSelected( wxGridRangeSelectEvent& ev ) |
842 | { | |
600683ca | 843 | logBuf = _T(""); |
5c8fc7c1 | 844 | if ( ev.Selecting() ) |
600683ca | 845 | logBuf << _T("Selected "); |
5c8fc7c1 | 846 | else |
600683ca MB |
847 | logBuf << _T("Deselected "); |
848 | logBuf << _T("cells from row ") << ev.GetTopRow() | |
849 | << _T(" col ") << ev.GetLeftCol() | |
850 | << _T(" to row ") << ev.GetBottomRow() | |
851 | << _T(" col ") << ev.GetRightCol() | |
852 | << _T(" ( ControlDown: ")<< (ev.ControlDown() ? 'T':'F') | |
853 | << _T(", ShiftDown: ")<< (ev.ShiftDown() ? 'T':'F') | |
854 | << _T(", AltDown: ")<< (ev.AltDown() ? 'T':'F') | |
855 | << _T(", MetaDown: ")<< (ev.MetaDown() ? 'T':'F') << _T(" )"); | |
4693b20c | 856 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 857 | |
e442cc0d MB |
858 | ev.Skip(); |
859 | } | |
860 | ||
861 | void GridFrame::OnCellValueChanged( wxGridEvent& ev ) | |
862 | { | |
600683ca MB |
863 | logBuf = _T(""); |
864 | logBuf << _T("Value changed for cell at") | |
865 | << _T(" row ") << ev.GetRow() | |
866 | << _T(" col ") << ev.GetCol(); | |
f0102d2a | 867 | |
4693b20c | 868 | wxLogMessage( wxT("%s"), logBuf.c_str() ); |
f0102d2a | 869 | |
e442cc0d MB |
870 | ev.Skip(); |
871 | } | |
872 | ||
b54ba671 VZ |
873 | void GridFrame::OnEditorShown( wxGridEvent& ev ) |
874 | { | |
fe7b9ed6 VZ |
875 | |
876 | if ( (ev.GetCol() == 4) && | |
877 | (ev.GetRow() == 0) && | |
2f6c54eb VZ |
878 | (wxMessageBox(_T("Are you sure you wish to edit this cell"), |
879 | _T("Checking"),wxYES_NO) == wxNO ) ) { | |
fe7b9ed6 | 880 | |
2f6c54eb VZ |
881 | ev.Veto(); |
882 | return; | |
fe7b9ed6 | 883 | } |
2f6c54eb | 884 | |
4693b20c | 885 | wxLogMessage( wxT("Cell editor shown.") ); |
b54ba671 VZ |
886 | |
887 | ev.Skip(); | |
888 | } | |
889 | ||
890 | void GridFrame::OnEditorHidden( wxGridEvent& ev ) | |
891 | { | |
671bcff5 | 892 | |
fe7b9ed6 VZ |
893 | if ( (ev.GetCol() == 4) && |
894 | (ev.GetRow() == 0) && | |
2f6c54eb VZ |
895 | (wxMessageBox(_T("Are you sure you wish to finish editing this cell"), |
896 | _T("Checking"),wxYES_NO) == wxNO ) ) { | |
fe7b9ed6 | 897 | |
2f6c54eb VZ |
898 | ev.Veto(); |
899 | return; | |
fe7b9ed6 VZ |
900 | } |
901 | ||
4693b20c | 902 | wxLogMessage( wxT("Cell editor hidden.") ); |
b54ba671 VZ |
903 | |
904 | ev.Skip(); | |
905 | } | |
e442cc0d | 906 | |
f445b853 MB |
907 | void GridFrame::About( wxCommandEvent& WXUNUSED(ev) ) |
908 | { | |
600683ca MB |
909 | (void)wxMessageBox( _T("\n\nwxGrid demo \n\n") |
910 | _T("Michael Bedward \n") | |
911 | _T("mbedward@ozemail.com.au \n\n"), | |
912 | _T("About"), | |
f445b853 MB |
913 | wxOK ); |
914 | } | |
915 | ||
916 | ||
917 | void GridFrame::OnQuit( wxCommandEvent& WXUNUSED(ev) ) | |
918 | { | |
919 | Close( TRUE ); | |
920 | } | |
921 | ||
35f97e95 VZ |
922 | void GridFrame::OnBugsTable(wxCommandEvent& ) |
923 | { | |
924 | BugsGridFrame *frame = new BugsGridFrame; | |
925 | frame->Show(TRUE); | |
926 | } | |
927 | ||
671bcff5 RD |
928 | void GridFrame::OnSmallGrid(wxCommandEvent& ) |
929 | { | |
600683ca | 930 | wxFrame* frame = new wxFrame(NULL, -1, _T("A Small Grid"), |
671bcff5 RD |
931 | wxDefaultPosition, wxSize(640, 480)); |
932 | wxPanel* panel = new wxPanel(frame, -1); | |
933 | wxGrid* grid = new wxGrid(panel, -1, wxPoint(10,10), wxSize(400,400), | |
934 | wxWANTS_CHARS | wxSIMPLE_BORDER); | |
935 | grid->CreateGrid(3,3); | |
936 | frame->Show(TRUE); | |
937 | } | |
19d7140e | 938 | |
f97c9b5b RD |
939 | void GridFrame::OnVTable(wxCommandEvent& ) |
940 | { | |
1618dca7 VZ |
941 | static long s_sizeGrid = 10000; |
942 | ||
b0c8fc35 MB |
943 | #ifdef __WXMOTIF__ |
944 | // MB: wxGetNumberFromUser doesn't work properly for wxMotif | |
945 | wxString s; | |
946 | s << s_sizeGrid; | |
600683ca MB |
947 | s = wxGetTextFromUser( _T("Size of the table to create"), |
948 | _T("Size:"), | |
b0c8fc35 | 949 | s ); |
c4608a8a | 950 | |
b0c8fc35 | 951 | s.ToLong( &s_sizeGrid ); |
c4608a8a | 952 | |
b0c8fc35 | 953 | #else |
600683ca MB |
954 | s_sizeGrid = wxGetNumberFromUser(_T("Size of the table to create"), |
955 | _T("Size: "), | |
956 | _T("wxGridDemo question"), | |
1618dca7 VZ |
957 | s_sizeGrid, |
958 | 0, 32000, this); | |
b0c8fc35 | 959 | #endif |
c4608a8a | 960 | |
1618dca7 VZ |
961 | if ( s_sizeGrid != -1 ) |
962 | { | |
963 | BigGridFrame* win = new BigGridFrame(s_sizeGrid); | |
964 | win->Show(TRUE); | |
965 | } | |
f97c9b5b RD |
966 | } |
967 | ||
ab79958a VZ |
968 | // ---------------------------------------------------------------------------- |
969 | // MyGridCellRenderer | |
970 | // ---------------------------------------------------------------------------- | |
971 | ||
758cbedf VZ |
972 | // do something that the default renderer doesn't here just to show that it is |
973 | // possible to alter the appearance of the cell beyond what the attributes | |
974 | // allow | |
ab79958a | 975 | void MyGridCellRenderer::Draw(wxGrid& grid, |
f97c9b5b | 976 | wxGridCellAttr& attr, |
ab79958a VZ |
977 | wxDC& dc, |
978 | const wxRect& rect, | |
979 | int row, int col, | |
980 | bool isSelected) | |
981 | { | |
f97c9b5b | 982 | wxGridCellStringRenderer::Draw(grid, attr, dc, rect, row, col, isSelected); |
ab79958a VZ |
983 | |
984 | dc.SetPen(*wxGREEN_PEN); | |
985 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
986 | dc.DrawEllipse(rect); | |
987 | } | |
f97c9b5b | 988 | |
f97c9b5b | 989 | // ---------------------------------------------------------------------------- |
a68c1246 | 990 | // MyGridCellAttrProvider |
f97c9b5b RD |
991 | // ---------------------------------------------------------------------------- |
992 | ||
a68c1246 VZ |
993 | MyGridCellAttrProvider::MyGridCellAttrProvider() |
994 | { | |
995 | m_attrForOddRows = new wxGridCellAttr; | |
996 | m_attrForOddRows->SetBackgroundColour(*wxLIGHT_GREY); | |
997 | } | |
998 | ||
999 | MyGridCellAttrProvider::~MyGridCellAttrProvider() | |
1000 | { | |
1001 | m_attrForOddRows->DecRef(); | |
1002 | } | |
1003 | ||
19d7140e VZ |
1004 | wxGridCellAttr *MyGridCellAttrProvider::GetAttr(int row, int col, |
1005 | wxGridCellAttr::wxAttrKind kind /* = wxGridCellAttr::Any */) const | |
a68c1246 | 1006 | { |
19d7140e | 1007 | wxGridCellAttr *attr = wxGridCellAttrProvider::GetAttr(row, col, kind); |
a68c1246 VZ |
1008 | |
1009 | if ( row % 2 ) | |
1010 | { | |
1011 | if ( !attr ) | |
1012 | { | |
1013 | attr = m_attrForOddRows; | |
1014 | attr->IncRef(); | |
1015 | } | |
1016 | else | |
1017 | { | |
1018 | if ( !attr->HasBackgroundColour() ) | |
1019 | { | |
1020 | wxGridCellAttr *attrNew = attr->Clone(); | |
1021 | attr->DecRef(); | |
1022 | attr = attrNew; | |
1023 | attr->SetBackgroundColour(*wxLIGHT_GREY); | |
1024 | } | |
1025 | } | |
1026 | } | |
1027 | ||
1028 | return attr; | |
1029 | } | |
1030 | ||
1031 | // ============================================================================ | |
1032 | // BigGridFrame and BigGridTable: Sample of a non-standard table | |
1033 | // ============================================================================ | |
1034 | ||
1618dca7 | 1035 | BigGridFrame::BigGridFrame(long sizeGrid) |
600683ca | 1036 | : wxFrame(NULL, -1, _T("Plugin Virtual Table"), |
1618dca7 | 1037 | wxDefaultPosition, wxSize(500, 450)) |
f97c9b5b RD |
1038 | { |
1039 | m_grid = new wxGrid(this, -1, wxDefaultPosition, wxDefaultSize); | |
1618dca7 | 1040 | m_table = new BigGridTable(sizeGrid); |
a68c1246 VZ |
1041 | |
1042 | // VZ: I don't understand why this slows down the display that much, | |
1043 | // must profile it... | |
1044 | //m_table->SetAttrProvider(new MyGridCellAttrProvider); | |
1045 | ||
f97c9b5b | 1046 | m_grid->SetTable(m_table, TRUE); |
b0c8fc35 MB |
1047 | |
1048 | #if defined __WXMOTIF__ | |
1049 | // MB: the grid isn't getting a sensible default size under wxMotif | |
1050 | int cw, ch; | |
1051 | GetClientSize( &cw, &ch ); | |
1052 | m_grid->SetSize( cw, ch ); | |
1053 | #endif | |
f97c9b5b | 1054 | } |
35f97e95 | 1055 | |
a68c1246 | 1056 | // ============================================================================ |
35f97e95 | 1057 | // BugsGridFrame: a "realistic" table |
a68c1246 VZ |
1058 | // ============================================================================ |
1059 | ||
1060 | // ---------------------------------------------------------------------------- | |
1061 | // bugs table data | |
35f97e95 VZ |
1062 | // ---------------------------------------------------------------------------- |
1063 | ||
816be743 VZ |
1064 | enum Columns |
1065 | { | |
1066 | Col_Id, | |
1067 | Col_Summary, | |
1068 | Col_Severity, | |
1069 | Col_Priority, | |
1070 | Col_Platform, | |
1071 | Col_Opened, | |
1072 | Col_Max | |
1073 | }; | |
1074 | ||
1075 | enum Severity | |
1076 | { | |
1077 | Sev_Wish, | |
1078 | Sev_Minor, | |
1079 | Sev_Normal, | |
1080 | Sev_Major, | |
1081 | Sev_Critical, | |
1082 | Sev_Max | |
1083 | }; | |
1084 | ||
f6bcfd97 | 1085 | static const wxString severities[] = |
816be743 VZ |
1086 | { |
1087 | _T("wishlist"), | |
1088 | _T("minor"), | |
1089 | _T("normal"), | |
1090 | _T("major"), | |
1091 | _T("critical"), | |
1092 | }; | |
1093 | ||
1094 | static struct BugsGridData | |
1095 | { | |
1096 | int id; | |
9121bed2 | 1097 | wxChar summary[80]; |
816be743 VZ |
1098 | Severity severity; |
1099 | int prio; | |
9121bed2 | 1100 | wxChar platform[12]; |
816be743 | 1101 | bool opened; |
c4608a8a | 1102 | } gs_dataBugsGrid [] = |
816be743 VZ |
1103 | { |
1104 | { 18, _T("foo doesn't work"), Sev_Major, 1, _T("wxMSW"), TRUE }, | |
1105 | { 27, _T("bar crashes"), Sev_Critical, 1, _T("all"), FALSE }, | |
1106 | { 45, _T("printing is slow"), Sev_Minor, 3, _T("wxMSW"), TRUE }, | |
1107 | { 68, _T("Rectangle() fails"), Sev_Normal, 1, _T("wxMSW"), FALSE }, | |
1108 | }; | |
1109 | ||
1110 | static const wxChar *headers[Col_Max] = | |
1111 | { | |
1112 | _T("Id"), | |
1113 | _T("Summary"), | |
1114 | _T("Severity"), | |
1115 | _T("Priority"), | |
1116 | _T("Platform"), | |
1117 | _T("Opened?"), | |
1118 | }; | |
1119 | ||
a68c1246 VZ |
1120 | // ---------------------------------------------------------------------------- |
1121 | // BugsGridTable | |
1122 | // ---------------------------------------------------------------------------- | |
1123 | ||
816be743 VZ |
1124 | wxString BugsGridTable::GetTypeName(int WXUNUSED(row), int col) |
1125 | { | |
1126 | switch ( col ) | |
1127 | { | |
1128 | case Col_Id: | |
1129 | case Col_Priority: | |
1130 | return wxGRID_VALUE_NUMBER;; | |
1131 | ||
1132 | case Col_Severity: | |
1133 | // fall thorugh (TODO should be a list) | |
1134 | ||
1135 | case Col_Summary: | |
c4608a8a VZ |
1136 | return wxString::Format(_T("%s:80"), wxGRID_VALUE_STRING); |
1137 | ||
816be743 | 1138 | case Col_Platform: |
c4608a8a | 1139 | return wxString::Format(_T("%s:all,MSW,GTK,other"), wxGRID_VALUE_CHOICE); |
816be743 VZ |
1140 | |
1141 | case Col_Opened: | |
1142 | return wxGRID_VALUE_BOOL; | |
1143 | } | |
1144 | ||
1145 | wxFAIL_MSG(_T("unknown column")); | |
1146 | ||
1147 | return wxEmptyString; | |
1148 | } | |
1149 | ||
e32352cf | 1150 | int BugsGridTable::GetNumberRows() |
816be743 VZ |
1151 | { |
1152 | return WXSIZEOF(gs_dataBugsGrid); | |
1153 | } | |
1154 | ||
e32352cf | 1155 | int BugsGridTable::GetNumberCols() |
35f97e95 | 1156 | { |
816be743 VZ |
1157 | return Col_Max; |
1158 | } | |
1159 | ||
1160 | bool BugsGridTable::IsEmptyCell( int row, int col ) | |
1161 | { | |
1162 | return FALSE; | |
1163 | } | |
1164 | ||
1165 | wxString BugsGridTable::GetValue( int row, int col ) | |
1166 | { | |
1167 | const BugsGridData& gd = gs_dataBugsGrid[row]; | |
1168 | ||
1169 | switch ( col ) | |
35f97e95 | 1170 | { |
816be743 VZ |
1171 | case Col_Id: |
1172 | case Col_Priority: | |
1173 | case Col_Opened: | |
1174 | wxFAIL_MSG(_T("unexpected column")); | |
1175 | break; | |
1176 | ||
1177 | case Col_Severity: | |
1178 | return severities[gd.severity]; | |
1179 | ||
1180 | case Col_Summary: | |
1181 | return gd.summary; | |
1182 | ||
1183 | case Col_Platform: | |
1184 | return gd.platform; | |
1185 | } | |
1186 | ||
1187 | return wxEmptyString; | |
1188 | } | |
1189 | ||
1190 | void BugsGridTable::SetValue( int row, int col, const wxString& value ) | |
1191 | { | |
1192 | BugsGridData& gd = gs_dataBugsGrid[row]; | |
35f97e95 | 1193 | |
816be743 | 1194 | switch ( col ) |
35f97e95 | 1195 | { |
816be743 VZ |
1196 | case Col_Id: |
1197 | case Col_Priority: | |
1198 | case Col_Opened: | |
1199 | wxFAIL_MSG(_T("unexpected column")); | |
1200 | break; | |
1201 | ||
1202 | case Col_Severity: | |
1203 | { | |
1204 | size_t n; | |
1205 | for ( n = 0; n < WXSIZEOF(severities); n++ ) | |
1206 | { | |
1207 | if ( severities[n] == value ) | |
1208 | { | |
1209 | gd.severity = (Severity)n; | |
1210 | break; | |
1211 | } | |
1212 | } | |
1213 | ||
1214 | if ( n == WXSIZEOF(severities) ) | |
1215 | { | |
1216 | wxLogWarning(_T("Invalid severity value '%s'."), | |
1217 | value.c_str()); | |
1218 | gd.severity = Sev_Normal; | |
1219 | } | |
1220 | } | |
ed23853b | 1221 | break; |
816be743 VZ |
1222 | |
1223 | case Col_Summary: | |
9121bed2 | 1224 | wxStrncpy(gd.summary, value, WXSIZEOF(gd.summary)); |
816be743 | 1225 | break; |
35f97e95 | 1226 | |
816be743 | 1227 | case Col_Platform: |
9121bed2 | 1228 | wxStrncpy(gd.platform, value, WXSIZEOF(gd.platform)); |
816be743 VZ |
1229 | break; |
1230 | } | |
1231 | } | |
1232 | ||
1233 | bool BugsGridTable::CanGetValueAs( int WXUNUSED(row), int col, const wxString& typeName ) | |
1234 | { | |
1235 | if ( typeName == wxGRID_VALUE_STRING ) | |
35f97e95 | 1236 | { |
816be743 VZ |
1237 | return TRUE; |
1238 | } | |
1239 | else if ( typeName == wxGRID_VALUE_BOOL ) | |
1240 | { | |
1241 | return col == Col_Opened; | |
1242 | } | |
1243 | else if ( typeName == wxGRID_VALUE_NUMBER ) | |
1244 | { | |
1245 | return col == Col_Id || col == Col_Priority || col == Col_Severity; | |
1246 | } | |
1247 | else | |
35f97e95 | 1248 | { |
816be743 VZ |
1249 | return FALSE; |
1250 | } | |
1251 | } | |
1252 | ||
1253 | bool BugsGridTable::CanSetValueAs( int row, int col, const wxString& typeName ) | |
1254 | { | |
1255 | return CanGetValueAs(row, col, typeName); | |
1256 | } | |
1257 | ||
1258 | long BugsGridTable::GetValueAsLong( int row, int col ) | |
1259 | { | |
1260 | const BugsGridData& gd = gs_dataBugsGrid[row]; | |
35f97e95 | 1261 | |
816be743 | 1262 | switch ( col ) |
35f97e95 | 1263 | { |
816be743 VZ |
1264 | case Col_Id: |
1265 | return gd.id; | |
35f97e95 | 1266 | |
816be743 VZ |
1267 | case Col_Priority: |
1268 | return gd.prio; | |
35f97e95 | 1269 | |
816be743 VZ |
1270 | case Col_Severity: |
1271 | return gd.severity; | |
1272 | ||
1273 | default: | |
1274 | wxFAIL_MSG(_T("unexpected column")); | |
1275 | return -1; | |
1276 | } | |
1277 | } | |
1278 | ||
1279 | bool BugsGridTable::GetValueAsBool( int row, int col ) | |
1280 | { | |
1281 | if ( col == Col_Opened ) | |
1282 | { | |
1283 | return gs_dataBugsGrid[row].opened; | |
1284 | } | |
1285 | else | |
35f97e95 | 1286 | { |
816be743 VZ |
1287 | wxFAIL_MSG(_T("unexpected column")); |
1288 | ||
1289 | return FALSE; | |
35f97e95 | 1290 | } |
816be743 | 1291 | } |
35f97e95 | 1292 | |
816be743 VZ |
1293 | void BugsGridTable::SetValueAsLong( int row, int col, long value ) |
1294 | { | |
1295 | BugsGridData& gd = gs_dataBugsGrid[row]; | |
1296 | ||
1297 | switch ( col ) | |
35f97e95 | 1298 | { |
816be743 VZ |
1299 | case Col_Priority: |
1300 | gd.prio = value; | |
1301 | break; | |
1302 | ||
1303 | default: | |
1304 | wxFAIL_MSG(_T("unexpected column")); | |
35f97e95 | 1305 | } |
816be743 | 1306 | } |
35f97e95 | 1307 | |
816be743 VZ |
1308 | void BugsGridTable::SetValueAsBool( int row, int col, bool value ) |
1309 | { | |
1310 | if ( col == Col_Opened ) | |
1311 | { | |
1312 | gs_dataBugsGrid[row].opened = value; | |
1313 | } | |
1314 | else | |
1315 | { | |
1316 | wxFAIL_MSG(_T("unexpected column")); | |
1317 | } | |
1318 | } | |
1319 | ||
1320 | wxString BugsGridTable::GetColLabelValue( int col ) | |
1321 | { | |
1322 | return headers[col]; | |
1323 | } | |
1324 | ||
1325 | BugsGridTable::BugsGridTable() | |
1326 | { | |
1327 | } | |
1328 | ||
a68c1246 VZ |
1329 | // ---------------------------------------------------------------------------- |
1330 | // BugsGridFrame | |
1331 | // ---------------------------------------------------------------------------- | |
1332 | ||
816be743 | 1333 | BugsGridFrame::BugsGridFrame() |
600683ca | 1334 | : wxFrame(NULL, -1, _T("Bugs table"), |
816be743 VZ |
1335 | wxDefaultPosition, wxSize(500, 300)) |
1336 | { | |
1337 | wxGrid *grid = new wxGrid(this, -1, wxDefaultPosition); | |
1338 | wxGridTableBase *table = new BugsGridTable(); | |
a68c1246 | 1339 | table->SetAttrProvider(new MyGridCellAttrProvider); |
35f97e95 | 1340 | grid->SetTable(table, TRUE); |
816be743 | 1341 | |
65e4e78e | 1342 | wxGridCellAttr *attrRO = new wxGridCellAttr, |
4ee5fc9c VZ |
1343 | *attrRangeEditor = new wxGridCellAttr, |
1344 | *attrCombo = new wxGridCellAttr; | |
1345 | ||
65e4e78e VZ |
1346 | attrRO->SetReadOnly(); |
1347 | attrRangeEditor->SetEditor(new wxGridCellNumberEditor(1, 5)); | |
4ee5fc9c VZ |
1348 | attrCombo->SetEditor(new wxGridCellChoiceEditor(WXSIZEOF(severities), |
1349 | severities)); | |
65e4e78e VZ |
1350 | |
1351 | grid->SetColAttr(Col_Id, attrRO); | |
1352 | grid->SetColAttr(Col_Priority, attrRangeEditor); | |
4ee5fc9c | 1353 | grid->SetColAttr(Col_Severity, attrCombo); |
65e4e78e | 1354 | |
266e8367 | 1355 | grid->SetMargins(0, 0); |
b0c8fc35 | 1356 | |
266e8367 | 1357 | grid->Fit(); |
d10f4bf9 | 1358 | SetClientSize(grid->GetSize()); |
35f97e95 | 1359 | } |
19d7140e VZ |
1360 | |
1361 |