X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3399051ee9fa4dfa5fa7ac2dd9034062f4414d64..0944fceb987def04dc89d03d58c35793d0ecdfed:/include/wx/motif/statbmp.h?ds=inline diff --git a/include/wx/motif/statbmp.h b/include/wx/motif/statbmp.h index 48995b933e..46816a2add 100644 --- a/include/wx/motif/statbmp.h +++ b/include/wx/motif/statbmp.h @@ -12,16 +12,14 @@ #ifndef _WX_STATBMP_H_ #define _WX_STATBMP_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "statbmp.h" #endif #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 +48,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 +66,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();