]>
Commit | Line | Data |
---|---|---|
2aca4a98 | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ecff181 | 2 | // Name: src/common/artprov.cpp |
2aca4a98 VS |
3 | // Purpose: wxArtProvider class |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 18/03/2002 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vaclav Slavik | |
65571936 | 9 | // Licence: wxWindows licence |
2aca4a98 VS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // --------------------------------------------------------------------------- | |
13 | // headers | |
14 | // --------------------------------------------------------------------------- | |
15 | ||
2aca4a98 VS |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #if defined(__BORLANDC__) | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
02761f6c WS |
23 | #include "wx/artprov.h" |
24 | ||
2aca4a98 | 25 | #ifndef WX_PRECOMP |
2aca4a98 | 26 | #include "wx/list.h" |
8ecff181 | 27 | #include "wx/log.h" |
df69528b | 28 | #include "wx/hashmap.h" |
155ecd4c | 29 | #include "wx/image.h" |
02761f6c | 30 | #include "wx/module.h" |
2aca4a98 VS |
31 | #endif |
32 | ||
2aca4a98 VS |
33 | // =========================================================================== |
34 | // implementation | |
35 | // =========================================================================== | |
36 | ||
37 | #include "wx/listimpl.cpp" | |
38 | WX_DECLARE_LIST(wxArtProvider, wxArtProvidersList); | |
259c43f6 | 39 | WX_DEFINE_LIST(wxArtProvidersList) |
2aca4a98 VS |
40 | |
41 | // ---------------------------------------------------------------------------- | |
42 | // Cache class - stores already requested bitmaps | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
3f5c62f9 | 45 | WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxBitmap, wxArtProviderBitmapsHash); |
52734360 | 46 | WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxIconBundle, wxArtProviderIconBundlesHash); |
2aca4a98 VS |
47 | |
48 | class WXDLLEXPORT wxArtProviderCache | |
49 | { | |
50 | public: | |
51 | bool GetBitmap(const wxString& full_id, wxBitmap* bmp); | |
52 | void PutBitmap(const wxString& full_id, const wxBitmap& bmp) | |
53 | { m_bitmapsHash[full_id] = bmp; } | |
54 | ||
52734360 VZ |
55 | bool GetIconBundle(const wxString& full_id, wxIconBundle* bmp); |
56 | void PutIconBundle(const wxString& full_id, const wxIconBundle& iconbundle) | |
57 | { m_iconBundlesHash[full_id] = iconbundle; } | |
58 | ||
2aca4a98 | 59 | void Clear(); |
9e7ed2b0 | 60 | |
57b0987b VS |
61 | static wxString ConstructHashID(const wxArtID& id, |
62 | const wxArtClient& client, | |
2aca4a98 VS |
63 | const wxSize& size); |
64 | ||
52734360 VZ |
65 | static wxString ConstructHashID(const wxArtID& id, |
66 | const wxArtClient& client); | |
67 | ||
2aca4a98 | 68 | private: |
52734360 VZ |
69 | wxArtProviderBitmapsHash m_bitmapsHash; // cache of wxBitmaps |
70 | wxArtProviderIconBundlesHash m_iconBundlesHash; // cache of wxIconBundles | |
2aca4a98 VS |
71 | }; |
72 | ||
73 | bool wxArtProviderCache::GetBitmap(const wxString& full_id, wxBitmap* bmp) | |
74 | { | |
75 | wxArtProviderBitmapsHash::iterator entry = m_bitmapsHash.find(full_id); | |
76 | if ( entry == m_bitmapsHash.end() ) | |
77 | { | |
4629016d | 78 | return false; |
2aca4a98 VS |
79 | } |
80 | else | |
81 | { | |
82 | *bmp = entry->second; | |
4629016d | 83 | return true; |
2aca4a98 VS |
84 | } |
85 | } | |
86 | ||
52734360 VZ |
87 | bool wxArtProviderCache::GetIconBundle(const wxString& full_id, wxIconBundle* bmp) |
88 | { | |
89 | wxArtProviderIconBundlesHash::iterator entry = m_iconBundlesHash.find(full_id); | |
90 | if ( entry == m_iconBundlesHash.end() ) | |
91 | { | |
92 | return false; | |
93 | } | |
94 | else | |
95 | { | |
96 | *bmp = entry->second; | |
97 | return true; | |
98 | } | |
99 | } | |
100 | ||
2aca4a98 VS |
101 | void wxArtProviderCache::Clear() |
102 | { | |
103 | m_bitmapsHash.clear(); | |
52734360 | 104 | m_iconBundlesHash.clear(); |
2aca4a98 VS |
105 | } |
106 | ||
52734360 VZ |
107 | /* static */ wxString |
108 | wxArtProviderCache::ConstructHashID(const wxArtID& id, | |
109 | const wxArtClient& client) | |
2aca4a98 | 110 | { |
9a83f860 | 111 | return id + wxT('-') + client; |
2aca4a98 VS |
112 | } |
113 | ||
114 | ||
52734360 VZ |
115 | /* static */ wxString |
116 | wxArtProviderCache::ConstructHashID(const wxArtID& id, | |
117 | const wxArtClient& client, | |
118 | const wxSize& size) | |
119 | { | |
9a83f860 VZ |
120 | return ConstructHashID(id, client) + wxT('-') + |
121 | wxString::Format(wxT("%d-%d"), size.x, size.y); | |
52734360 VZ |
122 | } |
123 | ||
571d2e0f | 124 | // ============================================================================ |
2aca4a98 | 125 | // wxArtProvider class |
571d2e0f | 126 | // ============================================================================ |
2aca4a98 VS |
127 | |
128 | IMPLEMENT_ABSTRACT_CLASS(wxArtProvider, wxObject) | |
129 | ||
130 | wxArtProvidersList *wxArtProvider::sm_providers = NULL; | |
131 | wxArtProviderCache *wxArtProvider::sm_cache = NULL; | |
132 | ||
571d2e0f VZ |
133 | // ---------------------------------------------------------------------------- |
134 | // wxArtProvider ctors/dtor | |
135 | // ---------------------------------------------------------------------------- | |
136 | ||
137 | wxArtProvider::~wxArtProvider() | |
138 | { | |
139 | Remove(this); | |
140 | } | |
141 | ||
142 | // ---------------------------------------------------------------------------- | |
143 | // wxArtProvider operations on provider stack | |
144 | // ---------------------------------------------------------------------------- | |
145 | ||
dd7d379e | 146 | /*static*/ void wxArtProvider::CommonAddingProvider() |
2aca4a98 VS |
147 | { |
148 | if ( !sm_providers ) | |
149 | { | |
150 | sm_providers = new wxArtProvidersList; | |
2aca4a98 VS |
151 | sm_cache = new wxArtProviderCache; |
152 | } | |
153 | ||
c3357a03 | 154 | sm_cache->Clear(); |
2aca4a98 VS |
155 | } |
156 | ||
571d2e0f | 157 | /*static*/ void wxArtProvider::Push(wxArtProvider *provider) |
dd7d379e VS |
158 | { |
159 | CommonAddingProvider(); | |
160 | sm_providers->Insert(provider); | |
161 | } | |
162 | ||
14440cc6 | 163 | /*static*/ void wxArtProvider::PushBack(wxArtProvider *provider) |
dd7d379e VS |
164 | { |
165 | CommonAddingProvider(); | |
166 | sm_providers->Append(provider); | |
167 | } | |
168 | ||
571d2e0f | 169 | /*static*/ bool wxArtProvider::Pop() |
2aca4a98 | 170 | { |
9a83f860 VZ |
171 | wxCHECK_MSG( sm_providers, false, wxT("no wxArtProvider exists") ); |
172 | wxCHECK_MSG( !sm_providers->empty(), false, wxT("wxArtProviders stack is empty") ); | |
2aca4a98 | 173 | |
222ed1d6 | 174 | delete sm_providers->GetFirst()->GetData(); |
2aca4a98 | 175 | sm_cache->Clear(); |
4629016d | 176 | return true; |
2aca4a98 VS |
177 | } |
178 | ||
571d2e0f | 179 | /*static*/ bool wxArtProvider::Remove(wxArtProvider *provider) |
2aca4a98 | 180 | { |
9a83f860 | 181 | wxCHECK_MSG( sm_providers, false, wxT("no wxArtProvider exists") ); |
2aca4a98 VS |
182 | |
183 | if ( sm_providers->DeleteObject(provider) ) | |
184 | { | |
185 | sm_cache->Clear(); | |
4629016d | 186 | return true; |
2aca4a98 | 187 | } |
9e7ed2b0 | 188 | |
4629016d | 189 | return false; |
2aca4a98 VS |
190 | } |
191 | ||
571d2e0f VZ |
192 | /*static*/ bool wxArtProvider::Delete(wxArtProvider *provider) |
193 | { | |
194 | // provider will remove itself from the stack in its dtor | |
195 | delete provider; | |
196 | ||
197 | return true; | |
198 | } | |
199 | ||
2aca4a98 VS |
200 | /*static*/ void wxArtProvider::CleanUpProviders() |
201 | { | |
571d2e0f VZ |
202 | if ( sm_providers ) |
203 | { | |
204 | while ( !sm_providers->empty() ) | |
205 | delete *sm_providers->begin(); | |
206 | ||
207 | delete sm_providers; | |
208 | sm_providers = NULL; | |
209 | ||
210 | delete sm_cache; | |
211 | sm_cache = NULL; | |
212 | } | |
2aca4a98 VS |
213 | } |
214 | ||
571d2e0f VZ |
215 | // ---------------------------------------------------------------------------- |
216 | // wxArtProvider: retrieving bitmaps/icons | |
217 | // ---------------------------------------------------------------------------- | |
218 | ||
57b0987b VS |
219 | /*static*/ wxBitmap wxArtProvider::GetBitmap(const wxArtID& id, |
220 | const wxArtClient& client, | |
e53a95bc | 221 | const wxSize& size) |
2aca4a98 | 222 | { |
57b0987b | 223 | // safety-check against writing client,id,size instead of id,client,size: |
9a83f860 | 224 | wxASSERT_MSG( client.Last() == wxT('C'), wxT("invalid 'client' parameter") ); |
57b0987b | 225 | |
9a83f860 | 226 | wxCHECK_MSG( sm_providers, wxNullBitmap, wxT("no wxArtProvider exists") ); |
2aca4a98 | 227 | |
e53a95bc | 228 | wxString hashId = wxArtProviderCache::ConstructHashID(id, client, size); |
2aca4a98 VS |
229 | |
230 | wxBitmap bmp; | |
231 | if ( !sm_cache->GetBitmap(hashId, &bmp) ) | |
232 | { | |
222ed1d6 | 233 | for (wxArtProvidersList::compatibility_iterator node = sm_providers->GetFirst(); |
2aca4a98 VS |
234 | node; node = node->GetNext()) |
235 | { | |
e53a95bc | 236 | bmp = node->GetData()->CreateBitmap(id, client, size); |
2aca4a98 | 237 | if ( bmp.Ok() ) |
b5c2a334 VS |
238 | break; |
239 | } | |
240 | ||
241 | if ( !bmp.Ok() ) | |
242 | { | |
243 | // no bitmap created -- as a fallback, try if we can find desired | |
244 | // icon in a bundle | |
245 | wxIconBundle iconBundle = DoGetIconBundle(id, client); | |
246 | if ( iconBundle.IsOk() ) | |
3242feb1 | 247 | { |
b5c2a334 VS |
248 | wxSize sz(size != wxDefaultSize |
249 | ? size | |
250 | : GetNativeSizeHint(client)); | |
251 | wxIcon icon(iconBundle.GetIcon(sz)); | |
252 | if ( icon.IsOk() ) | |
253 | bmp.CopyFromIcon(icon); | |
254 | } | |
255 | } | |
256 | ||
257 | if ( bmp.IsOk() ) | |
258 | { | |
259 | // if we didn't get the correct size, resize the bitmap | |
64c288fa | 260 | #if wxUSE_IMAGE && (!defined(__WXMSW__) || wxUSE_WXDIB) |
b5c2a334 VS |
261 | if ( size != wxDefaultSize && |
262 | (bmp.GetWidth() != size.x || bmp.GetHeight() != size.y) ) | |
263 | { | |
264 | wxImage img = bmp.ConvertToImage(); | |
265 | img.Rescale(size.x, size.y); | |
266 | bmp = wxBitmap(img); | |
3242feb1 | 267 | } |
b5c2a334 | 268 | #endif |
2aca4a98 | 269 | } |
b5c2a334 | 270 | |
2aca4a98 | 271 | sm_cache->PutBitmap(hashId, bmp); |
b5c2a334 | 272 | } |
2aca4a98 VS |
273 | |
274 | return bmp; | |
275 | } | |
276 | ||
b5c2a334 VS |
277 | /*static*/ |
278 | wxIconBundle wxArtProvider::GetIconBundle(const wxArtID& id, const wxArtClient& client) | |
279 | { | |
280 | wxIconBundle iconbundle(DoGetIconBundle(id, client)); | |
281 | ||
282 | if ( iconbundle.IsOk() ) | |
283 | { | |
284 | return iconbundle; | |
285 | } | |
286 | else | |
287 | { | |
288 | // fall back to single-icon bundle | |
289 | return wxIconBundle(GetIcon(id, client)); | |
290 | } | |
291 | } | |
292 | ||
293 | /*static*/ | |
294 | wxIconBundle wxArtProvider::DoGetIconBundle(const wxArtID& id, const wxArtClient& client) | |
52734360 VZ |
295 | { |
296 | // safety-check against writing client,id,size instead of id,client,size: | |
9a83f860 | 297 | wxASSERT_MSG( client.Last() == wxT('C'), wxT("invalid 'client' parameter") ); |
52734360 | 298 | |
9a83f860 | 299 | wxCHECK_MSG( sm_providers, wxNullIconBundle, wxT("no wxArtProvider exists") ); |
52734360 VZ |
300 | |
301 | wxString hashId = wxArtProviderCache::ConstructHashID(id, client); | |
302 | ||
303 | wxIconBundle iconbundle; | |
304 | if ( !sm_cache->GetIconBundle(hashId, &iconbundle) ) | |
305 | { | |
306 | for (wxArtProvidersList::compatibility_iterator node = sm_providers->GetFirst(); | |
307 | node; node = node->GetNext()) | |
308 | { | |
309 | iconbundle = node->GetData()->CreateIconBundle(id, client); | |
310 | if ( iconbundle.IsOk() ) | |
311 | break; | |
312 | } | |
313 | ||
314 | sm_cache->PutIconBundle(hashId, iconbundle); | |
315 | } | |
316 | ||
317 | return iconbundle; | |
318 | } | |
319 | ||
57b0987b VS |
320 | /*static*/ wxIcon wxArtProvider::GetIcon(const wxArtID& id, |
321 | const wxArtClient& client, | |
2aca4a98 VS |
322 | const wxSize& size) |
323 | { | |
57b0987b | 324 | wxBitmap bmp = GetBitmap(id, client, size); |
b5c2a334 VS |
325 | |
326 | if ( !bmp.IsOk() ) | |
2aca4a98 | 327 | return wxNullIcon; |
2aca4a98 | 328 | |
25dd6997 VZ |
329 | wxIcon icon; |
330 | icon.CopyFromBitmap(bmp); | |
331 | return icon; | |
332 | } | |
2aca4a98 | 333 | |
1970409e VZ |
334 | /* static */ |
335 | wxIcon wxArtProvider::GetMessageBoxIcon(int flags) | |
336 | { | |
337 | wxIcon icon; | |
338 | switch ( flags & wxICON_MASK ) | |
339 | { | |
340 | default: | |
9a83f860 | 341 | wxFAIL_MSG(wxT("incorrect message box icon flags")); |
1970409e VZ |
342 | // fall through |
343 | ||
344 | case wxICON_ERROR: | |
345 | icon = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX); | |
346 | break; | |
347 | ||
348 | case wxICON_INFORMATION: | |
349 | icon = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX); | |
350 | break; | |
351 | ||
352 | case wxICON_WARNING: | |
353 | icon = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX); | |
354 | break; | |
355 | ||
356 | case wxICON_QUESTION: | |
357 | icon = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX); | |
358 | break; | |
359 | } | |
360 | ||
361 | return icon; | |
362 | } | |
363 | ||
e53a95bc | 364 | /*static*/ wxSize wxArtProvider::GetSizeHint(const wxArtClient& client, |
b737ad10 RR |
365 | bool platform_dependent) |
366 | { | |
367 | if (!platform_dependent) | |
368 | { | |
369 | wxArtProvidersList::compatibility_iterator node = sm_providers->GetFirst(); | |
370 | if (node) | |
e53a95bc RR |
371 | return node->GetData()->DoGetSizeHint(client); |
372 | } | |
f6d43eda | 373 | |
a158acac VS |
374 | return GetNativeSizeHint(client); |
375 | } | |
376 | ||
377 | #ifndef wxHAS_NATIVE_ART_PROVIDER_IMPL | |
378 | /*static*/ | |
6f23f80b | 379 | wxSize wxArtProvider::GetNativeSizeHint(const wxArtClient& WXUNUSED(client)) |
a158acac VS |
380 | { |
381 | // rather than returning some arbitrary value that doesn't make much | |
382 | // sense (as 2.8 used to do), tell the caller that we don't have a clue: | |
383 | return wxDefaultSize; | |
384 | } | |
385 | ||
386 | /*static*/ | |
387 | void wxArtProvider::InitNativeProvider() | |
388 | { | |
b737ad10 | 389 | } |
a158acac VS |
390 | #endif // !wxHAS_NATIVE_ART_PROVIDER_IMPL |
391 | ||
b737ad10 | 392 | |
14440cc6 VS |
393 | /* static */ |
394 | bool wxArtProvider::HasNativeProvider() | |
395 | { | |
396 | #ifdef __WXGTK20__ | |
397 | return true; | |
398 | #else | |
399 | return false; | |
400 | #endif | |
401 | } | |
402 | ||
571d2e0f VZ |
403 | // ---------------------------------------------------------------------------- |
404 | // deprecated wxArtProvider methods | |
405 | // ---------------------------------------------------------------------------- | |
406 | ||
407 | #if WXWIN_COMPATIBILITY_2_6 | |
408 | ||
409 | /* static */ void wxArtProvider::PushProvider(wxArtProvider *provider) | |
410 | { | |
411 | Push(provider); | |
412 | } | |
413 | ||
414 | /* static */ void wxArtProvider::InsertProvider(wxArtProvider *provider) | |
415 | { | |
416 | Insert(provider); | |
417 | } | |
418 | ||
419 | /* static */ bool wxArtProvider::PopProvider() | |
420 | { | |
421 | return Pop(); | |
422 | } | |
423 | ||
424 | /* static */ bool wxArtProvider::RemoveProvider(wxArtProvider *provider) | |
425 | { | |
426 | // RemoveProvider() used to delete the provider being removed so this is | |
427 | // not a typo, we must call Delete() and not Remove() here | |
428 | return Delete(provider); | |
429 | } | |
430 | ||
431 | #endif // WXWIN_COMPATIBILITY_2_6 | |
432 | ||
14440cc6 VS |
433 | #if WXWIN_COMPATIBILITY_2_8 |
434 | /* static */ void wxArtProvider::Insert(wxArtProvider *provider) | |
435 | { | |
436 | PushBack(provider); | |
437 | } | |
438 | #endif // WXWIN_COMPATIBILITY_2_8 | |
439 | ||
571d2e0f VZ |
440 | // ============================================================================ |
441 | // wxArtProviderModule | |
442 | // ============================================================================ | |
2aca4a98 VS |
443 | |
444 | class wxArtProviderModule: public wxModule | |
445 | { | |
446 | public: | |
2b5f62a0 VZ |
447 | bool OnInit() |
448 | { | |
449 | wxArtProvider::InitStdProvider(); | |
7bebedd8 | 450 | wxArtProvider::InitNativeProvider(); |
4629016d | 451 | return true; |
2b5f62a0 VZ |
452 | } |
453 | void OnExit() | |
454 | { | |
455 | wxArtProvider::CleanUpProviders(); | |
456 | } | |
2aca4a98 VS |
457 | |
458 | DECLARE_DYNAMIC_CLASS(wxArtProviderModule) | |
459 | }; | |
460 | ||
461 | IMPLEMENT_DYNAMIC_CLASS(wxArtProviderModule, wxModule) |