]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/spinctrl.h
VA 4.0 fixes
[wxWidgets.git] / include / wx / msw / spinctrl.h
index 7babcf4e74765276f73b1cc349ee084594dd0856..9a160ff7aae9021a008487d61e2e5e21e832393b 100644 (file)
@@ -54,18 +54,31 @@ public:
     // because the base class already has one returning int!)
     void SetValue(const wxString& text);
 
     // 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 void SetValue(int val) { wxSpinButton::SetValue(val); }
-    virtual int GetValue() const;
+    virtual int  GetValue() const;
     virtual bool SetFont(const wxFont &font);
     virtual bool SetFont(const wxFont &font);
+    virtual void SetFocus();
+
+    virtual bool Enable(bool enable = TRUE);
+    virtual bool Show(bool show = TRUE);
+
+    virtual bool AcceptsFocus() const { return TRUE; }
 
 protected:
     virtual void DoMoveWindow(int x, int y, int width, int height);
 
 protected:
     virtual void DoMoveWindow(int x, int y, int width, int height);
-    virtual wxSize DoGetBestSize();
+    virtual wxSize DoGetBestSize() const;
+
+    // the handler for wxSpinButton events
+    void OnSpinChange(wxSpinEvent& event);
 
     WXHWND m_hwndBuddy;
 
 
     WXHWND m_hwndBuddy;
 
+private:
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
+    DECLARE_EVENT_TABLE()
 };
 
 #endif // _WX_MSW_SPINCTRL_H_
 };
 
 #endif // _WX_MSW_SPINCTRL_H_