X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8bc3ec1ff5384eab3f8fb5b3a0ca7f7887889813..9c97f8ea883afa5db14c37bea63f6d4c327b4596:/include/wx/spinbutt.h diff --git a/include/wx/spinbutt.h b/include/wx/spinbutt.h index 7f7edb9e5b..ae2346316c 100644 --- a/include/wx/spinbutt.h +++ b/include/wx/spinbutt.h @@ -39,7 +39,7 @@ class WXDLLEXPORT wxSpinButtonBase : public wxControl { public: - // ctor intiializes the range with the default (0..100) values + // ctor initializes the range with the default (0..100) values wxSpinButtonBase() { m_min = 0; m_max = 100; } // accessors @@ -74,12 +74,14 @@ protected: #if defined(__WXUNIVERSAL__) #include "wx/univ/spinbutt.h" -#elif defined(__WXMSW__) && defined(__WIN95__) +#elif defined(__WXMSW__) #include "wx/msw/spinbutt.h" #elif defined(__WXMOTIF__) #include "wx/motif/spinbutt.h" -#elif defined(__WXGTK__) +#elif defined(__WXGTK20__) #include "wx/gtk/spinbutt.h" +#elif defined(__WXGTK__) + #include "wx/gtk1/spinbutt.h" #elif defined(__WXMAC__) #include "wx/mac/spinbutt.h" #elif defined(__WXCOCOA__) @@ -100,12 +102,19 @@ public: { } + wxSpinEvent(const wxSpinEvent& event) : wxNotifyEvent(event) {} + // get the current value of the control + int GetValue() const { return m_commandInt; } + void SetValue(int value) { m_commandInt = value; } + int GetPosition() const { return m_commandInt; } void SetPosition(int pos) { m_commandInt = pos; } + virtual wxEvent *Clone() const { return new wxSpinEvent(*this); } + private: - DECLARE_DYNAMIC_CLASS_NO_COPY(wxSpinEvent) + DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSpinEvent) }; typedef void (wxEvtHandler::*wxSpinEventFunction)(wxSpinEvent&);