]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/bmpbuttn.h
cleanups, proper event handling/cleanup
[wxWidgets.git] / include / wx / msw / bmpbuttn.h
index f1d236b1d9621580d5dbc8a1701f25c790886cc6..fc92a3136339b2455e855086af992ba3794069e9 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/button.h"
 #include "wx/bitmap.h"
+#include "wx/brush.h"
 
 #define wxDEFAULT_BUTTON_MARGIN 4
 
@@ -48,6 +49,7 @@ public:
                 const wxString& name = wxButtonNameStr);
 
     // Implementation
+    virtual bool SetBackgroundColour(const wxColour& colour);
     virtual void SetDefault();
     virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
     virtual void DrawFace( WXHDC dc, int left, int top, int right, int bottom, bool sel );
@@ -57,7 +59,8 @@ public:
 protected:
     virtual wxSize DoGetBestSize() const;
 
-private:
+    wxBrush m_brushDisabled;
+
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapButton)
 };