X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..d1852ec0c3cdecd49f971169b24ac2e032e31917:/interface/wx/iconbndl.h diff --git a/interface/wx/iconbndl.h b/interface/wx/iconbndl.h index e242d695c4..28c54ee38c 100644 --- a/interface/wx/iconbndl.h +++ b/interface/wx/iconbndl.h @@ -105,6 +105,16 @@ public: */ wxIcon GetIconOfExactSize(const wxSize& size) const; + /** + return the number of available icons + */ + size_t GetIconCount() const; + + /** + return the icon at index (must be < GetIconCount()) + */ + wxIcon GetIconByIndex(size_t n) const; + /** Returns @true if the bundle doesn't contain any icons, @false otherwise (in which case a call to GetIcon() with default parameter should return @@ -117,15 +127,6 @@ public: */ wxIconBundle& operator=(const wxIconBundle& ic); - /** - Equality operator. This returns @true if two icon bundles are equal. - */ - bool operator ==(const wxIconBundle& ic); - - /** - Inequality operator. This returns true if two icon bundles are not equal. - */ - bool operator !=(const wxIconBundle& ic); };