]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/spinctrl.h
Disconnect "hide" menu signal to fix menu destruction in wxGTK.
[wxWidgets.git] / include / wx / msw / spinctrl.h
index 02d229c748b1edafebde75c1fe9b592102e531db..dd178b6c828da2166c12f22923ddf5c85ce6a382 100644 (file)
@@ -79,6 +79,18 @@ public:
     // wxSpinButton doesn't accept focus, but we do
     virtual bool AcceptsFocus() const { return wxWindow::AcceptsFocus(); }
 
+    // we're like wxTextCtrl and not (default) wxButton
+    virtual wxVisualAttributes GetDefaultAttributes() const
+    {
+        return GetClassDefaultAttributes(GetWindowVariant());
+    }
+
+    static wxVisualAttributes
+    GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL)
+    {
+        return GetCompositeControlsDefaultAttributes(variant);
+    }
+
     // for internal use only
 
     // get the subclassed window proc of the buddy text
@@ -130,10 +142,6 @@ protected:
     // Block text update event after SetValue()
     bool m_blockEvent;
 
-    // all existing wxSpinCtrls - this allows to find the one corresponding to
-    // the given buddy window in GetSpinForTextCtrl()
-    static wxArraySpins ms_allSpins;
-
 private:
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
     DECLARE_EVENT_TABLE()