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
wxIcon wxIconBundle::GetIcon(const wxSize& size) const
{
- wxCHECK_MSG( IsOk(), wxNullIcon, _T("invalid icon bundle") );
-
- const wxIconArray& iconArray = M_ICONBUNDLEDATA->m_icons;
-
- const size_t count = iconArray.size();
+ const size_t count = GetIconCount();
// optimize for the common case of icon bundles containing one icon only
wxIcon iconBest;
break;
case 1:
- iconBest = iconArray[0];
+ iconBest = M_ICONBUNDLEDATA->m_icons[0];
break;
default:
wxCoord sysX = wxSystemSettings::GetMetric( wxSYS_ICON_X ),
sysY = wxSystemSettings::GetMetric( wxSYS_ICON_Y );
+ const wxIconArray& iconArray = M_ICONBUNDLEDATA->m_icons;
for ( size_t i = 0; i < count; i++ )
{
const wxIcon& icon = iconArray[i];
#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") );
size_t wxIconBundle::GetIconCount() const
{
- return M_ICONBUNDLEDATA->m_icons.size();
+ return IsOk() ? M_ICONBUNDLEDATA->m_icons.size() : 0;
}
wxIcon wxIconBundle::GetIconByIndex(size_t n) const
{
+ wxCHECK_MSG( n < GetIconCount(), wxNullIcon, _T("invalid index") );
+
return M_ICONBUNDLEDATA->m_icons[n];
}