Prepare wxToolBarSimple for event type change.

Make wxGrid use new event types.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2001-01-25 18:27:01 +00:00
parent b578915045
commit 0f442030c4
2 changed files with 63 additions and 55 deletions

View File

@@ -96,6 +96,26 @@ WX_DECLARE_EXPORTED_OBJARRAY(wxGridCellWithAttr, wxGridCellWithAttrArray);
WX_DEFINE_OBJARRAY(wxGridCellCoordsArray)
WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray)
// ----------------------------------------------------------------------------
// events
// ----------------------------------------------------------------------------
const int wxEVT_GRID_CELL_LEFT_CLICK = wxNewEventType();
const int wxEVT_GRID_CELL_RIGHT_CLICK = wxNewEventType();
const int wxEVT_GRID_CELL_LEFT_DCLICK = wxNewEventType();
const int wxEVT_GRID_CELL_RIGHT_DCLICK = wxNewEventType();
const int wxEVT_GRID_LABEL_LEFT_CLICK = wxNewEventType();
const int wxEVT_GRID_LABEL_RIGHT_CLICK = wxNewEventType();
const int wxEVT_GRID_LABEL_LEFT_DCLICK = wxNewEventType();
const int wxEVT_GRID_LABEL_RIGHT_DCLICK = wxNewEventType();
const int wxEVT_GRID_ROW_SIZE = wxNewEventType();
const int wxEVT_GRID_COL_SIZE = wxNewEventType();
const int wxEVT_GRID_RANGE_SELECT = wxNewEventType();
const int wxEVT_GRID_CELL_CHANGE = wxNewEventType();
const int wxEVT_GRID_SELECT_CELL = wxNewEventType();
const int wxEVT_GRID_EDITOR_SHOWN = wxNewEventType();
const int wxEVT_GRID_EDITOR_HIDDEN = wxNewEventType();
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------