]> git.saurik.com Git - wxWidgets.git/blame - include/wx/iconbndl.h
Added wxPGProperty::Set/GetValuePlain() for direct m_value member access needed by...
[wxWidgets.git] / include / wx / iconbndl.h
CommitLineData
f618020a
MB
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/iconbndl.h
3// Purpose: wxIconBundle
4// Author: Mattia barbon
5// Modified by:
6// Created: 23.03.02
7// RCS-ID: $Id$
8// Copyright: (c) Mattia Barbon
65571936 9// Licence: wxWindows licence
f618020a
MB
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ICONBNDL_H_
13#define _WX_ICONBNDL_H_
14
52734360 15#include "wx/gdiobj.h"
f618020a
MB
16// for wxSize
17#include "wx/gdicmn.h"
52734360 18#include "wx/icon.h"
f618020a 19
7105649b
VZ
20#include "wx/dynarray.h"
21
cee875e3
VS
22class WXDLLIMPEXP_FWD_BASE wxInputStream;
23
d2cb636a
PC
24WX_DECLARE_EXPORTED_OBJARRAY(wxIcon, wxIconArray);
25
f618020a
MB
26// this class can't load bitmaps of type wxBITMAP_TYPE_ICO_RESOURCE,
27// if you need them, you have to load them manually and call
28// wxIconCollection::AddIcon
53a2db12 29class WXDLLIMPEXP_CORE wxIconBundle : public wxGDIObject
f618020a
MB
30{
31public:
32 // default constructor
52734360
VZ
33 wxIconBundle();
34
f618020a 35 // initializes the bundle with the icon(s) found in the file
cee875e3
VS
36 wxIconBundle(const wxString& file, wxBitmapType type = wxBITMAP_TYPE_ANY);
37#if wxUSE_STREAMS
38 wxIconBundle(wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY);
39#endif
52734360 40
f618020a 41 // initializes the bundle with a single icon
52734360
VZ
42 wxIconBundle(const wxIcon& icon);
43
24af522c 44 // default copy ctor and assignment operator are OK
f618020a
MB
45
46 // adds all the icons contained in the file to the collection,
47 // if the collection already contains icons with the same
48 // width and height, they are replaced
cee875e3
VS
49 void AddIcon(const wxString& file, wxBitmapType type = wxBITMAP_TYPE_ANY);
50#if wxUSE_STREAMS
51 void AddIcon(wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY);
52#endif
52734360 53
f618020a
MB
54 // adds the icon to the collection, if the collection already
55 // contains an icon with the same width and height, it is
56 // replaced
52734360 57 void AddIcon(const wxIcon& icon);
f618020a
MB
58
59 // returns the icon with the given size; if no such icon exists,
60 // returns the icon with size wxSYS_ICON_[XY]; if no such icon exists,
61 // returns the first icon in the bundle
52734360
VZ
62 wxIcon GetIcon(const wxSize& size) const;
63
9b5933bc 64 // equivalent to GetIcon(wxSize(size, size))
52734360 65 wxIcon GetIcon(wxCoord size = wxDefaultCoord) const
9b5933bc 66 { return GetIcon(wxSize(size, size)); }
52734360 67
9b5933bc
VZ
68 // returns the icon exactly of the specified size or wxNullIcon if no icon
69 // of exactly given size are available
70 wxIcon GetIconOfExactSize(const wxSize& size) const;
71 wxIcon GetIconOfExactSize(wxCoord size) const
72 { return GetIconOfExactSize(wxSize(size, size)); }
52734360
VZ
73
74 // enumerate all icons in the bundle: don't use these functions if ti can
75 // be avoided, using GetIcon() directly is better
76
77 // return the number of available icons
78 size_t GetIconCount() const;
79
80 // return the icon at index (must be < GetIconCount())
81 wxIcon GetIconByIndex(size_t n) const;
82
f7186899
VZ
83 // check if we have any icons at all
84 bool IsEmpty() const { return GetIconCount() == 0; }
85
831b64f3 86#if WXWIN_COMPATIBILITY_2_8
0ddec397
VZ
87 wxDEPRECATED( void AddIcon(const wxString& file, long type)
88 {
1473d17f 89 AddIcon(file, (wxBitmapType)type);
0ddec397
VZ
90 }
91 )
70bf3295
SC
92
93 wxDEPRECATED_CONSTRUCTOR( wxIconBundle (const wxString& file, long type)
0ddec397
VZ
94 {
95 AddIcon(file, (wxBitmapType)type);
96 }
97 )
98#endif // WXWIN_COMPATIBILITY_2_8
99
52734360 100protected:
8f884a0d
VZ
101 virtual wxGDIRefData *CreateGDIRefData() const;
102 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
52734360 103
f618020a
MB
104private:
105 // delete all icons
106 void DeleteIcons();
52734360
VZ
107
108 DECLARE_DYNAMIC_CLASS(wxIconBundle)
f618020a
MB
109};
110
52734360 111#endif // _WX_ICONBNDL_H_