]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: msw/gdiimage.cpp | |
3 | // Purpose: wxGDIImage implementation | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 20.11.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
21 | #pragma implementation "gdiimage.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/string.h" | |
33 | #include "wx/log.h" | |
34 | #endif // WX_PRECOMP | |
35 | ||
36 | #include "wx/msw/private.h" | |
37 | ||
38 | #include "wx/app.h" | |
39 | ||
40 | #include "wx/bitmap.h" | |
41 | #include "wx/msw/gdiimage.h" | |
42 | ||
43 | #if wxUSE_WXDIB | |
44 | #include "wx/msw/dib.h" | |
45 | #endif | |
46 | ||
47 | #ifdef __WXWINCE__ | |
48 | #include <winreg.h> | |
49 | #include <shellapi.h> | |
50 | #endif | |
51 | ||
52 | #include "wx/file.h" | |
53 | ||
54 | #include "wx/listimpl.cpp" | |
55 | WX_DEFINE_LIST(wxGDIImageHandlerList); | |
56 | ||
57 | // ---------------------------------------------------------------------------- | |
58 | // private classes | |
59 | // ---------------------------------------------------------------------------- | |
60 | ||
61 | #ifndef __WXMICROWIN__ | |
62 | ||
63 | // all image handlers are declared/defined in this file because the outside | |
64 | // world doesn't have to know about them (but only about wxBITMAP_TYPE_XXX ids) | |
65 | ||
66 | class WXDLLEXPORT wxBMPFileHandler : public wxBitmapHandler | |
67 | { | |
68 | public: | |
69 | wxBMPFileHandler() : wxBitmapHandler(_T("Windows bitmap file"), _T("bmp"), | |
70 | wxBITMAP_TYPE_BMP) | |
71 | { | |
72 | } | |
73 | ||
74 | virtual bool LoadFile(wxBitmap *bitmap, | |
75 | const wxString& name, long flags, | |
76 | int desiredWidth, int desiredHeight); | |
77 | virtual bool SaveFile(wxBitmap *bitmap, | |
78 | const wxString& name, int type, | |
79 | const wxPalette *palette = NULL); | |
80 | ||
81 | private: | |
82 | DECLARE_DYNAMIC_CLASS(wxBMPFileHandler) | |
83 | }; | |
84 | ||
85 | class WXDLLEXPORT wxBMPResourceHandler: public wxBitmapHandler | |
86 | { | |
87 | public: | |
88 | wxBMPResourceHandler() : wxBitmapHandler(_T("Windows bitmap resource"), | |
89 | wxEmptyString, | |
90 | wxBITMAP_TYPE_BMP_RESOURCE) | |
91 | { | |
92 | } | |
93 | ||
94 | virtual bool LoadFile(wxBitmap *bitmap, | |
95 | const wxString& name, long flags, | |
96 | int desiredWidth, int desiredHeight); | |
97 | ||
98 | private: | |
99 | DECLARE_DYNAMIC_CLASS(wxBMPResourceHandler) | |
100 | }; | |
101 | ||
102 | class WXDLLEXPORT wxIconHandler : public wxGDIImageHandler | |
103 | { | |
104 | public: | |
105 | wxIconHandler(const wxString& name, const wxString& ext, long type) | |
106 | : wxGDIImageHandler(name, ext, type) | |
107 | { | |
108 | } | |
109 | ||
110 | // creating and saving icons is not supported | |
111 | virtual bool Create(wxGDIImage *WXUNUSED(image), | |
112 | void *WXUNUSED(data), | |
113 | long WXUNUSED(flags), | |
114 | int WXUNUSED(width), | |
115 | int WXUNUSED(height), | |
116 | int WXUNUSED(depth) = 1) | |
117 | { | |
118 | return false; | |
119 | } | |
120 | ||
121 | virtual bool Save(wxGDIImage *WXUNUSED(image), | |
122 | const wxString& WXUNUSED(name), | |
123 | int WXUNUSED(type)) | |
124 | { | |
125 | return false; | |
126 | } | |
127 | ||
128 | virtual bool Load(wxGDIImage *image, | |
129 | const wxString& name, | |
130 | long flags, | |
131 | int desiredWidth, int desiredHeight) | |
132 | { | |
133 | wxIcon *icon = wxDynamicCast(image, wxIcon); | |
134 | wxCHECK_MSG( icon, false, _T("wxIconHandler only works with icons") ); | |
135 | ||
136 | return LoadIcon(icon, name, flags, desiredWidth, desiredHeight); | |
137 | } | |
138 | ||
139 | protected: | |
140 | virtual bool LoadIcon(wxIcon *icon, | |
141 | const wxString& name, long flags, | |
142 | int desiredWidth = -1, int desiredHeight = -1) = 0; | |
143 | }; | |
144 | ||
145 | class WXDLLEXPORT wxICOFileHandler : public wxIconHandler | |
146 | { | |
147 | public: | |
148 | wxICOFileHandler() : wxIconHandler(_T("ICO icon file"), | |
149 | _T("ico"), | |
150 | wxBITMAP_TYPE_ICO) | |
151 | { | |
152 | } | |
153 | ||
154 | protected: | |
155 | virtual bool LoadIcon(wxIcon *icon, | |
156 | const wxString& name, long flags, | |
157 | int desiredWidth = -1, int desiredHeight = -1); | |
158 | ||
159 | private: | |
160 | DECLARE_DYNAMIC_CLASS(wxICOFileHandler) | |
161 | }; | |
162 | ||
163 | class WXDLLEXPORT wxICOResourceHandler: public wxIconHandler | |
164 | { | |
165 | public: | |
166 | wxICOResourceHandler() : wxIconHandler(_T("ICO resource"), | |
167 | _T("ico"), | |
168 | wxBITMAP_TYPE_ICO_RESOURCE) | |
169 | { | |
170 | } | |
171 | ||
172 | protected: | |
173 | virtual bool LoadIcon(wxIcon *icon, | |
174 | const wxString& name, long flags, | |
175 | int desiredWidth = -1, int desiredHeight = -1); | |
176 | ||
177 | private: | |
178 | DECLARE_DYNAMIC_CLASS(wxICOResourceHandler) | |
179 | }; | |
180 | ||
181 | // ---------------------------------------------------------------------------- | |
182 | // wxWin macros | |
183 | // ---------------------------------------------------------------------------- | |
184 | ||
185 | IMPLEMENT_DYNAMIC_CLASS(wxBMPFileHandler, wxBitmapHandler) | |
186 | IMPLEMENT_DYNAMIC_CLASS(wxBMPResourceHandler, wxBitmapHandler) | |
187 | IMPLEMENT_DYNAMIC_CLASS(wxICOFileHandler, wxObject) | |
188 | IMPLEMENT_DYNAMIC_CLASS(wxICOResourceHandler, wxObject) | |
189 | ||
190 | // ---------------------------------------------------------------------------- | |
191 | // private functions | |
192 | // ---------------------------------------------------------------------------- | |
193 | ||
194 | #endif | |
195 | // __MICROWIN__ | |
196 | ||
197 | // ============================================================================ | |
198 | // implementation | |
199 | // ============================================================================ | |
200 | ||
201 | wxGDIImageHandlerList wxGDIImage::ms_handlers; | |
202 | ||
203 | // ---------------------------------------------------------------------------- | |
204 | // wxGDIImage functions forwarded to wxGDIImageRefData | |
205 | // ---------------------------------------------------------------------------- | |
206 | ||
207 | bool wxGDIImage::FreeResource(bool WXUNUSED(force)) | |
208 | { | |
209 | if ( !IsNull() ) | |
210 | { | |
211 | GetGDIImageData()->Free(); | |
212 | GetGDIImageData()->m_handle = 0; | |
213 | } | |
214 | ||
215 | return true; | |
216 | } | |
217 | ||
218 | WXHANDLE wxGDIImage::GetResourceHandle() const | |
219 | { | |
220 | return GetHandle(); | |
221 | } | |
222 | ||
223 | // ---------------------------------------------------------------------------- | |
224 | // wxGDIImage handler stuff | |
225 | // ---------------------------------------------------------------------------- | |
226 | ||
227 | void wxGDIImage::AddHandler(wxGDIImageHandler *handler) | |
228 | { | |
229 | ms_handlers.Append(handler); | |
230 | } | |
231 | ||
232 | void wxGDIImage::InsertHandler(wxGDIImageHandler *handler) | |
233 | { | |
234 | ms_handlers.Insert(handler); | |
235 | } | |
236 | ||
237 | bool wxGDIImage::RemoveHandler(const wxString& name) | |
238 | { | |
239 | wxGDIImageHandler *handler = FindHandler(name); | |
240 | if ( handler ) | |
241 | { | |
242 | ms_handlers.DeleteObject(handler); | |
243 | return true; | |
244 | } | |
245 | else | |
246 | return false; | |
247 | } | |
248 | ||
249 | wxGDIImageHandler *wxGDIImage::FindHandler(const wxString& name) | |
250 | { | |
251 | wxGDIImageHandlerList::compatibility_iterator node = ms_handlers.GetFirst(); | |
252 | while ( node ) | |
253 | { | |
254 | wxGDIImageHandler *handler = node->GetData(); | |
255 | if ( handler->GetName() == name ) | |
256 | return handler; | |
257 | node = node->GetNext(); | |
258 | } | |
259 | ||
260 | return NULL; | |
261 | } | |
262 | ||
263 | wxGDIImageHandler *wxGDIImage::FindHandler(const wxString& extension, | |
264 | long type) | |
265 | { | |
266 | wxGDIImageHandlerList::compatibility_iterator node = ms_handlers.GetFirst(); | |
267 | while ( node ) | |
268 | { | |
269 | wxGDIImageHandler *handler = node->GetData(); | |
270 | if ( (handler->GetExtension() == extension) && | |
271 | (type == -1 || handler->GetType() == type) ) | |
272 | { | |
273 | return handler; | |
274 | } | |
275 | ||
276 | node = node->GetNext(); | |
277 | } | |
278 | return NULL; | |
279 | } | |
280 | ||
281 | wxGDIImageHandler *wxGDIImage::FindHandler(long type) | |
282 | { | |
283 | wxGDIImageHandlerList::compatibility_iterator node = ms_handlers.GetFirst(); | |
284 | while ( node ) | |
285 | { | |
286 | wxGDIImageHandler *handler = node->GetData(); | |
287 | if ( handler->GetType() == type ) | |
288 | return handler; | |
289 | ||
290 | node = node->GetNext(); | |
291 | } | |
292 | ||
293 | return NULL; | |
294 | } | |
295 | ||
296 | void wxGDIImage::CleanUpHandlers() | |
297 | { | |
298 | wxGDIImageHandlerList::compatibility_iterator node = ms_handlers.GetFirst(); | |
299 | while ( node ) | |
300 | { | |
301 | wxGDIImageHandler *handler = node->GetData(); | |
302 | wxGDIImageHandlerList::compatibility_iterator next = node->GetNext(); | |
303 | delete handler; | |
304 | ms_handlers.Erase( node ); | |
305 | node = next; | |
306 | } | |
307 | } | |
308 | ||
309 | void wxGDIImage::InitStandardHandlers() | |
310 | { | |
311 | #ifndef __WXMICROWIN__ | |
312 | AddHandler(new wxBMPResourceHandler); | |
313 | AddHandler(new wxBMPFileHandler); | |
314 | AddHandler(new wxICOResourceHandler); | |
315 | AddHandler(new wxICOFileHandler); | |
316 | #endif | |
317 | } | |
318 | ||
319 | #ifndef __WXMICROWIN__ | |
320 | ||
321 | // ---------------------------------------------------------------------------- | |
322 | // wxBitmap handlers | |
323 | // ---------------------------------------------------------------------------- | |
324 | ||
325 | bool wxBMPResourceHandler::LoadFile(wxBitmap *bitmap, | |
326 | const wxString& name, long WXUNUSED(flags), | |
327 | int WXUNUSED(desiredWidth), | |
328 | int WXUNUSED(desiredHeight)) | |
329 | { | |
330 | // TODO: load colourmap. | |
331 | bitmap->SetHBITMAP((WXHBITMAP)::LoadBitmap(wxGetInstance(), name)); | |
332 | ||
333 | if ( !bitmap->Ok() ) | |
334 | { | |
335 | // it's probably not found | |
336 | wxLogError(wxT("Can't load bitmap '%s' from resources! Check .rc file."), | |
337 | name.c_str()); | |
338 | ||
339 | return false; | |
340 | } | |
341 | ||
342 | BITMAP bm; | |
343 | if ( !::GetObject(GetHbitmapOf(*bitmap), sizeof(BITMAP), (LPSTR) &bm) ) | |
344 | { | |
345 | wxLogLastError(wxT("GetObject(HBITMAP)")); | |
346 | } | |
347 | ||
348 | bitmap->SetWidth(bm.bmWidth); | |
349 | bitmap->SetHeight(bm.bmHeight); | |
350 | bitmap->SetDepth(bm.bmBitsPixel); | |
351 | ||
352 | // use 0xc0c0c0 as transparent colour by default | |
353 | bitmap->SetMask(new wxMask(*bitmap, *wxLIGHT_GREY)); | |
354 | ||
355 | return true; | |
356 | } | |
357 | ||
358 | bool wxBMPFileHandler::LoadFile(wxBitmap *bitmap, | |
359 | const wxString& name, long WXUNUSED(flags), | |
360 | int WXUNUSED(desiredWidth), | |
361 | int WXUNUSED(desiredHeight)) | |
362 | { | |
363 | #if wxUSE_WXDIB | |
364 | wxCHECK_MSG( bitmap, false, _T("NULL bitmap in LoadFile") ); | |
365 | ||
366 | wxDIB dib(name); | |
367 | ||
368 | return dib.IsOk() && bitmap->CopyFromDIB(dib); | |
369 | #else | |
370 | return false; | |
371 | #endif | |
372 | } | |
373 | ||
374 | bool wxBMPFileHandler::SaveFile(wxBitmap *bitmap, | |
375 | const wxString& name, | |
376 | int WXUNUSED(type), | |
377 | const wxPalette * WXUNUSED(pal)) | |
378 | { | |
379 | #if wxUSE_WXDIB | |
380 | wxCHECK_MSG( bitmap, false, _T("NULL bitmap in SaveFile") ); | |
381 | ||
382 | wxDIB dib(*bitmap); | |
383 | ||
384 | return dib.Save(name); | |
385 | #else | |
386 | return false; | |
387 | #endif | |
388 | } | |
389 | ||
390 | // ---------------------------------------------------------------------------- | |
391 | // wxIcon handlers | |
392 | // ---------------------------------------------------------------------------- | |
393 | ||
394 | bool wxICOFileHandler::LoadIcon(wxIcon *icon, | |
395 | const wxString& name, | |
396 | long WXUNUSED(flags), | |
397 | int desiredWidth, int desiredHeight) | |
398 | { | |
399 | icon->UnRef(); | |
400 | ||
401 | // actual size | |
402 | wxSize size; | |
403 | ||
404 | HICON hicon = NULL; | |
405 | ||
406 | // Parse the filename: it may be of the form "filename;n" in order to | |
407 | // specify the nth icon in the file. | |
408 | // | |
409 | // For the moment, ignore the issue of possible semicolons in the | |
410 | // filename. | |
411 | int iconIndex = 0; | |
412 | wxString nameReal(name); | |
413 | wxString strIconIndex = name.AfterLast(wxT(';')); | |
414 | if (strIconIndex != name) | |
415 | { | |
416 | iconIndex = wxAtoi(strIconIndex); | |
417 | nameReal = name.BeforeLast(wxT(';')); | |
418 | } | |
419 | ||
420 | #if 0 | |
421 | // If we don't know what size icon we're looking for, | |
422 | // try to find out what's there. | |
423 | // Unfortunately this doesn't work, because ExtractIconEx | |
424 | // will scale the icon to the 'desired' size, even if that | |
425 | // size of icon isn't explicitly stored. So we would have | |
426 | // to parse the icon file outselves. | |
427 | if ( desiredWidth == -1 && | |
428 | desiredHeight == -1) | |
429 | { | |
430 | // Try loading a large icon first | |
431 | if ( ::ExtractIconEx(nameReal, iconIndex, &hicon, NULL, 1) == 1) | |
432 | { | |
433 | } | |
434 | // Then try loading a small icon | |
435 | else if ( ::ExtractIconEx(nameReal, iconIndex, NULL, &hicon, 1) == 1) | |
436 | { | |
437 | } | |
438 | } | |
439 | else | |
440 | #endif | |
441 | // were we asked for a large icon? | |
442 | if ( desiredWidth == ::GetSystemMetrics(SM_CXICON) && | |
443 | desiredHeight == ::GetSystemMetrics(SM_CYICON) ) | |
444 | { | |
445 | // get the specified large icon from file | |
446 | if ( !::ExtractIconEx(nameReal, iconIndex, &hicon, NULL, 1) ) | |
447 | { | |
448 | // it is not an error, but it might still be useful to be informed | |
449 | // about it optionally | |
450 | wxLogTrace(_T("iconload"), | |
451 | _T("No large icons found in the file '%s'."), | |
452 | name.c_str()); | |
453 | } | |
454 | } | |
455 | else if ( desiredWidth == ::GetSystemMetrics(SM_CXSMICON) && | |
456 | desiredHeight == ::GetSystemMetrics(SM_CYSMICON) ) | |
457 | { | |
458 | // get the specified small icon from file | |
459 | if ( !::ExtractIconEx(nameReal, iconIndex, NULL, &hicon, 1) ) | |
460 | { | |
461 | wxLogTrace(_T("iconload"), | |
462 | _T("No small icons found in the file '%s'."), | |
463 | name.c_str()); | |
464 | } | |
465 | } | |
466 | //else: not standard size, load below | |
467 | ||
468 | #ifndef __WXWINCE__ | |
469 | if ( !hicon ) | |
470 | { | |
471 | // take any size icon from the file by index | |
472 | hicon = ::ExtractIcon(wxGetInstance(), nameReal, iconIndex); | |
473 | } | |
474 | #endif | |
475 | ||
476 | if ( !hicon ) | |
477 | { | |
478 | wxLogSysError(_T("Failed to load icon from the file '%s'"), | |
479 | name.c_str()); | |
480 | ||
481 | return false; | |
482 | } | |
483 | ||
484 | size = wxGetHiconSize(hicon); | |
485 | ||
486 | if ( (desiredWidth != -1 && desiredWidth != size.x) || | |
487 | (desiredHeight != -1 && desiredHeight != size.y) ) | |
488 | { | |
489 | wxLogTrace(_T("iconload"), | |
490 | _T("Returning false from wxICOFileHandler::Load because of the size mismatch: actual (%d, %d), requested (%d, %d)"), | |
491 | size.x, size.y, | |
492 | desiredWidth, desiredHeight); | |
493 | ||
494 | ::DestroyIcon(hicon); | |
495 | ||
496 | return false; | |
497 | } | |
498 | ||
499 | icon->SetHICON((WXHICON)hicon); | |
500 | icon->SetSize(size.x, size.y); | |
501 | ||
502 | return icon->Ok(); | |
503 | } | |
504 | ||
505 | bool wxICOResourceHandler::LoadIcon(wxIcon *icon, | |
506 | const wxString& name, | |
507 | long WXUNUSED(flags), | |
508 | int desiredWidth, int desiredHeight) | |
509 | { | |
510 | HICON hicon; | |
511 | ||
512 | // do we need the icon of the specific size or would any icon do? | |
513 | bool hasSize = desiredWidth != -1 || desiredHeight != -1; | |
514 | ||
515 | wxASSERT_MSG( !hasSize || (desiredWidth != -1 && desiredHeight != -1), | |
516 | _T("width and height should be either both -1 or not") ); | |
517 | ||
518 | // try to load the icon from this program first to allow overriding the | |
519 | // standard icons (although why one would want to do it considering that | |
520 | // we already have wxApp::GetStdIcon() is unclear) | |
521 | ||
522 | // note that we can't just always call LoadImage() because it seems to do | |
523 | // some icon rescaling internally which results in very ugly 16x16 icons | |
524 | if ( hasSize ) | |
525 | { | |
526 | hicon = (HICON)::LoadImage(wxGetInstance(), name, IMAGE_ICON, | |
527 | desiredWidth, desiredHeight, | |
528 | LR_DEFAULTCOLOR); | |
529 | } | |
530 | else | |
531 | { | |
532 | hicon = ::LoadIcon(wxGetInstance(), name); | |
533 | } | |
534 | ||
535 | // next check if it's not a standard icon | |
536 | #ifndef __WXWINCE__ | |
537 | if ( !hicon && !hasSize ) | |
538 | { | |
539 | static const struct | |
540 | { | |
541 | const wxChar *name; | |
542 | LPTSTR id; | |
543 | } stdIcons[] = | |
544 | { | |
545 | { wxT("wxICON_QUESTION"), IDI_QUESTION }, | |
546 | { wxT("wxICON_WARNING"), IDI_EXCLAMATION }, | |
547 | { wxT("wxICON_ERROR"), IDI_HAND }, | |
548 | { wxT("wxICON_INFORMATION"), IDI_ASTERISK }, | |
549 | }; | |
550 | ||
551 | for ( size_t nIcon = 0; !hicon && nIcon < WXSIZEOF(stdIcons); nIcon++ ) | |
552 | { | |
553 | if ( name == stdIcons[nIcon].name ) | |
554 | { | |
555 | hicon = ::LoadIcon((HINSTANCE)NULL, stdIcons[nIcon].id); | |
556 | } | |
557 | } | |
558 | } | |
559 | #endif | |
560 | ||
561 | wxSize size = wxGetHiconSize(hicon); | |
562 | icon->SetSize(size.x, size.y); | |
563 | ||
564 | icon->SetHICON((WXHICON)hicon); | |
565 | ||
566 | return icon->Ok(); | |
567 | } | |
568 | ||
569 | // ---------------------------------------------------------------------------- | |
570 | // private functions | |
571 | // ---------------------------------------------------------------------------- | |
572 | ||
573 | wxSize wxGetHiconSize(HICON hicon) | |
574 | { | |
575 | // default icon size on this hardware | |
576 | // usually 32x32 but can be other (smaller) on pocket devices | |
577 | wxSize size(::GetSystemMetrics(SM_CXICON), ::GetSystemMetrics(SM_CYICON)); | |
578 | ||
579 | #ifndef __WXWINCE__ | |
580 | if ( hicon && wxGetOsVersion() != wxWIN32S ) | |
581 | { | |
582 | ICONINFO info; | |
583 | if ( !::GetIconInfo(hicon, &info) ) | |
584 | { | |
585 | wxLogLastError(wxT("GetIconInfo")); | |
586 | } | |
587 | else | |
588 | { | |
589 | HBITMAP hbmp = info.hbmMask; | |
590 | if ( hbmp ) | |
591 | { | |
592 | BITMAP bm; | |
593 | if ( ::GetObject(hbmp, sizeof(BITMAP), (LPSTR) &bm) ) | |
594 | { | |
595 | size = wxSize(bm.bmWidth, bm.bmHeight); | |
596 | } | |
597 | ||
598 | ::DeleteObject(info.hbmMask); | |
599 | } | |
600 | if ( info.hbmColor ) | |
601 | ::DeleteObject(info.hbmColor); | |
602 | } | |
603 | } | |
604 | #else | |
605 | wxUnusedVar(hicon); | |
606 | #endif | |
607 | return size; | |
608 | } | |
609 | ||
610 | #endif // __WXMICROWIN__ | |
611 |