// Purpose: Grid control wxWidgets sample
// Author: Michael Bedward
// Modified by:
-// RCS-ID: $Id$
// Copyright: (c) Michael Bedward, Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
void AutoSizeLabelsRow(wxCommandEvent& event);
void AutoSizeTable(wxCommandEvent& event);
+ void HideCol(wxCommandEvent& event);
+ void ShowCol(wxCommandEvent& event);
+ void HideRow(wxCommandEvent& event);
+ void ShowRow(wxCommandEvent& event);
+
+
void OnLabelLeftClick( wxGridEvent& );
void OnCellLeftClick( wxGridEvent& );
void OnRowSize( wxGridSizeEvent& );
void OnColSize( wxGridSizeEvent& );
+ void OnColAutoSize( wxGridSizeEvent& );
void OnSelectCell( wxGridEvent& );
void OnRangeSelected( wxGridRangeSelectEvent& );
void OnCellValueChanging( wxGridEvent& );
ID_TOGGLEGRIDLINES,
ID_AUTOSIZECOLS,
ID_CELLOVERFLOW,
+ ID_HIDECOL,
+ ID_SHOWCOL,
+ ID_HIDEROW,
+ ID_SHOWROW,
ID_RESIZECELL,
ID_SETLABELCOLOUR,
ID_SETLABELTEXTCOLOUR,