const wxArtClient& client = wxART_OTHER,
const wxSize& size = wxDefaultSize);
+ // Helper used by GetMessageBoxIcon(): return the art id corresponding to
+ // the standard wxICON_INFORMATION/WARNING/ERROR/QUESTION flags (only one
+ // can be set)
+ static wxArtID GetMessageBoxIconId(int flags);
+
// Helper used by several generic classes: return the icon corresponding to
// the standard wxICON_INFORMATION/WARNING/ERROR/QUESTION flags (only one
// can be set)
- static wxIcon GetMessageBoxIcon(int flags);
+ static wxIcon GetMessageBoxIcon(int flags)
+ {
+ return GetIcon(GetMessageBoxIconId(flags), wxART_MESSAGE_BOX);
+ }
// Query the providers for iconbundle with given ID and return it. Return
// wxNullIconBundle if no provider provides it.
}
/* static */
-wxIcon wxArtProvider::GetMessageBoxIcon(int flags)
+wxArtID wxArtProvider::GetMessageBoxIconId(int flags)
{
- wxIcon icon;
switch ( flags & wxICON_MASK )
{
default:
// fall through
case wxICON_ERROR:
- icon = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX);
- break;
+ return wxART_ERROR;
case wxICON_INFORMATION:
- icon = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX);
- break;
+ return wxART_INFORMATION;
case wxICON_WARNING:
- icon = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX);
- break;
+ return wxART_WARNING;
case wxICON_QUESTION:
- icon = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX);
- break;
+ return wxART_QUESTION;
}
-
- return icon;
}
/*static*/ wxSize wxArtProvider::GetSizeHint(const wxArtClient& client,