+ _T("wishlist"),
+ _T("minor"),
+ _T("normal"),
+ _T("major"),
+ _T("critical"),
+};
+
+static struct BugsGridData
+{
+ int id;
+ wxChar summary[80];
+ Severity severity;
+ int prio;
+ wxChar platform[12];
+ 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?"),
+};
+
+// ----------------------------------------------------------------------------
+// BugsGridTable
+// ----------------------------------------------------------------------------
+
+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:
+ return wxString::Format(_T("%s:80"), wxGRID_VALUE_STRING);
+
+ case Col_Platform:
+ return wxString::Format(_T("%s:all,MSW,GTK,other"), wxGRID_VALUE_CHOICE);
+
+ case Col_Opened:
+ return wxGRID_VALUE_BOOL;
+ }
+
+ wxFAIL_MSG(_T("unknown column"));
+
+ return wxEmptyString;
+}
+
+int BugsGridTable::GetNumberRows()
+{
+ return WXSIZEOF(gs_dataBugsGrid);
+}
+
+int 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 )