class GridFrame : public wxFrame
{
wxGrid *grid;
+#if wxUSE_LOG
wxTextCtrl *logWin;
wxLogTextCtrl *logger;
+#endif // wxUSE_LOG
wxString logBuf;
void SetDefaults();
void ToggleRowSizing( wxCommandEvent& );
void ToggleColSizing( wxCommandEvent& );
void ToggleGridSizing( wxCommandEvent& );
+ void ToggleGridDragCell ( wxCommandEvent& );
void ToggleGridLines( wxCommandEvent& );
void AutoSizeCols( wxCommandEvent& );
void CellOverflow( wxCommandEvent& );
void OnSelectCell( wxGridEvent& );
void OnRangeSelected( wxGridRangeSelectEvent& );
void OnCellValueChanged( wxGridEvent& );
+ void OnCellBeginDrag( wxGridEvent& );
void OnEditorShown(wxGridEvent&);
void OnEditorHidden(wxGridEvent&);
ID_TOGGLEROWSIZING,
ID_TOGGLECOLSIZING,
ID_TOGGLEGRIDSIZING,
+ ID_TOGGLEGRIDDRAGCELL,
ID_TOGGLEGRIDLINES,
ID_AUTOSIZECOLS,
ID_CELLOVERFLOW,
ID_SELCOLS,
ID_SET_CELL_FG_COLOUR,
ID_SET_CELL_BG_COLOUR,
- ID_ABOUT,
ID_VTABLE,
ID_BUGS_TABLE,
ID_SMALL_GRID,
ID_TESTFUNC
};
+#if wxUSE_LOG
wxLog *m_logOld;
+#endif // wxUSE_LOG
// add the cells to selection when using commands from select menu?
bool m_addToSel;
class BugsGridTable : public wxGridTableBase
{
public:
- BugsGridTable();
+ BugsGridTable(){};
virtual int GetNumberRows();
virtual int GetNumberCols();