added "bugs table" which will show non string data support when it's ready

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6187 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-02-21 18:34:30 +00:00
parent 5d097345ba
commit 35f97e951c
2 changed files with 95 additions and 0 deletions

View File

@@ -72,6 +72,7 @@ public:
void OnQuit( wxCommandEvent& );
void About( wxCommandEvent& );
void OnVTable( wxCommandEvent& );
void OnBugsTable( wxCommandEvent& );
enum
{
@@ -96,6 +97,7 @@ public:
ID_SET_CELL_BG_COLOUR,
ID_ABOUT,
ID_VTABLE,
ID_BUGS_TABLE,
ID_TESTFUNC
};
@@ -149,6 +151,15 @@ private:
BigGridTable* m_table;
};
// ----------------------------------------------------------------------------
// another, more realistic, grid example
// ----------------------------------------------------------------------------
class BugsGridFrame : public wxFrame
{
public:
BugsGridFrame();
};
#endif // griddemo_h