X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/10434f3c24ae2faf228b6b6c6b6cb6de0c26213d..354aa1e366a57d896e2cf0943c687b24e8db688c:/samples/newgrid/griddemo.h diff --git a/samples/newgrid/griddemo.h b/samples/newgrid/griddemo.h index 4af4564ed2..56d10dee2a 100644 --- a/samples/newgrid/griddemo.h +++ b/samples/newgrid/griddemo.h @@ -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& ); @@ -49,6 +54,7 @@ class GridFrame : public wxFrame void OnCellLeftClick( wxGridEvent& ); void OnRowSize( wxGridSizeEvent& ); void OnColSize( wxGridSizeEvent& ); + void OnSelectCell( wxGridEvent& ); void OnRangeSelected( wxGridRangeSelectEvent& ); void OnCellValueChanged( wxGridEvent& ); @@ -72,6 +78,10 @@ class GridFrame : public wxFrame ID_COLLABELHORIZALIGN, ID_COLLABELVERTALIGN, ID_GRIDLINECOLOUR, + ID_INSERTROW, + ID_INSERTCOL, + ID_DELETEROW, + ID_DELETECOL, ID_CLEARGRID, ID_ABOUT,