1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/gdiimage.cpp
3 // Purpose: wxGDIImage implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/string.h"
31 #include "wx/bitmap.h"
34 #include "wx/msw/private.h"
36 #include "wx/msw/gdiimage.h"
39 #include "wx/msw/dib.h"
42 // By default, use PNG resource handler if we can, i.e. have support for
43 // loading PNG images in the library. This symbol could be predefined as 0 to
44 // avoid doing this if anybody ever needs to do it for some reason.
45 #if !defined(wxUSE_PNG_RESOURCE_HANDLER) && wxUSE_LIBPNG && wxUSE_IMAGE
46 #define wxUSE_PNG_RESOURCE_HANDLER 1
49 #if wxUSE_PNG_RESOURCE_HANDLER
51 #include "wx/utils.h" // For wxLoadUserResource()
61 #include "wx/listimpl.cpp"
62 WX_DEFINE_LIST(wxGDIImageHandlerList
)
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 #ifndef __WXMICROWIN__
70 // all image handlers are declared/defined in this file because the outside
71 // world doesn't have to know about them (but only about wxBITMAP_TYPE_XXX ids)
73 class WXDLLEXPORT wxBMPFileHandler
: public wxBitmapHandler
76 wxBMPFileHandler() : wxBitmapHandler(wxT("Windows bitmap file"), wxT("bmp"),
81 virtual bool LoadFile(wxBitmap
*bitmap
,
82 const wxString
& name
, wxBitmapType flags
,
83 int desiredWidth
, int desiredHeight
);
84 virtual bool SaveFile(const wxBitmap
*bitmap
,
85 const wxString
& name
, wxBitmapType type
,
86 const wxPalette
*palette
= NULL
) const;
89 DECLARE_DYNAMIC_CLASS(wxBMPFileHandler
)
92 class WXDLLEXPORT wxBMPResourceHandler
: public wxBitmapHandler
95 wxBMPResourceHandler() : wxBitmapHandler(wxT("Windows bitmap resource"),
97 wxBITMAP_TYPE_BMP_RESOURCE
)
101 virtual bool LoadFile(wxBitmap
*bitmap
,
102 const wxString
& name
, wxBitmapType flags
,
103 int desiredWidth
, int desiredHeight
);
106 DECLARE_DYNAMIC_CLASS(wxBMPResourceHandler
)
109 class WXDLLEXPORT wxIconHandler
: public wxGDIImageHandler
112 wxIconHandler(const wxString
& name
, const wxString
& ext
, wxBitmapType type
)
113 : wxGDIImageHandler(name
, ext
, type
)
117 // creating and saving icons is not supported
118 virtual bool Create(wxGDIImage
*WXUNUSED(image
),
119 const void* WXUNUSED(data
),
120 wxBitmapType
WXUNUSED(flags
),
122 int WXUNUSED(height
),
123 int WXUNUSED(depth
) = 1)
128 virtual bool Save(const wxGDIImage
*WXUNUSED(image
),
129 const wxString
& WXUNUSED(name
),
130 wxBitmapType
WXUNUSED(type
)) const
135 virtual bool Load(wxGDIImage
*image
,
136 const wxString
& name
,
138 int desiredWidth
, int desiredHeight
)
140 wxIcon
*icon
= wxDynamicCast(image
, wxIcon
);
141 wxCHECK_MSG( icon
, false, wxT("wxIconHandler only works with icons") );
143 return LoadIcon(icon
, name
, flags
, desiredWidth
, desiredHeight
);
147 virtual bool LoadIcon(wxIcon
*icon
,
148 const wxString
& name
, wxBitmapType flags
,
149 int desiredWidth
= -1, int desiredHeight
= -1) = 0;
152 class WXDLLEXPORT wxICOFileHandler
: public wxIconHandler
155 wxICOFileHandler() : wxIconHandler(wxT("ICO icon file"),
162 virtual bool LoadIcon(wxIcon
*icon
,
163 const wxString
& name
, wxBitmapType flags
,
164 int desiredWidth
= -1, int desiredHeight
= -1);
167 DECLARE_DYNAMIC_CLASS(wxICOFileHandler
)
170 class WXDLLEXPORT wxICOResourceHandler
: public wxIconHandler
173 wxICOResourceHandler() : wxIconHandler(wxT("ICO resource"),
175 wxBITMAP_TYPE_ICO_RESOURCE
)
180 virtual bool LoadIcon(wxIcon
*icon
,
181 const wxString
& name
, wxBitmapType flags
,
182 int desiredWidth
= -1, int desiredHeight
= -1);
185 DECLARE_DYNAMIC_CLASS(wxICOResourceHandler
)
188 #if wxUSE_PNG_RESOURCE_HANDLER
190 class WXDLLEXPORT wxPNGResourceHandler
: public wxBitmapHandler
193 wxPNGResourceHandler() : wxBitmapHandler(wxS("Windows PNG resource"),
195 wxBITMAP_TYPE_PNG_RESOURCE
)
199 virtual bool LoadFile(wxBitmap
*bitmap
,
200 const wxString
& name
, wxBitmapType flags
,
201 int desiredWidth
, int desiredHeight
);
204 wxDECLARE_DYNAMIC_CLASS(wxPNGResourceHandler
);
207 #endif // wxUSE_PNG_RESOURCE_HANDLER
209 // ----------------------------------------------------------------------------
211 // ----------------------------------------------------------------------------
213 IMPLEMENT_DYNAMIC_CLASS(wxBMPFileHandler
, wxBitmapHandler
)
214 IMPLEMENT_DYNAMIC_CLASS(wxBMPResourceHandler
, wxBitmapHandler
)
215 IMPLEMENT_DYNAMIC_CLASS(wxICOFileHandler
, wxObject
)
216 IMPLEMENT_DYNAMIC_CLASS(wxICOResourceHandler
, wxObject
)
217 #if wxUSE_PNG_RESOURCE_HANDLER
218 IMPLEMENT_DYNAMIC_CLASS(wxPNGResourceHandler
, wxBitmapHandler
)
219 #endif // wxUSE_PNG_RESOURCE_HANDLER
221 // ----------------------------------------------------------------------------
223 // ----------------------------------------------------------------------------
228 // ============================================================================
230 // ============================================================================
232 wxGDIImageHandlerList
wxGDIImage::ms_handlers
;
234 // ----------------------------------------------------------------------------
235 // wxGDIImage functions forwarded to wxGDIImageRefData
236 // ----------------------------------------------------------------------------
238 bool wxGDIImage::FreeResource(bool WXUNUSED(force
))
242 GetGDIImageData()->Free();
243 GetGDIImageData()->m_handle
= 0;
249 WXHANDLE
wxGDIImage::GetResourceHandle() const
254 // ----------------------------------------------------------------------------
255 // wxGDIImage handler stuff
256 // ----------------------------------------------------------------------------
258 void wxGDIImage::AddHandler(wxGDIImageHandler
*handler
)
260 ms_handlers
.Append(handler
);
263 void wxGDIImage::InsertHandler(wxGDIImageHandler
*handler
)
265 ms_handlers
.Insert(handler
);
268 bool wxGDIImage::RemoveHandler(const wxString
& name
)
270 wxGDIImageHandler
*handler
= FindHandler(name
);
273 ms_handlers
.DeleteObject(handler
);
280 wxGDIImageHandler
*wxGDIImage::FindHandler(const wxString
& name
)
282 wxGDIImageHandlerList::compatibility_iterator node
= ms_handlers
.GetFirst();
285 wxGDIImageHandler
*handler
= node
->GetData();
286 if ( handler
->GetName() == name
)
288 node
= node
->GetNext();
294 wxGDIImageHandler
*wxGDIImage::FindHandler(const wxString
& extension
,
297 wxGDIImageHandlerList::compatibility_iterator node
= ms_handlers
.GetFirst();
300 wxGDIImageHandler
*handler
= node
->GetData();
301 if ( (handler
->GetExtension() == extension
) &&
302 (type
== -1 || handler
->GetType() == type
) )
307 node
= node
->GetNext();
312 wxGDIImageHandler
*wxGDIImage::FindHandler(long type
)
314 wxGDIImageHandlerList::compatibility_iterator node
= ms_handlers
.GetFirst();
317 wxGDIImageHandler
*handler
= node
->GetData();
318 if ( handler
->GetType() == type
)
321 node
= node
->GetNext();
327 void wxGDIImage::CleanUpHandlers()
329 wxGDIImageHandlerList::compatibility_iterator node
= ms_handlers
.GetFirst();
332 wxGDIImageHandler
*handler
= node
->GetData();
333 wxGDIImageHandlerList::compatibility_iterator next
= node
->GetNext();
335 ms_handlers
.Erase( node
);
340 void wxGDIImage::InitStandardHandlers()
342 #ifndef __WXMICROWIN__
343 AddHandler(new wxBMPResourceHandler
);
344 AddHandler(new wxBMPFileHandler
);
345 AddHandler(new wxICOFileHandler
);
346 AddHandler(new wxICOResourceHandler
);
347 #if wxUSE_PNG_RESOURCE_HANDLER
348 AddHandler(new wxPNGResourceHandler
);
349 #endif // wxUSE_PNG_RESOURCE_HANDLER
353 #ifndef __WXMICROWIN__
355 // ----------------------------------------------------------------------------
357 // ----------------------------------------------------------------------------
359 bool wxBMPResourceHandler::LoadFile(wxBitmap
*bitmap
,
360 const wxString
& name
, wxBitmapType
WXUNUSED(flags
),
361 int WXUNUSED(desiredWidth
),
362 int WXUNUSED(desiredHeight
))
364 // TODO: load colourmap.
365 bitmap
->SetHBITMAP((WXHBITMAP
)::LoadBitmap(wxGetInstance(), name
.t_str()));
367 if ( !bitmap
->IsOk() )
369 // it's probably not found
370 wxLogError(wxT("Can't load bitmap '%s' from resources! Check .rc file."),
377 if ( !::GetObject(GetHbitmapOf(*bitmap
), sizeof(BITMAP
), (LPSTR
) &bm
) )
379 wxLogLastError(wxT("GetObject(HBITMAP)"));
382 bitmap
->SetWidth(bm
.bmWidth
);
383 bitmap
->SetHeight(bm
.bmHeight
);
384 bitmap
->SetDepth(bm
.bmBitsPixel
);
386 // use 0xc0c0c0 as transparent colour by default
387 bitmap
->SetMask(new wxMask(*bitmap
, *wxLIGHT_GREY
));
392 bool wxBMPFileHandler::LoadFile(wxBitmap
*bitmap
,
393 const wxString
& name
, wxBitmapType
WXUNUSED(flags
),
394 int WXUNUSED(desiredWidth
),
395 int WXUNUSED(desiredHeight
))
398 wxCHECK_MSG( bitmap
, false, wxT("NULL bitmap in LoadFile") );
402 return dib
.IsOk() && bitmap
->CopyFromDIB(dib
);
408 bool wxBMPFileHandler::SaveFile(const wxBitmap
*bitmap
,
409 const wxString
& name
,
410 wxBitmapType
WXUNUSED(type
),
411 const wxPalette
* WXUNUSED(pal
)) const
414 wxCHECK_MSG( bitmap
, false, wxT("NULL bitmap in SaveFile") );
418 return dib
.Save(name
);
424 // ----------------------------------------------------------------------------
426 // ----------------------------------------------------------------------------
428 bool wxICOFileHandler::LoadIcon(wxIcon
*icon
,
429 const wxString
& name
,
430 wxBitmapType
WXUNUSED(flags
),
431 int desiredWidth
, int desiredHeight
)
437 // Parse the filename: it may be of the form "filename;n" in order to
438 // specify the nth icon in the file.
440 // For the moment, ignore the issue of possible semicolons in the
443 wxString
nameReal(name
);
444 wxString strIconIndex
= name
.AfterLast(wxT(';'));
445 if (strIconIndex
!= name
)
447 iconIndex
= wxAtoi(strIconIndex
);
448 nameReal
= name
.BeforeLast(wxT(';'));
452 // If we don't know what size icon we're looking for,
453 // try to find out what's there.
454 // Unfortunately this doesn't work, because ExtractIconEx
455 // will scale the icon to the 'desired' size, even if that
456 // size of icon isn't explicitly stored. So we would have
457 // to parse the icon file outselves.
458 if ( desiredWidth
== -1 &&
461 // Try loading a large icon first
462 if ( ::ExtractIconEx(nameReal
, iconIndex
, &hicon
, NULL
, 1) == 1)
465 // Then try loading a small icon
466 else if ( ::ExtractIconEx(nameReal
, iconIndex
, NULL
, &hicon
, 1) == 1)
472 // were we asked for a large icon?
473 if ( desiredWidth
== ::GetSystemMetrics(SM_CXICON
) &&
474 desiredHeight
== ::GetSystemMetrics(SM_CYICON
) )
476 // get the specified large icon from file
477 if ( !::ExtractIconEx(nameReal
.t_str(), iconIndex
, &hicon
, NULL
, 1) )
479 // it is not an error, but it might still be useful to be informed
480 // about it optionally
481 wxLogTrace(wxT("iconload"),
482 wxT("No large icons found in the file '%s'."),
486 else if ( desiredWidth
== ::GetSystemMetrics(SM_CXSMICON
) &&
487 desiredHeight
== ::GetSystemMetrics(SM_CYSMICON
) )
489 // get the specified small icon from file
490 if ( !::ExtractIconEx(nameReal
.t_str(), iconIndex
, NULL
, &hicon
, 1) )
492 wxLogTrace(wxT("iconload"),
493 wxT("No small icons found in the file '%s'."),
497 //else: not standard size, load below
502 // take any size icon from the file by index
503 hicon
= ::ExtractIcon(wxGetInstance(), nameReal
.t_str(), iconIndex
);
509 wxLogSysError(wxT("Failed to load icon from the file '%s'"),
515 if ( !icon
->CreateFromHICON(hicon
) )
518 if ( (desiredWidth
!= -1 && desiredWidth
!= icon
->GetWidth()) ||
519 (desiredHeight
!= -1 && desiredHeight
!= icon
->GetHeight()) )
521 wxLogTrace(wxT("iconload"),
522 wxT("Returning false from wxICOFileHandler::Load because of the size mismatch: actual (%d, %d), requested (%d, %d)"),
523 icon
->GetWidth(), icon
->GetHeight(),
524 desiredWidth
, desiredHeight
);
534 bool wxICOResourceHandler::LoadIcon(wxIcon
*icon
,
535 const wxString
& name
,
536 wxBitmapType
WXUNUSED(flags
),
537 int desiredWidth
, int desiredHeight
)
541 // do we need the icon of the specific size or would any icon do?
542 bool hasSize
= desiredWidth
!= -1 || desiredHeight
!= -1;
544 wxASSERT_MSG( !hasSize
|| (desiredWidth
!= -1 && desiredHeight
!= -1),
545 wxT("width and height should be either both -1 or not") );
547 // try to load the icon from this program first to allow overriding the
548 // standard icons (although why one would want to do it considering that
549 // we already have wxApp::GetStdIcon() is unclear)
551 // note that we can't just always call LoadImage() because it seems to do
552 // some icon rescaling internally which results in very ugly 16x16 icons
555 hicon
= (HICON
)::LoadImage(wxGetInstance(), name
.t_str(), IMAGE_ICON
,
556 desiredWidth
, desiredHeight
,
561 hicon
= ::LoadIcon(wxGetInstance(), name
.t_str());
564 // next check if it's not a standard icon
566 if ( !hicon
&& !hasSize
)
574 { wxT("wxICON_QUESTION"), IDI_QUESTION
},
575 { wxT("wxICON_WARNING"), IDI_EXCLAMATION
},
576 { wxT("wxICON_ERROR"), IDI_HAND
},
577 { wxT("wxICON_INFORMATION"), IDI_ASTERISK
},
580 for ( size_t nIcon
= 0; !hicon
&& nIcon
< WXSIZEOF(stdIcons
); nIcon
++ )
582 if ( name
== stdIcons
[nIcon
].name
)
584 hicon
= ::LoadIcon((HINSTANCE
)NULL
, stdIcons
[nIcon
].id
);
591 return icon
->CreateFromHICON((WXHICON
)hicon
);
594 #if wxUSE_PNG_RESOURCE_HANDLER
596 // ----------------------------------------------------------------------------
598 // ----------------------------------------------------------------------------
600 bool wxPNGResourceHandler::LoadFile(wxBitmap
*bitmap
,
601 const wxString
& name
,
602 wxBitmapType
WXUNUSED(flags
),
603 int WXUNUSED(desiredWidth
),
604 int WXUNUSED(desiredHeight
))
606 const void* pngData
= NULL
;
609 // Currently we hardcode RCDATA resource type as this is what is usually
610 // used for the embedded images. We could allow specifying the type as part
611 // of the name in the future (e.g. "type:name" or something like this) if
613 if ( !wxLoadUserResource(&pngData
, &pngSize
,
618 // Notice that this message is not translated because only the
619 // programmer (and not the end user) can make any use of it.
620 wxLogError(wxS("Bitmap in PNG format \"%s\" not found, check ")
621 wxS("that the resource file contains \"RCDATA\" ")
622 wxS("resource with this name."),
628 *bitmap
= wxBitmap::NewFromPNGData(pngData
, pngSize
);
629 if ( !bitmap
->IsOk() )
631 wxLogError(wxS("Couldn't load resource bitmap \"%s\" as a PNG. "),
632 wxS("Have you registered PNG image handler?"),
641 #endif // wxUSE_PNG_RESOURCE_HANDLER
643 // ----------------------------------------------------------------------------
645 // ----------------------------------------------------------------------------
647 wxSize
wxGetHiconSize(HICON
WXUNUSED_IN_WINCE(hicon
))
655 if ( !::GetIconInfo(hicon
, &info
) )
657 wxLogLastError(wxT("GetIconInfo"));
661 HBITMAP hbmp
= info
.hbmMask
;
665 if ( ::GetObject(hbmp
, sizeof(BITMAP
), (LPSTR
) &bm
) )
667 size
= wxSize(bm
.bmWidth
, bm
.bmHeight
);
670 ::DeleteObject(info
.hbmMask
);
673 ::DeleteObject(info
.hbmColor
);
678 #endif // !__WXWINCE__
680 // use default icon size on this hardware
681 size
.x
= ::GetSystemMetrics(SM_CXICON
);
682 size
.y
= ::GetSystemMetrics(SM_CYICON
);
688 #endif // __WXMICROWIN__