Remove wxGridTableMessage and wxGridStringTable documentation

This skeleton of documentation was replaced by (minimal but still more
valuable) real documentation in fcd5284aed but
the old classes were accidentally left in.
This commit is contained in:
Vadim Zeitlin 2016-08-09 01:12:32 +02:00
parent 1c4e20d870
commit 85c9e06a29

View File

@ -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