]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bmpbuttn.h
added support for saving grey and grey-red PNG images (patch 985447)
[wxWidgets.git] / include / wx / bmpbuttn.h
index ebaafefda3e9d55d27add37d2e35bf9e8bac3f02..1bc0a1239ba05fb5315a9efc0de985d9ccbb44cb 100644 (file)
@@ -19,7 +19,7 @@
 #include "wx/bitmap.h"
 #include "wx/button.h"
 
-WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
+extern WXDLLEXPORT_DATA(const wxChar*) wxButtonNameStr;
 
 // ----------------------------------------------------------------------------
 // wxBitmapButton: a button which shows bitmaps instead of the usual string.
@@ -61,9 +61,13 @@ public:
     int GetMarginX() const { return m_marginX; }
     int GetMarginY() const { return m_marginY; }
 
+    virtual void ApplyParentThemeBackground(const wxColour& bg)
+        { SetBackgroundColour(bg); }
+
+
 protected:
     // function called when any of the bitmaps changes
-    virtual void OnSetBitmap() { }
+    virtual void OnSetBitmap() { InvalidateBestSize(); }
 
     // the bitmaps for various states
     wxBitmap m_bmpNormal,