1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Grid control wxWindows sample
4 // Author: Michael Bedward
7 // Copyright: (c) Michael Bedward, Julian Smart
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
20 #pragma implementation
24 // For compilers that support precompilation, includes "wx/wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/colordlg.h"
36 #include "wx/fontdlg.h"
39 #include "wx/generic/gridctrl.h"
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 IMPLEMENT_APP( GridApp
)
49 // ============================================================================
51 // ============================================================================
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 bool GridApp::OnInit()
59 GridFrame
*frame
= new GridFrame
;
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 BEGIN_EVENT_TABLE( GridFrame
, wxFrame
)
70 EVT_MENU( ID_TOGGLEROWLABELS
, GridFrame::ToggleRowLabels
)
71 EVT_MENU( ID_TOGGLECOLLABELS
, GridFrame::ToggleColLabels
)
72 EVT_MENU( ID_TOGGLEEDIT
, GridFrame::ToggleEditing
)
73 EVT_MENU( ID_TOGGLEROWSIZING
, GridFrame::ToggleRowSizing
)
74 EVT_MENU( ID_TOGGLECOLSIZING
, GridFrame::ToggleColSizing
)
75 EVT_MENU( ID_TOGGLEGRIDSIZING
, GridFrame::ToggleGridSizing
)
76 EVT_MENU( ID_TOGGLEGRIDLINES
, GridFrame::ToggleGridLines
)
77 EVT_MENU( ID_AUTOSIZECOLS
, GridFrame::AutoSizeCols
)
78 EVT_MENU( ID_CELLOVERFLOW
, GridFrame::CellOverflow
)
79 EVT_MENU( ID_RESIZECELL
, GridFrame::ResizeCell
)
80 EVT_MENU( ID_SETLABELCOLOUR
, GridFrame::SetLabelColour
)
81 EVT_MENU( ID_SETLABELTEXTCOLOUR
, GridFrame::SetLabelTextColour
)
82 EVT_MENU( ID_SETLABEL_FONT
, GridFrame::SetLabelFont
)
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
)
87 EVT_MENU( ID_GRIDLINECOLOUR
, GridFrame::SetGridLineColour
)
88 EVT_MENU( ID_INSERTROW
, GridFrame::InsertRow
)
89 EVT_MENU( ID_INSERTCOL
, GridFrame::InsertCol
)
90 EVT_MENU( ID_DELETEROW
, GridFrame::DeleteSelectedRows
)
91 EVT_MENU( ID_DELETECOL
, GridFrame::DeleteSelectedCols
)
92 EVT_MENU( ID_CLEARGRID
, GridFrame::ClearGrid
)
93 EVT_MENU( ID_SELCELLS
, GridFrame::SelectCells
)
94 EVT_MENU( ID_SELROWS
, GridFrame::SelectRows
)
95 EVT_MENU( ID_SELCOLS
, GridFrame::SelectCols
)
97 EVT_MENU( ID_SET_CELL_FG_COLOUR
, GridFrame::SetCellFgColour
)
98 EVT_MENU( ID_SET_CELL_BG_COLOUR
, GridFrame::SetCellBgColour
)
100 EVT_MENU( ID_ABOUT
, GridFrame::About
)
101 EVT_MENU( wxID_EXIT
, GridFrame::OnQuit
)
102 EVT_MENU( ID_VTABLE
, GridFrame::OnVTable
)
103 EVT_MENU( ID_BUGS_TABLE
, GridFrame::OnBugsTable
)
104 EVT_MENU( ID_SMALL_GRID
, GridFrame::OnSmallGrid
)
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
)
114 EVT_MENU( ID_SELECT_UNSELECT
, GridFrame::OnAddToSelectToggle
)
116 EVT_MENU( ID_SET_HIGHLIGHT_WIDTH
, GridFrame::OnSetHighlightWidth
)
117 EVT_MENU( ID_SET_RO_HIGHLIGHT_WIDTH
, GridFrame::OnSetROHighlightWidth
)
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
)
123 EVT_GRID_SELECT_CELL( GridFrame::OnSelectCell
)
124 EVT_GRID_RANGE_SELECT( GridFrame::OnRangeSelected
)
125 EVT_GRID_CELL_CHANGE( GridFrame::OnCellValueChanged
)
127 EVT_GRID_EDITOR_SHOWN( GridFrame::OnEditorShown
)
128 EVT_GRID_EDITOR_HIDDEN( GridFrame::OnEditorHidden
)
132 GridFrame::GridFrame()
133 : wxFrame( (wxFrame
*)NULL
, -1, "wxWindows grid class demo",
137 int gridW
= 600, gridH
= 300;
138 int logW
= gridW
, logH
= 100;
140 wxMenu
*fileMenu
= new wxMenu
;
141 fileMenu
->Append( ID_VTABLE
, "&Virtual table test\tCtrl-V");
142 fileMenu
->Append( ID_BUGS_TABLE
, "&Bugs table test\tCtrl-B");
143 fileMenu
->Append( ID_SMALL_GRID
, "&Small Grid test\tCtrl-S");
144 fileMenu
->AppendSeparator();
145 fileMenu
->Append( wxID_EXIT
, "E&xit\tAlt-X" );
147 wxMenu
*viewMenu
= new wxMenu
;
148 viewMenu
->Append( ID_TOGGLEROWLABELS
, "&Row labels", "", TRUE
);
149 viewMenu
->Append( ID_TOGGLECOLLABELS
, "&Col labels", "", TRUE
);
150 viewMenu
->Append( ID_TOGGLEEDIT
, "&Editable", "", TRUE
);
151 viewMenu
->Append( ID_TOGGLEROWSIZING
, "Ro&w drag-resize", "", TRUE
);
152 viewMenu
->Append( ID_TOGGLECOLSIZING
, "C&ol drag-resize", "", TRUE
);
153 viewMenu
->Append( ID_TOGGLEGRIDSIZING
, "&Grid drag-resize", "", TRUE
);
154 viewMenu
->Append( ID_TOGGLEGRIDLINES
, "&Grid Lines", "", TRUE
);
155 viewMenu
->Append( ID_SET_HIGHLIGHT_WIDTH
, "&Set Cell Highlight Width...", "" );
156 viewMenu
->Append( ID_SET_RO_HIGHLIGHT_WIDTH
, "&Set Cell RO Highlight Width...", "" );
157 viewMenu
->Append( ID_AUTOSIZECOLS
, "&Auto-size cols" );
158 viewMenu
->Append( ID_CELLOVERFLOW
, "&Overflow cells", "", TRUE
);
159 viewMenu
->Append( ID_RESIZECELL
, "&Resize cell (7,1)", "", TRUE
);
161 wxMenu
*rowLabelMenu
= new wxMenu
;
163 viewMenu
->Append( ID_ROWLABELALIGN
, "R&ow label alignment",
165 "Change alignment of row labels" );
167 rowLabelMenu
->Append( ID_ROWLABELHORIZALIGN
, "&Horizontal" );
168 rowLabelMenu
->Append( ID_ROWLABELVERTALIGN
, "&Vertical" );
170 wxMenu
*colLabelMenu
= new wxMenu
;
172 viewMenu
->Append( ID_COLLABELALIGN
, "Col l&abel alignment",
174 "Change alignment of col labels" );
176 colLabelMenu
->Append( ID_COLLABELHORIZALIGN
, "&Horizontal" );
177 colLabelMenu
->Append( ID_COLLABELVERTALIGN
, "&Vertical" );
179 wxMenu
*colMenu
= new wxMenu
;
180 colMenu
->Append( ID_SETLABELCOLOUR
, "Set &label colour..." );
181 colMenu
->Append( ID_SETLABELTEXTCOLOUR
, "Set label &text colour..." );
182 colMenu
->Append( ID_SETLABEL_FONT
, "Set label fo&nt..." );
183 colMenu
->Append( ID_GRIDLINECOLOUR
, "&Grid line colour..." );
184 colMenu
->Append( ID_SET_CELL_FG_COLOUR
, "Set cell &foreground colour..." );
185 colMenu
->Append( ID_SET_CELL_BG_COLOUR
, "Set cell &background colour..." );
187 wxMenu
*editMenu
= new wxMenu
;
188 editMenu
->Append( ID_INSERTROW
, "Insert &row" );
189 editMenu
->Append( ID_INSERTCOL
, "Insert &column" );
190 editMenu
->Append( ID_DELETEROW
, "Delete selected ro&ws" );
191 editMenu
->Append( ID_DELETECOL
, "Delete selected co&ls" );
192 editMenu
->Append( ID_CLEARGRID
, "Cl&ear grid cell contents" );
194 wxMenu
*selectMenu
= new wxMenu
;
195 selectMenu
->Append( ID_SELECT_UNSELECT
, "Add new cells to the selection",
196 "When off, old selection is deselected before "
197 "selecting the new cells", TRUE
);
198 selectMenu
->Append( ID_SELECT_ALL
, "Select all");
199 selectMenu
->Append( ID_SELECT_ROW
, "Select row 2");
200 selectMenu
->Append( ID_SELECT_COL
, "Select col 2");
201 selectMenu
->Append( ID_SELECT_CELL
, "Select cell (3, 1)");
202 selectMenu
->Append( ID_DESELECT_ALL
, "Deselect all");
203 selectMenu
->Append( ID_DESELECT_ROW
, "Deselect row 2");
204 selectMenu
->Append( ID_DESELECT_COL
, "Deselect col 2");
205 selectMenu
->Append( ID_DESELECT_CELL
, "Deselect cell (3, 1)");
206 wxMenu
*selectionMenu
= new wxMenu
;
207 selectMenu
->Append( ID_CHANGESEL
, "Change &selection mode",
209 "Change selection mode" );
211 selectionMenu
->Append( ID_SELCELLS
, "Select &Cells" );
212 selectionMenu
->Append( ID_SELROWS
, "Select &Rows" );
213 selectionMenu
->Append( ID_SELCOLS
, "Select C&ols" );
216 wxMenu
*helpMenu
= new wxMenu
;
217 helpMenu
->Append( ID_ABOUT
, "&About wxGrid demo" );
219 wxMenuBar
*menuBar
= new wxMenuBar
;
220 menuBar
->Append( fileMenu
, "&File" );
221 menuBar
->Append( viewMenu
, "&View" );
222 menuBar
->Append( colMenu
, "&Colours" );
223 menuBar
->Append( editMenu
, "&Edit" );
224 menuBar
->Append( selectMenu
, "&Select" );
225 menuBar
->Append( helpMenu
, "&Help" );
227 SetMenuBar( menuBar
);
231 grid
= new wxGrid( this,
234 wxSize( 400, 300 ) );
236 logWin
= new wxTextCtrl( this,
239 wxPoint( 0, gridH
+ 20 ),
240 wxSize( logW
, logH
),
243 logger
= new wxLogTextCtrl( logWin
);
244 m_logOld
= logger
->SetActiveTarget( logger
);
245 logger
->SetTimestamp( NULL
);
247 // this will create a grid and, by default, an associated grid
249 grid
->CreateGrid( 100, 100 );
251 grid
->SetRowSize( 0, 60 );
252 grid
->SetCellValue( 0, 0, "Ctrl+Home\nwill go to\nthis cell" );
254 grid
->SetCellValue( 0, 1, "A long piece of text to demonstrate wrapping." );
255 grid
->SetCellRenderer(0 , 1, new wxGridCellAutoWrapStringRenderer
);
256 grid
->SetCellEditor( 0, 1 , new wxGridCellAutoWrapStringEditor
);
258 grid
->SetCellValue( 0, 2, "Blah" );
259 grid
->SetCellValue( 0, 3, "Read only" );
260 grid
->SetReadOnly( 0, 3 );
262 grid
->SetCellValue( 0, 4, "Can veto edit this cell" );
264 grid
->SetCellValue( 0, 5, "Press\nCtrl+arrow\nto skip over\ncells" );
266 grid
->SetRowSize( 99, 60 );
267 grid
->SetCellValue( 99, 99, "Ctrl+End\nwill go to\nthis cell" );
268 grid
->SetCellValue( 1, 0, "This default cell will overflow into neighboring cells, but not if you turn overflow off.");
270 grid
->SetCellTextColour(1, 2, *wxRED
);
271 grid
->SetCellBackgroundColour(1, 2, *wxGREEN
);
273 grid
->SetCellValue( 1, 4, "I'm in the middle");
275 grid
->SetCellValue(2, 2, "red");
277 grid
->SetCellTextColour(2, 2, *wxRED
);
278 grid
->SetCellValue(3, 3, "green on grey");
279 grid
->SetCellTextColour(3, 3, *wxGREEN
);
280 grid
->SetCellBackgroundColour(3, 3, *wxLIGHT_GREY
);
282 grid
->SetCellValue(4, 4, "a weird looking cell");
283 grid
->SetCellAlignment(4, 4, wxALIGN_CENTRE
, wxALIGN_CENTRE
);
284 grid
->SetCellRenderer(4, 4, new MyGridCellRenderer
);
286 grid
->SetCellValue(3, 0, "0");
287 grid
->SetCellRenderer(3, 0, new wxGridCellBoolRenderer
);
288 grid
->SetCellEditor(3, 0, new wxGridCellBoolEditor
);
290 wxGridCellAttr
*attr
;
291 attr
= new wxGridCellAttr
;
292 attr
->SetTextColour(*wxBLUE
);
293 grid
->SetColAttr(5, attr
);
294 attr
= new wxGridCellAttr
;
295 attr
->SetBackgroundColour(*wxRED
);
296 grid
->SetRowAttr(5, attr
);
298 grid
->SetCellValue(2, 4, "a wider column");
299 grid
->SetColSize(4, 120);
300 grid
->SetColMinimalWidth(4, 120);
302 grid
->SetCellTextColour(5, 8, *wxGREEN
);
303 grid
->SetCellValue(5, 8, "Bg from row attr\nText col from cell attr");
304 grid
->SetCellValue(5, 5, "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");
306 grid
->SetColFormatFloat(6);
307 grid
->SetCellValue(0, 6, "3.1415");
308 grid
->SetCellValue(1, 6, "1415");
309 grid
->SetCellValue(2, 6, "12345.67890");
311 grid
->SetColFormatFloat(7, 6, 2);
312 grid
->SetCellValue(0, 7, "3.1415");
313 grid
->SetCellValue(1, 7, "1415");
314 grid
->SetCellValue(2, 7, "12345.67890");
316 const wxString choices
[] =
318 _T("Please select a choice"),
319 _T("This takes two cells"),
320 _T("Another choice"),
322 grid
->SetCellEditor(4, 0, new wxGridCellChoiceEditor(WXSIZEOF(choices
), choices
));
323 grid
->SetCellSize(4, 0, 1, 2);
324 grid
->SetCellValue(4, 0, choices
[0]);
325 grid
->SetCellOverflow(4, 0, FALSE
);
327 grid
->SetCellSize(7, 1, 3, 4);
328 grid
->SetCellAlignment(7, 1, wxALIGN_CENTRE
, wxALIGN_CENTRE
);
329 grid
->SetCellValue(7, 1, "Big box!");
331 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
336 topSizer
->Add( logWin
,
340 SetAutoLayout( TRUE
);
341 SetSizer( topSizer
);
343 topSizer
->Fit( this );
344 topSizer
->SetSizeHints( this );
351 GridFrame::~GridFrame()
353 delete wxLog::SetActiveTarget(m_logOld
);
357 void GridFrame::SetDefaults()
359 GetMenuBar()->Check( ID_TOGGLEROWLABELS
, TRUE
);
360 GetMenuBar()->Check( ID_TOGGLECOLLABELS
, TRUE
);
361 GetMenuBar()->Check( ID_TOGGLEEDIT
, TRUE
);
362 GetMenuBar()->Check( ID_TOGGLEROWSIZING
, TRUE
);
363 GetMenuBar()->Check( ID_TOGGLECOLSIZING
, TRUE
);
364 GetMenuBar()->Check( ID_TOGGLEGRIDSIZING
, TRUE
);
365 GetMenuBar()->Check( ID_TOGGLEGRIDLINES
, TRUE
);
366 GetMenuBar()->Check( ID_CELLOVERFLOW
, TRUE
);
370 void GridFrame::ToggleRowLabels( wxCommandEvent
& WXUNUSED(ev
) )
372 if ( GetMenuBar()->IsChecked( ID_TOGGLEROWLABELS
) )
374 grid
->SetRowLabelSize( grid
->GetDefaultRowLabelSize() );
378 grid
->SetRowLabelSize( 0 );
383 void GridFrame::ToggleColLabels( wxCommandEvent
& WXUNUSED(ev
) )
385 if ( GetMenuBar()->IsChecked( ID_TOGGLECOLLABELS
) )
387 grid
->SetColLabelSize( grid
->GetDefaultColLabelSize() );
391 grid
->SetColLabelSize( 0 );
396 void GridFrame::ToggleEditing( wxCommandEvent
& WXUNUSED(ev
) )
399 GetMenuBar()->IsChecked( ID_TOGGLEEDIT
) );
403 void GridFrame::ToggleRowSizing( wxCommandEvent
& WXUNUSED(ev
) )
405 grid
->EnableDragRowSize(
406 GetMenuBar()->IsChecked( ID_TOGGLEROWSIZING
) );
410 void GridFrame::ToggleColSizing( wxCommandEvent
& WXUNUSED(ev
) )
412 grid
->EnableDragColSize(
413 GetMenuBar()->IsChecked( ID_TOGGLECOLSIZING
) );
416 void GridFrame::ToggleGridSizing( wxCommandEvent
& WXUNUSED(ev
) )
418 grid
->EnableDragGridSize(
419 GetMenuBar()->IsChecked( ID_TOGGLEGRIDSIZING
) );
423 void GridFrame::ToggleGridLines( wxCommandEvent
& WXUNUSED(ev
) )
425 grid
->EnableGridLines(
426 GetMenuBar()->IsChecked( ID_TOGGLEGRIDLINES
) );
429 void GridFrame::OnSetHighlightWidth( wxCommandEvent
& WXUNUSED(ev
) )
431 wxString choices
[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"};
433 wxSingleChoiceDialog
dlg(this, "Choose the thickness of the highlight pen:",
434 "Pen Width", 11, choices
);
436 int current
= grid
->GetCellHighlightPenWidth();
437 dlg
.SetSelection(current
);
438 if (dlg
.ShowModal() == wxID_OK
) {
439 grid
->SetCellHighlightPenWidth(dlg
.GetSelection());
443 void GridFrame::OnSetROHighlightWidth( wxCommandEvent
& WXUNUSED(ev
) )
445 wxString choices
[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"};
447 wxSingleChoiceDialog
dlg(this, "Choose the thickness of the highlight pen:",
448 "Pen Width", 11, choices
);
450 int current
= grid
->GetCellHighlightROPenWidth();
451 dlg
.SetSelection(current
);
452 if (dlg
.ShowModal() == wxID_OK
) {
453 grid
->SetCellHighlightROPenWidth(dlg
.GetSelection());
459 void GridFrame::AutoSizeCols( wxCommandEvent
& WXUNUSED(ev
) )
461 grid
->AutoSizeColumns();
465 void GridFrame::CellOverflow( wxCommandEvent
& ev
)
467 grid
->SetDefaultCellOverflow(ev
.IsChecked());
471 void GridFrame::ResizeCell( wxCommandEvent
& ev
)
474 grid
->SetCellSize( 7, 1, 5, 5 );
476 grid
->SetCellSize( 7, 1, 1, 5 );
480 void GridFrame::SetLabelColour( wxCommandEvent
& WXUNUSED(ev
) )
482 wxColourDialog
dlg( NULL
);
483 if ( dlg
.ShowModal() == wxID_OK
)
485 wxColourData retData
;
486 retData
= dlg
.GetColourData();
487 wxColour colour
= retData
.GetColour();
489 grid
->SetLabelBackgroundColour( colour
);
494 void GridFrame::SetLabelTextColour( wxCommandEvent
& WXUNUSED(ev
) )
496 wxColourDialog
dlg( NULL
);
497 if ( dlg
.ShowModal() == wxID_OK
)
499 wxColourData retData
;
500 retData
= dlg
.GetColourData();
501 wxColour colour
= retData
.GetColour();
503 grid
->SetLabelTextColour( colour
);
507 void GridFrame::SetLabelFont( wxCommandEvent
& WXUNUSED(ev
) )
509 wxFont font
= wxGetFontFromUser(this);
512 grid
->SetLabelFont(font
);
516 void GridFrame::SetRowLabelHorizAlignment( wxCommandEvent
& WXUNUSED(ev
) )
519 grid
->GetRowLabelAlignment( &horiz
, &vert
);
524 horiz
= wxALIGN_CENTRE
;
528 horiz
= wxALIGN_RIGHT
;
532 horiz
= wxALIGN_LEFT
;
536 grid
->SetRowLabelAlignment( horiz
, -1 );
539 void GridFrame::SetRowLabelVertAlignment( wxCommandEvent
& WXUNUSED(ev
) )
542 grid
->GetRowLabelAlignment( &horiz
, &vert
);
547 vert
= wxALIGN_CENTRE
;
551 vert
= wxALIGN_BOTTOM
;
559 grid
->SetRowLabelAlignment( -1, vert
);
563 void GridFrame::SetColLabelHorizAlignment( wxCommandEvent
& WXUNUSED(ev
) )
566 grid
->GetColLabelAlignment( &horiz
, &vert
);
571 horiz
= wxALIGN_CENTRE
;
575 horiz
= wxALIGN_RIGHT
;
579 horiz
= wxALIGN_LEFT
;
583 grid
->SetColLabelAlignment( horiz
, -1 );
587 void GridFrame::SetColLabelVertAlignment( wxCommandEvent
& WXUNUSED(ev
) )
590 grid
->GetColLabelAlignment( &horiz
, &vert
);
595 vert
= wxALIGN_CENTRE
;
599 vert
= wxALIGN_BOTTOM
;
607 grid
->SetColLabelAlignment( -1, vert
);
611 void GridFrame::SetGridLineColour( wxCommandEvent
& WXUNUSED(ev
) )
613 wxColourDialog
dlg( NULL
);
614 if ( dlg
.ShowModal() == wxID_OK
)
616 wxColourData retData
;
617 retData
= dlg
.GetColourData();
618 wxColour colour
= retData
.GetColour();
620 grid
->SetGridLineColour( colour
);
625 void GridFrame::InsertRow( wxCommandEvent
& WXUNUSED(ev
) )
627 grid
->InsertRows( grid
->GetGridCursorRow(), 1 );
631 void GridFrame::InsertCol( wxCommandEvent
& WXUNUSED(ev
) )
633 grid
->InsertCols( grid
->GetGridCursorCol(), 1 );
637 void GridFrame::DeleteSelectedRows( wxCommandEvent
& WXUNUSED(ev
) )
639 if ( grid
->IsSelection() )
642 for ( int n
= 0; n
< grid
->GetNumberRows(); )
643 if ( grid
->IsInSelection( n
, 0 ) )
644 grid
->DeleteRows( n
, 1 );
652 void GridFrame::DeleteSelectedCols( wxCommandEvent
& WXUNUSED(ev
) )
654 if ( grid
->IsSelection() )
657 for ( int n
= 0; n
< grid
->GetNumberCols(); )
658 if ( grid
->IsInSelection( 0 , n
) )
659 grid
->DeleteCols( n
, 1 );
667 void GridFrame::ClearGrid( wxCommandEvent
& WXUNUSED(ev
) )
672 void GridFrame::SelectCells( wxCommandEvent
& WXUNUSED(ev
) )
674 grid
->SetSelectionMode( wxGrid::wxGridSelectCells
);
677 void GridFrame::SelectRows( wxCommandEvent
& WXUNUSED(ev
) )
679 grid
->SetSelectionMode( wxGrid::wxGridSelectRows
);
682 void GridFrame::SelectCols( wxCommandEvent
& WXUNUSED(ev
) )
684 grid
->SetSelectionMode( wxGrid::wxGridSelectColumns
);
687 void GridFrame::SetCellFgColour( wxCommandEvent
& WXUNUSED(ev
) )
689 wxColour col
= wxGetColourFromUser(this);
692 grid
->SetDefaultCellTextColour(col
);
697 void GridFrame::SetCellBgColour( wxCommandEvent
& WXUNUSED(ev
) )
699 wxColour col
= wxGetColourFromUser(this);
702 grid
->SetDefaultCellBackgroundColour(col
);
707 void GridFrame::DeselectCell(wxCommandEvent
& WXUNUSED(event
))
709 grid
->DeselectCell(3, 1);
712 void GridFrame::DeselectCol(wxCommandEvent
& WXUNUSED(event
))
714 grid
->DeselectCol(2);
717 void GridFrame::DeselectRow(wxCommandEvent
& WXUNUSED(event
))
719 grid
->DeselectRow(2);
722 void GridFrame::DeselectAll(wxCommandEvent
& WXUNUSED(event
))
724 grid
->ClearSelection();
727 void GridFrame::SelectCell(wxCommandEvent
& WXUNUSED(event
))
729 grid
->SelectBlock(3, 1, 3, 1, m_addToSel
);
732 void GridFrame::SelectCol(wxCommandEvent
& WXUNUSED(event
))
734 grid
->SelectCol(2, m_addToSel
);
737 void GridFrame::SelectRow(wxCommandEvent
& WXUNUSED(event
))
739 grid
->SelectRow(2, m_addToSel
);
742 void GridFrame::SelectAll(wxCommandEvent
& WXUNUSED(event
))
747 void GridFrame::OnAddToSelectToggle(wxCommandEvent
& event
)
749 m_addToSel
= event
.IsChecked();
752 void GridFrame::OnLabelLeftClick( wxGridEvent
& ev
)
755 if ( ev
.GetRow() != -1 )
757 logBuf
<< "Left click on row label " << ev
.GetRow();
759 else if ( ev
.GetCol() != -1 )
761 logBuf
<< "Left click on col label " << ev
.GetCol();
765 logBuf
<< "Left click on corner label";
768 if ( ev
.ShiftDown() ) logBuf
<< " (shift down)";
769 if ( ev
.ControlDown() ) logBuf
<< " (control down)";
770 wxLogMessage( wxT("%s"), logBuf
.c_str() );
772 // you must call event skip if you want default grid processing
778 void GridFrame::OnCellLeftClick( wxGridEvent
& ev
)
781 logBuf
<< "Left click at row " << ev
.GetRow()
782 << " col " << ev
.GetCol();
783 wxLogMessage( wxT("%s"), logBuf
.c_str() );
785 // you must call event skip if you want default grid processing
786 // (cell highlighting etc.)
792 void GridFrame::OnRowSize( wxGridSizeEvent
& ev
)
795 logBuf
<< "Resized row " << ev
.GetRowOrCol();
796 wxLogMessage( wxT("%s"), logBuf
.c_str() );
802 void GridFrame::OnColSize( wxGridSizeEvent
& ev
)
805 logBuf
<< "Resized col " << ev
.GetRowOrCol();
806 wxLogMessage( wxT("%s"), logBuf
.c_str() );
812 void GridFrame::OnSelectCell( wxGridEvent
& ev
)
815 if ( ev
.Selecting() )
816 logBuf
<< "Selected ";
818 logBuf
<< "Deselected ";
819 logBuf
<< "cell at row " << ev
.GetRow()
820 << " col " << ev
.GetCol()
821 << " ( ControlDown: "<< (ev
.ControlDown() ? 'T':'F')
822 << ", ShiftDown: "<< (ev
.ShiftDown() ? 'T':'F')
823 << ", AltDown: "<< (ev
.AltDown() ? 'T':'F')
824 << ", MetaDown: "<< (ev
.MetaDown() ? 'T':'F') << " )";
825 wxLogMessage( wxT("%s"), logBuf
.c_str() );
827 // you must call Skip() if you want the default processing
828 // to occur in wxGrid
832 void GridFrame::OnRangeSelected( wxGridRangeSelectEvent
& ev
)
835 if ( ev
.Selecting() )
836 logBuf
<< "Selected ";
838 logBuf
<< "Deselected ";
839 logBuf
<< "cells from row " << ev
.GetTopRow()
840 << " col " << ev
.GetLeftCol()
841 << " to row " << ev
.GetBottomRow()
842 << " col " << ev
.GetRightCol()
843 << " ( ControlDown: "<< (ev
.ControlDown() ? 'T':'F')
844 << ", ShiftDown: "<< (ev
.ShiftDown() ? 'T':'F')
845 << ", AltDown: "<< (ev
.AltDown() ? 'T':'F')
846 << ", MetaDown: "<< (ev
.MetaDown() ? 'T':'F') << " )";
847 wxLogMessage( wxT("%s"), logBuf
.c_str() );
852 void GridFrame::OnCellValueChanged( wxGridEvent
& ev
)
855 logBuf
<< "Value changed for cell at"
856 << " row " << ev
.GetRow()
857 << " col " << ev
.GetCol();
859 wxLogMessage( wxT("%s"), logBuf
.c_str() );
864 void GridFrame::OnEditorShown( wxGridEvent
& ev
)
867 if ( (ev
.GetCol() == 4) &&
868 (ev
.GetRow() == 0) &&
869 (wxMessageBox(_T("Are you sure you wish to edit this cell"),
870 _T("Checking"),wxYES_NO
) == wxNO
) ) {
876 wxLogMessage( wxT("Cell editor shown.") );
881 void GridFrame::OnEditorHidden( wxGridEvent
& ev
)
884 if ( (ev
.GetCol() == 4) &&
885 (ev
.GetRow() == 0) &&
886 (wxMessageBox(_T("Are you sure you wish to finish editing this cell"),
887 _T("Checking"),wxYES_NO
) == wxNO
) ) {
893 wxLogMessage( wxT("Cell editor hidden.") );
898 void GridFrame::About( wxCommandEvent
& WXUNUSED(ev
) )
900 (void)wxMessageBox( "\n\nwxGrid demo \n\n"
902 "mbedward@ozemail.com.au \n\n",
908 void GridFrame::OnQuit( wxCommandEvent
& WXUNUSED(ev
) )
913 void GridFrame::OnBugsTable(wxCommandEvent
& )
915 BugsGridFrame
*frame
= new BugsGridFrame
;
919 void GridFrame::OnSmallGrid(wxCommandEvent
& )
921 wxFrame
* frame
= new wxFrame(NULL
, -1, "A Small Grid",
922 wxDefaultPosition
, wxSize(640, 480));
923 wxPanel
* panel
= new wxPanel(frame
, -1);
924 wxGrid
* grid
= new wxGrid(panel
, -1, wxPoint(10,10), wxSize(400,400),
925 wxWANTS_CHARS
| wxSIMPLE_BORDER
);
926 grid
->CreateGrid(3,3);
930 void GridFrame::OnVTable(wxCommandEvent
& )
932 static long s_sizeGrid
= 10000;
935 // MB: wxGetNumberFromUser doesn't work properly for wxMotif
938 s
= wxGetTextFromUser( "Size of the table to create",
942 s
.ToLong( &s_sizeGrid
);
945 s_sizeGrid
= wxGetNumberFromUser("Size of the table to create",
947 "wxGridDemo question",
952 if ( s_sizeGrid
!= -1 )
954 BigGridFrame
* win
= new BigGridFrame(s_sizeGrid
);
959 // ----------------------------------------------------------------------------
960 // MyGridCellRenderer
961 // ----------------------------------------------------------------------------
963 // do something that the default renderer doesn't here just to show that it is
964 // possible to alter the appearance of the cell beyond what the attributes
966 void MyGridCellRenderer::Draw(wxGrid
& grid
,
967 wxGridCellAttr
& attr
,
973 wxGridCellStringRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
975 dc
.SetPen(*wxGREEN_PEN
);
976 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
977 dc
.DrawEllipse(rect
);
980 // ----------------------------------------------------------------------------
981 // MyGridCellAttrProvider
982 // ----------------------------------------------------------------------------
984 MyGridCellAttrProvider::MyGridCellAttrProvider()
986 m_attrForOddRows
= new wxGridCellAttr
;
987 m_attrForOddRows
->SetBackgroundColour(*wxLIGHT_GREY
);
990 MyGridCellAttrProvider::~MyGridCellAttrProvider()
992 m_attrForOddRows
->DecRef();
995 wxGridCellAttr
*MyGridCellAttrProvider::GetAttr(int row
, int col
,
996 wxGridCellAttr::wxAttrKind kind
/* = wxGridCellAttr::Any */) const
998 wxGridCellAttr
*attr
= wxGridCellAttrProvider::GetAttr(row
, col
, kind
);
1004 attr
= m_attrForOddRows
;
1009 if ( !attr
->HasBackgroundColour() )
1011 wxGridCellAttr
*attrNew
= attr
->Clone();
1014 attr
->SetBackgroundColour(*wxLIGHT_GREY
);
1022 // ============================================================================
1023 // BigGridFrame and BigGridTable: Sample of a non-standard table
1024 // ============================================================================
1026 BigGridFrame::BigGridFrame(long sizeGrid
)
1027 : wxFrame(NULL
, -1, "Plugin Virtual Table",
1028 wxDefaultPosition
, wxSize(500, 450))
1030 m_grid
= new wxGrid(this, -1, wxDefaultPosition
, wxDefaultSize
);
1031 m_table
= new BigGridTable(sizeGrid
);
1033 // VZ: I don't understand why this slows down the display that much,
1034 // must profile it...
1035 //m_table->SetAttrProvider(new MyGridCellAttrProvider);
1037 m_grid
->SetTable(m_table
, TRUE
);
1039 #if defined __WXMOTIF__
1040 // MB: the grid isn't getting a sensible default size under wxMotif
1042 GetClientSize( &cw
, &ch
);
1043 m_grid
->SetSize( cw
, ch
);
1047 // ============================================================================
1048 // BugsGridFrame: a "realistic" table
1049 // ============================================================================
1051 // ----------------------------------------------------------------------------
1053 // ----------------------------------------------------------------------------
1076 static const wxString severities
[] =
1085 static struct BugsGridData
1091 wxChar platform
[12];
1093 } gs_dataBugsGrid
[] =
1095 { 18, _T("foo doesn't work"), Sev_Major
, 1, _T("wxMSW"), TRUE
},
1096 { 27, _T("bar crashes"), Sev_Critical
, 1, _T("all"), FALSE
},
1097 { 45, _T("printing is slow"), Sev_Minor
, 3, _T("wxMSW"), TRUE
},
1098 { 68, _T("Rectangle() fails"), Sev_Normal
, 1, _T("wxMSW"), FALSE
},
1101 static const wxChar
*headers
[Col_Max
] =
1111 // ----------------------------------------------------------------------------
1113 // ----------------------------------------------------------------------------
1115 wxString
BugsGridTable::GetTypeName(int WXUNUSED(row
), int col
)
1121 return wxGRID_VALUE_NUMBER
;;
1124 // fall thorugh (TODO should be a list)
1127 return wxString::Format(_T("%s:80"), wxGRID_VALUE_STRING
);
1130 return wxString::Format(_T("%s:all,MSW,GTK,other"), wxGRID_VALUE_CHOICE
);
1133 return wxGRID_VALUE_BOOL
;
1136 wxFAIL_MSG(_T("unknown column"));
1138 return wxEmptyString
;
1141 int BugsGridTable::GetNumberRows()
1143 return WXSIZEOF(gs_dataBugsGrid
);
1146 int BugsGridTable::GetNumberCols()
1151 bool BugsGridTable::IsEmptyCell( int row
, int col
)
1156 wxString
BugsGridTable::GetValue( int row
, int col
)
1158 const BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1165 wxFAIL_MSG(_T("unexpected column"));
1169 return severities
[gd
.severity
];
1178 return wxEmptyString
;
1181 void BugsGridTable::SetValue( int row
, int col
, const wxString
& value
)
1183 BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1190 wxFAIL_MSG(_T("unexpected column"));
1196 for ( n
= 0; n
< WXSIZEOF(severities
); n
++ )
1198 if ( severities
[n
] == value
)
1200 gd
.severity
= (Severity
)n
;
1205 if ( n
== WXSIZEOF(severities
) )
1207 wxLogWarning(_T("Invalid severity value '%s'."),
1209 gd
.severity
= Sev_Normal
;
1215 wxStrncpy(gd
.summary
, value
, WXSIZEOF(gd
.summary
));
1219 wxStrncpy(gd
.platform
, value
, WXSIZEOF(gd
.platform
));
1224 bool BugsGridTable::CanGetValueAs( int WXUNUSED(row
), int col
, const wxString
& typeName
)
1226 if ( typeName
== wxGRID_VALUE_STRING
)
1230 else if ( typeName
== wxGRID_VALUE_BOOL
)
1232 return col
== Col_Opened
;
1234 else if ( typeName
== wxGRID_VALUE_NUMBER
)
1236 return col
== Col_Id
|| col
== Col_Priority
|| col
== Col_Severity
;
1244 bool BugsGridTable::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
1246 return CanGetValueAs(row
, col
, typeName
);
1249 long BugsGridTable::GetValueAsLong( int row
, int col
)
1251 const BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1265 wxFAIL_MSG(_T("unexpected column"));
1270 bool BugsGridTable::GetValueAsBool( int row
, int col
)
1272 if ( col
== Col_Opened
)
1274 return gs_dataBugsGrid
[row
].opened
;
1278 wxFAIL_MSG(_T("unexpected column"));
1284 void BugsGridTable::SetValueAsLong( int row
, int col
, long value
)
1286 BugsGridData
& gd
= gs_dataBugsGrid
[row
];
1295 wxFAIL_MSG(_T("unexpected column"));
1299 void BugsGridTable::SetValueAsBool( int row
, int col
, bool value
)
1301 if ( col
== Col_Opened
)
1303 gs_dataBugsGrid
[row
].opened
= value
;
1307 wxFAIL_MSG(_T("unexpected column"));
1311 wxString
BugsGridTable::GetColLabelValue( int col
)
1313 return headers
[col
];
1316 BugsGridTable::BugsGridTable()
1320 // ----------------------------------------------------------------------------
1322 // ----------------------------------------------------------------------------
1324 BugsGridFrame::BugsGridFrame()
1325 : wxFrame(NULL
, -1, "Bugs table",
1326 wxDefaultPosition
, wxSize(500, 300))
1328 wxGrid
*grid
= new wxGrid(this, -1, wxDefaultPosition
);
1329 wxGridTableBase
*table
= new BugsGridTable();
1330 table
->SetAttrProvider(new MyGridCellAttrProvider
);
1331 grid
->SetTable(table
, TRUE
);
1333 wxGridCellAttr
*attrRO
= new wxGridCellAttr
,
1334 *attrRangeEditor
= new wxGridCellAttr
,
1335 *attrCombo
= new wxGridCellAttr
;
1337 attrRO
->SetReadOnly();
1338 attrRangeEditor
->SetEditor(new wxGridCellNumberEditor(1, 5));
1339 attrCombo
->SetEditor(new wxGridCellChoiceEditor(WXSIZEOF(severities
),
1342 grid
->SetColAttr(Col_Id
, attrRO
);
1343 grid
->SetColAttr(Col_Priority
, attrRangeEditor
);
1344 grid
->SetColAttr(Col_Severity
, attrCombo
);
1346 grid
->SetMargins(0, 0);
1349 SetClientSize(grid
->GetSize());