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