+ virtual ~wxSpinCtrl();
+
+ bool Create(wxWindow* pParent
+ ,wxWindowID vId = -1
+ ,const wxString& rsValue = wxEmptyString
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = wxSP_ARROW_KEYS
+ ,int nMin = 0
+ ,int nMax = 100
+ ,int nInitial = 0
+ ,const wxString& rsName = _T("wxSpinCtrl")
+ );
+
+ //
+ // A wxTextCtrl-like method (but we can't have GetValue returning wxString
+ // because the base class already has one returning int!)
+ //
+ void SetValue(const wxString& rsText);
+
+ //
+ // implementation only from now on
+ // -------------------------------
+ //
+ virtual bool Enable(bool bEnable = TRUE);
+
+ virtual int GetValue(void) const;