Added demonstration of insert/delete rows/cols

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Bedward
1999-10-13 11:57:22 +00:00
parent 3f2965162c
commit 0eee528340
2 changed files with 46 additions and 2 deletions

View File

@@ -41,6 +41,11 @@ class GridFrame : public wxFrame
void SetColLabelHorizAlignment( wxCommandEvent& );
void SetColLabelVertAlignment( wxCommandEvent& );
void SetGridLineColour( wxCommandEvent& );
void InsertRow( wxCommandEvent& );
void InsertCol( wxCommandEvent& );
void DeleteRow( wxCommandEvent& );
void DeleteCol( wxCommandEvent& );
void ClearGrid( wxCommandEvent& );
void About( wxCommandEvent& );
@@ -72,6 +77,10 @@ class GridFrame : public wxFrame
ID_COLLABELHORIZALIGN,
ID_COLLABELVERTALIGN,
ID_GRIDLINECOLOUR,
ID_INSERTROW,
ID_INSERTCOL,
ID_DELETEROW,
ID_DELETECOL,
ID_CLEARGRID,
ID_ABOUT,