+void GridFrame::OnEditorShown( wxGridEvent& ev )
+{
+ wxLogMessage( "Cell editor shown." );
+
+ ev.Skip();
+}
+
+void GridFrame::OnEditorHidden( wxGridEvent& ev )
+{
+ wxLogMessage( "Cell editor hidden." );
+
+ ev.Skip();
+}
+
+void GridFrame::About( wxCommandEvent& WXUNUSED(ev) )
+{
+ (void)wxMessageBox( "\n\nwxGrid demo \n\n"
+ "Michael Bedward \n"
+ "mbedward@ozemail.com.au \n\n",
+ "About",
+ wxOK );
+}
+
+
+void GridFrame::OnQuit( wxCommandEvent& WXUNUSED(ev) )
+{
+ Close( TRUE );
+}
+
+void GridFrame::OnBugsTable(wxCommandEvent& )
+{
+ BugsGridFrame *frame = new BugsGridFrame;
+ frame->Show(TRUE);
+}
+
+void GridFrame::OnVTable(wxCommandEvent& )
+{
+ static long s_sizeGrid = 10000;
+
+#ifdef __WXMOTIF__
+ // MB: wxGetNumberFromUser doesn't work properly for wxMotif
+ wxString s;
+ s << s_sizeGrid;
+ s = wxGetTextFromUser( "Size of the table to create",
+ "Size:",
+ s );
+
+ s.ToLong( &s_sizeGrid );
+
+#else
+ s_sizeGrid = wxGetNumberFromUser("Size of the table to create",
+ "Size: ",
+ "wxGridDemo question",
+ s_sizeGrid,
+ 0, 32000, this);
+#endif
+
+ if ( s_sizeGrid != -1 )
+ {
+ BigGridFrame* win = new BigGridFrame(s_sizeGrid);
+ win->Show(TRUE);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// MyGridCellRenderer
+// ----------------------------------------------------------------------------
+
+// do something that the default renderer doesn't here just to show that it is
+// possible to alter the appearance of the cell beyond what the attributes
+// allow
+void MyGridCellRenderer::Draw(wxGrid& grid,
+ wxGridCellAttr& attr,
+ wxDC& dc,
+ const wxRect& rect,
+ int row, int col,
+ bool isSelected)
+{
+ wxGridCellStringRenderer::Draw(grid, attr, dc, rect, row, col, isSelected);
+
+ dc.SetPen(*wxGREEN_PEN);
+ dc.SetBrush(*wxTRANSPARENT_BRUSH);
+ dc.DrawEllipse(rect);
+}
+
+
+// ----------------------------------------------------------------------------
+// BigGridFrame and BigGridTable: Sample of a non-standard table
+// ----------------------------------------------------------------------------
+
+BigGridFrame::BigGridFrame(long sizeGrid)
+ : wxFrame(NULL, -1, "Plugin Virtual Table",
+ wxDefaultPosition, wxSize(500, 450))
+{
+ m_grid = new wxGrid(this, -1, wxDefaultPosition, wxDefaultSize);
+ m_table = new BigGridTable(sizeGrid);
+ m_grid->SetTable(m_table, TRUE);
+
+#if defined __WXMOTIF__
+ // MB: the grid isn't getting a sensible default size under wxMotif
+ int cw, ch;
+ GetClientSize( &cw, &ch );
+ m_grid->SetSize( cw, ch );
+#endif
+}
+
+// ----------------------------------------------------------------------------
+// BugsGridFrame: a "realistic" table
+// ----------------------------------------------------------------------------
+
+enum Columns
+{
+ Col_Id,
+ Col_Summary,
+ Col_Severity,
+ Col_Priority,
+ Col_Platform,
+ Col_Opened,
+ Col_Max
+};
+
+enum Severity
+{
+ Sev_Wish,
+ Sev_Minor,
+ Sev_Normal,
+ Sev_Major,
+ Sev_Critical,
+ Sev_Max
+};
+
+static const wxChar* severities[] =
+{
+ _T("wishlist"),
+ _T("minor"),
+ _T("normal"),
+ _T("major"),
+ _T("critical"),
+};
+
+static struct BugsGridData
+{
+ int id;
+ const wxChar *summary;
+ Severity severity;
+ int prio;
+ const wxChar *platform;
+ bool opened;
+} gs_dataBugsGrid [] =
+{
+ { 18, _T("foo doesn't work"), Sev_Major, 1, _T("wxMSW"), TRUE },
+ { 27, _T("bar crashes"), Sev_Critical, 1, _T("all"), FALSE },
+ { 45, _T("printing is slow"), Sev_Minor, 3, _T("wxMSW"), TRUE },
+ { 68, _T("Rectangle() fails"), Sev_Normal, 1, _T("wxMSW"), FALSE },
+};
+
+static const wxChar *headers[Col_Max] =
+{
+ _T("Id"),
+ _T("Summary"),
+ _T("Severity"),
+ _T("Priority"),
+ _T("Platform"),
+ _T("Opened?"),
+};
+
+wxString BugsGridTable::GetTypeName(int WXUNUSED(row), int col)
+{
+ switch ( col )
+ {
+ case Col_Id:
+ case Col_Priority:
+ return wxGRID_VALUE_NUMBER;;
+
+ case Col_Severity:
+ // fall thorugh (TODO should be a list)
+
+ case Col_Summary:
+ case Col_Platform:
+ return wxGRID_VALUE_STRING;
+
+ case Col_Opened:
+ return wxGRID_VALUE_BOOL;
+ }
+
+ wxFAIL_MSG(_T("unknown column"));
+
+ return wxEmptyString;
+}
+
+long BugsGridTable::GetNumberRows()
+{
+ return WXSIZEOF(gs_dataBugsGrid);
+}
+
+long BugsGridTable::GetNumberCols()
+{
+ return Col_Max;
+}
+
+bool BugsGridTable::IsEmptyCell( int row, int col )
+{
+ return FALSE;
+}
+
+wxString BugsGridTable::GetValue( int row, int col )
+{
+ const BugsGridData& gd = gs_dataBugsGrid[row];
+
+ switch ( col )
+ {
+ case Col_Id:
+ case Col_Priority:
+ case Col_Opened:
+ wxFAIL_MSG(_T("unexpected column"));
+ break;
+
+ case Col_Severity:
+ return severities[gd.severity];
+
+ case Col_Summary:
+ return gd.summary;
+
+ case Col_Platform:
+ return gd.platform;
+ }
+
+ return wxEmptyString;
+}
+
+void BugsGridTable::SetValue( int row, int col, const wxString& value )
+{
+ BugsGridData& gd = gs_dataBugsGrid[row];
+
+ switch ( col )
+ {
+ case Col_Id:
+ case Col_Priority:
+ case Col_Opened:
+ wxFAIL_MSG(_T("unexpected column"));
+ break;
+
+ case Col_Severity:
+ {
+ size_t n;
+ for ( n = 0; n < WXSIZEOF(severities); n++ )
+ {
+ if ( severities[n] == value )
+ {
+ gd.severity = (Severity)n;
+ break;
+ }
+ }
+
+ if ( n == WXSIZEOF(severities) )
+ {
+ wxLogWarning(_T("Invalid severity value '%s'."),
+ value.c_str());
+ gd.severity = Sev_Normal;
+ }
+ }
+ break;
+
+ case Col_Summary:
+ gd.summary = value;
+ break;
+
+ case Col_Platform:
+ gd.platform = value;
+ break;
+ }
+}
+
+bool BugsGridTable::CanGetValueAs( int WXUNUSED(row), int col, const wxString& typeName )
+{
+ if ( typeName == wxGRID_VALUE_STRING )
+ {
+ return TRUE;
+ }
+ else if ( typeName == wxGRID_VALUE_BOOL )
+ {
+ return col == Col_Opened;
+ }
+ else if ( typeName == wxGRID_VALUE_NUMBER )
+ {
+ return col == Col_Id || col == Col_Priority || col == Col_Severity;
+ }
+ else
+ {
+ return FALSE;
+ }
+}