1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxIconBundle
4 // Author: Mattia barbon
8 // Copyright: (c) Mattia Barbon
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_ICONBNDL_H_
13 #define _WX_ICONBNDL_H_
15 #include "wx/dynarray.h"
16 #include "wx/gdiobj.h"
18 #include "wx/gdicmn.h"
21 class WXDLLIMPEXP_CORE wxIcon
;
22 class WXDLLIMPEXP_BASE wxString
;
24 class WXDLLEXPORT wxIconBundle
;
26 WX_DECLARE_EXPORTED_OBJARRAY(wxIcon
, wxIconArray
);
28 // this class can't load bitmaps of type wxBITMAP_TYPE_ICO_RESOURCE,
29 // if you need them, you have to load them manually and call
30 // wxIconCollection::AddIcon
31 class WXDLLEXPORT wxIconBundle
: public wxGDIObject
34 // default constructor
37 // initializes the bundle with the icon(s) found in the file
38 wxIconBundle(const wxString
& file
, long type
);
40 // initializes the bundle with a single icon
41 wxIconBundle(const wxIcon
& icon
);
43 // initializes the bundle from another icon bundle
44 wxIconBundle(const wxIconBundle
& icon
);
46 wxIconBundle
& operator=(const wxIconBundle
& ic
)
47 { if ( this != &ic
) Ref(ic
); return *this; }
49 virtual bool IsOk() const;
52 // adds all the icons contained in the file to the collection,
53 // if the collection already contains icons with the same
54 // width and height, they are replaced
55 void AddIcon(const wxString
& file
, long type
);
57 // adds the icon to the collection, if the collection already
58 // contains an icon with the same width and height, it is
60 void AddIcon(const wxIcon
& icon
);
62 // returns the icon with the given size; if no such icon exists,
63 // returns the icon with size wxSYS_ICON_[XY]; if no such icon exists,
64 // returns the first icon in the bundle
65 wxIcon
GetIcon(const wxSize
& size
) const;
67 // equivalent to GetIcon( wxSize( size, size ) )
68 wxIcon
GetIcon(wxCoord size
= wxDefaultCoord
) const
69 { return GetIcon( wxSize( size
, size
) ); }
72 // enumerate all icons in the bundle: don't use these functions if ti can
73 // be avoided, using GetIcon() directly is better
75 // return the number of available icons
76 size_t GetIconCount() const;
78 // return the icon at index (must be < GetIconCount())
79 wxIcon
GetIconByIndex(size_t n
) const;
82 virtual wxObjectRefData
*CreateRefData() const;
83 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
89 DECLARE_DYNAMIC_CLASS(wxIconBundle
)
92 #endif // _WX_ICONBNDL_H_