From 85c9e06a299d7ad06260f39d1b4765969501c840 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 9 Aug 2016 01:12:32 +0200 Subject: [PATCH] Remove wxGridTableMessage and wxGridStringTable documentation This skeleton of documentation was replaced by (minimal but still more valuable) real documentation in fcd5284aed8d8902f69c06f2dfc09dd5f3d0cc21 but the old classes were accidentally left in. --- interface/wx/grid.h | 65 --------------------------------------------- 1 file changed, 65 deletions(-) diff --git a/interface/wx/grid.h b/interface/wx/grid.h index 5ebbcba37c..a250db796f 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -1881,71 +1881,6 @@ enum wxGridTableRequest }; -/** - @class wxGridTableMessage - - A simple class used to pass messages from the table to the grid. - - @library{wxadv} - @category{grid} -*/ -class wxGridTableMessage -{ -public: - wxGridTableMessage(); - wxGridTableMessage( wxGridTableBase *table, int id, - int comInt1 = -1, - int comInt2 = -1 ); - - void SetTableObject( wxGridTableBase *table ); - wxGridTableBase * GetTableObject() const; - void SetId( int id ); - int GetId(); - void SetCommandInt( int comInt1 ); - int GetCommandInt(); - void SetCommandInt2( int comInt2 ); - int GetCommandInt2(); -}; - - - -/** - @class wxGridStringTable - - Simplest type of data table for a grid for small tables of strings - that are stored in memory -*/ -class wxGridStringTable : public wxGridTableBase -{ -public: - wxGridStringTable(); - wxGridStringTable( int numRows, int numCols ); - - // these are pure virtual in wxGridTableBase - virtual int GetNumberRows(); - virtual int GetNumberCols(); - virtual wxString GetValue( int row, int col ); - virtual void SetValue( int row, int col, const wxString& value ); - - // overridden functions from wxGridTableBase - void Clear(); - bool InsertRows( size_t pos = 0, size_t numRows = 1 ); - bool AppendRows( size_t numRows = 1 ); - bool DeleteRows( size_t pos = 0, size_t numRows = 1 ); - bool InsertCols( size_t pos = 0, size_t numCols = 1 ); - bool AppendCols( size_t numCols = 1 ); - bool DeleteCols( size_t pos = 0, size_t numCols = 1 ); - - void SetRowLabelValue( int row, const wxString& ); - void SetColLabelValue( int col, const wxString& ); - wxString GetRowLabelValue( int row ); - wxString GetColLabelValue( int col ); -}; - - - - - /** @class wxGridSizesInfo