]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/artprov.h
Add wxFileName::SetPermissions().
[wxWidgets.git] / interface / wx / artprov.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: artprov.h
e54c96f1 3// Purpose: interface of wxArtProvider
23324ae1 4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
23324ae1
FM
6/////////////////////////////////////////////////////////////////////////////
7
878770b8
FM
8/**
9 This type identifies the client of the art objects requested to wxArtProvider.
10*/
f2418860 11typedef wxString wxArtClient;
878770b8
FM
12
13/**
14 This type identifies a specific art object which can be requested to wxArtProvider.
15*/
f2418860
RD
16typedef wxString wxArtID;
17
18
19wxArtClient wxART_TOOLBAR;
20wxArtClient wxART_MENU;
21wxArtClient wxART_FRAME_ICON;
22
23wxArtClient wxART_CMN_DIALOG;
24wxArtClient wxART_HELP_BROWSER;
25wxArtClient wxART_MESSAGE_BOX;
26wxArtClient wxART_BUTTON;
27wxArtClient wxART_LIST;
28
29wxArtClient wxART_OTHER;
30
31
32wxArtID wxART_ADD_BOOKMARK;
33wxArtID wxART_DEL_BOOKMARK;
34wxArtID wxART_HELP_SIDE_PANEL;
35wxArtID wxART_HELP_SETTINGS;
36wxArtID wxART_HELP_BOOK;
37wxArtID wxART_HELP_FOLDER;
38wxArtID wxART_HELP_PAGE;
39wxArtID wxART_GO_BACK;
40wxArtID wxART_GO_FORWARD;
41wxArtID wxART_GO_UP;
42wxArtID wxART_GO_DOWN;
43wxArtID wxART_GO_TO_PARENT;
44wxArtID wxART_GO_HOME;
45wxArtID wxART_GOTO_FIRST;
46wxArtID wxART_GOTO_LAST;
47wxArtID wxART_FILE_OPEN;
48wxArtID wxART_FILE_SAVE;
49wxArtID wxART_FILE_SAVE_AS;
50wxArtID wxART_PRINT;
51wxArtID wxART_HELP;
52wxArtID wxART_TIP;
53wxArtID wxART_REPORT_VIEW;
54wxArtID wxART_LIST_VIEW;
55wxArtID wxART_NEW_DIR;
56wxArtID wxART_HARDDISK;
57wxArtID wxART_FLOPPY;
58wxArtID wxART_CDROM;
59wxArtID wxART_REMOVABLE;
60wxArtID wxART_FOLDER;
61wxArtID wxART_FOLDER_OPEN;
62wxArtID wxART_GO_DIR_UP;
63wxArtID wxART_EXECUTABLE_FILE;
64wxArtID wxART_NORMAL_FILE;
65wxArtID wxART_TICK_MARK;
66wxArtID wxART_CROSS_MARK;
67wxArtID wxART_ERROR;
68wxArtID wxART_QUESTION;
69wxArtID wxART_WARNING;
70wxArtID wxART_INFORMATION;
71wxArtID wxART_MISSING_IMAGE;
72
73wxArtID wxART_COPY;
74wxArtID wxART_CUT;
75wxArtID wxART_PASTE;
76wxArtID wxART_DELETE;
77wxArtID wxART_NEW;
78
79wxArtID wxART_UNDO;
80wxArtID wxART_REDO;
81
82wxArtID wxART_PLUS;
83wxArtID wxART_MINUS;
84
85wxArtID wxART_CLOSE;
86wxArtID wxART_QUIT;
87
88wxArtID wxART_FIND;
89wxArtID wxART_FIND_AND_REPLACE;
878770b8
FM
90
91
23324ae1
FM
92/**
93 @class wxArtProvider
7c913512 94
23324ae1 95 wxArtProvider class is used to customize the look of wxWidgets application.
39fb8056 96
23324ae1
FM
97 When wxWidgets needs to display an icon or a bitmap (e.g. in the standard file
98 dialog), it does not use a hard-coded resource but asks wxArtProvider for it
99 instead. This way users can plug in their own wxArtProvider class and easily
39fb8056
FM
100 replace standard art with their own version.
101
102 All that is needed is to derive a class from wxArtProvider, override either its
cc6e1a74
FM
103 wxArtProvider::CreateBitmap() and/or its wxArtProvider::CreateIconBundle() methods
104 and register the provider with wxArtProvider::Push():
7c913512 105
23324ae1 106 @code
39fb8056 107 class MyProvider : public wxArtProvider
23324ae1
FM
108 {
109 protected:
7c913512 110 wxBitmap CreateBitmap(const wxArtID& id,
23324ae1
FM
111 const wxArtClient& client,
112 const wxSize size)
7c913512 113
23324ae1
FM
114 // optionally override this one as well
115 wxIconBundle CreateIconBundle(const wxArtID& id,
116 const wxArtClient& client)
117 { ... }
118 };
119 ...
120 wxArtProvider::Push(new MyProvider);
121 @endcode
7c913512 122
23324ae1 123 If you need bitmap images (of the same artwork) that should be displayed at
39fb8056 124 different sizes you should probably consider overriding wxArtProvider::CreateIconBundle
23324ae1 125 and supplying icon bundles that contain different bitmap sizes.
7c913512 126
23324ae1 127 There's another way of taking advantage of this class: you can use it in your
39fb8056
FM
128 code and use platform native icons as provided by wxArtProvider::GetBitmap or
129 wxArtProvider::GetIcon.
7c913512 130
3a74a290 131 @section artprovider_identify Identifying art resources
7c913512 132
23324ae1 133 Every bitmap and icon bundle are known to wxArtProvider under an unique ID that
4b37c1bf 134 is used when requesting a resource from it. The ID is represented by the ::wxArtID type
39fb8056 135 and can have one of these predefined values (you can see bitmaps represented by these
c0e97a5e 136 constants in the @ref page_samples_artprov):
7c913512 137
39fb8056
FM
138 <table>
139 <tr><td>
38ea03c9
FM
140 @li @c wxART_ERROR
141 @li @c wxART_QUESTION
142 @li @c wxART_WARNING
143 @li @c wxART_INFORMATION
144 @li @c wxART_ADD_BOOKMARK
145 @li @c wxART_DEL_BOOKMARK
146 @li @c wxART_HELP_SIDE_PANEL
147 @li @c wxART_HELP_SETTINGS
148 @li @c wxART_HELP_BOOK
149 @li @c wxART_HELP_FOLDER
150 @li @c wxART_HELP_PAGE
151 @li @c wxART_GO_BACK
152 @li @c wxART_GO_FORWARD
153 @li @c wxART_GO_UP
154 @li @c wxART_GO_DOWN
155 @li @c wxART_GO_TO_PARENT
156 @li @c wxART_GO_HOME
157 @li @c wxART_GOTO_FIRST (since 2.9.2)
a7cfad3a 158 </td><td>
38ea03c9
FM
159 @li @c wxART_GOTO_LAST (since 2.9.2)
160 @li @c wxART_PRINT
161 @li @c wxART_HELP
162 @li @c wxART_TIP
163 @li @c wxART_REPORT_VIEW
164 @li @c wxART_LIST_VIEW
165 @li @c wxART_NEW_DIR
166 @li @c wxART_FOLDER
167 @li @c wxART_FOLDER_OPEN
168 @li @c wxART_GO_DIR_UP
169 @li @c wxART_EXECUTABLE_FILE
170 @li @c wxART_NORMAL_FILE
171 @li @c wxART_TICK_MARK
172 @li @c wxART_CROSS_MARK
173 @li @c wxART_MISSING_IMAGE
174 @li @c wxART_NEW
175 @li @c wxART_FILE_OPEN
176 @li @c wxART_FILE_SAVE
a7cfad3a 177 </td><td>
38ea03c9
FM
178 @li @c wxART_FILE_SAVE_AS
179 @li @c wxART_DELETE
180 @li @c wxART_COPY
181 @li @c wxART_CUT
182 @li @c wxART_PASTE
183 @li @c wxART_UNDO
184 @li @c wxART_REDO
185 @li @c wxART_PLUS (since 2.9.2)
186 @li @c wxART_MINUS (since 2.9.2)
187 @li @c wxART_CLOSE
188 @li @c wxART_QUIT
189 @li @c wxART_FIND
190 @li @c wxART_FIND_AND_REPLACE
191 @li @c wxART_HARDDISK
192 @li @c wxART_FLOPPY
193 @li @c wxART_CDROM
194 @li @c wxART_REMOVABLE
39fb8056
FM
195 </td></tr>
196 </table>
7c913512
FM
197
198 Additionally, any string recognized by custom art providers registered using
23324ae1 199 wxArtProvider::Push may be used.
7c913512 200
39fb8056
FM
201 @note
202 When running under GTK+ 2, GTK+ stock item IDs (e.g. @c "gtk-cdrom") may be used
878770b8
FM
203 as well:
204 @code
4b37c1bf 205 #ifdef __WXGTK__
878770b8 206 wxBitmap bmp = wxArtProvider::GetBitmap("gtk-cdrom", wxART_MENU);
4b37c1bf 207 #endif
878770b8 208 @endcode
232fdc63
VZ
209 For a list of the GTK+ stock items please refer to the
210 <a href="http://library.gnome.org/devel/gtk/stable/gtk-Stock-Items.html">GTK+ documentation
211 page</a>.
4b37c1bf
FM
212 It is also possible to load icons from the current icon theme by specifying their name
213 (without extension and directory components).
232fdc63
VZ
214 Icon themes recognized by GTK+ follow the freedesktop.org
215 <a href="http://freedesktop.org/Standards/icon-theme-spec">Icon Themes specification</a>.
39fb8056
FM
216 Note that themes are not guaranteed to contain all icons, so wxArtProvider may
217 return ::wxNullBitmap or ::wxNullIcon.
218 The default theme is typically installed in @c /usr/share/icons/hicolor.
219
220
3a74a290 221 @section artprovider_clients Clients
39fb8056 222
878770b8 223 The @e client is the entity that calls wxArtProvider's GetBitmap() or GetIcon() function.
39fb8056
FM
224 It is represented by wxClientID type and can have one of these values:
225
38ea03c9
FM
226 @li @c wxART_TOOLBAR
227 @li @c wxART_MENU
228 @li @c wxART_BUTTON
229 @li @c wxART_FRAME_ICON
230 @li @c wxART_CMN_DIALOG
231 @li @c wxART_HELP_BROWSER
232 @li @c wxART_MESSAGE_BOX
233 @li @c wxART_OTHER (used for all requests that don't fit into any of the
39fb8056
FM
234 categories above)
235
878770b8 236 Client ID serve as a hint to wxArtProvider that is supposed to help it to
39fb8056
FM
237 choose the best looking bitmap. For example it is often desirable to use
238 slightly different icons in menus and toolbars even though they represent
239 the same action (e.g. wxART_FILE_OPEN). Remember that this is really only a
240 hint for wxArtProvider -- it is common that wxArtProvider::GetBitmap returns
241 identical bitmap for different client values!
242
23324ae1 243 @library{wxcore}
3c99e2fd 244 @category{misc}
7c913512 245
38ea03c9
FM
246 @see @ref page_samples_artprov for an example of wxArtProvider usage;
247 @ref page_stockitems "stock ID list"
23324ae1
FM
248*/
249class wxArtProvider : public wxObject
250{
251public:
252 /**
253 The destructor automatically removes the provider from the provider stack used
254 by GetBitmap().
255 */
8d483c9b 256 virtual ~wxArtProvider();
23324ae1 257
23324ae1 258 /**
71f8a117 259 Delete the given @a provider.
23324ae1
FM
260 */
261 static bool Delete(wxArtProvider* provider);
262
263 /**
264 Query registered providers for bitmap with given ID.
3c4f71cc 265
7c913512 266 @param id
4cc4bfaf 267 wxArtID unique identifier of the bitmap.
7c913512 268 @param client
4cc4bfaf 269 wxArtClient identifier of the client (i.e. who is asking for the bitmap).
7c913512 270 @param size
4cc4bfaf 271 Size of the returned bitmap or wxDefaultSize if size doesn't matter.
3c4f71cc 272
d29a9a8a
BP
273 @return The bitmap if one of registered providers recognizes the ID or
274 wxNullBitmap otherwise.
23324ae1
FM
275 */
276 static wxBitmap GetBitmap(const wxArtID& id,
277 const wxArtClient& client = wxART_OTHER,
278 const wxSize& size = wxDefaultSize);
279
39fb8056
FM
280 /**
281 Same as wxArtProvider::GetBitmap, but return a wxIcon object
282 (or ::wxNullIcon on failure).
283 */
284 static wxIcon GetIcon(const wxArtID& id,
285 const wxArtClient& client = wxART_OTHER,
286 const wxSize& size = wxDefaultSize);
287
23324ae1 288 /**
a158acac
VS
289 Returns native icon size for use specified by @a client hint.
290
291 If the platform has no commonly used default for this use or if
292 @a client is not recognized, returns wxDefaultSize.
293
294 @note In some cases, a platform may have @em several appropriate
295 native sizes (for example, wxART_FRAME_ICON for frame icons).
296 In that case, this method returns only one of them, picked
297 reasonably.
298
299 @since 2.9.0
300 */
301 static wxSize GetNativeSizeHint(const wxArtClient& client);
302
303 /**
304 Returns a suitable size hint for the given @e wxArtClient.
305
306 If @a platform_default is @true, return a size based on the current
307 platform using GetNativeSizeHint(), otherwise return the size from the
308 topmost wxArtProvider. @e wxDefaultSize may be returned if the client
309 doesn't have a specified size, like wxART_OTHER for example.
310
311 @see GetNativeSizeHint()
23324ae1 312 */
7c913512 313 static wxSize GetSizeHint(const wxArtClient& client,
4cc4bfaf 314 bool platform_default = false);
23324ae1
FM
315
316 /**
317 Query registered providers for icon bundle with given ID.
3c4f71cc 318
7c913512 319 @param id
4cc4bfaf 320 wxArtID unique identifier of the icon bundle.
7c913512 321 @param client
4cc4bfaf 322 wxArtClient identifier of the client (i.e. who is asking for the icon
39fb8056 323 bundle).
3c4f71cc 324
d29a9a8a
BP
325 @return The icon bundle if one of registered providers recognizes the ID
326 or wxNullIconBundle otherwise.
23324ae1
FM
327 */
328 static wxIconBundle GetIconBundle(const wxArtID& id,
329 const wxArtClient& client = wxART_OTHER);
330
331 /**
14440cc6
VS
332 Returns true if the platform uses native icons provider that should
333 take precedence over any customizations.
3c4f71cc 334
14440cc6
VS
335 This is true for any platform that has user-customizable icon themes,
336 currently only wxGTK.
337
338 A typical use for this method is to decide whether a custom art provider
339 should be plugged in using Push() or PushBack().
340
341 @since 2.9.0
342 */
343 static bool HasNativeProvider();
344
345 /**
346 @deprecated Use PushBack() instead.
23324ae1
FM
347 */
348 static void Insert(wxArtProvider* provider);
349
350 /**
351 Remove latest added provider and delete it.
352 */
4cc4bfaf 353 static bool Pop();
23324ae1
FM
354
355 /**
39fb8056
FM
356 Register new art provider and add it to the top of providers stack
357 (i.e. it will be queried as the first provider).
3c4f71cc 358
14440cc6 359 @see PushBack()
23324ae1
FM
360 */
361 static void Push(wxArtProvider* provider);
362
14440cc6
VS
363 /**
364 Register new art provider and add it to the bottom of providers stack.
365 In other words, it will be queried as the last one, after all others,
366 including the default provider.
367
368 @see Push()
369
370 @since 2.9.0
371 */
372 static void PushBack(wxArtProvider* provider);
373
23324ae1 374 /**
7c913512 375 Remove a provider from the stack if it is on it. The provider is not
23324ae1
FM
376 deleted, unlike when using Delete().
377 */
378 static bool Remove(wxArtProvider* provider);
e4f1d811 379
123919a9
RD
380 /**
381 * Helper used by GetMessageBoxIcon(): return the art id corresponding to
382 * the standard wxICON_INFORMATION/WARNING/ERROR/QUESTION flags (only one
383 * can be set)
384 */
385 static wxArtID GetMessageBoxIconId(int flags);
386
387 /**
388 * Helper used by several generic classes: return the icon corresponding to
389 * the standard wxICON_INFORMATION/WARNING/ERROR/QUESTION flags (only one
390 * can be set)
391 */
392 static wxIcon GetMessageBoxIcon(int flags);
393
394
e4f1d811
FM
395protected:
396
397 /**
398 Derived art provider classes must override this method to create requested art
399 resource. Note that returned bitmaps are cached by wxArtProvider and it is
400 therefore not necessary to optimize CreateBitmap() for speed (e.g. you may
401 create wxBitmap objects from XPMs here).
402
403 @param id
404 wxArtID unique identifier of the bitmap.
405 @param client
406 wxArtClient identifier of the client (i.e. who is asking for the bitmap).
407 This only servers as a hint.
408 @param size
409 Preferred size of the bitmap. The function may return a bitmap of different
410 dimensions, it will be automatically rescaled to meet client's request.
411
412 @note
413 This is not part of wxArtProvider's public API, use wxArtProvider::GetBitmap
414 or wxArtProvider::GetIconBundle or wxArtProvider::GetIcon to query wxArtProvider
415 for a resource.
416
417 @see CreateIconBundle()
418 */
419 virtual wxBitmap CreateBitmap(const wxArtID& id,
420 const wxArtClient& client,
421 const wxSize& size);
422
423 /**
424 This method is similar to CreateBitmap() but can be used when a bitmap
425 (or an icon) exists in several sizes.
426 */
427 virtual wxIconBundle CreateIconBundle(const wxArtID& id,
428 const wxArtClient& client);
23324ae1 429};
e54c96f1 430