Readded plot event constants.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2000-02-15 11:49:06 +00:00
parent a19762cf3d
commit 19141178ec
2 changed files with 25 additions and 2 deletions

View File

@ -264,6 +264,29 @@ enum
wxEVT_CALENDAR_DOUBLECLICKED = wxEVT_FIRST + 954,
wxEVT_CALENDAR_WEEKDAY_CLICKED = wxEVT_FIRST + 955,
/* Plot events */
wxEVT_PLOT_SEL_CHANGING = wxEVT_FIRST + 1000,
wxEVT_PLOT_SEL_CHANGED = wxEVT_FIRST + 1001,
wxEVT_PLOT_CLICKED = wxEVT_FIRST + 1002,
wxEVT_PLOT_DOUBLECLICKED = wxEVT_FIRST + 1003,
wxEVT_PLOT_ZOOM_IN = wxEVT_FIRST + 1004,
wxEVT_PLOT_ZOOM_OUT = wxEVT_FIRST + 1005,
wxEVT_PLOT_VALUE_SEL_CREATING = wxEVT_FIRST + 1010,
wxEVT_PLOT_VALUE_SEL_CREATED = wxEVT_FIRST + 1011,
wxEVT_PLOT_VALUE_SEL_CHANGING = wxEVT_FIRST + 1012,
wxEVT_PLOT_VALUE_SEL_CHANGED = wxEVT_FIRST + 1013,
wxEVT_PLOT_AREA_SEL_CREATING = wxEVT_FIRST + 1014,
wxEVT_PLOT_AREA_SEL_CREATED = wxEVT_FIRST + 1015,
wxEVT_PLOT_AREA_SEL_CHANGING = wxEVT_FIRST + 1016,
wxEVT_PLOT_AREA_SEL_CHANGED = wxEVT_FIRST + 1017,
wxEVT_PLOT_BEGIN_X_LABEL_EDIT = wxEVT_FIRST + 1020,
wxEVT_PLOT_END_X_LABEL_EDIT = wxEVT_FIRST + 1021,
wxEVT_PLOT_BEGIN_Y_LABEL_EDIT = wxEVT_FIRST + 1022,
wxEVT_PLOT_END_Y_LABEL_EDIT = wxEVT_FIRST + 1023,
wxEVT_PLOT_BEGIN_TITLE_EDIT = wxEVT_FIRST + 1024,
wxEVT_PLOT_END_TITLE_EDIT = wxEVT_FIRST + 1025,
wxEVT_PLOT_AREA_CREATE = wxEVT_FIRST + 1026,
wxEVT_USER_FIRST = wxEVT_FIRST + 2000
};

View File

@ -15,8 +15,8 @@
/* Bump-up with each new version */
#define wxMAJOR_VERSION 2
#define wxMINOR_VERSION 1
#define wxRELEASE_NUMBER 13
#define wxVERSION_STRING "wxWindows 2.1.13"
#define wxRELEASE_NUMBER 14
#define wxVERSION_STRING "wxWindows 2.1.14"
#define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
#define wxBETA_NUMBER 0
#define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)