+ const wxIcon& GetIcon() const
+ {
+ // don't use wxDynamicCast, icons and bitmaps are really the same thing
+ // in wxGTK
+ return (const wxIcon &)m_bitmap;
+ }
+
+ // for compatibility with wxMSW
+ void SetIcon(const wxIcon& icon)
+ {
+ SetBitmap( icon );
+ }
+
+protected:
+ virtual wxSize DoGetBestSize() const;