X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/768d9ec8ca53f44275a6250c44bb69bfc2840e8c..bca1504431b705669a16dc6dcd897d835c1a00b4:/include/wx/cocoa/spinbutt.h diff --git a/include/wx/cocoa/spinbutt.h b/include/wx/cocoa/spinbutt.h index cc55ddf446..dd950c00cb 100644 --- a/include/wx/cocoa/spinbutt.h +++ b/include/wx/cocoa/spinbutt.h @@ -6,7 +6,7 @@ // Created: 2003/07/14 // RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_COCOA_SPINBUTT_H__ @@ -17,7 +17,7 @@ // ======================================================================== // wxSpinButton // ======================================================================== -class WXDLLEXPORT wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSStepper +class WXDLLIMPEXP_CORE wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSStepper { DECLARE_DYNAMIC_CLASS(wxSpinButton) DECLARE_EVENT_TABLE() @@ -27,7 +27,7 @@ class WXDLLEXPORT wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSS // ------------------------------------------------------------------------ public: wxSpinButton() { } - wxSpinButton(wxWindow *parent, wxWindowID winid = -1, + wxSpinButton(wxWindow *parent, wxWindowID winid = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, @@ -36,10 +36,10 @@ public: Create(parent, winid, pos, size, style, name); } - bool Create(wxWindow *parent, wxWindowID winid = -1, + bool Create(wxWindow *parent, wxWindowID winid = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = wxSL_HORIZONTAL, + long style = wxSP_HORIZONTAL, const wxString& name = wxSPIN_BUTTON_NAME); virtual ~wxSpinButton(); @@ -47,16 +47,18 @@ public: // Cocoa callbacks // ------------------------------------------------------------------------ protected: + virtual void CocoaTarget_action(); // ------------------------------------------------------------------------ // Implementation // ------------------------------------------------------------------------ public: // Pure Virtuals - virtual int GetValue() const { return 0; } - virtual void SetValue(int value) { } + virtual int GetValue() const; + virtual void SetValue(int value); // retrieve/change the range - virtual void SetRange(int minValue, int maxValue) { } + virtual void SetRange(int minValue, int maxValue); }; -#endif // __WX_COCOA_SPINBUTT_H__ +#endif + // __WX_COCOA_SPINBUTT_H__