]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ownerdrw.h
Extract conversion from wx to GtkMessageType in a separate file.
[wxWidgets.git] / include / wx / ownerdrw.h
index be2ae25d581d836e50a9a3e3967fa014ef66c8bc..50e85b4a6451cffb295361d37507c7027d32664e 100644 (file)
@@ -61,9 +61,14 @@ public:
         m_bmpUnchecked = bmpUnchecked;
         m_bOwnerDrawn = true; }
 
-  void SetBitmap(const wxBitmap& bmpChecked)
-      { m_bmpChecked = bmpChecked;
-        m_bOwnerDrawn = true; }
+  void SetBitmap(const wxBitmap& bmp, bool bChecked = true)
+  {
+      if ( bChecked )
+          m_bmpChecked = bmp;
+      else
+          m_bmpUnchecked = bmp;
+      m_bOwnerDrawn = true;
+  }
 
   void SetDisabledBitmap( const wxBitmap& bmpDisabled )
       { m_bmpDisabled = bmpDisabled;