From: Robert Roebling Date: Tue, 16 Jan 2001 23:59:03 +0000 (+0000) Subject: This way the plot events work. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/adb85931ab5170068d39ad4ef54157d218bbe8f4 This way the plot events work. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/samples/plot/plot.cpp b/contrib/samples/plot/plot.cpp index 3898313e16..38e9d803f2 100644 --- a/contrib/samples/plot/plot.cpp +++ b/contrib/samples/plot/plot.cpp @@ -18,7 +18,7 @@ #include "wx/wx.h" #endif -#include "wx/plot.h" +#include "wx/plot/plot.h" #include "wx/image.h" #include "wx/listctrl.h" diff --git a/contrib/src/plot/plot.cpp b/contrib/src/plot/plot.cpp index af509c3440..5f46be05e8 100644 --- a/contrib/src/plot/plot.cpp +++ b/contrib/src/plot/plot.cpp @@ -49,6 +49,32 @@ #include "wx/plot/plot_dwn.xpm" #endif +//---------------------------------------------------------------------------- +// event types +//---------------------------------------------------------------------------- + +int wxEVT_PLOT_SEL_CHANGING = wxNewId(); +int wxEVT_PLOT_SEL_CHANGED = wxNewId(); +int wxEVT_PLOT_CLICKED = wxNewId(); +int wxEVT_PLOT_DOUBLECLICKED = wxNewId(); +int wxEVT_PLOT_ZOOM_IN = wxNewId(); +int wxEVT_PLOT_ZOOM_OUT = wxNewId(); +int wxEVT_PLOT_VALUE_SEL_CREATING = wxNewId(); +int wxEVT_PLOT_VALUE_SEL_CREATED = wxNewId(); +int wxEVT_PLOT_VALUE_SEL_CHANGING = wxNewId(); +int wxEVT_PLOT_VALUE_SEL_CHANGED = wxNewId(); +int wxEVT_PLOT_AREA_SEL_CREATING = wxNewId(); +int wxEVT_PLOT_AREA_SEL_CREATED = wxNewId(); +int wxEVT_PLOT_AREA_SEL_CHANGING = wxNewId(); +int wxEVT_PLOT_AREA_SEL_CHANGED = wxNewId(); +int wxEVT_PLOT_BEGIN_X_LABEL_EDIT = wxNewId(); +int wxEVT_PLOT_END_X_LABEL_EDIT = wxNewId(); +int wxEVT_PLOT_BEGIN_Y_LABEL_EDIT = wxNewId(); +int wxEVT_PLOT_END_Y_LABEL_EDIT = wxNewId(); +int wxEVT_PLOT_BEGIN_TITLE_EDIT = wxNewId(); +int wxEVT_PLOT_END_TITLE_EDIT = wxNewId(); +int wxEVT_PLOT_AREA_CREATE = wxNewId(); + //---------------------------------------------------------------------------- // accessor functions for the bitmaps (may return NULL, check for it!) //---------------------------------------------------------------------------- @@ -60,32 +86,6 @@ static wxBitmap *GetZoomOutBitmap(); static wxBitmap *GetUpBitmap(); static wxBitmap *GetDownBitmap(); -//---------------------------------------------------------------------------- -// event types -//---------------------------------------------------------------------------- - -int wxEVT_PLOT_SEL_CHANGING; -int wxEVT_PLOT_SEL_CHANGED; -int wxEVT_PLOT_CLICKED; -int wxEVT_PLOT_DOUBLECLICKED; -int wxEVT_PLOT_ZOOM_IN; -int wxEVT_PLOT_ZOOM_OUT; -int wxEVT_PLOT_VALUE_SEL_CREATING; -int wxEVT_PLOT_VALUE_SEL_CREATED; -int wxEVT_PLOT_VALUE_SEL_CHANGING; -int wxEVT_PLOT_VALUE_SEL_CHANGED; -int wxEVT_PLOT_AREA_SEL_CREATING; -int wxEVT_PLOT_AREA_SEL_CREATED; -int wxEVT_PLOT_AREA_SEL_CHANGING; -int wxEVT_PLOT_AREA_SEL_CHANGED; -int wxEVT_PLOT_BEGIN_X_LABEL_EDIT; -int wxEVT_PLOT_END_X_LABEL_EDIT; -int wxEVT_PLOT_BEGIN_Y_LABEL_EDIT; -int wxEVT_PLOT_END_Y_LABEL_EDIT; -int wxEVT_PLOT_BEGIN_TITLE_EDIT; -int wxEVT_PLOT_END_TITLE_EDIT; -int wxEVT_PLOT_AREA_CREATE; - //----------------------------------------------------------------------------- // consts //----------------------------------------------------------------------------- @@ -1153,52 +1153,3 @@ static wxBitmap *GetDownBitmap() return s_bitmap; } - -//---------------------------------------------------------------------------- -// wxPlotModule -//---------------------------------------------------------------------------- - -class wxPlotModule : public wxModule -{ -public: - bool OnInit(); - void OnExit(); - -private: - DECLARE_CLASS(wxPlotModule) -}; - -IMPLEMENT_DYNAMIC_CLASS(wxPlotModule, wxModule) - -bool wxPlotModule::OnInit() -{ - wxEVT_PLOT_SEL_CHANGING = wxNewId(); - wxEVT_PLOT_SEL_CHANGED = wxNewId(); - wxEVT_PLOT_CLICKED = wxNewId(); - wxEVT_PLOT_DOUBLECLICKED = wxNewId(); - wxEVT_PLOT_ZOOM_IN = wxNewId(); - wxEVT_PLOT_ZOOM_OUT = wxNewId(); - wxEVT_PLOT_VALUE_SEL_CREATING = wxNewId(); - wxEVT_PLOT_VALUE_SEL_CREATED = wxNewId(); - wxEVT_PLOT_VALUE_SEL_CHANGING = wxNewId(); - wxEVT_PLOT_VALUE_SEL_CHANGED = wxNewId(); - wxEVT_PLOT_AREA_SEL_CREATING = wxNewId(); - wxEVT_PLOT_AREA_SEL_CREATED = wxNewId(); - wxEVT_PLOT_AREA_SEL_CHANGING = wxNewId(); - wxEVT_PLOT_AREA_SEL_CHANGED = wxNewId(); - wxEVT_PLOT_BEGIN_X_LABEL_EDIT = wxNewId(); - wxEVT_PLOT_END_X_LABEL_EDIT = wxNewId(); - wxEVT_PLOT_BEGIN_Y_LABEL_EDIT = wxNewId(); - wxEVT_PLOT_END_Y_LABEL_EDIT = wxNewId(); - wxEVT_PLOT_BEGIN_TITLE_EDIT = wxNewId(); - wxEVT_PLOT_END_TITLE_EDIT = wxNewId(); - wxEVT_PLOT_AREA_CREATE = wxNewId(); - - return TRUE; -} - -void wxPlotModule::OnExit() -{ -} - -