]> git.saurik.com Git - wxWidgets.git/commitdiff
Readded plot event constants.
authorRobert Roebling <robert@roebling.de>
Tue, 15 Feb 2000 11:49:06 +0000 (11:49 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 15 Feb 2000 11:49:06 +0000 (11:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h
include/wx/version.h

index b4bdcd15cf0c4d6822ae4f30b4b3f105479c7f8f..0b8f245e827735d1af25ffcba80fd9befb3528c7 100644 (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
 };
 
index abc4162dde0f01902d180981bef009c6fd087699..77e1bbf05ae3f7cfdda3925fc1f519b2126128b9 100644 (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)