X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f24bd194b72c40949429b7a2dd8923208f849a1..530a7383f26e57b61748d76502229283462a0ede:/include/wx/gtk1/statbmp.h diff --git a/include/wx/gtk1/statbmp.h b/include/wx/gtk1/statbmp.h index c24b212870..f56a5d4d56 100644 --- a/include/wx/gtk1/statbmp.h +++ b/include/wx/gtk1/statbmp.h @@ -22,6 +22,7 @@ #include "wx/object.h" #include "wx/control.h" #include "wx/bitmap.h" +#include "wx/icon.h" //----------------------------------------------------------------------------- // classes @@ -66,10 +67,26 @@ public: const wxBitmap& GetBitmap() const { return m_bitmap; } // for compatibility with wxMSW - wxIcon& GetIcon() - { return *(wxDynamicCast(&m_bitmap, wxIcon)); } + 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; private: + // creates the new pixmap widget + void CreatePixmapWidget(); + wxBitmap m_bitmap; };