X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f68586e51b20dccee3fd5645aeaca7cc8ff298c2..d6707afb72450475b0742451289659ca2452ad11:/include/wx/msw/spinctrl.h diff --git a/include/wx/msw/spinctrl.h b/include/wx/msw/spinctrl.h index dbf42d7e7a..37f8e1c2e4 100644 --- a/include/wx/msw/spinctrl.h +++ b/include/wx/msw/spinctrl.h @@ -54,18 +54,28 @@ public: // because the base class already has one returning int!) void SetValue(const wxString& text); - // override some of the base class virtuals + // implementation only from now on + // ------------------------------- + virtual void SetValue(int val) { wxSpinButton::SetValue(val); } virtual int GetValue() const; virtual bool SetFont(const wxFont &font); + virtual bool Enable(bool enable = TRUE); + virtual bool Show(bool show = TRUE); + protected: virtual void DoMoveWindow(int x, int y, int width, int height); virtual wxSize DoGetBestSize() const; + // the handler for wxSpinButton events + void OnSpinChange(wxSpinEvent& event); + WXHWND m_hwndBuddy; +private: DECLARE_DYNAMIC_CLASS(wxSpinCtrl) + DECLARE_EVENT_TABLE() }; #endif // _WX_MSW_SPINCTRL_H_