]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: icon.h | |
e54c96f1 | 3 | // Purpose: interface of wxIcon |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
cbea3ec6 FM |
9 | |
10 | ||
11 | /** | |
12 | In wxIcon context this value means: "use the screen depth". | |
13 | */ | |
14 | #define wxICON_SCREEN_DEPTH (-1) | |
15 | ||
16 | ||
23324ae1 FM |
17 | /** |
18 | @class wxIcon | |
7c913512 | 19 | |
cbea3ec6 FM |
20 | An icon is a small rectangular bitmap usually used for denoting a minimized |
21 | application. | |
22 | ||
23 | It differs from a wxBitmap in always having a mask associated with it for | |
24 | transparent drawing. On some platforms, icons and bitmaps are implemented | |
25 | identically, since there is no real distinction between a wxBitmap with a | |
26 | mask and an icon; and there is no specific icon format on some platforms | |
27 | (X-based applications usually standardize on XPMs for small bitmaps and icons). | |
28 | However, some platforms (such as Windows) make the distinction, so a | |
29 | separate class is provided. | |
30 | ||
31 | @remarks | |
32 | It is usually desirable to associate a pertinent icon with a frame. | |
33 | Icons can also be used for other purposes, for example with wxTreeCtrl and wxListCtrl. | |
34 | Icons have different formats on different platforms therefore separate icons | |
35 | will usually be created for the different environments. | |
36 | Platform-specific methods for creating a wxIcon structure are catered for, | |
37 | and this is an occasion where conditional compilation will probably be required. | |
38 | Note that a new icon must be created for every time the icon is to be used | |
39 | for a new window. In Windows, the icon will not be reloaded if it has already | |
40 | been used. | |
41 | An icon allocated to a frame will be deleted when the frame is deleted. | |
42 | For more information please see @ref overview_bitmap. | |
7c913512 | 43 | |
23324ae1 FM |
44 | @library{wxcore} |
45 | @category{gdi} | |
7c913512 | 46 | |
23324ae1 | 47 | @stdobjects |
65874118 | 48 | ::wxNullIcon |
7c913512 | 49 | |
cbea3ec6 FM |
50 | @see @ref overview_bitmap, @ref overview_bitmap_supportedformats, |
51 | wxDC::DrawIcon, wxCursor | |
23324ae1 FM |
52 | */ |
53 | class wxIcon : public wxBitmap | |
54 | { | |
55 | public: | |
23324ae1 | 56 | /** |
cbea3ec6 | 57 | Default ctor. |
3c4f71cc | 58 | |
cbea3ec6 FM |
59 | Constructs an icon object with no data; an assignment or another member |
60 | function such as LoadFile() must be called subsequently. | |
61 | */ | |
62 | wxIcon(); | |
3c4f71cc | 63 | |
cbea3ec6 FM |
64 | /** |
65 | Copy ctor. | |
66 | */ | |
67 | wxIcon(const wxIcon& icon); | |
3c4f71cc | 68 | |
cbea3ec6 FM |
69 | /* |
70 | Creates an icon from the given data, which can be of arbitrary type. | |
3c4f71cc | 71 | |
cbea3ec6 | 72 | wxIcon(void* data, int type, int width, int height, int depth = -1); |
3c4f71cc | 73 | |
cbea3ec6 FM |
74 | NOTE: this ctor is not implemented by all ports, is somewhat useless |
75 | without further description of the "data" supported formats and | |
76 | uses 'int type' instead of wxBitmapType, so don't document it. | |
77 | */ | |
3c4f71cc | 78 | |
cbea3ec6 FM |
79 | /** |
80 | Creates an icon from an array of bits. | |
81 | You should only use this function for monochrome bitmaps (depth 1) in | |
82 | portable programs: in this case the bits parameter should contain an XBM image. | |
3c4f71cc | 83 | |
cbea3ec6 FM |
84 | For other bit depths, the behaviour is platform dependent: under Windows, |
85 | the data is passed without any changes to the underlying CreateBitmap() API. | |
86 | Under other platforms, only monochrome bitmaps may be created using this | |
87 | constructor and wxImage should be used for creating colour bitmaps from | |
88 | static data. | |
3c4f71cc | 89 | |
cbea3ec6 FM |
90 | @param bits |
91 | Specifies an array of pixel values. | |
92 | @param width | |
93 | Specifies the width of the bitmap. | |
94 | @param height | |
95 | Specifies the height of the bitmap. | |
96 | @param depth | |
97 | Specifies the depth of the bitmap. | |
98 | If this is omitted, then a value of 1 (monochrome bitmap) is used. | |
99 | */ | |
100 | wxIcon(const char bits[], int width, int height, int depth = 1); | |
3c4f71cc | 101 | |
3c4f71cc | 102 | |
cbea3ec6 FM |
103 | /** |
104 | Creates a new icon. A depth of ::wxICON_SCREEN_DEPTH indicates the | |
105 | depth of the current screen or visual. | |
3c4f71cc | 106 | |
cbea3ec6 FM |
107 | Some platforms only support 1 for monochrome and ::wxICON_SCREEN_DEPTH for |
108 | the current colour setting. | |
109 | */ | |
110 | wxIcon(int width, int height, int depth = wxICON_SCREEN_DEPTH); | |
3c4f71cc | 111 | |
cbea3ec6 FM |
112 | /** |
113 | Creates a bitmap from XPM data. | |
114 | To use this constructor, you must first include an XPM file. | |
115 | For example, assuming that the file mybitmap.xpm contains an XPM array | |
116 | of character pointers called @e mybitmap: | |
117 | ||
118 | @code | |
119 | #include "mybitmap.xpm" | |
120 | ... | |
121 | wxIcon *icon = new wxIcon(mybitmap); | |
122 | @endcode | |
123 | ||
124 | A macro, wxICON, is available which creates an icon using an XPM on | |
125 | the appropriate platform, or an icon resource on Windows. | |
126 | ||
127 | @code | |
128 | wxIcon icon(wxICON(mondrian)); | |
129 | ||
130 | // Equivalent to: | |
131 | #if defined(__WXGTK__) || defined(__WXMOTIF__) | |
132 | wxIcon icon(mondrian_xpm); | |
133 | #endif | |
134 | ||
135 | #if defined(__WXMSW__) | |
136 | wxIcon icon("mondrian"); | |
137 | #endif | |
138 | @endcode | |
139 | */ | |
140 | wxIcon(const char* const* bits); | |
3c4f71cc | 141 | |
cbea3ec6 FM |
142 | /** |
143 | Loads an icon from a file or resource. | |
3c4f71cc | 144 | |
cbea3ec6 FM |
145 | @param name |
146 | This can refer to a resource name or a filename under MS Windows and X. | |
147 | Its meaning is determined by the @a type parameter. | |
148 | @param type | |
149 | May be one of the ::wxBitmapType values and indicates which type of | |
150 | bitmap should be loaded. See the note in the class detailed description. | |
151 | Note that the wxICON_DEFAULT_TYPE constant has different value under | |
152 | different wxWidgets ports. See the icon.h header for the value it takes | |
153 | for a specific port. | |
154 | @param desiredWidth | |
155 | Specifies the desired width of the icon. This parameter only has | |
156 | an effect in Windows where icon resources can contain several icons | |
157 | of different sizes. | |
158 | @param desiredHeight | |
159 | Specifies the desired height of the icon. This parameter only has | |
160 | an effect in Windows where icon resources can contain several icons | |
161 | of different sizes. | |
162 | ||
163 | @see LoadFile() | |
164 | */ | |
165 | wxIcon(const wxString& name, wxBitmapType type = wxICON_DEFAULT_TYPE, | |
166 | int desiredWidth = -1, int desiredHeight = -1); | |
3c4f71cc | 167 | |
cbea3ec6 FM |
168 | /** |
169 | Loads an icon from the specified location. | |
23324ae1 | 170 | */ |
7c913512 | 171 | wxIcon(const wxIconLocation& loc); |
23324ae1 FM |
172 | |
173 | /** | |
174 | Destructor. | |
cbea3ec6 FM |
175 | See @ref overview_refcount_destruct for more info. |
176 | ||
23324ae1 FM |
177 | If the application omits to delete the icon explicitly, the icon will be |
178 | destroyed automatically by wxWidgets when the application exits. | |
cbea3ec6 FM |
179 | |
180 | @warning | |
23324ae1 FM |
181 | Do not delete an icon that is selected into a memory device context. |
182 | */ | |
adaaa686 | 183 | virtual ~wxIcon(); |
23324ae1 FM |
184 | |
185 | /** | |
cbea3ec6 FM |
186 | Copies @a bmp bitmap to this icon. |
187 | Under MS Windows the bitmap must have mask colour set. | |
3c4f71cc | 188 | |
cbea3ec6 | 189 | @see LoadFile() |
23324ae1 FM |
190 | */ |
191 | void CopyFromBitmap(const wxBitmap& bmp); | |
192 | ||
193 | /** | |
cbea3ec6 FM |
194 | Gets the colour depth of the icon. |
195 | A value of 1 indicates a monochrome icon. | |
23324ae1 | 196 | */ |
328f5751 | 197 | int GetDepth() const; |
23324ae1 FM |
198 | |
199 | /** | |
200 | Gets the height of the icon in pixels. | |
cbea3ec6 FM |
201 | |
202 | @see GetWidth() | |
23324ae1 | 203 | */ |
328f5751 | 204 | int GetHeight() const; |
23324ae1 FM |
205 | |
206 | /** | |
207 | Gets the width of the icon in pixels. | |
3c4f71cc | 208 | |
4cc4bfaf | 209 | @see GetHeight() |
23324ae1 | 210 | */ |
328f5751 | 211 | int GetWidth() const; |
23324ae1 FM |
212 | |
213 | /** | |
214 | Returns @true if icon data is present. | |
215 | */ | |
328f5751 | 216 | bool IsOk() const; |
23324ae1 FM |
217 | |
218 | /** | |
219 | Loads an icon from a file or resource. | |
3c4f71cc | 220 | |
7c913512 | 221 | @param name |
4cc4bfaf | 222 | Either a filename or a Windows resource name. |
cbea3ec6 | 223 | The meaning of name is determined by the @a type parameter. |
7c913512 | 224 | @param type |
cbea3ec6 FM |
225 | One of the ::wxBitmapType values; see the note in the class |
226 | detailed description. | |
227 | Note that the wxICON_DEFAULT_TYPE constant has different value under | |
228 | different wxWidgets ports. See the icon.h header for the value it takes | |
229 | for a specific port. | |
230 | @param desiredWidth | |
231 | Specifies the desired width of the icon. This parameter only has | |
232 | an effect in Windows where icon resources can contain several icons | |
233 | of different sizes. | |
234 | @param desiredHeight | |
235 | Specifies the desired height of the icon. This parameter only has | |
236 | an effect in Windows where icon resources can contain several icons | |
237 | of different sizes. | |
3c4f71cc | 238 | |
d29a9a8a | 239 | @return @true if the operation succeeded, @false otherwise. |
23324ae1 | 240 | */ |
cbea3ec6 FM |
241 | bool LoadFile(const wxString& name, wxBitmapType type = wxICON_DEFAULT_TYPE, |
242 | int desiredWidth = -1, int desiredHeight = -1); | |
23324ae1 FM |
243 | |
244 | /** | |
245 | Sets the depth member (does not affect the icon data). | |
3c4f71cc | 246 | |
7c913512 | 247 | @param depth |
4cc4bfaf | 248 | Icon depth. |
23324ae1 FM |
249 | */ |
250 | void SetDepth(int depth); | |
251 | ||
252 | /** | |
253 | Sets the height member (does not affect the icon data). | |
3c4f71cc | 254 | |
7c913512 | 255 | @param height |
4cc4bfaf | 256 | Icon height in pixels. |
23324ae1 FM |
257 | */ |
258 | void SetHeight(int height); | |
259 | ||
260 | /** | |
261 | Sets the width member (does not affect the icon data). | |
3c4f71cc | 262 | |
7c913512 | 263 | @param width |
4cc4bfaf | 264 | Icon width in pixels. |
23324ae1 FM |
265 | */ |
266 | void SetWidth(int width); | |
267 | ||
268 | /** | |
cbea3ec6 | 269 | Assignment operator, using @ref overview_refcount. |
3c4f71cc | 270 | |
7c913512 | 271 | @param icon |
4cc4bfaf | 272 | Icon to assign. |
23324ae1 FM |
273 | */ |
274 | wxIcon operator =(const wxIcon& icon); | |
275 | }; | |
e54c96f1 | 276 | |
e54c96f1 | 277 | /** |
65874118 | 278 | An empty wxIcon. |
e54c96f1 FM |
279 | */ |
280 | wxIcon wxNullIcon; | |
281 | ||
282 |