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