X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7af68c666bda771e37812ca37f0c6cc1741fa3ec..51f5e2822cdcb8b433b1d117f186dfd8bb06e240:/include/wx/motif/statbmp.h diff --git a/include/wx/motif/statbmp.h b/include/wx/motif/statbmp.h index ae5698036b..a8190f2a4f 100644 --- a/include/wx/motif/statbmp.h +++ b/include/wx/motif/statbmp.h @@ -12,16 +12,10 @@ #ifndef _WX_STATBMP_H_ #define _WX_STATBMP_H_ -#ifdef __GNUG__ -#pragma interface "statbmp.h" -#endif - -#include "wx/control.h" +#include "wx/motif/bmpmotif.h" #include "wx/icon.h" -WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr; - -class WXDLLEXPORT wxStaticBitmap : public wxControl +class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase { DECLARE_DYNAMIC_CLASS(wxStaticBitmap) @@ -50,16 +44,16 @@ public: virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event)) { - return FALSE; + return false; } - wxBitmap& GetBitmap() const { return (wxBitmap&) m_messageBitmap; } + wxBitmap GetBitmap() const { return m_messageBitmap; } // for compatibility with wxMSW - const wxIcon& GetIcon() const + wxIcon GetIcon() const { // don't use wxDynamicCast, icons and bitmaps are really the same thing - return (const wxIcon &)m_messageBitmap; + return *(wxIcon*)&m_messageBitmap; } // for compatibility with wxMSW @@ -68,11 +62,7 @@ public: SetBitmap( icon ); } - // overriden base class virtuals - virtual bool AcceptsFocus() const { return FALSE; } - // Implementation - virtual void ChangeFont(bool keepOriginalSize = TRUE); virtual void ChangeBackgroundColour(); virtual void ChangeForegroundColour(); @@ -82,6 +72,7 @@ protected: protected: wxBitmap m_messageBitmap; wxBitmap m_messageBitmapOriginal; + wxBitmapCache m_bitmapCache; }; #endif