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