1 ////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/bitmap.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/bitmap.h"
35 #include "wx/palette.h"
36 #include "wx/dcmemory.h"
42 #include "wx/msw/private.h"
43 #include "wx/msw/dc.h"
46 #include "wx/msw/dib.h"
49 #ifdef wxHAS_RAW_BITMAP
50 #include "wx/rawbmp.h"
53 // missing from mingw32 header
55 #define CLR_INVALID ((COLORREF)-1)
56 #endif // no CLR_INVALID
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 class WXDLLEXPORT wxBitmapRefData
: public wxGDIImageRefData
66 wxBitmapRefData(const wxBitmapRefData
& data
);
67 virtual ~wxBitmapRefData() { Free(); }
71 // set the mask object to use as the mask, we take ownership of it
72 void SetMask(wxMask
*mask
)
78 // set the HBITMAP to use as the mask
79 void SetMask(HBITMAP hbmpMask
)
81 SetMask(new wxMask((WXHBITMAP
)hbmpMask
));
85 wxMask
*GetMask() const { return m_bitmapMask
; }
89 wxPalette m_bitmapPalette
;
90 #endif // wxUSE_PALETTE
96 // this field is solely for error checking: we detect selecting a bitmap
97 // into more than one DC at once or deleting a bitmap still selected into a
98 // DC (both are serious programming errors under Windows)
100 #endif // __WXDEBUG__
103 // when GetRawData() is called for a DDB we need to convert it to a DIB
104 // first to be able to provide direct access to it and we cache that DIB
105 // here and convert it back to DDB when UngetRawData() is called
109 // true if we have alpha transparency info and can be drawn using
113 // true if our HBITMAP is a DIB section, false if it is a DDB
117 // optional mask for transparent drawing
118 wxMask
*m_bitmapMask
;
122 wxBitmapRefData
& operator=(const wxBitmapRefData
&);
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
130 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
132 IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler
, wxObject
)
134 // ============================================================================
136 // ============================================================================
138 // ----------------------------------------------------------------------------
140 // ----------------------------------------------------------------------------
142 // decide whether we should create a DIB or a DDB for the given parameters
144 // NB: we always use DIBs under Windows CE as this is much simpler (even if
145 // also less efficient...) and we obviously can't use them if there is no
146 // DIB support compiled in at all
148 static inline bool wxShouldCreateDIB(int, int, int, WXHDC
) { return true; }
150 #define ALWAYS_USE_DIB
152 // no sense in defining wxShouldCreateDIB() as we can't compile code
153 // executed if it is true, so we have to use #if's anyhow
154 #define NEVER_USE_DIB
155 #else // wxUSE_WXDIB && !__WXWINCE__
156 static inline bool wxShouldCreateDIB(int w
, int h
, int d
, WXHDC hdc
)
158 // here is the logic:
160 // (a) if hdc is specified, the caller explicitly wants DDB
161 // (b) otherwise, create a DIB if depth >= 24 (we don't support 16bpp
162 // or less DIBs anyhow)
163 // (c) finally, create DIBs under Win9x even if the depth hasn't been
164 // explicitly specified but the current display depth is 24 or
165 // more and the image is "big", i.e. > 16Mb which is the
166 // theoretical limit for DDBs under Win9x
168 // consequences (all of which seem to make sense):
170 // (i) by default, DDBs are created (depth == -1 usually)
171 // (ii) DIBs can be created by explicitly specifying the depth
172 // (iii) using a DC always forces creating a DDB
176 wxDIB::GetLineSize(w
, wxDisplayDepth())*h
> 16*1024*1024));
179 #define SOMETIMES_USE_DIB
180 #endif // different DIB usage scenarious
182 // ----------------------------------------------------------------------------
184 // ----------------------------------------------------------------------------
186 wxBitmapRefData::wxBitmapRefData()
189 m_selectedInto
= NULL
;
193 m_hBitmap
= (WXHBITMAP
) NULL
;
202 wxBitmapRefData::wxBitmapRefData(const wxBitmapRefData
& data
)
203 : wxGDIImageRefData(data
)
206 m_selectedInto
= NULL
;
209 // (deep) copy the mask if present
211 if (data
.m_bitmapMask
)
212 m_bitmapMask
= new wxMask(*data
.m_bitmapMask
);
214 // FIXME: we don't copy m_hBitmap currently but we should, see wxBitmap::
217 wxASSERT_MSG( !data
.m_isDIB
,
218 _T("can't copy bitmap locked for raw access!") );
221 m_hasAlpha
= data
.m_hasAlpha
;
224 void wxBitmapRefData::Free()
226 wxASSERT_MSG( !m_selectedInto
,
227 wxT("deleting bitmap still selected into wxMemoryDC") );
230 wxASSERT_MSG( !m_dib
, _T("forgot to call wxBitmap::UngetRawData()!") );
235 if ( !::DeleteObject((HBITMAP
)m_hBitmap
) )
237 wxLogLastError(wxT("DeleteObject(hbitmap)"));
245 // ----------------------------------------------------------------------------
247 // ----------------------------------------------------------------------------
249 wxGDIImageRefData
*wxBitmap::CreateData() const
251 return new wxBitmapRefData
;
254 wxGDIRefData
*wxBitmap::CloneGDIRefData(const wxGDIRefData
*dataOrig
) const
256 const wxBitmapRefData
*
257 data
= static_cast<const wxBitmapRefData
*>(dataOrig
);
261 // FIXME: this method is backwards, it should just create a new
262 // wxBitmapRefData using its copy ctor but instead it modifies this
263 // bitmap itself and then returns its m_refData -- which works, of
264 // course (except in !wxUSE_WXDIB), but is completely illogical
265 wxBitmap
*self
= const_cast<wxBitmap
*>(this);
267 wxBitmapRefData
*selfdata
;
269 // copy the other bitmap
270 if ( data
->m_hBitmap
)
272 wxDIB
dib((HBITMAP
)(data
->m_hBitmap
));
273 self
->CopyFromDIB(dib
);
275 selfdata
= static_cast<wxBitmapRefData
*>(m_refData
);
276 selfdata
->m_hasAlpha
= data
->m_hasAlpha
;
279 #endif // wxUSE_WXDIB
281 // copy the bitmap data
282 selfdata
= new wxBitmapRefData(*data
);
283 self
->m_refData
= selfdata
;
286 // copy also the mask
287 wxMask
* const maskSrc
= data
->GetMask();
290 selfdata
->SetMask(new wxMask(*maskSrc
));
296 bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage
& icon
,
297 wxBitmapTransparency transp
)
299 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
300 // it may be either HICON or HCURSOR
301 HICON hicon
= (HICON
)icon
.GetHandle();
304 if ( !::GetIconInfo(hicon
, &iconInfo
) )
306 wxLogLastError(wxT("GetIconInfo"));
311 wxBitmapRefData
*refData
= new wxBitmapRefData
;
314 int w
= icon
.GetWidth(),
315 h
= icon
.GetHeight();
317 refData
->m_width
= w
;
318 refData
->m_height
= h
;
319 refData
->m_depth
= wxDisplayDepth();
321 refData
->m_hBitmap
= (WXHBITMAP
)iconInfo
.hbmColor
;
326 wxFAIL_MSG( _T("unknown wxBitmapTransparency value") );
328 case wxBitmapTransparency_None
:
329 // nothing to do, refData->m_hasAlpha is false by default
332 case wxBitmapTransparency_Auto
:
334 // If the icon is 32 bits per pixel then it may have alpha channel
335 // data, although there are some icons that are 32 bpp but have no
336 // alpha... So convert to a DIB and manually check the 4th byte for
340 if ( ::GetObject(iconInfo
.hbmColor
, sizeof(bm
), &bm
) &&
341 (bm
.bmBitsPixel
== 32) )
343 wxDIB
dib(iconInfo
.hbmColor
);
346 const unsigned char* pixels
= dib
.GetData();
347 for (int idx
= 0; idx
< w
*h
*4; idx
+=4)
349 if (pixels
[idx
+3] != 0)
351 // If there is an alpha byte that is non-zero
352 // then set the alpha flag and stop checking
353 refData
->m_hasAlpha
= true;
361 #endif // wxUSE_WXDIB
363 case wxBitmapTransparency_Always
:
364 refData
->m_hasAlpha
= true;
368 if ( !refData
->m_hasAlpha
)
370 // the mask returned by GetIconInfo() is inverted compared to the usual
372 refData
->SetMask(wxInvertMask(iconInfo
.hbmMask
, w
, h
));
375 // delete the old one now as we don't need it any more
376 ::DeleteObject(iconInfo
.hbmMask
);
379 #else // __WXMICROWIN__ || __WXWINCE__
384 #endif // !__WXWINCE__/__WXWINCE__
387 bool wxBitmap::CopyFromCursor(const wxCursor
& cursor
, wxBitmapTransparency transp
)
394 return CopyFromIconOrCursor(cursor
, transp
);
397 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
, wxBitmapTransparency transp
)
404 return CopyFromIconOrCursor(icon
, transp
);
407 #ifndef NEVER_USE_DIB
409 bool wxBitmap::CopyFromDIB(const wxDIB
& dib
)
411 wxCHECK_MSG( dib
.IsOk(), false, _T("invalid DIB in CopyFromDIB") );
413 #ifdef SOMETIMES_USE_DIB
414 HBITMAP hbitmap
= dib
.CreateDDB();
417 #else // ALWAYS_USE_DIB
418 HBITMAP hbitmap
= ((wxDIB
&)dib
).Detach(); // const_cast
419 #endif // SOMETIMES_USE_DIB/ALWAYS_USE_DIB
423 wxBitmapRefData
*refData
= new wxBitmapRefData
;
426 refData
->m_width
= dib
.GetWidth();
427 refData
->m_height
= dib
.GetHeight();
428 refData
->m_depth
= dib
.GetDepth();
430 refData
->m_hBitmap
= (WXHBITMAP
)hbitmap
;
433 wxPalette
*palette
= dib
.CreatePalette();
436 refData
->m_bitmapPalette
= *palette
;
440 #endif // wxUSE_PALETTE
445 #endif // NEVER_USE_DIB
447 wxBitmap::~wxBitmap()
451 wxBitmap::wxBitmap(const char bits
[], int width
, int height
, int depth
)
453 #ifndef __WXMICROWIN__
454 wxBitmapRefData
*refData
= new wxBitmapRefData
;
457 refData
->m_width
= width
;
458 refData
->m_height
= height
;
459 refData
->m_depth
= depth
;
464 // we assume that it is in XBM format which is not quite the same as
465 // the format CreateBitmap() wants because the order of bytes in the
467 const size_t bytesPerLine
= (width
+ 7) / 8;
468 const size_t padding
= bytesPerLine
% 2;
469 const size_t len
= height
* ( padding
+ bytesPerLine
);
470 data
= (char *)malloc(len
);
471 const char *src
= bits
;
474 for ( int rows
= 0; rows
< height
; rows
++ )
476 for ( size_t cols
= 0; cols
< bytesPerLine
; cols
++ )
478 unsigned char val
= *src
++;
479 unsigned char reversed
= 0;
481 for ( int bits
= 0; bits
< 8; bits
++)
484 reversed
|= (unsigned char)(val
& 0x01);
496 // bits should already be in Windows standard format
497 data
= (char *)bits
; // const_cast is harmless
500 HBITMAP hbmp
= ::CreateBitmap(width
, height
, 1, depth
, data
);
503 wxLogLastError(wxT("CreateBitmap"));
511 SetHBITMAP((WXHBITMAP
)hbmp
);
515 wxBitmap::wxBitmap(int w
, int h
, int d
)
517 (void)Create(w
, h
, d
);
520 wxBitmap::wxBitmap(int w
, int h
, const wxDC
& dc
)
522 (void)Create(w
, h
, dc
);
525 wxBitmap::wxBitmap(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
527 (void)Create(data
, type
, width
, height
, depth
);
530 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
532 LoadFile(filename
, type
);
535 bool wxBitmap::Create(int width
, int height
, int depth
)
537 return DoCreate(width
, height
, depth
, 0);
540 bool wxBitmap::Create(int width
, int height
, const wxDC
& dc
)
542 wxCHECK_MSG( dc
.IsOk(), false, _T("invalid HDC in wxBitmap::Create()") );
544 const wxMSWDCImpl
*impl
= wxDynamicCast( dc
.GetImpl(), wxMSWDCImpl
);
547 return DoCreate(width
, height
, -1, impl
->GetHDC());
552 bool wxBitmap::DoCreate(int w
, int h
, int d
, WXHDC hdc
)
556 m_refData
= new wxBitmapRefData
;
558 GetBitmapData()->m_width
= w
;
559 GetBitmapData()->m_height
= h
;
561 HBITMAP hbmp
wxDUMMY_INITIALIZE(0);
563 #ifndef NEVER_USE_DIB
564 if ( wxShouldCreateDIB(w
, h
, d
, hdc
) )
568 // create DIBs without alpha channel by default
576 // don't delete the DIB section in dib object dtor
579 GetBitmapData()->m_isDIB
= true;
580 GetBitmapData()->m_depth
= d
;
583 #endif // NEVER_USE_DIB
585 #ifndef ALWAYS_USE_DIB
586 #ifndef __WXMICROWIN__
589 hbmp
= ::CreateBitmap(w
, h
, 1, d
, NULL
);
592 wxLogLastError(wxT("CreateBitmap"));
595 GetBitmapData()->m_depth
= d
;
597 else // d == 0, create bitmap compatible with the screen
598 #endif // !__WXMICROWIN__
601 hbmp
= ::CreateCompatibleBitmap(dc
, w
, h
);
604 wxLogLastError(wxT("CreateCompatibleBitmap"));
607 GetBitmapData()->m_depth
= wxDisplayDepth();
609 #endif // !ALWAYS_USE_DIB
612 SetHBITMAP((WXHBITMAP
)hbmp
);
619 // ----------------------------------------------------------------------------
620 // wxImage to/from conversions for Microwin
621 // ----------------------------------------------------------------------------
623 // Microwin versions are so different from normal ones that it really doesn't
624 // make sense to use #ifdefs inside the function bodies
625 #ifdef __WXMICROWIN__
627 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
, const wxDC
& dc
)
629 // Set this to 1 to experiment with mask code,
630 // which currently doesn't work
633 m_refData
= new wxBitmapRefData();
635 // Initial attempt at a simple-minded implementation.
636 // The bitmap will always be created at the screen depth,
637 // so the 'depth' argument is ignored.
639 HDC hScreenDC
= ::GetDC(NULL
);
640 int screenDepth
= ::GetDeviceCaps(hScreenDC
, BITSPIXEL
);
642 HBITMAP hBitmap
= ::CreateCompatibleBitmap(hScreenDC
, image
.GetWidth(), image
.GetHeight());
643 HBITMAP hMaskBitmap
= NULL
;
644 HBITMAP hOldMaskBitmap
= NULL
;
646 unsigned char maskR
= 0;
647 unsigned char maskG
= 0;
648 unsigned char maskB
= 0;
650 // printf("Created bitmap %d\n", (int) hBitmap);
653 ::ReleaseDC(NULL
, hScreenDC
);
656 HDC hMemDC
= ::CreateCompatibleDC(hScreenDC
);
658 HBITMAP hOldBitmap
= ::SelectObject(hMemDC
, hBitmap
);
659 ::ReleaseDC(NULL
, hScreenDC
);
661 // created an mono-bitmap for the possible mask
662 bool hasMask
= image
.HasMask();
667 // FIXME: we should be able to pass bpp = 1, but
668 // GdBlit can't handle a different depth
670 hMaskBitmap
= ::CreateBitmap( (WORD
)image
.GetWidth(), (WORD
)image
.GetHeight(), 1, 1, NULL
);
672 hMaskBitmap
= ::CreateCompatibleBitmap( hMemDC
, (WORD
)image
.GetWidth(), (WORD
)image
.GetHeight());
674 maskR
= image
.GetMaskRed();
675 maskG
= image
.GetMaskGreen();
676 maskB
= image
.GetMaskBlue();
684 hScreenDC
= ::GetDC(NULL
);
685 hMaskDC
= ::CreateCompatibleDC(hScreenDC
);
686 ::ReleaseDC(NULL
, hScreenDC
);
688 hOldMaskBitmap
= ::SelectObject( hMaskDC
, hMaskBitmap
);
696 for (i
= 0; i
< image
.GetWidth(); i
++)
698 for (j
= 0; j
< image
.GetHeight(); j
++)
700 unsigned char red
= image
.GetRed(i
, j
);
701 unsigned char green
= image
.GetGreen(i
, j
);
702 unsigned char blue
= image
.GetBlue(i
, j
);
704 ::SetPixel(hMemDC
, i
, j
, PALETTERGB(red
, green
, blue
));
708 // scan the bitmap for the transparent colour and set the corresponding
709 // pixels in the mask to BLACK and the rest to WHITE
710 if (maskR
== red
&& maskG
== green
&& maskB
== blue
)
711 ::SetPixel(hMaskDC
, i
, j
, PALETTERGB(0, 0, 0));
713 ::SetPixel(hMaskDC
, i
, j
, PALETTERGB(255, 255, 255));
718 ::SelectObject(hMemDC
, hOldBitmap
);
722 ::SelectObject(hMaskDC
, hOldMaskBitmap
);
725 ((wxBitmapRefData
*)m_refData
)->SetMask(hMaskBitmap
);
728 SetWidth(image
.GetWidth());
729 SetHeight(image
.GetHeight());
730 SetDepth(screenDepth
);
731 SetHBITMAP( (WXHBITMAP
) hBitmap
);
734 // Copy the palette from the source image
735 SetPalette(image
.GetPalette());
736 #endif // wxUSE_PALETTE
741 wxImage
wxBitmap::ConvertToImage() const
743 // Initial attempt at a simple-minded implementation.
744 // The bitmap will always be created at the screen depth,
745 // so the 'depth' argument is ignored.
746 // TODO: transparency (create a mask image)
750 wxFAIL_MSG( wxT("bitmap is invalid") );
756 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
758 // create an wxImage object
759 int width
= GetWidth();
760 int height
= GetHeight();
761 image
.Create( width
, height
);
762 unsigned char *data
= image
.GetData();
765 wxFAIL_MSG( wxT("could not allocate data for image") );
769 HDC hScreenDC
= ::GetDC(NULL
);
771 HDC hMemDC
= ::CreateCompatibleDC(hScreenDC
);
772 ::ReleaseDC(NULL
, hScreenDC
);
774 HBITMAP hBitmap
= (HBITMAP
) GetHBITMAP();
776 HBITMAP hOldBitmap
= ::SelectObject(hMemDC
, hBitmap
);
779 for (i
= 0; i
< GetWidth(); i
++)
781 for (j
= 0; j
< GetHeight(); j
++)
783 COLORREF color
= ::GetPixel(hMemDC
, i
, j
);
784 unsigned char red
= GetRValue(color
);
785 unsigned char green
= GetGValue(color
);
786 unsigned char blue
= GetBValue(color
);
788 image
.SetRGB(i
, j
, red
, green
, blue
);
792 ::SelectObject(hMemDC
, hOldBitmap
);
796 // Copy the palette from the source image
798 image
.SetPalette(* GetPalette());
799 #endif // wxUSE_PALETTE
804 #endif // __WXMICROWIN__
806 // ----------------------------------------------------------------------------
807 // wxImage to/from conversions
808 // ----------------------------------------------------------------------------
810 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
)
812 return CreateFromImage(image
, depth
, 0);
815 bool wxBitmap::CreateFromImage(const wxImage
& image
, const wxDC
& dc
)
817 wxCHECK_MSG( dc
.IsOk(), false,
818 _T("invalid HDC in wxBitmap::CreateFromImage()") );
820 const wxMSWDCImpl
*impl
= wxDynamicCast( dc
.GetImpl(), wxMSWDCImpl
);
823 return CreateFromImage(image
, -1, impl
->GetHDC());
830 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
, WXHDC hdc
)
832 wxCHECK_MSG( image
.Ok(), false, wxT("invalid image") );
836 // first convert the image to DIB
837 const int h
= image
.GetHeight();
838 const int w
= image
.GetWidth();
844 const bool hasAlpha
= image
.HasAlpha();
847 depth
= dib
.GetDepth();
849 // store the bitmap parameters
850 wxBitmapRefData
* const refData
= new wxBitmapRefData
;
851 refData
->m_width
= w
;
852 refData
->m_height
= h
;
853 refData
->m_hasAlpha
= hasAlpha
;
854 refData
->m_depth
= depth
;
859 // next either store DIB as is or create a DDB from it
860 HBITMAP hbitmap
wxDUMMY_INITIALIZE(0);
862 // are we going to use DIB?
864 // NB: DDBs don't support alpha so if we have alpha channel we must use DIB
865 if ( hasAlpha
|| wxShouldCreateDIB(w
, h
, depth
, hdc
) )
867 // don't delete the DIB section in dib object dtor
868 hbitmap
= dib
.Detach();
870 refData
->m_isDIB
= true;
872 #ifndef ALWAYS_USE_DIB
873 else // we need to convert DIB to DDB
875 hbitmap
= dib
.CreateDDB((HDC
)hdc
);
877 #endif // !ALWAYS_USE_DIB
879 // validate this object
880 SetHBITMAP((WXHBITMAP
)hbitmap
);
882 // finally also set the mask if we have one
883 if ( image
.HasMask() )
885 const size_t len
= 2*((w
+15)/16);
886 BYTE
*src
= image
.GetData();
887 BYTE
*data
= new BYTE
[h
*len
];
888 memset(data
, 0, h
*len
);
889 BYTE r
= image
.GetMaskRed(),
890 g
= image
.GetMaskGreen(),
891 b
= image
.GetMaskBlue();
893 for ( int y
= 0; y
< h
; y
++, dst
+= len
)
897 for ( int x
= 0; x
< w
; x
++, src
+= 3 )
899 if (src
[0] != r
|| src
[1] != g
|| src
[2] != b
)
902 if ( (mask
>>= 1) == 0 )
910 hbitmap
= ::CreateBitmap(w
, h
, 1, 1, data
);
913 wxLogLastError(_T("CreateBitmap(mask)"));
917 SetMask(new wxMask((WXHBITMAP
)hbitmap
));
926 wxImage
wxBitmap::ConvertToImage() const
928 // convert DDB to DIB
936 // and then DIB to our wxImage
937 wxImage image
= dib
.ConvertToImage();
943 // now do the same for the mask, if we have any
944 HBITMAP hbmpMask
= GetMask() ? (HBITMAP
) GetMask()->GetMaskBitmap() : NULL
;
947 wxDIB
dibMask(hbmpMask
);
948 if ( dibMask
.IsOk() )
950 // TODO: use wxRawBitmap to iterate over DIB
952 // we hard code the mask colour for now but we could also make an
953 // effort (and waste time) to choose a colour not present in the
954 // image already to avoid having to fudge the pixels below --
955 // whether it's worth to do it is unclear however
956 static const int MASK_RED
= 1;
957 static const int MASK_GREEN
= 2;
958 static const int MASK_BLUE
= 3;
959 static const int MASK_BLUE_REPLACEMENT
= 2;
961 const int h
= dibMask
.GetHeight();
962 const int w
= dibMask
.GetWidth();
963 const int bpp
= dibMask
.GetDepth();
964 const int maskBytesPerPixel
= bpp
>> 3;
965 const int maskBytesPerLine
= wxDIB::GetLineSize(w
, bpp
);
966 unsigned char *data
= image
.GetData();
968 // remember that DIBs are stored in bottom to top order
970 maskLineStart
= dibMask
.GetData() + ((h
- 1) * maskBytesPerLine
);
972 for ( int y
= 0; y
< h
; y
++, maskLineStart
-= maskBytesPerLine
)
974 // traverse one mask DIB line
975 unsigned char *mask
= maskLineStart
;
976 for ( int x
= 0; x
< w
; x
++, mask
+= maskBytesPerPixel
)
978 // should this pixel be transparent?
981 // no, check that it isn't transparent by accident
982 if ( (data
[0] == MASK_RED
) &&
983 (data
[1] == MASK_GREEN
) &&
984 (data
[2] == MASK_BLUE
) )
986 // we have to fudge the colour a bit to prevent
987 // this pixel from appearing transparent
988 data
[2] = MASK_BLUE_REPLACEMENT
;
993 else // yes, transparent pixel
996 *data
++ = MASK_GREEN
;
1002 image
.SetMaskColour(MASK_RED
, MASK_GREEN
, MASK_BLUE
);
1009 #else // !wxUSE_WXDIB
1012 wxBitmap::CreateFromImage(const wxImage
& WXUNUSED(image
),
1013 int WXUNUSED(depth
),
1014 WXHDC
WXUNUSED(hdc
))
1019 wxImage
wxBitmap::ConvertToImage() const
1024 #endif // wxUSE_WXDIB/!wxUSE_WXDIB
1026 #endif // wxUSE_IMAGE
1028 // ----------------------------------------------------------------------------
1029 // loading and saving bitmaps
1030 // ----------------------------------------------------------------------------
1032 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
1036 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
1040 m_refData
= new wxBitmapRefData
;
1042 return handler
->LoadFile(this, filename
, type
, -1, -1);
1044 #if wxUSE_IMAGE && wxUSE_WXDIB
1045 else // no bitmap handler found
1048 if ( image
.LoadFile( filename
, type
) && image
.Ok() )
1050 *this = wxBitmap(image
);
1055 #endif // wxUSE_IMAGE
1060 bool wxBitmap::Create(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
1064 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
1068 wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for type %ld defined."), type
);
1073 m_refData
= new wxBitmapRefData
;
1075 return handler
->Create(this, data
, type
, width
, height
, depth
);
1078 bool wxBitmap::SaveFile(const wxString
& filename
,
1080 const wxPalette
*palette
) const
1082 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
1086 return handler
->SaveFile(this, filename
, type
, palette
);
1088 #if wxUSE_IMAGE && wxUSE_WXDIB
1089 else // no bitmap handler found
1091 // FIXME what about palette? shouldn't we use it?
1092 wxImage image
= ConvertToImage();
1095 return image
.SaveFile(filename
, type
);
1098 #endif // wxUSE_IMAGE
1103 // ----------------------------------------------------------------------------
1104 // sub bitmap extraction
1105 // ----------------------------------------------------------------------------
1106 wxBitmap
wxBitmap::GetSubBitmap( const wxRect
& rect
) const
1109 SelectInHDC
selectSrc(dcSrc
, GetHbitmap());
1110 return GetSubBitmapOfHDC( rect
, (WXHDC
)dcSrc
);
1113 wxBitmap
wxBitmap::GetSubBitmapOfHDC( const wxRect
& rect
, WXHDC hdc
) const
1115 wxCHECK_MSG( Ok() &&
1116 (rect
.x
>= 0) && (rect
.y
>= 0) &&
1117 (rect
.x
+rect
.width
<= GetWidth()) &&
1118 (rect
.y
+rect
.height
<= GetHeight()),
1119 wxNullBitmap
, wxT("Invalid bitmap or bitmap region") );
1121 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
1122 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
1124 #ifndef __WXMICROWIN__
1125 // handle alpha channel, if any
1134 SelectInHDC
selectDst(dcDst
, GetHbitmapOf(ret
));
1138 wxLogLastError(_T("SelectObject(destBitmap)"));
1141 if ( !::BitBlt(dcDst
, 0, 0, rect
.width
, rect
.height
,
1142 (HDC
)hdc
, rect
.x
, rect
.y
, SRCCOPY
) )
1144 wxLogLastError(_T("BitBlt"));
1148 // copy mask if there is one
1151 HBITMAP hbmpMask
= ::CreateBitmap(rect
.width
, rect
.height
, 1, 1, 0);
1153 SelectInHDC
selectSrc(dcSrc
, (HBITMAP
) GetMask()->GetMaskBitmap()),
1154 selectDst(dcDst
, hbmpMask
);
1156 if ( !::BitBlt(dcDst
, 0, 0, rect
.width
, rect
.height
,
1157 dcSrc
, rect
.x
, rect
.y
, SRCCOPY
) )
1159 wxLogLastError(_T("BitBlt"));
1162 wxMask
*mask
= new wxMask((WXHBITMAP
) hbmpMask
);
1165 #endif // !__WXMICROWIN__
1170 // ----------------------------------------------------------------------------
1171 // wxBitmap accessors
1172 // ----------------------------------------------------------------------------
1175 wxPalette
* wxBitmap::GetPalette() const
1177 return GetBitmapData() ? &GetBitmapData()->m_bitmapPalette
1178 : (wxPalette
*) NULL
;
1182 wxMask
*wxBitmap::GetMask() const
1184 return GetBitmapData() ? GetBitmapData()->GetMask() : (wxMask
*) NULL
;
1187 wxBitmap
wxBitmap::GetMaskBitmap() const
1190 wxMask
*mask
= GetMask();
1192 bmp
.SetHBITMAP(mask
->GetMaskBitmap());
1198 wxDC
*wxBitmap::GetSelectedInto() const
1200 return GetBitmapData() ? GetBitmapData()->m_selectedInto
: (wxDC
*) NULL
;
1205 void wxBitmap::UseAlpha()
1207 if ( GetBitmapData() )
1208 GetBitmapData()->m_hasAlpha
= true;
1211 bool wxBitmap::HasAlpha() const
1213 return GetBitmapData() && GetBitmapData()->m_hasAlpha
;
1216 // ----------------------------------------------------------------------------
1218 // ----------------------------------------------------------------------------
1222 void wxBitmap::SetSelectedInto(wxDC
*dc
)
1224 if ( GetBitmapData() )
1225 GetBitmapData()->m_selectedInto
= dc
;
1232 void wxBitmap::SetPalette(const wxPalette
& palette
)
1236 GetBitmapData()->m_bitmapPalette
= palette
;
1239 #endif // wxUSE_PALETTE
1241 void wxBitmap::SetMask(wxMask
*mask
)
1245 GetBitmapData()->SetMask(mask
);
1248 // ----------------------------------------------------------------------------
1249 // raw bitmap access support
1250 // ----------------------------------------------------------------------------
1252 #ifdef wxHAS_RAW_BITMAP
1254 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int bpp
)
1259 // no bitmap, no data (raw or otherwise)
1263 // if we're already a DIB we can access our data directly, but if not we
1264 // need to convert this DDB to a DIB section and use it for raw access and
1265 // then convert it back
1267 if ( !GetBitmapData()->m_isDIB
)
1269 wxCHECK_MSG( !GetBitmapData()->m_dib
, NULL
,
1270 _T("GetRawData() may be called only once") );
1272 wxDIB
*dib
= new wxDIB(*this);
1280 // we'll free it in UngetRawData()
1281 GetBitmapData()->m_dib
= dib
;
1283 hDIB
= dib
->GetHandle();
1287 hDIB
= GetHbitmap();
1291 if ( ::GetObject(hDIB
, sizeof(ds
), &ds
) != sizeof(DIBSECTION
) )
1293 wxFAIL_MSG( _T("failed to get DIBSECTION from a DIB?") );
1298 // check that the bitmap is in correct format
1299 if ( ds
.dsBm
.bmBitsPixel
!= bpp
)
1301 wxFAIL_MSG( _T("incorrect bitmap type in wxBitmap::GetRawData()") );
1306 // ok, store the relevant info in wxPixelDataBase
1307 const LONG h
= ds
.dsBm
.bmHeight
;
1309 data
.m_width
= ds
.dsBm
.bmWidth
;
1312 // remember that DIBs are stored in top to bottom order!
1313 // (We can't just use ds.dsBm.bmWidthBytes here, because it isn't always a
1314 // multiple of 2, as required by the documentation. So we use the official
1315 // formula, which we already use elsewhere.)
1316 const LONG bytesPerRow
=
1317 wxDIB::GetLineSize(ds
.dsBm
.bmWidth
, ds
.dsBm
.bmBitsPixel
);
1318 data
.m_stride
= -bytesPerRow
;
1320 char *bits
= (char *)ds
.dsBm
.bmBits
;
1323 bits
+= (h
- 1)*bytesPerRow
;
1332 void wxBitmap::UngetRawData(wxPixelDataBase
& dataBase
)
1340 // invalid data, don't crash -- but don't assert neither as we're
1341 // called automatically from wxPixelDataBase dtor and so there is no
1342 // way to prevent this from happening
1346 // if we're a DDB we need to convert DIB back to DDB now to make the
1347 // changes made via raw bitmap access effective
1348 if ( !GetBitmapData()->m_isDIB
)
1350 wxDIB
*dib
= GetBitmapData()->m_dib
;
1351 GetBitmapData()->m_dib
= NULL
;
1357 #endif // wxUSE_WXDIB
1359 #endif // wxHAS_RAW_BITMAP
1361 // ----------------------------------------------------------------------------
1363 // ----------------------------------------------------------------------------
1371 wxMask::wxMask(const wxMask
&mask
)
1376 HDC srcDC
= CreateCompatibleDC(0);
1377 HDC destDC
= CreateCompatibleDC(0);
1379 // GetBitmapDimensionEx won't work if SetBitmapDimensionEx wasn't used
1380 // so we'll use GetObject() API here:
1381 if (::GetObject((HGDIOBJ
)mask
.m_maskBitmap
, sizeof(bmp
), &bmp
) == 0)
1383 wxFAIL_MSG(wxT("Cannot retrieve the dimensions of the wxMask to copy"));
1387 // create our HBITMAP
1388 int w
= bmp
.bmWidth
, h
= bmp
.bmHeight
;
1389 m_maskBitmap
= (WXHBITMAP
)CreateCompatibleBitmap(srcDC
, w
, h
);
1391 // copy the mask's HBITMAP into our HBITMAP
1392 SelectObject(srcDC
, (HBITMAP
) mask
.m_maskBitmap
);
1393 SelectObject(destDC
, (HBITMAP
) m_maskBitmap
);
1395 BitBlt(destDC
, 0, 0, w
, h
, srcDC
, 0, 0, SRCCOPY
);
1397 SelectObject(srcDC
, 0);
1399 SelectObject(destDC
, 0);
1403 // Construct a mask from a bitmap and a colour indicating
1404 // the transparent area
1405 wxMask::wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
)
1408 Create(bitmap
, colour
);
1411 // Construct a mask from a bitmap and a palette index indicating
1412 // the transparent area
1413 wxMask::wxMask(const wxBitmap
& bitmap
, int paletteIndex
)
1416 Create(bitmap
, paletteIndex
);
1419 // Construct a mask from a mono bitmap (copies the bitmap).
1420 wxMask::wxMask(const wxBitmap
& bitmap
)
1429 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1432 // Create a mask from a mono bitmap (copies the bitmap).
1433 bool wxMask::Create(const wxBitmap
& bitmap
)
1435 #ifndef __WXMICROWIN__
1436 wxCHECK_MSG( bitmap
.Ok() && bitmap
.GetDepth() == 1, false,
1437 _T("can't create mask from invalid or not monochrome bitmap") );
1441 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1445 m_maskBitmap
= (WXHBITMAP
) CreateBitmap(
1450 HDC srcDC
= CreateCompatibleDC(0);
1451 SelectObject(srcDC
, (HBITMAP
) bitmap
.GetHBITMAP());
1452 HDC destDC
= CreateCompatibleDC(0);
1453 SelectObject(destDC
, (HBITMAP
) m_maskBitmap
);
1454 BitBlt(destDC
, 0, 0, bitmap
.GetWidth(), bitmap
.GetHeight(), srcDC
, 0, 0, SRCCOPY
);
1455 SelectObject(srcDC
, 0);
1457 SelectObject(destDC
, 0);
1461 wxUnusedVar(bitmap
);
1466 // Create a mask from a bitmap and a palette index indicating
1467 // the transparent area
1468 bool wxMask::Create(const wxBitmap
& bitmap
, int paletteIndex
)
1472 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1477 if (bitmap
.Ok() && bitmap
.GetPalette()->Ok())
1479 unsigned char red
, green
, blue
;
1480 if (bitmap
.GetPalette()->GetRGB(paletteIndex
, &red
, &green
, &blue
))
1482 wxColour
transparentColour(red
, green
, blue
);
1483 return Create(bitmap
, transparentColour
);
1486 #endif // wxUSE_PALETTE
1491 // Create a mask from a bitmap and a colour indicating
1492 // the transparent area
1493 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1495 #ifndef __WXMICROWIN__
1496 wxCHECK_MSG( bitmap
.Ok(), false, _T("invalid bitmap in wxMask::Create") );
1500 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1504 int width
= bitmap
.GetWidth(),
1505 height
= bitmap
.GetHeight();
1507 // scan the bitmap for the transparent colour and set the corresponding
1508 // pixels in the mask to BLACK and the rest to WHITE
1509 COLORREF maskColour
= wxColourToPalRGB(colour
);
1510 m_maskBitmap
= (WXHBITMAP
)::CreateBitmap(width
, height
, 1, 1, 0);
1512 HDC srcDC
= ::CreateCompatibleDC(NULL
);
1513 HDC destDC
= ::CreateCompatibleDC(NULL
);
1514 if ( !srcDC
|| !destDC
)
1516 wxLogLastError(wxT("CreateCompatibleDC"));
1521 // SelectObject() will fail
1522 wxASSERT_MSG( !bitmap
.GetSelectedInto(),
1523 _T("bitmap can't be selected in another DC") );
1525 HGDIOBJ hbmpSrcOld
= ::SelectObject(srcDC
, GetHbitmapOf(bitmap
));
1528 wxLogLastError(wxT("SelectObject"));
1533 HGDIOBJ hbmpDstOld
= ::SelectObject(destDC
, (HBITMAP
)m_maskBitmap
);
1536 wxLogLastError(wxT("SelectObject"));
1543 // this will create a monochrome bitmap with 0 points for the pixels
1544 // which have the same value as the background colour and 1 for the
1546 ::SetBkColor(srcDC
, maskColour
);
1547 ::BitBlt(destDC
, 0, 0, width
, height
, srcDC
, 0, 0, NOTSRCCOPY
);
1550 ::SelectObject(srcDC
, hbmpSrcOld
);
1552 ::SelectObject(destDC
, hbmpDstOld
);
1556 #else // __WXMICROWIN__
1557 wxUnusedVar(bitmap
);
1558 wxUnusedVar(colour
);
1560 #endif // __WXMICROWIN__/!__WXMICROWIN__
1563 // ----------------------------------------------------------------------------
1565 // ----------------------------------------------------------------------------
1567 bool wxBitmapHandler::Create(wxGDIImage
*image
,
1570 int width
, int height
, int depth
)
1572 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1574 return bitmap
&& Create(bitmap
, data
, type
, width
, height
, depth
);
1577 bool wxBitmapHandler::Load(wxGDIImage
*image
,
1578 const wxString
& name
,
1580 int width
, int height
)
1582 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1584 return bitmap
&& LoadFile(bitmap
, name
, type
, width
, height
);
1587 bool wxBitmapHandler::Save(const wxGDIImage
*image
,
1588 const wxString
& name
,
1589 wxBitmapType type
) const
1591 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1593 return bitmap
&& SaveFile(bitmap
, name
, type
);
1596 bool wxBitmapHandler::Create(wxBitmap
*WXUNUSED(bitmap
),
1597 const void* WXUNUSED(data
),
1598 wxBitmapType
WXUNUSED(type
),
1599 int WXUNUSED(width
),
1600 int WXUNUSED(height
),
1601 int WXUNUSED(depth
))
1606 bool wxBitmapHandler::LoadFile(wxBitmap
*WXUNUSED(bitmap
),
1607 const wxString
& WXUNUSED(name
),
1608 wxBitmapType
WXUNUSED(type
),
1609 int WXUNUSED(desiredWidth
),
1610 int WXUNUSED(desiredHeight
))
1615 bool wxBitmapHandler::SaveFile(const wxBitmap
*WXUNUSED(bitmap
),
1616 const wxString
& WXUNUSED(name
),
1617 wxBitmapType
WXUNUSED(type
),
1618 const wxPalette
*WXUNUSED(palette
)) const
1623 // ----------------------------------------------------------------------------
1624 // global helper functions implemented here
1625 // ----------------------------------------------------------------------------
1627 // helper of wxBitmapToHICON/HCURSOR
1629 HICON
wxBitmapToIconOrCursor(const wxBitmap
& bmp
,
1636 // we can't create an icon/cursor form nothing
1640 if ( bmp
.HasAlpha() )
1642 // Create an empty mask bitmap.
1643 // it doesn't seem to work if we mess with the mask at all.
1644 HBITMAP hMonoBitmap
= CreateBitmap(bmp
.GetWidth(),bmp
.GetHeight(),1,1,NULL
);
1647 wxZeroMemory(iconInfo
);
1648 iconInfo
.fIcon
= iconWanted
; // do we want an icon or a cursor?
1651 iconInfo
.xHotspot
= hotSpotX
;
1652 iconInfo
.yHotspot
= hotSpotY
;
1655 iconInfo
.hbmMask
= hMonoBitmap
;
1656 iconInfo
.hbmColor
= GetHbitmapOf(bmp
);
1658 HICON hicon
= ::CreateIconIndirect(&iconInfo
);
1660 ::DeleteObject(hMonoBitmap
);
1665 wxMask
* mask
= bmp
.GetMask();
1669 // we must have a mask for an icon, so even if it's probably incorrect,
1670 // do create it (grey is the "standard" transparent colour)
1671 mask
= new wxMask(bmp
, *wxLIGHT_GREY
);
1675 wxZeroMemory(iconInfo
);
1676 iconInfo
.fIcon
= iconWanted
; // do we want an icon or a cursor?
1679 iconInfo
.xHotspot
= hotSpotX
;
1680 iconInfo
.yHotspot
= hotSpotY
;
1683 iconInfo
.hbmMask
= wxInvertMask((HBITMAP
)mask
->GetMaskBitmap());
1684 iconInfo
.hbmColor
= GetHbitmapOf(bmp
);
1686 // black out the transparent area to preserve background colour, because
1687 // Windows blits the original bitmap using SRCINVERT (XOR) after applying
1688 // the mask to the dest rect.
1690 MemoryHDC dcSrc
, dcDst
;
1691 SelectInHDC
selectMask(dcSrc
, (HBITMAP
)mask
->GetMaskBitmap()),
1692 selectBitmap(dcDst
, iconInfo
.hbmColor
);
1694 if ( !::BitBlt(dcDst
, 0, 0, bmp
.GetWidth(), bmp
.GetHeight(),
1695 dcSrc
, 0, 0, SRCAND
) )
1697 wxLogLastError(_T("BitBlt"));
1701 HICON hicon
= ::CreateIconIndirect(&iconInfo
);
1703 if ( !bmp
.GetMask() && !bmp
.HasAlpha() )
1705 // we created the mask, now delete it
1709 // delete the inverted mask bitmap we created as well
1710 ::DeleteObject(iconInfo
.hbmMask
);
1715 HICON
wxBitmapToHICON(const wxBitmap
& bmp
)
1717 return wxBitmapToIconOrCursor(bmp
, true, 0, 0);
1720 HCURSOR
wxBitmapToHCURSOR(const wxBitmap
& bmp
, int hotSpotX
, int hotSpotY
)
1722 return (HCURSOR
)wxBitmapToIconOrCursor(bmp
, false, hotSpotX
, hotSpotY
);
1725 HBITMAP
wxInvertMask(HBITMAP hbmpMask
, int w
, int h
)
1727 #ifndef __WXMICROWIN__
1728 wxCHECK_MSG( hbmpMask
, 0, _T("invalid bitmap in wxInvertMask") );
1730 // get width/height from the bitmap if not given
1734 ::GetObject(hbmpMask
, sizeof(BITMAP
), (LPVOID
)&bm
);
1739 HDC hdcSrc
= ::CreateCompatibleDC(NULL
);
1740 HDC hdcDst
= ::CreateCompatibleDC(NULL
);
1741 if ( !hdcSrc
|| !hdcDst
)
1743 wxLogLastError(wxT("CreateCompatibleDC"));
1746 HBITMAP hbmpInvMask
= ::CreateBitmap(w
, h
, 1, 1, 0);
1749 wxLogLastError(wxT("CreateBitmap"));
1752 HGDIOBJ srcTmp
= ::SelectObject(hdcSrc
, hbmpMask
);
1753 HGDIOBJ dstTmp
= ::SelectObject(hdcDst
, hbmpInvMask
);
1754 if ( !::BitBlt(hdcDst
, 0, 0, w
, h
,
1758 wxLogLastError(wxT("BitBlt"));
1762 SelectObject(hdcSrc
,srcTmp
);
1763 SelectObject(hdcDst
,dstTmp
);