add support for loading wxIconBundles from streams

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59929 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2009-03-29 21:19:40 +00:00
parent 694cb6c581
commit cee875e329
3 changed files with 88 additions and 28 deletions

View File

@@ -29,7 +29,14 @@ public:
/**
Initializes the bundle with the icon(s) found in the file.
*/
wxIconBundle(const wxString& file, wxBitmapType type);
wxIconBundle(const wxString& file, wxBitmapType type = wxBITMAP_TYPE_ANY);
/**
Initializes the bundle with the icon(s) found in the stream.
@since 2.9.0
*/
wxIconBundle(wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY);
/**
Initializes the bundle with a single icon.
@@ -47,11 +54,20 @@ public:
virtual ~wxIconBundle();
/**
Adds all the icons contained in the file to the bundle; if the collection
already contains icons with the same width and height, they are replaced
by the new ones.
Adds all the icons contained in the file to the bundle; if the
collection already contains icons with the same width and height, they
are replaced by the new ones.
*/
void AddIcon(const wxString& file, wxBitmapType type);
void AddIcon(const wxString& file, wxBitmapType type = wxBITMAP_TYPE_ANY);
/**
Adds all the icons contained in the stream to the bundle; if the
collection already contains icons with the same width and height, they
are replaced by the new ones.
@since 2.9.0
*/
void AddIcon(wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY);
/**
Adds the icon to the collection; if the collection already