X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6a7d4d7190771e7acb15ccbc919e233bb6cb1038..0e20728015df8aa82bcfa7d9c220b73b82f8c194:/src/common/iconbndl.cpp?ds=sidebyside diff --git a/src/common/iconbndl.cpp b/src/common/iconbndl.cpp index f5b2b2cafe..11b113004f 100644 --- a/src/common/iconbndl.cpp +++ b/src/common/iconbndl.cpp @@ -51,10 +51,12 @@ class WXDLLEXPORT wxIconBundleRefData : public wxGDIRefData public: // default and copy ctors and assignment operators are ok + virtual bool IsOk() const { return !m_icons.empty(); } + protected: wxIconArray m_icons; - friend class WXDLLEXPORT wxIconBundle; + friend class wxIconBundle; }; // ============================================================================ @@ -84,12 +86,12 @@ wxIconBundle::wxIconBundle(const wxIcon& icon) AddIcon(icon); } -wxObjectRefData *wxIconBundle::CreateRefData() const +wxGDIRefData *wxIconBundle::CreateGDIRefData() const { return new wxIconBundleRefData; } -wxObjectRefData *wxIconBundle::CloneRefData(const wxObjectRefData *data) const +wxGDIRefData *wxIconBundle::CloneGDIRefData(const wxGDIRefData *data) const { return new wxIconBundleRefData(*wx_static_cast(const wxIconBundleRefData *, data)); } @@ -99,11 +101,6 @@ void wxIconBundle::DeleteIcons() UnRef(); } -bool wxIconBundle::IsOk() const -{ - return M_ICONBUNDLEDATA && !M_ICONBUNDLEDATA->m_icons.IsEmpty(); -} - void wxIconBundle::AddIcon(const wxString& file, long type) { #ifdef __WXMAC__ @@ -191,6 +188,18 @@ wxIcon wxIconBundle::GetIcon(const wxSize& size) const #endif } +wxIcon wxIconBundle::GetIconOfExactSize(const wxSize& size) const +{ + wxIcon icon = GetIcon(size); + if ( icon.Ok() && + (icon.GetWidth() != size.x || icon.GetHeight() != size.y) ) + { + icon = wxNullIcon; + } + + return icon; +} + void wxIconBundle::AddIcon(const wxIcon& icon) { wxCHECK_RET( icon.IsOk(), _T("invalid icon") );