From: Vadim Zeitlin Date: Mon, 21 Jun 1999 21:29:40 +0000 (+0000) Subject: wxStaticBitmap::GetIcon() added X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f24bd194b72c40949429b7a2dd8923208f849a1 wxStaticBitmap::GetIcon() added git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gtk/statbmp.h b/include/wx/gtk/statbmp.h index 632624ce5d..c24b212870 100644 --- a/include/wx/gtk/statbmp.h +++ b/include/wx/gtk/statbmp.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -41,23 +41,36 @@ extern const char* wxStaticBitmapNameStr; class wxStaticBitmap: public wxControl { - DECLARE_DYNAMIC_CLASS(wxStaticBitmap) - - public: - - wxStaticBitmap(void); - wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap& label, - const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = 0, const wxString& name = wxStaticBitmapNameStr ); - bool Create( wxWindow *parent, wxWindowID id, const wxBitmap& label, - const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = 0, const wxString& name = wxStaticBitmapNameStr); + DECLARE_DYNAMIC_CLASS(wxStaticBitmap) + +public: + wxStaticBitmap(); + wxStaticBitmap( wxWindow *parent, + wxWindowID id, + const wxBitmap& label, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0, + const wxString& name = wxStaticBitmapNameStr ); + bool Create( wxWindow *parent, + wxWindowID id, + const wxBitmap& label, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0, + const wxString& name = wxStaticBitmapNameStr); + virtual void SetBitmap( const wxBitmap& bitmap ); - wxBitmap& GetBitmap(void) const { return (wxBitmap&)m_bitmap; } - - private: - - wxBitmap m_bitmap; + + wxBitmap& GetBitmap() { return m_bitmap; } + const wxBitmap& GetBitmap() const { return m_bitmap; } + + // for compatibility with wxMSW + wxIcon& GetIcon() + { return *(wxDynamicCast(&m_bitmap, wxIcon)); } + +private: + wxBitmap m_bitmap; }; #endif diff --git a/include/wx/gtk1/statbmp.h b/include/wx/gtk1/statbmp.h index 632624ce5d..c24b212870 100644 --- a/include/wx/gtk1/statbmp.h +++ b/include/wx/gtk1/statbmp.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -41,23 +41,36 @@ extern const char* wxStaticBitmapNameStr; class wxStaticBitmap: public wxControl { - DECLARE_DYNAMIC_CLASS(wxStaticBitmap) - - public: - - wxStaticBitmap(void); - wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap& label, - const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = 0, const wxString& name = wxStaticBitmapNameStr ); - bool Create( wxWindow *parent, wxWindowID id, const wxBitmap& label, - const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = 0, const wxString& name = wxStaticBitmapNameStr); + DECLARE_DYNAMIC_CLASS(wxStaticBitmap) + +public: + wxStaticBitmap(); + wxStaticBitmap( wxWindow *parent, + wxWindowID id, + const wxBitmap& label, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0, + const wxString& name = wxStaticBitmapNameStr ); + bool Create( wxWindow *parent, + wxWindowID id, + const wxBitmap& label, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = 0, + const wxString& name = wxStaticBitmapNameStr); + virtual void SetBitmap( const wxBitmap& bitmap ); - wxBitmap& GetBitmap(void) const { return (wxBitmap&)m_bitmap; } - - private: - - wxBitmap m_bitmap; + + wxBitmap& GetBitmap() { return m_bitmap; } + const wxBitmap& GetBitmap() const { return m_bitmap; } + + // for compatibility with wxMSW + wxIcon& GetIcon() + { return *(wxDynamicCast(&m_bitmap, wxIcon)); } + +private: + wxBitmap m_bitmap; }; #endif