1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Grid control wxWidgets sample
4 // Author: Michael Bedward
5 // Modified by: Santiago Palacios
7 // Copyright: (c) Michael Bedward, Julian Smart, Vadim Zeitlin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx/wx.h".
20 #include "wx/wxprec.h"
30 #include "wx/colordlg.h"
31 #include "wx/fontdlg.h"
32 #include "wx/numdlg.h"
33 #include "wx/aboutdlg.h"
36 #include "wx/headerctrl.h"
37 #include "wx/generic/gridctrl.h"
38 #include "wx/generic/grideditors.h"
43 #include "../sample.xpm"
46 // Custom renderer that renders column header cells without borders and in
48 class CustomColumnHeaderRenderer
: public wxGridColumnHeaderRenderer
51 CustomColumnHeaderRenderer(const wxColour
& colFg
, const wxColour
& colBg
)
57 virtual void DrawLabel(const wxGrid
& WXUNUSED(grid
),
59 const wxString
& value
,
63 int WXUNUSED(textOrientation
)) const
65 dc
.SetTextForeground(m_colFg
);
66 dc
.SetFont(wxITALIC_FONT
->Bold());
67 dc
.DrawLabel(value
, rect
, horizAlign
| vertAlign
);
70 virtual void DrawBorder(const wxGrid
& WXUNUSED(grid
),
74 dc
.SetPen(*wxTRANSPARENT_PEN
);
75 dc
.SetBrush(wxBrush(m_colBg
));
76 dc
.DrawRectangle(rect
);
80 const wxColour m_colFg
, m_colBg
;
82 wxDECLARE_NO_COPY_CLASS(CustomColumnHeaderRenderer
);
85 // And a custom attributes provider which uses custom column header renderer
87 class CustomColumnHeadersProvider
: public wxGridCellAttrProvider
90 // by default custom column renderer is not used, call
91 // UseCustomColHeaders() to enable it
92 CustomColumnHeadersProvider()
93 : m_customOddRenderer(*wxYELLOW
, *wxBLUE
),
94 m_customEvenRenderer(*wxWHITE
, *wxBLACK
),
99 // enable or disable the use of custom renderer for column headers
100 void UseCustomColHeaders(bool use
= true) { m_useCustom
= use
; }
103 virtual const wxGridColumnHeaderRenderer
& GetColumnHeaderRenderer(int col
)
105 // if enabled, use custom renderers
108 // and use different ones for odd and even columns -- just to show
110 return col
% 2 ? m_customOddRenderer
: m_customEvenRenderer
;
113 return wxGridCellAttrProvider::GetColumnHeaderRenderer(col
);
117 CustomColumnHeaderRenderer m_customOddRenderer
,
118 m_customEvenRenderer
;
122 wxDECLARE_NO_COPY_CLASS(CustomColumnHeadersProvider
);
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 IMPLEMENT_APP( GridApp
)
131 // ============================================================================
133 // ============================================================================
135 // ----------------------------------------------------------------------------
137 // ----------------------------------------------------------------------------
139 bool GridApp::OnInit()
141 GridFrame
*frame
= new GridFrame
;
147 // ----------------------------------------------------------------------------
149 // ----------------------------------------------------------------------------
151 BEGIN_EVENT_TABLE( GridFrame
, wxFrame
)
152 EVT_MENU( ID_TOGGLEROWLABELS
, GridFrame::ToggleRowLabels
)
153 EVT_MENU( ID_TOGGLECOLLABELS
, GridFrame::ToggleColLabels
)
154 EVT_MENU( ID_TOGGLEEDIT
, GridFrame::ToggleEditing
)
155 EVT_MENU( ID_TOGGLEROWSIZING
, GridFrame::ToggleRowSizing
)
156 EVT_MENU( ID_TOGGLECOLSIZING
, GridFrame::ToggleColSizing
)
157 EVT_MENU( ID_TOGGLECOLMOVING
, GridFrame::ToggleColMoving
)
158 EVT_MENU( ID_TOGGLEGRIDSIZING
, GridFrame::ToggleGridSizing
)
159 EVT_MENU( ID_TOGGLEGRIDDRAGCELL
, GridFrame::ToggleGridDragCell
)
160 EVT_MENU( ID_COLNATIVEHEADER
, GridFrame::SetNativeColHeader
)
161 EVT_MENU( ID_COLDEFAULTHEADER
, GridFrame::SetDefaultColHeader
)
162 EVT_MENU( ID_COLCUSTOMHEADER
, GridFrame::SetCustomColHeader
)
163 EVT_MENU( ID_TOGGLEGRIDLINES
, GridFrame::ToggleGridLines
)
164 EVT_MENU( ID_AUTOSIZECOLS
, GridFrame::AutoSizeCols
)
165 EVT_MENU( ID_CELLOVERFLOW
, GridFrame::CellOverflow
)
166 EVT_MENU( ID_RESIZECELL
, GridFrame::ResizeCell
)
167 EVT_MENU( ID_SETLABELCOLOUR
, GridFrame::SetLabelColour
)
168 EVT_MENU( ID_SETLABELTEXTCOLOUR
, GridFrame::SetLabelTextColour
)
169 EVT_MENU( ID_SETLABEL_FONT
, GridFrame::SetLabelFont
)
170 EVT_MENU( ID_ROWLABELHORIZALIGN
, GridFrame::SetRowLabelHorizAlignment
)
171 EVT_MENU( ID_ROWLABELVERTALIGN
, GridFrame::SetRowLabelVertAlignment
)
172 EVT_MENU( ID_COLLABELHORIZALIGN
, GridFrame::SetColLabelHorizAlignment
)
173 EVT_MENU( ID_COLLABELVERTALIGN
, GridFrame::SetColLabelVertAlignment
)
174 EVT_MENU( ID_GRIDLINECOLOUR
, GridFrame::SetGridLineColour
)
175 EVT_MENU( ID_INSERTROW
, GridFrame::InsertRow
)
176 EVT_MENU( ID_INSERTCOL
, GridFrame::InsertCol
)
177 EVT_MENU( ID_DELETEROW
, GridFrame::DeleteSelectedRows
)
178 EVT_MENU( ID_DELETECOL
, GridFrame::DeleteSelectedCols
)
179 EVT_MENU( ID_CLEARGRID
, GridFrame::ClearGrid
)
180 EVT_MENU( ID_SELCELLS
, GridFrame::SelectCells
)
181 EVT_MENU( ID_SELROWS
, GridFrame::SelectRows
)
182 EVT_MENU( ID_SELCOLS
, GridFrame::SelectCols
)
183 EVT_MENU( ID_SELROWSORCOLS
, GridFrame::SelectRowsOrCols
)
185 EVT_MENU( ID_SET_CELL_FG_COLOUR
, GridFrame::SetCellFgColour
)
186 EVT_MENU( ID_SET_CELL_BG_COLOUR
, GridFrame::SetCellBgColour
)
188 EVT_MENU( wxID_ABOUT
, GridFrame::About
)
189 EVT_MENU( wxID_EXIT
, GridFrame::OnQuit
)
190 EVT_MENU( ID_VTABLE
, GridFrame::OnVTable
)
191 EVT_MENU( ID_BUGS_TABLE
, GridFrame::OnBugsTable
)
192 EVT_MENU( ID_TABULAR_TABLE
, GridFrame::OnTabularTable
)
194 EVT_MENU( ID_DESELECT_CELL
, GridFrame::DeselectCell
)
195 EVT_MENU( ID_DESELECT_COL
, GridFrame::DeselectCol
)
196 EVT_MENU( ID_DESELECT_ROW
, GridFrame::DeselectRow
)
197 EVT_MENU( ID_DESELECT_ALL
, GridFrame::DeselectAll
)
198 EVT_MENU( ID_SELECT_CELL
, GridFrame::SelectCell
)
199 EVT_MENU( ID_SELECT_COL
, GridFrame::SelectCol
)
200 EVT_MENU( ID_SELECT_ROW
, GridFrame::SelectRow
)
201 EVT_MENU( ID_SELECT_ALL
, GridFrame::SelectAll
)
202 EVT_MENU( ID_SELECT_UNSELECT
, GridFrame::OnAddToSelectToggle
)
204 EVT_MENU( ID_SIZE_ROW
, GridFrame::AutoSizeRow
)
205 EVT_MENU( ID_SIZE_COL
, GridFrame::AutoSizeCol
)
206 EVT_MENU( ID_SIZE_ROW_LABEL
, GridFrame::AutoSizeRowLabel
)
207 EVT_MENU( ID_SIZE_COL_LABEL
, GridFrame::AutoSizeColLabel
)
208 EVT_MENU( ID_SIZE_LABELS_COL
, GridFrame::AutoSizeLabelsCol
)
209 EVT_MENU( ID_SIZE_LABELS_ROW
, GridFrame::AutoSizeLabelsRow
)
210 EVT_MENU( ID_SIZE_GRID
, GridFrame::AutoSizeTable
)
212 EVT_MENU( ID_SET_HIGHLIGHT_WIDTH
, GridFrame::OnSetHighlightWidth
)
213 EVT_MENU( ID_SET_RO_HIGHLIGHT_WIDTH
, GridFrame::OnSetROHighlightWidth
)
215 EVT_GRID_LABEL_LEFT_CLICK( GridFrame::OnLabelLeftClick
)
216 EVT_GRID_CELL_LEFT_CLICK( GridFrame::OnCellLeftClick
)
217 EVT_GRID_ROW_SIZE( GridFrame::OnRowSize
)
218 EVT_GRID_COL_SIZE( GridFrame::OnColSize
)
219 EVT_GRID_SELECT_CELL( GridFrame::OnSelectCell
)
220 EVT_GRID_RANGE_SELECT( GridFrame::OnRangeSelected
)
221 EVT_GRID_CELL_CHANGING( GridFrame::OnCellValueChanging
)
222 EVT_GRID_CELL_CHANGED( GridFrame::OnCellValueChanged
)
223 EVT_GRID_CELL_BEGIN_DRAG( GridFrame::OnCellBeginDrag
)
225 EVT_GRID_EDITOR_SHOWN( GridFrame::OnEditorShown
)
226 EVT_GRID_EDITOR_HIDDEN( GridFrame::OnEditorHidden
)
230 GridFrame::GridFrame()
231 : wxFrame( (wxFrame
*)NULL
, wxID_ANY
, wxT("wxWidgets grid class demo"),
235 SetIcon(wxICON(sample
));
237 wxMenu
*fileMenu
= new wxMenu
;
238 fileMenu
->Append( ID_VTABLE
, wxT("&Virtual table test\tCtrl-V"));
239 fileMenu
->Append( ID_BUGS_TABLE
, wxT("&Bugs table test\tCtrl-B"));
240 fileMenu
->Append( ID_TABULAR_TABLE
, wxT("&Tabular table test\tCtrl-T"));
241 fileMenu
->AppendSeparator();
242 fileMenu
->Append( wxID_EXIT
, wxT("E&xit\tAlt-X") );
244 wxMenu
*viewMenu
= new wxMenu
;
245 viewMenu
->AppendCheckItem(ID_TOGGLEROWLABELS
, "&Row labels");
246 viewMenu
->AppendCheckItem(ID_TOGGLECOLLABELS
, "&Col labels");
247 viewMenu
->AppendCheckItem(ID_TOGGLEEDIT
,"&Editable");
248 viewMenu
->AppendCheckItem(ID_TOGGLEROWSIZING
, "Ro&w drag-resize");
249 viewMenu
->AppendCheckItem(ID_TOGGLECOLSIZING
, "C&ol drag-resize");
250 viewMenu
->AppendCheckItem(ID_TOGGLECOLMOVING
, "Col drag-&move");
251 viewMenu
->AppendCheckItem(ID_TOGGLEGRIDSIZING
, "&Grid drag-resize");
252 viewMenu
->AppendCheckItem(ID_TOGGLEGRIDDRAGCELL
, "&Grid drag-cell");
253 viewMenu
->AppendCheckItem(ID_TOGGLEGRIDLINES
, "&Grid Lines");
254 viewMenu
->AppendCheckItem(ID_SET_HIGHLIGHT_WIDTH
, "&Set Cell Highlight Width...");
255 viewMenu
->AppendCheckItem(ID_SET_RO_HIGHLIGHT_WIDTH
, "&Set Cell RO Highlight Width...");
256 viewMenu
->AppendCheckItem(ID_AUTOSIZECOLS
, "&Auto-size cols");
257 viewMenu
->AppendCheckItem(ID_CELLOVERFLOW
, "&Overflow cells");
258 viewMenu
->AppendCheckItem(ID_RESIZECELL
, "&Resize cell (7,1)");
260 wxMenu
*rowLabelMenu
= new wxMenu
;
262 viewMenu
->Append( ID_ROWLABELALIGN
, wxT("R&ow label alignment"),
264 wxT("Change alignment of row labels") );
266 rowLabelMenu
->AppendRadioItem( ID_ROWLABELHORIZALIGN
, wxT("&Horizontal") );
267 rowLabelMenu
->AppendRadioItem( ID_ROWLABELVERTALIGN
, wxT("&Vertical") );
269 wxMenu
*colLabelMenu
= new wxMenu
;
271 viewMenu
->Append( ID_COLLABELALIGN
, wxT("Col l&abel alignment"),
273 wxT("Change alignment of col labels") );
275 colLabelMenu
->AppendRadioItem( ID_COLLABELHORIZALIGN
, wxT("&Horizontal") );
276 colLabelMenu
->AppendRadioItem( ID_COLLABELVERTALIGN
, wxT("&Vertical") );
278 wxMenu
*colHeaderMenu
= new wxMenu
;
280 viewMenu
->Append( ID_ROWLABELALIGN
, wxT("Col header style"),
282 wxT("Change style of col header") );
284 colHeaderMenu
->AppendRadioItem( ID_COLDEFAULTHEADER
, wxT("&Default") );
285 colHeaderMenu
->AppendRadioItem( ID_COLNATIVEHEADER
, wxT("&Native") );
286 colHeaderMenu
->AppendRadioItem( ID_COLCUSTOMHEADER
, wxT("&Custom") );
289 wxMenu
*colMenu
= new wxMenu
;
290 colMenu
->Append( ID_SETLABELCOLOUR
, wxT("Set &label colour...") );
291 colMenu
->Append( ID_SETLABELTEXTCOLOUR
, wxT("Set label &text colour...") );
292 colMenu
->Append( ID_SETLABEL_FONT
, wxT("Set label fo&nt...") );
293 colMenu
->Append( ID_GRIDLINECOLOUR
, wxT("&Grid line colour...") );
294 colMenu
->Append( ID_SET_CELL_FG_COLOUR
, wxT("Set cell &foreground colour...") );
295 colMenu
->Append( ID_SET_CELL_BG_COLOUR
, wxT("Set cell &background colour...") );
297 wxMenu
*editMenu
= new wxMenu
;
298 editMenu
->Append( ID_INSERTROW
, wxT("Insert &row") );
299 editMenu
->Append( ID_INSERTCOL
, wxT("Insert &column") );
300 editMenu
->Append( ID_DELETEROW
, wxT("Delete selected ro&ws") );
301 editMenu
->Append( ID_DELETECOL
, wxT("Delete selected co&ls") );
302 editMenu
->Append( ID_CLEARGRID
, wxT("Cl&ear grid cell contents") );
304 wxMenu
*selectMenu
= new wxMenu
;
305 selectMenu
->Append( ID_SELECT_UNSELECT
, wxT("Add new cells to the selection"),
306 wxT("When off, old selection is deselected before ")
307 wxT("selecting the new cells"), wxITEM_CHECK
);
308 selectMenu
->AppendSeparator();
309 selectMenu
->Append( ID_SELECT_ALL
, wxT("Select all"));
310 selectMenu
->Append( ID_SELECT_ROW
, wxT("Select row 2"));
311 selectMenu
->Append( ID_SELECT_COL
, wxT("Select col 2"));
312 selectMenu
->Append( ID_SELECT_CELL
, wxT("Select cell (3, 1)"));
313 selectMenu
->AppendSeparator();
314 selectMenu
->Append( ID_DESELECT_ALL
, wxT("Deselect all"));
315 selectMenu
->Append( ID_DESELECT_ROW
, wxT("Deselect row 2"));
316 selectMenu
->Append( ID_DESELECT_COL
, wxT("Deselect col 2"));
317 selectMenu
->Append( ID_DESELECT_CELL
, wxT("Deselect cell (3, 1)"));
318 wxMenu
*selectionMenu
= new wxMenu
;
319 selectMenu
->Append( ID_CHANGESEL
, wxT("Change &selection mode"),
321 wxT("Change selection mode") );
323 selectionMenu
->Append( ID_SELCELLS
, wxT("Select &cells") );
324 selectionMenu
->Append( ID_SELROWS
, wxT("Select &rows") );
325 selectionMenu
->Append( ID_SELCOLS
, wxT("Select col&umns") );
326 selectionMenu
->Append( ID_SELROWSORCOLS
, wxT("Select rows &or columns") );
328 wxMenu
*autosizeMenu
= new wxMenu
;
329 autosizeMenu
->Append( ID_SIZE_ROW
, wxT("Selected &row data") );
330 autosizeMenu
->Append( ID_SIZE_COL
, wxT("Selected &column data") );
331 autosizeMenu
->Append( ID_SIZE_ROW_LABEL
, wxT("Selected row la&bel") );
332 autosizeMenu
->Append( ID_SIZE_COL_LABEL
, wxT("Selected column &label") );
333 autosizeMenu
->Append( ID_SIZE_LABELS_COL
, wxT("Column la&bels") );
334 autosizeMenu
->Append( ID_SIZE_LABELS_ROW
, wxT("Row label&s") );
335 autosizeMenu
->Append( ID_SIZE_GRID
, wxT("Entire &grid") );
337 wxMenu
*helpMenu
= new wxMenu
;
338 helpMenu
->Append( wxID_ABOUT
, wxT("&About wxGrid demo") );
340 wxMenuBar
*menuBar
= new wxMenuBar
;
341 menuBar
->Append( fileMenu
, wxT("&File") );
342 menuBar
->Append( viewMenu
, wxT("&Grid") );
343 menuBar
->Append( colMenu
, wxT("&Colours") );
344 menuBar
->Append( editMenu
, wxT("&Edit") );
345 menuBar
->Append( selectMenu
, wxT("&Select") );
346 menuBar
->Append( autosizeMenu
, wxT("&Autosize") );
347 menuBar
->Append( helpMenu
, wxT("&Help") );
349 SetMenuBar( menuBar
);
353 grid
= new wxGrid( this,
356 wxSize( 400, 300 ) );
360 int gridW
= 600, gridH
= 300;
361 int logW
= gridW
, logH
= 100;
363 logWin
= new wxTextCtrl( this,
366 wxPoint( 0, gridH
+ 20 ),
367 wxSize( logW
, logH
),
370 logger
= new wxLogTextCtrl( logWin
);
371 m_logOld
= wxLog::SetActiveTarget( logger
);
372 wxLog::DisableTimestamp();
375 // this will create a grid and, by default, an associated grid
377 grid
->CreateGrid( 0, 0 );
379 grid
->GetTable()->SetAttrProvider(new CustomColumnHeadersProvider());
381 grid
->AppendRows(100);
382 grid
->AppendCols(100);
384 int ir
= grid
->GetNumberRows();
385 grid
->DeleteRows(0, ir
);
386 grid
->AppendRows(ir
);
388 grid
->SetRowSize( 0, 60 );
389 grid
->SetCellValue( 0, 0, wxT("Ctrl+Home\nwill go to\nthis cell") );
391 grid
->SetCellValue( 0, 1, wxT("A long piece of text to demonstrate wrapping.") );
392 grid
->SetCellRenderer(0 , 1, new wxGridCellAutoWrapStringRenderer
);
393 grid
->SetCellEditor( 0, 1 , new wxGridCellAutoWrapStringEditor
);
395 grid
->SetCellValue( 0, 2, wxT("Blah") );
396 grid
->SetCellValue( 0, 3, wxT("Read only") );
397 grid
->SetReadOnly( 0, 3 );
399 grid
->SetCellValue( 0, 4, wxT("Can veto edit this cell") );
401 grid
->SetCellValue( 0, 5, wxT("Press\nCtrl+arrow\nto skip over\ncells") );
403 grid
->SetRowSize( 99, 60 );
404 grid
->SetCellValue( 99, 99, wxT("Ctrl+End\nwill go to\nthis cell") );
405 grid
->SetCellValue( 1, 0, wxT("This default cell will overflow into neighboring cells, but not if you turn overflow off."));
407 grid
->SetCellTextColour(1, 2, *wxRED
);
408 grid
->SetCellBackgroundColour(1, 2, *wxGREEN
);
410 grid
->SetCellValue( 1, 4, wxT("I'm in the middle"));
412 grid
->SetCellValue(2, 2, wxT("red"));
414 grid
->SetCellTextColour(2, 2, *wxRED
);
415 grid
->SetCellValue(3, 3, wxT("green on grey"));
416 grid
->SetCellTextColour(3, 3, *wxGREEN
);
417 grid
->SetCellBackgroundColour(3, 3, *wxLIGHT_GREY
);
419 grid
->SetCellValue(4, 4, wxT("a weird looking cell"));
420 grid
->SetCellAlignment(4, 4, wxALIGN_CENTRE
, wxALIGN_CENTRE
);
421 grid
->SetCellRenderer(4, 4, new MyGridCellRenderer
);
423 grid
->SetCellRenderer(3, 0, new wxGridCellBoolRenderer
);
424 grid
->SetCellEditor(3, 0, new wxGridCellBoolEditor
);
426 wxGridCellAttr
*attr
;
427 attr
= new wxGridCellAttr
;
428 attr
->SetTextColour(*wxBLUE
);
429 grid
->SetColAttr(5, attr
);
430 attr
= new wxGridCellAttr
;
431 attr
->SetBackgroundColour(*wxRED
);
432 grid
->SetRowAttr(5, attr
);
434 grid
->SetCellValue(2, 4, wxT("a wider column"));
435 grid
->SetColSize(4, 120);
436 grid
->SetColMinimalWidth(4, 120);
438 grid
->SetCellTextColour(5, 8, *wxGREEN
);
439 grid
->SetCellValue(5, 8, wxT("Bg from row attr\nText col from cell attr"));
440 grid
->SetCellValue(5, 5, wxT("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"));
442 // Some numeric columns with different formatting.
443 grid
->SetColFormatFloat(6);
444 grid
->SetCellValue(0, 6, "Default\nfloat format");
445 grid
->SetCellValue(1, 6, wxString::Format(wxT("%g"), 3.1415));
446 grid
->SetCellValue(2, 6, wxString::Format(wxT("%g"), 1415.0));
447 grid
->SetCellValue(3, 6, wxString::Format(wxT("%g"), 12345.67890));
449 grid
->SetColFormatFloat(7, 6, 2);
450 grid
->SetCellValue(0, 7, "Width 6\nprecision 2");
451 grid
->SetCellValue(1, 7, wxString::Format(wxT("%g"), 3.1415));
452 grid
->SetCellValue(2, 7, wxString::Format(wxT("%g"), 1415.0));
453 grid
->SetCellValue(3, 7, wxString::Format(wxT("%g"), 12345.67890));
455 grid
->SetColFormatCustom(8,
456 wxString::Format("%s:%i,%i,%s", wxGRID_VALUE_FLOAT
, -1, 4, "g"));
457 grid
->SetCellValue(0, 8, "Compact\nformat");
458 grid
->SetCellValue(1, 8, wxT("31415e-4"));
459 grid
->SetCellValue(2, 8, wxT("1415"));
460 grid
->SetCellValue(3, 8, wxT("123456789e-4"));
462 grid
->SetColFormatNumber(9);
463 grid
->SetCellValue(0, 9, "Integer\ncolumn");
464 grid
->SetCellValue(1, 9, "17");
465 grid
->SetCellValue(2, 9, "0");
466 grid
->SetCellValue(3, 9, "-666");
467 grid
->SetCellAlignment(3, 9, wxALIGN_CENTRE
, wxALIGN_TOP
);
468 grid
->SetCellValue(3, 10, "<- This numeric cell should be centred");
470 const wxString choices
[] =
472 wxT("Please select a choice"),
473 wxT("This takes two cells"),
474 wxT("Another choice"),
476 grid
->SetCellEditor(4, 0, new wxGridCellChoiceEditor(WXSIZEOF(choices
), choices
));
477 grid
->SetCellSize(4, 0, 1, 2);
478 grid
->SetCellValue(4, 0, choices
[0]);
479 grid
->SetCellOverflow(4, 0, false);
481 grid
->SetCellSize(7, 1, 3, 4);
482 grid
->SetCellAlignment(7, 1, wxALIGN_CENTRE
, wxALIGN_CENTRE
);
483 grid
->SetCellValue(7, 1, wxT("Big box!"));
485 // create a separator-like row: it's grey and it's non-resizable
486 grid
->DisableRowResize(10);
487 grid
->SetRowSize(10, 30);
488 attr
= new wxGridCellAttr
;
489 attr
->SetBackgroundColour(*wxLIGHT_GREY
);
490 grid
->SetRowAttr(10, attr
);
491 grid
->SetCellValue(10, 0, "You can't resize this row interactively -- try it");
493 // this does exactly nothing except testing that SetAttr() handles NULL
494 // attributes and does reference counting correctly
495 grid
->SetAttr(11, 11, NULL
);
496 grid
->SetAttr(11, 11, new wxGridCellAttr
);
497 grid
->SetAttr(11, 11, NULL
);
499 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
505 topSizer
->Add( logWin
,
510 SetSizerAndFit( topSizer
);
517 GridFrame::~GridFrame()
520 delete wxLog::SetActiveTarget(m_logOld
);
525 void GridFrame::SetDefaults()
527 GetMenuBar()->Check( ID_TOGGLEROWLABELS
, true );
528 GetMenuBar()->Check( ID_TOGGLECOLLABELS
, true );
529 GetMenuBar()->Check( ID_TOGGLEEDIT
, true );
530 GetMenuBar()->Check( ID_TOGGLEROWSIZING
, true );
531 GetMenuBar()->Check( ID_TOGGLECOLSIZING
, true );
532 GetMenuBar()->Check( ID_TOGGLECOLMOVING
, false );
533 GetMenuBar()->Check( ID_TOGGLEGRIDSIZING
, true );
534 GetMenuBar()->Check( ID_TOGGLEGRIDDRAGCELL
, false );
535 GetMenuBar()->Check( ID_TOGGLEGRIDLINES
, true );
536 GetMenuBar()->Check( ID_CELLOVERFLOW
, true );
540 void GridFrame::ToggleRowLabels( wxCommandEvent
& WXUNUSED(ev
) )
542 if ( GetMenuBar()->IsChecked( ID_TOGGLEROWLABELS
) )
544 grid
->SetRowLabelSize( grid
->GetDefaultRowLabelSize() );
548 grid
->SetRowLabelSize( 0 );
553 void GridFrame::ToggleColLabels( wxCommandEvent
& WXUNUSED(ev
) )
555 if ( GetMenuBar()->IsChecked( ID_TOGGLECOLLABELS
) )
557 grid
->SetColLabelSize( grid
->GetDefaultColLabelSize() );
561 grid
->SetColLabelSize( 0 );
566 void GridFrame::ToggleEditing( wxCommandEvent
& WXUNUSED(ev
) )
569 GetMenuBar()->IsChecked( ID_TOGGLEEDIT
) );
573 void GridFrame::ToggleRowSizing( wxCommandEvent
& WXUNUSED(ev
) )
575 grid
->EnableDragRowSize(
576 GetMenuBar()->IsChecked( ID_TOGGLEROWSIZING
) );
580 void GridFrame::ToggleColSizing( wxCommandEvent
& WXUNUSED(ev
) )
582 grid
->EnableDragColSize(
583 GetMenuBar()->IsChecked( ID_TOGGLECOLSIZING
) );
586 void GridFrame::ToggleColMoving( wxCommandEvent
& WXUNUSED(ev
) )
588 grid
->EnableDragColMove(
589 GetMenuBar()->IsChecked( ID_TOGGLECOLMOVING
) );
592 void GridFrame::ToggleGridSizing( wxCommandEvent
& WXUNUSED(ev
) )
594 grid
->EnableDragGridSize(
595 GetMenuBar()->IsChecked( ID_TOGGLEGRIDSIZING
) );
598 void GridFrame::ToggleGridDragCell( wxCommandEvent
& WXUNUSED(ev
) )
600 grid
->EnableDragCell(
601 GetMenuBar()->IsChecked( ID_TOGGLEGRIDDRAGCELL
) );
604 void GridFrame::SetNativeColHeader( wxCommandEvent
& WXUNUSED(ev
) )
606 CustomColumnHeadersProvider
* provider
=
607 static_cast<CustomColumnHeadersProvider
*>(grid
->GetTable()->GetAttrProvider());
608 provider
->UseCustomColHeaders(false);
609 grid
->SetUseNativeColLabels(true);
612 void GridFrame::SetCustomColHeader( wxCommandEvent
& WXUNUSED(ev
) )
614 CustomColumnHeadersProvider
* provider
=
615 static_cast<CustomColumnHeadersProvider
*>(grid
->GetTable()->GetAttrProvider());
616 provider
->UseCustomColHeaders(true);
617 grid
->SetUseNativeColLabels(false);
620 void GridFrame::SetDefaultColHeader( wxCommandEvent
& WXUNUSED(ev
) )
622 CustomColumnHeadersProvider
* provider
=
623 static_cast<CustomColumnHeadersProvider
*>(grid
->GetTable()->GetAttrProvider());
624 provider
->UseCustomColHeaders(false);
625 grid
->SetUseNativeColLabels(false);
629 void GridFrame::ToggleGridLines( wxCommandEvent
& WXUNUSED(ev
) )
631 grid
->EnableGridLines(
632 GetMenuBar()->IsChecked( ID_TOGGLEGRIDLINES
) );
635 void GridFrame::OnSetHighlightWidth( wxCommandEvent
& WXUNUSED(ev
) )
637 wxString choices
[] = { wxT("0"), wxT("1"), wxT("2"), wxT("3"), wxT("4"), wxT("5"), wxT("6"), wxT("7"), wxT("8"), wxT("9"), wxT("10")};
639 wxSingleChoiceDialog
dlg(this, wxT("Choose the thickness of the highlight pen:"),
640 wxT("Pen Width"), 11, choices
);
642 int current
= grid
->GetCellHighlightPenWidth();
643 dlg
.SetSelection(current
);
644 if (dlg
.ShowModal() == wxID_OK
) {
645 grid
->SetCellHighlightPenWidth(dlg
.GetSelection());
649 void GridFrame::OnSetROHighlightWidth( wxCommandEvent
& WXUNUSED(ev
) )
651 wxString choices
[] = { wxT("0"), wxT("1"), wxT("2"), wxT("3"), wxT("4"), wxT("5"), wxT("6"), wxT("7"), wxT("8"), wxT("9"), wxT("10")};
653 wxSingleChoiceDialog
dlg(this, wxT("Choose the thickness of the highlight pen:"),
654 wxT("Pen Width"), 11, choices
);
656 int current
= grid
->GetCellHighlightROPenWidth();
657 dlg
.SetSelection(current
);
658 if (dlg
.ShowModal() == wxID_OK
) {
659 grid
->SetCellHighlightROPenWidth(dlg
.GetSelection());
665 void GridFrame::AutoSizeCols( wxCommandEvent
& WXUNUSED(ev
) )
667 grid
->AutoSizeColumns();
671 void GridFrame::CellOverflow( wxCommandEvent
& ev
)
673 grid
->SetDefaultCellOverflow(ev
.IsChecked());
677 void GridFrame::ResizeCell( wxCommandEvent
& ev
)
680 grid
->SetCellSize( 7, 1, 5, 5 );
682 grid
->SetCellSize( 7, 1, 1, 5 );
686 void GridFrame::SetLabelColour( wxCommandEvent
& WXUNUSED(ev
) )
688 wxColourDialog
dlg( NULL
);
689 if ( dlg
.ShowModal() == wxID_OK
)
691 wxColourData retData
;
692 retData
= dlg
.GetColourData();
693 wxColour colour
= retData
.GetColour();
695 grid
->SetLabelBackgroundColour( colour
);
700 void GridFrame::SetLabelTextColour( wxCommandEvent
& WXUNUSED(ev
) )
702 wxColourDialog
dlg( NULL
);
703 if ( dlg
.ShowModal() == wxID_OK
)
705 wxColourData retData
;
706 retData
= dlg
.GetColourData();
707 wxColour colour
= retData
.GetColour();
709 grid
->SetLabelTextColour( colour
);
713 void GridFrame::SetLabelFont( wxCommandEvent
& WXUNUSED(ev
) )
715 wxFont font
= wxGetFontFromUser(this);
718 grid
->SetLabelFont(font
);
722 void GridFrame::SetRowLabelHorizAlignment( wxCommandEvent
& WXUNUSED(ev
) )
725 grid
->GetRowLabelAlignment( &horiz
, &vert
);
730 horiz
= wxALIGN_CENTRE
;
734 horiz
= wxALIGN_RIGHT
;
738 horiz
= wxALIGN_LEFT
;
742 grid
->SetRowLabelAlignment( horiz
, vert
);
745 void GridFrame::SetRowLabelVertAlignment( wxCommandEvent
& WXUNUSED(ev
) )
748 grid
->GetRowLabelAlignment( &horiz
, &vert
);
753 vert
= wxALIGN_CENTRE
;
757 vert
= wxALIGN_BOTTOM
;
765 grid
->SetRowLabelAlignment( horiz
, vert
);
769 void GridFrame::SetColLabelHorizAlignment( wxCommandEvent
& WXUNUSED(ev
) )
772 grid
->GetColLabelAlignment( &horiz
, &vert
);
777 horiz
= wxALIGN_CENTRE
;
781 horiz
= wxALIGN_RIGHT
;
785 horiz
= wxALIGN_LEFT
;
789 grid
->SetColLabelAlignment( horiz
, vert
);
793 void GridFrame::SetColLabelVertAlignment( wxCommandEvent
& WXUNUSED(ev
) )
796 grid
->GetColLabelAlignment( &horiz
, &vert
);
801 vert
= wxALIGN_CENTRE
;
805 vert
= wxALIGN_BOTTOM
;
813 grid
->SetColLabelAlignment( horiz
, vert
);
817 void GridFrame::SetGridLineColour( wxCommandEvent
& WXUNUSED(ev
) )
819 wxColourDialog
dlg( NULL
);
820 if ( dlg
.ShowModal() == wxID_OK
)
822 wxColourData retData
;
823 retData
= dlg
.GetColourData();
824 wxColour colour
= retData
.GetColour();
826 grid
->SetGridLineColour( colour
);
831 void GridFrame::InsertRow( wxCommandEvent
& WXUNUSED(ev
) )
833 grid
->InsertRows( grid
->GetGridCursorRow(), 1 );
837 void GridFrame::InsertCol( wxCommandEvent
& WXUNUSED(ev
) )
839 grid
->InsertCols( grid
->GetGridCursorCol(), 1 );
843 void GridFrame::DeleteSelectedRows( wxCommandEvent
& WXUNUSED(ev
) )
845 if ( grid
->IsSelection() )
847 wxGridUpdateLocker
locker(grid
);
848 for ( int n
= 0; n
< grid
->GetNumberRows(); )
850 if ( grid
->IsInSelection( n
, 0 ) )
851 grid
->DeleteRows( n
, 1 );
859 void GridFrame::AutoSizeRow(wxCommandEvent
& WXUNUSED(event
))
861 wxGridUpdateLocker
locker(grid
);
862 const wxArrayInt sels
= grid
->GetSelectedRows();
863 for ( size_t n
= 0, count
= sels
.size(); n
< count
; n
++ )
865 grid
->AutoSizeRow( sels
[n
], false );
869 void GridFrame::AutoSizeCol(wxCommandEvent
& WXUNUSED(event
))
871 wxGridUpdateLocker
locker(grid
);
872 const wxArrayInt sels
= grid
->GetSelectedCols();
873 for ( size_t n
= 0, count
= sels
.size(); n
< count
; n
++ )
875 grid
->AutoSizeColumn( sels
[n
], false );
879 void GridFrame::AutoSizeRowLabel(wxCommandEvent
& WXUNUSED(event
))
881 wxGridUpdateLocker
locker(grid
);
882 const wxArrayInt sels
= grid
->GetSelectedRows();
883 for ( size_t n
= 0, count
= sels
.size(); n
< count
; n
++ )
885 grid
->AutoSizeRowLabelSize( sels
[n
] );
889 void GridFrame::AutoSizeColLabel(wxCommandEvent
& WXUNUSED(event
))
891 wxGridUpdateLocker
locker(grid
);
892 const wxArrayInt sels
= grid
->GetSelectedCols();
893 for ( size_t n
= 0, count
= sels
.size(); n
< count
; n
++ )
895 grid
->AutoSizeColLabelSize( sels
[n
] );
899 void GridFrame::AutoSizeLabelsCol(wxCommandEvent
& WXUNUSED(event
))
901 grid
->SetColLabelSize( wxGRID_AUTOSIZE
);
904 void GridFrame::AutoSizeLabelsRow(wxCommandEvent
& WXUNUSED(event
))
906 grid
->SetRowLabelSize( wxGRID_AUTOSIZE
);
909 void GridFrame::AutoSizeTable(wxCommandEvent
& WXUNUSED(event
))
915 void GridFrame::DeleteSelectedCols( wxCommandEvent
& WXUNUSED(ev
) )
917 if ( grid
->IsSelection() )
919 wxGridUpdateLocker
locker(grid
);
920 for ( int n
= 0; n
< grid
->GetNumberCols(); )
922 if ( grid
->IsInSelection( 0 , n
) )
923 grid
->DeleteCols( n
, 1 );
931 void GridFrame::ClearGrid( wxCommandEvent
& WXUNUSED(ev
) )
936 void GridFrame::SelectCells( wxCommandEvent
& WXUNUSED(ev
) )
938 grid
->SetSelectionMode( wxGrid::wxGridSelectCells
);
941 void GridFrame::SelectRows( wxCommandEvent
& WXUNUSED(ev
) )
943 grid
->SetSelectionMode( wxGrid::wxGridSelectRows
);
946 void GridFrame::SelectCols( wxCommandEvent
& WXUNUSED(ev
) )
948 grid
->SetSelectionMode( wxGrid::wxGridSelectColumns
);
951 void GridFrame::SelectRowsOrCols( wxCommandEvent
& WXUNUSED(ev
) )
953 grid
->SetSelectionMode( wxGrid::wxGridSelectRowsOrColumns
);
956 void GridFrame::SetCellFgColour( wxCommandEvent
& WXUNUSED(ev
) )
958 wxColour col
= wxGetColourFromUser(this);
961 grid
->SetDefaultCellTextColour(col
);
966 void GridFrame::SetCellBgColour( wxCommandEvent
& WXUNUSED(ev
) )
968 wxColour col
= wxGetColourFromUser(this);
971 // Check the new Refresh function by passing it a rectangle
972 // which exactly fits the grid.
974 wxRect
r(pt
, grid
->GetSize());
975 grid
->SetDefaultCellBackgroundColour(col
);
976 grid
->Refresh(true, &r
);
980 void GridFrame::DeselectCell(wxCommandEvent
& WXUNUSED(event
))
982 grid
->DeselectCell(3, 1);
985 void GridFrame::DeselectCol(wxCommandEvent
& WXUNUSED(event
))
987 grid
->DeselectCol(2);
990 void GridFrame::DeselectRow(wxCommandEvent
& WXUNUSED(event
))
992 grid
->DeselectRow(2);
995 void GridFrame::DeselectAll(wxCommandEvent
& WXUNUSED(event
))
997 grid
->ClearSelection();
1000 void GridFrame::SelectCell(wxCommandEvent
& WXUNUSED(event
))
1002 grid
->SelectBlock(3, 1, 3, 1, m_addToSel
);
1005 void GridFrame::SelectCol(wxCommandEvent
& WXUNUSED(event
))
1007 grid
->SelectCol(2, m_addToSel
);
1010 void GridFrame::SelectRow(wxCommandEvent
& WXUNUSED(event
))
1012 grid
->SelectRow(2, m_addToSel
);
1015 void GridFrame::SelectAll(wxCommandEvent
& WXUNUSED(event
))
1020 void GridFrame::OnAddToSelectToggle(wxCommandEvent
& event
)
1022 m_addToSel
= event
.IsChecked();
1025 void GridFrame::OnLabelLeftClick( wxGridEvent
& ev
)
1028 if ( ev
.GetRow() != -1 )
1030 logBuf
<< wxT("Left click on row label ") << ev
.GetRow();
1032 else if ( ev
.GetCol() != -1 )
1034 logBuf
<< wxT("Left click on col label ") << ev
.GetCol();
1038 logBuf
<< wxT("Left click on corner label");
1041 if ( ev
.ShiftDown() )
1042 logBuf
<< wxT(" (shift down)");
1043 if ( ev
.ControlDown() )
1044 logBuf
<< wxT(" (control down)");
1045 wxLogMessage( wxT("%s"), logBuf
.c_str() );
1047 // you must call event skip if you want default grid processing
1053 void GridFrame::OnCellLeftClick( wxGridEvent
& ev
)
1055 wxLogMessage(wxT("Left click at row %d, col %d"), ev
.GetRow(), ev
.GetCol());
1057 // you must call event skip if you want default grid processing
1058 // (cell highlighting etc.)
1064 void GridFrame::OnRowSize( wxGridSizeEvent
& ev
)
1066 const int row
= ev
.GetRowOrCol();
1068 wxLogMessage("Resized row %d, new height = %d",
1069 row
, grid
->GetRowSize(row
));
1075 void GridFrame::OnColSize( wxGridSizeEvent
& ev
)
1077 const int col
= ev
.GetRowOrCol();
1079 wxLogMessage("Resized column %d, new width = %d",
1080 col
, grid
->GetColSize(col
));
1086 void GridFrame::OnSelectCell( wxGridEvent
& ev
)
1089 if ( ev
.Selecting() )
1090 logBuf
<< wxT("Selected ");
1092 logBuf
<< wxT("Deselected ");
1093 logBuf
<< wxT("cell at row ") << ev
.GetRow()
1094 << wxT(" col ") << ev
.GetCol()
1095 << wxT(" ( ControlDown: ")<< (ev
.ControlDown() ? 'T':'F')
1096 << wxT(", ShiftDown: ")<< (ev
.ShiftDown() ? 'T':'F')
1097 << wxT(", AltDown: ")<< (ev
.AltDown() ? 'T':'F')
1098 << wxT(", MetaDown: ")<< (ev
.MetaDown() ? 'T':'F') << wxT(" )");
1100 //Indicate whether this column was moved
1101 if ( ((wxGrid
*)ev
.GetEventObject())->GetColPos( ev
.GetCol() ) != ev
.GetCol() )
1102 logBuf
<< wxT(" *** Column moved, current position: ") << ((wxGrid
*)ev
.GetEventObject())->GetColPos( ev
.GetCol() );
1104 wxLogMessage( wxT("%s"), logBuf
.c_str() );
1106 // you must call Skip() if you want the default processing
1107 // to occur in wxGrid
1111 void GridFrame::OnRangeSelected( wxGridRangeSelectEvent
& ev
)
1114 if ( ev
.Selecting() )
1115 logBuf
<< wxT("Selected ");
1117 logBuf
<< wxT("Deselected ");
1118 logBuf
<< wxT("cells from row ") << ev
.GetTopRow()
1119 << wxT(" col ") << ev
.GetLeftCol()
1120 << wxT(" to row ") << ev
.GetBottomRow()
1121 << wxT(" col ") << ev
.GetRightCol()
1122 << wxT(" ( ControlDown: ")<< (ev
.ControlDown() ? 'T':'F')
1123 << wxT(", ShiftDown: ")<< (ev
.ShiftDown() ? 'T':'F')
1124 << wxT(", AltDown: ")<< (ev
.AltDown() ? 'T':'F')
1125 << wxT(", MetaDown: ")<< (ev
.MetaDown() ? 'T':'F') << wxT(" )");
1126 wxLogMessage( wxT("%s"), logBuf
.c_str() );
1131 void GridFrame::OnCellValueChanging( wxGridEvent
& ev
)
1133 int row
= ev
.GetRow(),
1136 wxLogMessage("Value of cell at (%d, %d): about to change "
1137 "from \"%s\" to \"%s\"",
1139 grid
->GetCellValue(row
, col
), ev
.GetString());
1141 // test how vetoing works
1142 if ( ev
.GetString() == "42" )
1144 wxLogMessage("Vetoing the change.");
1152 void GridFrame::OnCellValueChanged( wxGridEvent
& ev
)
1154 int row
= ev
.GetRow(),
1157 wxLogMessage("Value of cell at (%d, %d) changed and is now \"%s\" "
1160 grid
->GetCellValue(row
, col
), ev
.GetString());
1165 void GridFrame::OnCellBeginDrag( wxGridEvent
& ev
)
1167 wxLogMessage(wxT("Got request to drag cell at row %d, col %d"),
1168 ev
.GetRow(), ev
.GetCol());
1173 void GridFrame::OnEditorShown( wxGridEvent
& ev
)
1176 if ( (ev
.GetCol() == 4) &&
1177 (ev
.GetRow() == 0) &&
1178 (wxMessageBox(wxT("Are you sure you wish to edit this cell"),
1179 wxT("Checking"),wxYES_NO
) == wxNO
) ) {
1185 wxLogMessage( wxT("Cell editor shown.") );
1190 void GridFrame::OnEditorHidden( wxGridEvent
& ev
)
1193 if ( (ev
.GetCol() == 4) &&
1194 (ev
.GetRow() == 0) &&
1195 (wxMessageBox(wxT("Are you sure you wish to finish editing this cell"),
1196 wxT("Checking"),wxYES_NO
) == wxNO
) ) {
1202 wxLogMessage( wxT("Cell editor hidden.") );
1207 void GridFrame::About( wxCommandEvent
& WXUNUSED(ev
) )
1209 wxAboutDialogInfo aboutInfo
;
1210 aboutInfo
.SetName(wxT("wxGrid demo"));
1211 aboutInfo
.SetDescription(_("wxGrid sample program"));
1212 aboutInfo
.AddDeveloper(wxT("Michael Bedward"));
1213 aboutInfo
.AddDeveloper(wxT("Julian Smart"));
1214 aboutInfo
.AddDeveloper(wxT("Vadim Zeitlin"));
1216 // this is just to force the generic version of the about
1217 // dialog under wxMSW so that it's easy to test if the grid
1218 // repaints correctly when it has lost focus and a dialog
1219 // (different from the Windows standard message box -- it doesn't
1220 // work with it for some reason) is moved over it.
1221 aboutInfo
.SetWebSite(wxT("http://www.wxwidgets.org"));
1223 wxAboutBox(aboutInfo
);
1227 void GridFrame::OnQuit( wxCommandEvent
& WXUNUSED(ev
) )
1232 void GridFrame::OnBugsTable(wxCommandEvent
& )
1234 BugsGridFrame
*frame
= new BugsGridFrame
;
1238 // ----------------------------------------------------------------------------
1239 // MyGridCellAttrProvider
1240 // ----------------------------------------------------------------------------
1242 MyGridCellAttrProvider::MyGridCellAttrProvider()
1244 m_attrForOddRows
= new wxGridCellAttr
;
1245 m_attrForOddRows
->SetBackgroundColour(*wxLIGHT_GREY
);
1248 MyGridCellAttrProvider::~MyGridCellAttrProvider()
1250 m_attrForOddRows
->DecRef();
1253 wxGridCellAttr
*MyGridCellAttrProvider::GetAttr(int row
, int col
,
1254 wxGridCellAttr::wxAttrKind kind
/* = wxGridCellAttr::Any */) const
1256 wxGridCellAttr
*attr
= wxGridCellAttrProvider::GetAttr(row
, col
, kind
);
1262 attr
= m_attrForOddRows
;
1267 if ( !attr
->HasBackgroundColour() )
1269 wxGridCellAttr
*attrNew
= attr
->Clone();
1272 attr
->SetBackgroundColour(*wxLIGHT_GREY
);
1280 void GridFrame::OnVTable(wxCommandEvent
& )
1282 static long s_sizeGrid
= 10000;
1284 s_sizeGrid
= wxGetNumberFromUser(wxT("Size of the table to create"),
1286 wxT("wxGridDemo question"),
1290 if ( s_sizeGrid
!= -1 )
1292 BigGridFrame
* win
= new BigGridFrame(s_sizeGrid
);
1297 // ----------------------------------------------------------------------------
1298 // MyGridCellRenderer
1299 // ----------------------------------------------------------------------------
1301 // do something that the default renderer doesn't here just to show that it is
1302 // possible to alter the appearance of the cell beyond what the attributes
1304 void MyGridCellRenderer::Draw(wxGrid
& grid
,
1305 wxGridCellAttr
& attr
,
1311 wxGridCellStringRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1313 dc
.SetPen(*wxGREEN_PEN
);
1314 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1315 dc
.DrawEllipse(rect
);
1318 // ============================================================================
1319 // BigGridFrame and BigGridTable: Sample of a non-standard table
1320 // ============================================================================
1322 BigGridFrame::BigGridFrame(long sizeGrid
)
1323 : wxFrame(NULL
, wxID_ANY
, wxT("Plugin Virtual Table"),
1324 wxDefaultPosition
, wxSize(500, 450))
1326 m_grid
= new wxGrid(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
);
1327 m_table
= new BigGridTable(sizeGrid
);
1329 // VZ: I don't understand why this slows down the display that much,
1330 // must profile it...
1331 //m_table->SetAttrProvider(new MyGridCellAttrProvider);
1333 m_grid
->SetTable(m_table
, true);
1335 #if defined __WXMOTIF__
1336 // MB: the grid isn't getting a sensible default size under wxMotif
1338 GetClientSize( &cw
, &ch
);
1339 m_grid
->SetSize( cw
, ch
);
1343 // ============================================================================
1344 // BugsGridFrame: a "realistic" table
1345 // ============================================================================
1347 // ----------------------------------------------------------------------------
1349 // ----------------------------------------------------------------------------
1372 static const wxString severities
[] =
1381 static struct BugsGridData
1387 wxChar platform
[12];
1389 } gs_dataBugsGrid
[] =
1391 { 18, wxT("foo doesn't work"), Sev_Major
, 1, wxT("wxMSW"), true },
1392 { 27, wxT("bar crashes"), Sev_Critical
, 1, wxT("all"), false },
1393 { 45, wxT("printing is slow"), Sev_Minor
, 3, wxT("wxMSW"), true },
1394 { 68, wxT("Rectangle() fails"), Sev_Normal
, 1, wxT("wxMSW"), false },
1397 static const wxChar
*headers
[Col_Max
] =
1407 // ----------------------------------------------------------------------------
1409 // ----------------------------------------------------------------------------
1411 wxString
BugsGridTable::GetTypeName(int WXUNUSED(row
), int col
)
1417 return wxGRID_VALUE_NUMBER
;;
1420 // fall thorugh (TODO should be a list)
1423 return wxString::Format(wxT("%s:80"), wxGRID_VALUE_STRING
);
1426 return wxString::Format(wxT("%s:all,MSW,GTK,other"), wxGRID_VALUE_CHOICE
);
1429 return wxGRID_VALUE_BOOL
;
1432 wxFAIL_MSG(wxT("unknown column"));
1434 return wxEmptyString
;
1437 int BugsGridTable::GetNumberRows()
1439 return WXSIZEOF(gs_dataBugsGrid
);
1442 int BugsGridTable::GetNumberCols()
1447 bool BugsGridTable::IsEmptyCell( int WXUNUSED(row
), int WXUNUSED(col
) )
1452 wxString
BugsGridTable::GetValue( int row
, int col
)
1454 const BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1459 return wxString::Format(wxT("%d"), gd
.id
);
1462 return wxString::Format(wxT("%d"), gd
.prio
);
1465 return gd
.opened
? wxT("1") : wxT("0");
1468 return severities
[gd
.severity
];
1477 return wxEmptyString
;
1480 void BugsGridTable::SetValue( int row
, int col
, const wxString
& value
)
1482 BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1489 wxFAIL_MSG(wxT("unexpected column"));
1495 for ( n
= 0; n
< WXSIZEOF(severities
); n
++ )
1497 if ( severities
[n
] == value
)
1499 gd
.severity
= (Severity
)n
;
1504 if ( n
== WXSIZEOF(severities
) )
1506 wxLogWarning(wxT("Invalid severity value '%s'."),
1508 gd
.severity
= Sev_Normal
;
1514 wxStrncpy(gd
.summary
, value
, WXSIZEOF(gd
.summary
));
1518 wxStrncpy(gd
.platform
, value
, WXSIZEOF(gd
.platform
));
1524 BugsGridTable::CanGetValueAs(int WXUNUSED(row
),
1526 const wxString
& typeName
)
1528 if ( typeName
== wxGRID_VALUE_STRING
)
1532 else if ( typeName
== wxGRID_VALUE_BOOL
)
1534 return col
== Col_Opened
;
1536 else if ( typeName
== wxGRID_VALUE_NUMBER
)
1538 return col
== Col_Id
|| col
== Col_Priority
|| col
== Col_Severity
;
1546 bool BugsGridTable::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
1548 return CanGetValueAs(row
, col
, typeName
);
1551 long BugsGridTable::GetValueAsLong( int row
, int col
)
1553 const BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1567 wxFAIL_MSG(wxT("unexpected column"));
1572 bool BugsGridTable::GetValueAsBool( int row
, int col
)
1574 if ( col
== Col_Opened
)
1576 return gs_dataBugsGrid
[row
].opened
;
1580 wxFAIL_MSG(wxT("unexpected column"));
1586 void BugsGridTable::SetValueAsLong( int row
, int col
, long value
)
1588 BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1597 wxFAIL_MSG(wxT("unexpected column"));
1601 void BugsGridTable::SetValueAsBool( int row
, int col
, bool value
)
1603 if ( col
== Col_Opened
)
1605 gs_dataBugsGrid
[row
].opened
= value
;
1609 wxFAIL_MSG(wxT("unexpected column"));
1613 wxString
BugsGridTable::GetColLabelValue( int col
)
1615 return headers
[col
];
1618 // ----------------------------------------------------------------------------
1620 // ----------------------------------------------------------------------------
1622 BugsGridFrame::BugsGridFrame()
1623 : wxFrame(NULL
, wxID_ANY
, wxT("Bugs table"))
1625 wxGrid
*grid
= new wxGrid(this, wxID_ANY
);
1626 wxGridTableBase
*table
= new BugsGridTable();
1627 table
->SetAttrProvider(new MyGridCellAttrProvider
);
1628 grid
->SetTable(table
, true);
1630 wxGridCellAttr
*attrRO
= new wxGridCellAttr
,
1631 *attrRangeEditor
= new wxGridCellAttr
,
1632 *attrCombo
= new wxGridCellAttr
;
1634 attrRO
->SetReadOnly();
1635 attrRangeEditor
->SetEditor(new wxGridCellNumberEditor(1, 5));
1636 attrCombo
->SetEditor(new wxGridCellChoiceEditor(WXSIZEOF(severities
),
1639 grid
->SetColAttr(Col_Id
, attrRO
);
1640 grid
->SetColAttr(Col_Priority
, attrRangeEditor
);
1641 grid
->SetColAttr(Col_Severity
, attrCombo
);
1644 SetClientSize(grid
->GetSize());
1647 // ============================================================================
1648 // TabularGrid: grid used for display of tabular data
1649 // ============================================================================
1651 class TabularGridTable
: public wxGridTableBase
1668 TabularGridTable() { m_sortOrder
= NULL
; }
1670 virtual int GetNumberRows() { return ROW_MAX
; }
1671 virtual int GetNumberCols() { return COL_MAX
; }
1673 virtual wxString
GetValue(int row
, int col
)
1676 row
= m_sortOrder
[row
];
1682 return GetNameOrExt(row
, col
);
1685 return wxString::Format("%lu", GetSize(row
));
1688 return GetDate(row
).FormatDate();
1692 wxFAIL_MSG( "unknown column" );
1698 virtual void SetValue(int, int, const wxString
&)
1700 wxFAIL_MSG( "shouldn't be called" );
1703 virtual wxString
GetColLabelValue(int col
)
1705 // notice that column parameter here always refers to the internal
1706 // column index, independently of its position on the screen
1707 static const char *labels
[] = { "Name", "Extension", "Size", "Date" };
1708 wxCOMPILE_TIME_ASSERT( WXSIZEOF(labels
) == COL_MAX
, LabelsMismatch
);
1713 virtual void SetColLabelValue(int, const wxString
&)
1715 wxFAIL_MSG( "shouldn't be called" );
1718 void Sort(int col
, bool ascending
)
1720 // we hardcode all sorting orders for simplicity here
1721 static int sortOrders
[COL_MAX
][2][ROW_MAX
] =
1723 // descending ascending
1724 { { 2, 1, 0 }, { 0, 1, 2 } },
1725 { { 2, 1, 0 }, { 0, 1, 2 } },
1726 { { 2, 1, 0 }, { 0, 1, 2 } },
1727 { { 1, 0, 2 }, { 2, 0, 1 } },
1730 m_sortOrder
= col
== wxNOT_FOUND
? NULL
: sortOrders
[col
][ascending
];
1734 wxString
GetNameOrExt(int row
, int col
) const
1737 names
[] = { "autoexec.bat", "boot.ini", "io.sys" };
1738 wxCOMPILE_TIME_ASSERT( WXSIZEOF(names
) == ROW_MAX
, NamesMismatch
);
1740 const wxString
s(names
[row
]);
1741 return col
== COL_NAME
? s
.BeforeFirst('.') : s
.AfterLast('.');
1744 unsigned long GetSize(int row
) const
1746 static const unsigned long
1747 sizes
[] = { 412, 604, 40774 };
1748 wxCOMPILE_TIME_ASSERT( WXSIZEOF(sizes
) == ROW_MAX
, SizesMismatch
);
1753 wxDateTime
GetDate(int row
) const
1756 dates
[] = { "2004-04-17", "2006-05-27", "1994-05-31" };
1757 wxCOMPILE_TIME_ASSERT( WXSIZEOF(dates
) == ROW_MAX
, DatesMismatch
);
1760 dt
.ParseISODate(dates
[row
]);
1767 // specialized text control for column indexes entry
1768 class ColIndexEntry
: public wxTextCtrl
1771 ColIndexEntry(wxWindow
*parent
)
1772 : wxTextCtrl(parent
, wxID_ANY
, "")
1774 SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1780 if ( !GetValue().ToULong(&col
) || col
> TabularGridTable::COL_MAX
)
1790 virtual wxSize
DoGetBestSize() const
1792 wxSize size
= wxTextCtrl::DoGetBestSize();
1793 size
.x
= 3*GetCharWidth();
1798 class TabularGridFrame
: public wxFrame
1806 Id_Check_UseNativeHeader
,
1807 Id_Check_DrawNativeLabels
,
1808 Id_Check_ShowRowLabels
,
1809 Id_Check_EnableColMove
1814 void OnToggleUseNativeHeader(wxCommandEvent
&)
1816 m_grid
->UseNativeColHeader(m_chkUseNative
->IsChecked());
1819 void OnUpdateDrawNativeLabelsUI(wxUpdateUIEvent
& event
)
1821 // we don't draw labels at all, native or otherwise, if we use the
1822 // native header control
1823 event
.Enable( !m_chkUseNative
->GetValue() );
1826 void OnToggleDrawNativeLabels(wxCommandEvent
&)
1828 m_grid
->SetUseNativeColLabels(m_chkDrawNative
->IsChecked());
1831 void OnToggleShowRowLabels(wxCommandEvent
&)
1833 m_grid
->SetRowLabelSize(m_chkShowRowLabels
->IsChecked()
1838 void OnToggleColMove(wxCommandEvent
&)
1840 m_grid
->EnableDragColMove(m_chkEnableColMove
->IsChecked());
1843 void OnShowHideColumn(wxCommandEvent
& event
)
1845 int col
= m_txtColShowHide
->GetCol();
1848 m_grid
->SetColSize(col
,
1849 event
.GetId() == wxID_ADD
? wxGRID_AUTOSIZE
: 0);
1851 UpdateOrderAndVisibility();
1855 void OnMoveColumn(wxCommandEvent
&)
1857 int col
= m_txtColIndex
->GetCol();
1858 int pos
= m_txtColPos
->GetCol();
1859 if ( col
== -1 || pos
== -1 )
1862 m_grid
->SetColPos(col
, pos
);
1864 UpdateOrderAndVisibility();
1867 void OnResetColumnOrder(wxCommandEvent
&)
1869 m_grid
->ResetColPos();
1871 UpdateOrderAndVisibility();
1874 void OnGridColSort(wxGridEvent
& event
)
1876 const int col
= event
.GetCol();
1877 m_table
->Sort(col
, !(m_grid
->IsSortingBy(col
) &&
1878 m_grid
->IsSortOrderAscending()));
1881 void OnGridColMove(wxGridEvent
& event
)
1883 // can't update it yet as the order hasn't been changed, so do it a bit
1885 m_shouldUpdateOrder
= true;
1890 void OnGridColSize(wxGridSizeEvent
& event
)
1892 // we only catch this event to react to the user showing or hiding this
1893 // column using the header control menu and not because we're
1894 // interested in column resizing
1895 UpdateOrderAndVisibility();
1900 void OnIdle(wxIdleEvent
& event
)
1902 if ( m_shouldUpdateOrder
)
1904 m_shouldUpdateOrder
= false;
1905 UpdateOrderAndVisibility();
1911 void UpdateOrderAndVisibility()
1914 for ( int pos
= 0; pos
< TabularGridTable::COL_MAX
; pos
++ )
1916 const int col
= m_grid
->GetColAt(pos
);
1917 const bool isHidden
= m_grid
->GetColSize(col
) == 0;
1928 m_statOrder
->SetLabel(s
);
1933 TabularGridTable
*m_table
;
1934 wxCheckBox
*m_chkUseNative
,
1936 *m_chkShowRowLabels
,
1937 *m_chkEnableColMove
;
1939 ColIndexEntry
*m_txtColIndex
,
1943 wxStaticText
*m_statOrder
;
1945 // fla for EVT_IDLE handler
1946 bool m_shouldUpdateOrder
;
1948 wxDECLARE_NO_COPY_CLASS(TabularGridFrame
);
1949 DECLARE_EVENT_TABLE()
1952 BEGIN_EVENT_TABLE(TabularGridFrame
, wxFrame
)
1953 EVT_CHECKBOX(Id_Check_UseNativeHeader
,
1954 TabularGridFrame::OnToggleUseNativeHeader
)
1955 EVT_CHECKBOX(Id_Check_DrawNativeLabels
,
1956 TabularGridFrame::OnToggleDrawNativeLabels
)
1957 EVT_CHECKBOX(Id_Check_ShowRowLabels
,
1958 TabularGridFrame::OnToggleShowRowLabels
)
1959 EVT_CHECKBOX(Id_Check_EnableColMove
,
1960 TabularGridFrame::OnToggleColMove
)
1962 EVT_UPDATE_UI(Id_Check_DrawNativeLabels
,
1963 TabularGridFrame::OnUpdateDrawNativeLabelsUI
)
1965 EVT_BUTTON(wxID_APPLY
, TabularGridFrame::OnMoveColumn
)
1966 EVT_BUTTON(wxID_RESET
, TabularGridFrame::OnResetColumnOrder
)
1967 EVT_BUTTON(wxID_ADD
, TabularGridFrame::OnShowHideColumn
)
1968 EVT_BUTTON(wxID_DELETE
, TabularGridFrame::OnShowHideColumn
)
1970 EVT_GRID_COL_SORT(TabularGridFrame::OnGridColSort
)
1971 EVT_GRID_COL_MOVE(TabularGridFrame::OnGridColMove
)
1972 EVT_GRID_COL_SIZE(TabularGridFrame::OnGridColSize
)
1974 EVT_IDLE(TabularGridFrame::OnIdle
)
1977 TabularGridFrame::TabularGridFrame()
1978 : wxFrame(NULL
, wxID_ANY
, "Tabular table")
1980 m_shouldUpdateOrder
= false;
1982 wxPanel
* const panel
= new wxPanel(this);
1984 // create and initialize the grid with the specified data
1985 m_table
= new TabularGridTable
;
1986 m_grid
= new wxGrid(panel
, wxID_ANY
,
1987 wxDefaultPosition
, wxDefaultSize
,
1988 wxBORDER_STATIC
| wxWANTS_CHARS
);
1989 m_grid
->SetTable(m_table
, true, wxGrid::wxGridSelectRows
);
1991 m_grid
->EnableDragColMove();
1992 m_grid
->UseNativeColHeader();
1993 m_grid
->HideRowLabels();
1995 // add it and the other controls to the frame
1996 wxSizer
* const sizerTop
= new wxBoxSizer(wxVERTICAL
);
1997 sizerTop
->Add(m_grid
, wxSizerFlags(1).Expand().Border());
1999 wxSizer
* const sizerControls
= new wxBoxSizer(wxHORIZONTAL
);
2001 wxSizer
* const sizerStyles
= new wxBoxSizer(wxVERTICAL
);
2002 m_chkUseNative
= new wxCheckBox(panel
, Id_Check_UseNativeHeader
,
2003 "&Use native header");
2004 m_chkUseNative
->SetValue(true);
2005 sizerStyles
->Add(m_chkUseNative
, wxSizerFlags().Border());
2007 m_chkDrawNative
= new wxCheckBox(panel
, Id_Check_DrawNativeLabels
,
2008 "&Draw native column labels");
2009 sizerStyles
->Add(m_chkDrawNative
, wxSizerFlags().Border());
2011 m_chkShowRowLabels
= new wxCheckBox(panel
, Id_Check_ShowRowLabels
,
2012 "Show &row labels");
2013 sizerStyles
->Add(m_chkShowRowLabels
, wxSizerFlags().Border());
2015 m_chkEnableColMove
= new wxCheckBox(panel
, Id_Check_EnableColMove
,
2016 "Allow column re&ordering");
2017 m_chkEnableColMove
->SetValue(true);
2018 sizerStyles
->Add(m_chkEnableColMove
, wxSizerFlags().Border());
2019 sizerControls
->Add(sizerStyles
);
2021 sizerControls
->AddSpacer(10);
2023 wxSizer
* const sizerColumns
= new wxBoxSizer(wxVERTICAL
);
2024 wxSizer
* const sizerMoveCols
= new wxBoxSizer(wxHORIZONTAL
);
2026 flagsHorz(wxSizerFlags().Border(wxLEFT
| wxRIGHT
).Centre());
2027 sizerMoveCols
->Add(new wxStaticText(panel
, wxID_ANY
, "&Move column"),
2029 m_txtColIndex
= new ColIndexEntry(panel
);
2030 sizerMoveCols
->Add(m_txtColIndex
, flagsHorz
);
2031 sizerMoveCols
->Add(new wxStaticText(panel
, wxID_ANY
, "&to"), flagsHorz
);
2032 m_txtColPos
= new ColIndexEntry(panel
);
2033 sizerMoveCols
->Add(m_txtColPos
, flagsHorz
);
2034 sizerMoveCols
->Add(new wxButton(panel
, wxID_APPLY
), flagsHorz
);
2036 sizerColumns
->Add(sizerMoveCols
, wxSizerFlags().Expand().Border(wxBOTTOM
));
2038 wxSizer
* const sizerShowCols
= new wxBoxSizer(wxHORIZONTAL
);
2039 sizerShowCols
->Add(new wxStaticText(panel
, wxID_ANY
, "Current order:"),
2041 m_statOrder
= new wxStaticText(panel
, wxID_ANY
, "<<< default >>>");
2042 sizerShowCols
->Add(m_statOrder
, flagsHorz
);
2043 sizerShowCols
->Add(new wxButton(panel
, wxID_RESET
, "&Reset order"));
2044 sizerColumns
->Add(sizerShowCols
, wxSizerFlags().Expand().Border(wxTOP
));
2046 wxSizer
* const sizerShowHide
= new wxBoxSizer(wxHORIZONTAL
);
2047 sizerShowHide
->Add(new wxStaticText(panel
, wxID_ANY
, "Show/hide column:"),
2049 m_txtColShowHide
= new ColIndexEntry(panel
);
2050 sizerShowHide
->Add(m_txtColShowHide
, flagsHorz
);
2051 sizerShowHide
->Add(new wxButton(panel
, wxID_ADD
, "&Show"), flagsHorz
);
2052 sizerShowHide
->Add(new wxButton(panel
, wxID_DELETE
, "&Hide"), flagsHorz
);
2053 sizerColumns
->Add(sizerShowHide
, wxSizerFlags().Expand().Border(wxTOP
));
2055 sizerControls
->Add(sizerColumns
, wxSizerFlags(1).Expand().Border());
2057 sizerTop
->Add(sizerControls
, wxSizerFlags().Expand().Border());
2059 panel
->SetSizer(sizerTop
);
2061 SetClientSize(panel
->GetBestSize());
2062 SetSizeHints(GetSize());
2067 void GridFrame::OnTabularTable(wxCommandEvent
&)
2069 new TabularGridFrame
;