]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/spinctrl.h
1. corrected bug in MDI sample (which resulted in missing horz scrollbar)
[wxWidgets.git] / include / wx / msw / spinctrl.h
index f6c8f8fd52210371cb0aa158cc366bbab3243983..9a160ff7aae9021a008487d61e2e5e21e832393b 100644 (file)
@@ -54,10 +54,18 @@ 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 int  GetValue() const;
     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);