protected:
wxIconArray m_icons;
- friend class WXDLLEXPORT wxIconBundle;
+ friend class wxIconBundle;
};
// ============================================================================
wxIconBundle::wxIconBundle()
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
}
wxIconBundle::wxIconBundle(const wxString& file, long type)
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
AddIcon(file, type);
}
wxIconBundle::wxIconBundle(const wxIcon& icon)
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
AddIcon(icon);
}
void wxIconBundle::DeleteIcons()
{
- wxIconBundleRefData* ref = new wxIconBundleRefData();
UnRef();
- m_refData = ref;
}
bool wxIconBundle::IsOk() 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") );