]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/statbmp.h
changed choice to properly inherit from wxChoiceBase , added msg compatible calls...
[wxWidgets.git] / include / wx / mac / statbmp.h
index 48cad8933adce20c157c726502251c9079bdd37b..a17d51af4bdb7a8eb161e91cabaa25a0fae66657 100644 (file)
@@ -52,6 +52,20 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl
 
   inline wxBitmap& GetBitmap() const { return (wxBitmap&) m_messageBitmap; }
 
+    // for compatibility with wxMSW
+    const wxIcon& GetIcon() const
+    {
+        // don't use wxDynamicCast, icons and bitmaps are really the same thing
+        // in wxGTK
+        return (const wxIcon &)m_messageBitmap;
+    }
+
+    // for compatibility with wxMSW
+    void  SetIcon(const wxIcon& icon)
+    {
+        SetBitmap( icon );
+    }
+
   // overriden base class virtuals
   virtual bool AcceptsFocus() const { return FALSE; }
        wxSize DoGetBestSize() const ;