]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bmpbuttn.h
Delay checking for the requested sash position until the first
[wxWidgets.git] / include / wx / bmpbuttn.h
index abe3cb7632123744766cd29236f22ba48fffc221..6827496a50827bfb229e6f77e036681a0af2e250 100644 (file)
@@ -61,6 +61,8 @@ public:
     int GetMarginX() const { return m_marginX; }
     int GetMarginY() const { return m_marginY; }
 
+    virtual bool CanApplyParentThemeBackground() const { return true; }
+
 protected:
     // function called when any of the bitmaps changes
     virtual void OnSetBitmap() { }
@@ -74,10 +76,13 @@ protected:
     // the margins around the bitmap
     int m_marginX,
         m_marginY;
+
 private:
     // Prevent Virtual function hiding warnings
     void SetLabel(const wxString& rsLabel)
-    { wxWindowBase::SetLabel(rsLabel); }
+        { wxWindowBase::SetLabel(rsLabel); }
+
+    DECLARE_NO_COPY_CLASS(wxBitmapButtonBase)
 };
 
 #if defined(__WXUNIVERSAL__)