X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/57f4f9255e3d70e219e6eabd68c3990c0f471f81..813b6b3f88310608cb3ca37b0f29f64330f7558f:/include/wx/msw/spinctrl.h diff --git a/include/wx/msw/spinctrl.h b/include/wx/msw/spinctrl.h index e5687d075c..b58f818c74 100644 --- a/include/wx/msw/spinctrl.h +++ b/include/wx/msw/spinctrl.h @@ -12,12 +12,10 @@ #ifndef _WX_MSW_SPINCTRL_H_ #define _WX_MSW_SPINCTRL_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "spinctrl.h" -#endif - #include "wx/spinbutt.h" // the base class +#if wxUSE_SPINCTRL + #include "wx/dynarray.h" class WXDLLEXPORT wxSpinCtrl; @@ -94,6 +92,9 @@ protected: virtual void DoMoveWindow(int x, int y, int width, int height); virtual wxSize DoGetBestSize() const; virtual void DoGetSize(int *width, int *height) const; +#if wxUSE_TOOLTIPS + virtual void DoSetToolTip( wxToolTip *tip ); +#endif // wxUSE_TOOLTIPS // the handler for wxSpinButton events void OnSpinChange(wxSpinEvent& event); @@ -101,6 +102,7 @@ protected: // Handle processing of special keys void OnChar(wxKeyEvent& event); void OnSetFocus(wxFocusEvent& event); + void OnKillFocus(wxFocusEvent& event); // the data for the "buddy" text ctrl WXHWND m_hwndBuddy; @@ -116,6 +118,8 @@ private: DECLARE_NO_COPY_CLASS(wxSpinCtrl) }; +#endif // wxUSE_SPINCTRL + #endif // _WX_MSW_SPINCTRL_H_