]> git.saurik.com Git - wxWidgets.git/blame - src/msw/bitmap.cpp
There was no icon file in this example, causing compilation with VC to fail. I just...
[wxWidgets.git] / src / msw / bitmap.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: bitmap.cpp
3// Purpose: wxBitmap
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
1d792928 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
10fcf31a
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
10fcf31a 21 #pragma implementation "bitmap.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
10fcf31a 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
10fcf31a
VZ
32 #include <stdio.h>
33
34 #include "wx/list.h"
35 #include "wx/utils.h"
36 #include "wx/app.h"
37 #include "wx/palette.h"
38 #include "wx/dcmemory.h"
39 #include "wx/bitmap.h"
40 #include "wx/icon.h"
2bda0e17
KB
41#endif
42
43#include "wx/msw/private.h"
1d792928
VZ
44#include "wx/log.h"
45
2bda0e17 46#include "wx/msw/dib.h"
b75dd496 47#include "wx/image.h"
2bda0e17 48
3c1a88d8
VZ
49// missing from mingw32 header
50#ifndef CLR_INVALID
51 #define CLR_INVALID ((COLORREF)-1)
52#endif // no CLR_INVALID
53
10fcf31a
VZ
54// ----------------------------------------------------------------------------
55// macros
56// ----------------------------------------------------------------------------
57
4b7f2165
VZ
58IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject)
59IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject)
6d167489 60
4b7f2165 61IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject)
2bda0e17 62
10fcf31a
VZ
63// ============================================================================
64// implementation
65// ============================================================================
66
67// ----------------------------------------------------------------------------
68// wxBitmapRefData
69// ----------------------------------------------------------------------------
70
71wxBitmapRefData::wxBitmapRefData()
2bda0e17 72{
6d167489
VZ
73 m_quality = 0;
74 m_selectedInto = NULL;
75 m_numColors = 0;
76 m_bitmapMask = NULL;
340196c0 77 m_hBitmap = (WXHBITMAP) NULL;
2bda0e17
KB
78}
79
6d167489 80void wxBitmapRefData::Free()
2bda0e17 81{
d59ceba5
VZ
82 wxASSERT_MSG( !m_selectedInto,
83 wxT("deleting bitmap still selected into wxMemoryDC") );
2bda0e17 84
d59ceba5 85 if ( m_hBitmap)
6d167489
VZ
86 {
87 if ( !::DeleteObject((HBITMAP)m_hBitmap) )
88 {
f6bcfd97 89 wxLogLastError(wxT("DeleteObject(hbitmap)"));
6d167489
VZ
90 }
91 }
e7003166 92
6d167489
VZ
93 delete m_bitmapMask;
94 m_bitmapMask = NULL;
2bda0e17
KB
95}
96
10fcf31a 97// ----------------------------------------------------------------------------
6d167489 98// wxBitmap creation
10fcf31a
VZ
99// ----------------------------------------------------------------------------
100
4fe5383d
VZ
101// this function should be called from all wxBitmap ctors
102void wxBitmap::Init()
2bda0e17 103{
4fe5383d 104 // m_refData = NULL; done in the base class ctor
2bda0e17 105
07cf98cb
VZ
106 if ( wxTheBitmapList )
107 wxTheBitmapList->AddBitmap(this);
4fe5383d
VZ
108}
109
6d167489
VZ
110#ifdef __WIN32__
111
112bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon)
113{
114 // it may be either HICON or HCURSOR
115 HICON hicon = (HICON)icon.GetHandle();
116
117 ICONINFO iconInfo;
118 if ( !::GetIconInfo(hicon, &iconInfo) )
119 {
f6bcfd97 120 wxLogLastError(wxT("GetIconInfo"));
6d167489
VZ
121
122 return FALSE;
123 }
124
125 wxBitmapRefData *refData = new wxBitmapRefData;
126 m_refData = refData;
127
d9c8e68e
VZ
128 int w = icon.GetWidth(),
129 h = icon.GetHeight();
130
131 refData->m_width = w;
132 refData->m_height = h;
6d167489
VZ
133 refData->m_depth = wxDisplayDepth();
134
135 refData->m_hBitmap = (WXHBITMAP)iconInfo.hbmColor;
d9c8e68e
VZ
136
137 // the mask returned by GetIconInfo() is inversed compared to the usual
138 // wxWin convention
4b7f2165
VZ
139 refData->m_bitmapMask = new wxMask((WXHBITMAP)
140 wxInvertMask(iconInfo.hbmMask, w, h));
6d167489
VZ
141
142#if WXWIN_COMPATIBILITY_2
143 refData->m_ok = TRUE;
144#endif // WXWIN_COMPATIBILITY_2
145
146 return TRUE;
147}
148
149#endif // Win32
150
151bool wxBitmap::CopyFromCursor(const wxCursor& cursor)
4fe5383d
VZ
152{
153 UnRef();
07cf98cb 154
6d167489 155 if ( !cursor.Ok() )
4fe5383d 156 return FALSE;
07cf98cb 157
6d167489
VZ
158#ifdef __WIN16__
159 wxFAIL_MSG( _T("don't know how to convert cursor to bitmap") );
160
161 return FALSE;
8f177c8e 162#else
6d167489 163 return CopyFromIconOrCursor(cursor);
8f177c8e 164#endif // Win16
6d167489
VZ
165}
166
167bool wxBitmap::CopyFromIcon(const wxIcon& icon)
168{
169 UnRef();
07cf98cb 170
6d167489
VZ
171 if ( !icon.Ok() )
172 return FALSE;
4fe5383d
VZ
173
174 // GetIconInfo() doesn't exist under Win16 and I don't know any other way
175 // to create a bitmap from icon there - but using this way we won't have
176 // the mask (FIXME)
177#ifdef __WIN16__
6d167489
VZ
178 int width = icon.GetWidth(),
179 height = icon.GetHeight();
180
4fe5383d 181 // copy the icon to the bitmap
6d167489 182 ScreenHDC hdcScreen;
4fe5383d
VZ
183 HDC hdc = ::CreateCompatibleDC(hdcScreen);
184 HBITMAP hbitmap = ::CreateCompatibleBitmap(hdcScreen, width, height);
07cf98cb
VZ
185 HBITMAP hbmpOld = (HBITMAP)::SelectObject(hdc, hbitmap);
186
6d167489 187 ::DrawIcon(hdc, 0, 0, GetHiconOf(icon));
07cf98cb
VZ
188
189 ::SelectObject(hdc, hbmpOld);
190 ::DeleteDC(hdc);
4fe5383d 191
6d167489
VZ
192 wxBitmapRefData *refData = new wxBitmapRefData;
193 m_refData = refData;
4fe5383d 194
6d167489
VZ
195 refData->m_width = width;
196 refData->m_height = height;
197 refData->m_depth = wxDisplayDepth();
07cf98cb 198
6d167489 199 refData->m_hBitmap = (WXHBITMAP)hbitmap;
07cf98cb 200
6d167489
VZ
201#if WXWIN_COMPATIBILITY_2
202 refData->m_ok = TRUE;
203#endif // WXWIN_COMPATIBILITY_2
222594ea 204
4fe5383d 205 return TRUE;
6d167489
VZ
206#else // Win32
207 return CopyFromIconOrCursor(icon);
208#endif // Win16/Win32
10fcf31a
VZ
209}
210
211wxBitmap::~wxBitmap()
2bda0e17
KB
212{
213 if (wxTheBitmapList)
214 wxTheBitmapList->DeleteObject(this);
215}
216
5bd3a2da 217wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
2bda0e17 218{
4fe5383d 219 Init();
2bda0e17 220
6d167489
VZ
221 wxBitmapRefData *refData = new wxBitmapRefData;
222 m_refData = refData;
2bda0e17 223
5bd3a2da
VZ
224 refData->m_width = width;
225 refData->m_height = height;
226 refData->m_depth = depth;
6d167489
VZ
227 refData->m_numColors = 0;
228 refData->m_selectedInto = NULL;
2bda0e17 229
5bd3a2da
VZ
230 char *data;
231 if ( depth == 1 )
232 {
233 // we assume that it is in XBM format which is not quite the same as
234 // the format CreateBitmap() wants because the order of bytes in the
235 // line is inversed!
236 static const size_t bytesPerLine = (width + 7) / 8;
237 static const size_t padding = bytesPerLine % 2;
238 static const size_t len = height * ( padding + bytesPerLine );
239 data = (char *)malloc(len);
240 const char *src = bits;
241 char *dst = data;
242
243 for ( int rows = 0; rows < height; rows++ )
244 {
0765adca 245 for ( size_t cols = 0; cols < bytesPerLine; cols++ )
5bd3a2da 246 {
0765adca
VZ
247 unsigned char val = *src++;
248 unsigned char reversed = 0;
249
250 for ( int bits = 0; bits < 8; bits++)
251 {
252 reversed <<= 1;
253 reversed |= (val & 0x01);
254 val >>= 1;
255 }
256 *dst++ = reversed;
5bd3a2da
VZ
257 }
258
259 if ( padding )
260 *dst++ = 0;
5bd3a2da
VZ
261 }
262 }
263 else
264 {
265 // bits should already be in Windows standard format
266 data = (char *)bits; // const_cast is harmless
267 }
268
269 HBITMAP hbmp = ::CreateBitmap(width, height, 1, depth, data);
6d167489
VZ
270 if ( !hbmp )
271 {
f6bcfd97 272 wxLogLastError(wxT("CreateBitmap"));
6d167489 273 }
2bda0e17 274
5bd3a2da
VZ
275 if ( data != bits )
276 {
277 free(data);
278 }
279
6d167489 280 SetHBITMAP((WXHBITMAP)hbmp);
2bda0e17
KB
281}
282
2fd284a4 283// Create from XPM data
4b7f2165 284bool wxBitmap::CreateFromXpm(const char **data)
2fd284a4 285{
4fe5383d
VZ
286 Init();
287
4b7f2165 288 return Create((void *)data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
2fd284a4
JS
289}
290
debe6624 291wxBitmap::wxBitmap(int w, int h, int d)
2bda0e17 292{
4fe5383d 293 Init();
2bda0e17 294
4fe5383d 295 (void)Create(w, h, d);
2bda0e17
KB
296}
297
debe6624 298wxBitmap::wxBitmap(void *data, long type, int width, int height, int depth)
2bda0e17 299{
4fe5383d 300 Init();
2bda0e17 301
6d167489 302 (void)Create(data, type, width, height, depth);
2bda0e17
KB
303}
304
2aeec9ec 305wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type)
2bda0e17 306{
4fe5383d 307 Init();
2bda0e17 308
4fe5383d 309 LoadFile(filename, (int)type);
2bda0e17
KB
310}
311
debe6624 312bool wxBitmap::Create(int w, int h, int d)
2bda0e17 313{
6d167489
VZ
314 UnRef();
315
316 m_refData = new wxBitmapRefData;
317
318 GetBitmapData()->m_width = w;
319 GetBitmapData()->m_height = h;
320 GetBitmapData()->m_depth = d;
321
322 HBITMAP hbmp;
323
324 if ( d > 0 )
325 {
326 hbmp = ::CreateBitmap(w, h, 1, d, NULL);
327 if ( !hbmp )
328 {
f6bcfd97 329 wxLogLastError(wxT("CreateBitmap"));
6d167489
VZ
330 }
331 }
332 else
333 {
334 ScreenHDC dc;
335 hbmp = ::CreateCompatibleBitmap(dc, w, h);
336 if ( !hbmp )
337 {
f6bcfd97 338 wxLogLastError(wxT("CreateCompatibleBitmap"));
6d167489
VZ
339 }
340
341 GetBitmapData()->m_depth = wxDisplayDepth();
342 }
2bda0e17 343
6d167489 344 SetHBITMAP((WXHBITMAP)hbmp);
2bda0e17 345
6d167489
VZ
346#if WXWIN_COMPATIBILITY_2
347 GetBitmapData()->m_ok = hbmp != 0;
348#endif // WXWIN_COMPATIBILITY_2
2bda0e17 349
6d167489 350 return Ok();
2bda0e17
KB
351}
352
6d51f220
VZ
353// ----------------------------------------------------------------------------
354// wxImage to/from conversions
355// ----------------------------------------------------------------------------
356
357#if wxUSE_IMAGE
358
fec19ea9
VS
359bool wxBitmap::CreateFromImage( const wxImage& image, int depth )
360{
361 wxCHECK_MSG( image.Ok(), FALSE, wxT("invalid image") )
362
363 m_refData = new wxBitmapRefData();
364
365 // sizeLimit is the MS upper limit for the DIB size
366#ifdef WIN32
367 int sizeLimit = 1024*768*3;
368#else
369 int sizeLimit = 0x7fff ;
370#endif
371
372 // width and height of the device-dependent bitmap
373 int width = image.GetWidth();
374 int bmpHeight = image.GetHeight();
375
376 // calc the number of bytes per scanline and padding
377 int bytePerLine = width*3;
378 int sizeDWORD = sizeof( DWORD );
379 int lineBoundary = bytePerLine % sizeDWORD;
380 int padding = 0;
381 if( lineBoundary > 0 )
382 {
383 padding = sizeDWORD - lineBoundary;
384 bytePerLine += padding;
385 }
386 // calc the number of DIBs and heights of DIBs
387 int numDIB = 1;
388 int hRemain = 0;
389 int height = sizeLimit/bytePerLine;
390 if( height >= bmpHeight )
391 height = bmpHeight;
392 else
393 {
394 numDIB = bmpHeight / height;
395 hRemain = bmpHeight % height;
396 if( hRemain >0 ) numDIB++;
397 }
398
399 // set bitmap parameters
c447ce17 400 wxCHECK_MSG( image.Ok(), FALSE, wxT("invalid image") );
fec19ea9
VS
401 SetWidth( width );
402 SetHeight( bmpHeight );
403 if (depth == -1) depth = wxDisplayDepth();
404 SetDepth( depth );
405
406 // create a DIB header
407 int headersize = sizeof(BITMAPINFOHEADER);
408 BITMAPINFO *lpDIBh = (BITMAPINFO *) malloc( headersize );
097aeb99 409 wxCHECK_MSG( lpDIBh, FALSE, wxT("could not allocate memory for DIB header") );
fec19ea9
VS
410 // Fill in the DIB header
411 lpDIBh->bmiHeader.biSize = headersize;
412 lpDIBh->bmiHeader.biWidth = (DWORD)width;
413 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
414 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
415 // the general formula for biSizeImage:
416 // ( ( ( ((DWORD)width*24) +31 ) & ~31 ) >> 3 ) * height;
417 lpDIBh->bmiHeader.biPlanes = 1;
418 lpDIBh->bmiHeader.biBitCount = 24;
419 lpDIBh->bmiHeader.biCompression = BI_RGB;
420 lpDIBh->bmiHeader.biClrUsed = 0;
421 // These seem not really needed for our purpose here.
422 lpDIBh->bmiHeader.biClrImportant = 0;
423 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
424 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
425 // memory for DIB data
426 unsigned char *lpBits;
427 lpBits = (unsigned char *)malloc( lpDIBh->bmiHeader.biSizeImage );
428 if( !lpBits )
429 {
430 wxFAIL_MSG( wxT("could not allocate memory for DIB") );
431 free( lpDIBh );
432 return FALSE;
433 }
434
435 // create and set the device-dependent bitmap
436 HDC hdc = ::GetDC(NULL);
437 HDC memdc = ::CreateCompatibleDC( hdc );
438 HBITMAP hbitmap;
439 hbitmap = ::CreateCompatibleBitmap( hdc, width, bmpHeight );
440 ::SelectObject( memdc, hbitmap);
441
442 HPALETTE hOldPalette = 0;
443 if (image.GetPalette().Ok())
444 {
445 hOldPalette = ::SelectPalette(memdc, (HPALETTE) image.GetPalette().GetHPALETTE(), FALSE);
446 ::RealizePalette(memdc);
447 }
448
449 // copy image data into DIB data and then into DDB (in a loop)
450 unsigned char *data = image.GetData();
451 int i, j, n;
452 int origin = 0;
453 unsigned char *ptdata = data;
454 unsigned char *ptbits;
455
456 for( n=0; n<numDIB; n++ )
457 {
458 if( numDIB > 1 && n == numDIB-1 && hRemain > 0 )
459 {
460 // redefine height and size of the (possibly) last smaller DIB
461 // memory is not reallocated
462 height = hRemain;
463 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
464 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
465 }
466 ptbits = lpBits;
467
468 for( j=0; j<height; j++ )
469 {
470 for( i=0; i<width; i++ )
471 {
472 *(ptbits++) = *(ptdata+2);
473 *(ptbits++) = *(ptdata+1);
474 *(ptbits++) = *(ptdata );
475 ptdata += 3;
476 }
477 for( i=0; i< padding; i++ ) *(ptbits++) = 0;
478 }
479 ::StretchDIBits( memdc, 0, origin, width, height,\
480 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
481 origin += height;
482 // if numDIB = 1, lines below can also be used
483 // hbitmap = CreateDIBitmap( hdc, &(lpDIBh->bmiHeader), CBM_INIT, lpBits, lpDIBh, DIB_RGB_COLORS );
484 // The above line is equivalent to the following two lines.
485 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
486 // ::SetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS);
487 // or the following lines
488 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
489 // HDC memdc = ::CreateCompatibleDC( hdc );
490 // ::SelectObject( memdc, hbitmap);
491 // ::SetDIBitsToDevice( memdc, 0, 0, width, height,
492 // 0, 0, 0, height, (void *)lpBits, lpDIBh, DIB_RGB_COLORS);
493 // ::SelectObject( memdc, 0 );
494 // ::DeleteDC( memdc );
495 }
496 SetHBITMAP( (WXHBITMAP) hbitmap );
497
498 if (hOldPalette)
499 SelectPalette(memdc, hOldPalette, FALSE);
500
501 // similarly, created an mono-bitmap for the possible mask
502 if( image.HasMask() )
503 {
504 hbitmap = ::CreateBitmap( (WORD)width, (WORD)bmpHeight, 1, 1, NULL );
505 HGDIOBJ hbmpOld = ::SelectObject( memdc, hbitmap);
506 if( numDIB == 1 ) height = bmpHeight;
507 else height = sizeLimit/bytePerLine;
508 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
509 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
510 origin = 0;
511 unsigned char r = image.GetMaskRed();
512 unsigned char g = image.GetMaskGreen();
513 unsigned char b = image.GetMaskBlue();
514 unsigned char zero = 0, one = 255;
515 ptdata = data;
516 for( n=0; n<numDIB; n++ )
517 {
518 if( numDIB > 1 && n == numDIB - 1 && hRemain > 0 )
519 {
520 // redefine height and size of the (possibly) last smaller DIB
521 // memory is not reallocated
522 height = hRemain;
523 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
524 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
525 }
526 ptbits = lpBits;
527 for( int j=0; j<height; j++ )
528 {
529 for(i=0; i<width; i++ )
530 {
531 // was causing a code gen bug in cw : if( ( cr !=r) || (cg!=g) || (cb!=b) )
532 unsigned char cr = (*(ptdata++)) ;
533 unsigned char cg = (*(ptdata++)) ;
534 unsigned char cb = (*(ptdata++)) ;
535
536 if( ( cr !=r) || (cg!=g) || (cb!=b) )
537 {
538 *(ptbits++) = one;
539 *(ptbits++) = one;
540 *(ptbits++) = one;
541 }
542 else
543 {
544 *(ptbits++) = zero;
545 *(ptbits++) = zero;
546 *(ptbits++) = zero;
547 }
548 }
549 for( i=0; i< padding; i++ ) *(ptbits++) = zero;
550 }
551 ::StretchDIBits( memdc, 0, origin, width, height,\
552 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
553 origin += height;
554 }
555 // create a wxMask object
556 wxMask *mask = new wxMask();
557 mask->SetMaskBitmap( (WXHBITMAP) hbitmap );
558 SetMask( mask );
559 // It will be deleted when the wxBitmap object is deleted (as of 01/1999)
560 /* The following can also be used but is slow to run
561 wxColour colour( GetMaskRed(), GetMaskGreen(), GetMaskBlue());
562 wxMask *mask = new wxMask( *this, colour );
563 SetMask( mask );
564 */
565
566 ::SelectObject( memdc, hbmpOld );
567 }
568
569 // free allocated resources
570 ::DeleteDC( memdc );
571 ::ReleaseDC(NULL, hdc);
572 free(lpDIBh);
573 free(lpBits);
574
575#if WXWIN_COMPATIBILITY_2
576 // check the wxBitmap object
577 GetBitmapData()->SetOk();
578#endif // WXWIN_COMPATIBILITY_2
6d51f220 579
fec19ea9
VS
580 if (wxTheBitmapList) wxTheBitmapList->AddBitmap(this);
581
582 return TRUE;
583}
584
585wxImage wxBitmap::ConvertToImage() const
586{
587 wxImage image;
6d51f220 588
fec19ea9
VS
589 wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") );
590
591 // create an wxImage object
592 int width = GetWidth();
593 int height = GetHeight();
594 image.Create( width, height );
595 unsigned char *data = image.GetData();
596 if( !data )
597 {
598 wxFAIL_MSG( wxT("could not allocate data for image") );
599 return wxNullImage;
600 }
601
602 // calc the number of bytes per scanline and padding in the DIB
603 int bytePerLine = width*3;
604 int sizeDWORD = sizeof( DWORD );
605 int lineBoundary = bytePerLine % sizeDWORD;
606 int padding = 0;
607 if( lineBoundary > 0 )
608 {
609 padding = sizeDWORD - lineBoundary;
610 bytePerLine += padding;
611 }
612
613 // create a DIB header
614 int headersize = sizeof(BITMAPINFOHEADER);
615 BITMAPINFO *lpDIBh = (BITMAPINFO *) malloc( headersize );
616 if( !lpDIBh )
617 {
618 wxFAIL_MSG( wxT("could not allocate data for DIB header") );
619 free( data );
620 return wxNullImage;
621 }
622 // Fill in the DIB header
623 lpDIBh->bmiHeader.biSize = headersize;
624 lpDIBh->bmiHeader.biWidth = width;
625 lpDIBh->bmiHeader.biHeight = -height;
626 lpDIBh->bmiHeader.biSizeImage = bytePerLine * height;
627 lpDIBh->bmiHeader.biPlanes = 1;
628 lpDIBh->bmiHeader.biBitCount = 24;
629 lpDIBh->bmiHeader.biCompression = BI_RGB;
630 lpDIBh->bmiHeader.biClrUsed = 0;
631 // These seem not really needed for our purpose here.
632 lpDIBh->bmiHeader.biClrImportant = 0;
633 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
634 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
635 // memory for DIB data
636 unsigned char *lpBits;
637 lpBits = (unsigned char *) malloc( lpDIBh->bmiHeader.biSizeImage );
638 if( !lpBits )
639 {
640 wxFAIL_MSG( wxT("could not allocate data for DIB") );
641 free( data );
642 free( lpDIBh );
643 return wxNullImage;
644 }
645
646 // copy data from the device-dependent bitmap to the DIB
647 HDC hdc = ::GetDC(NULL);
648 HBITMAP hbitmap;
649 hbitmap = (HBITMAP) GetHBITMAP();
650 ::GetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
651
652 // copy DIB data into the wxImage object
653 int i, j;
654 unsigned char *ptdata = data;
655 unsigned char *ptbits = lpBits;
656 for( i=0; i<height; i++ )
657 {
658 for( j=0; j<width; j++ )
659 {
660 *(ptdata++) = *(ptbits+2);
661 *(ptdata++) = *(ptbits+1);
662 *(ptdata++) = *(ptbits );
663 ptbits += 3;
664 }
665 ptbits += padding;
666 }
667
668 // similarly, set data according to the possible mask bitmap
669 if( GetMask() && GetMask()->GetMaskBitmap() )
670 {
671 hbitmap = (HBITMAP) GetMask()->GetMaskBitmap();
672 // memory DC created, color set, data copied, and memory DC deleted
673 HDC memdc = ::CreateCompatibleDC( hdc );
674 ::SetTextColor( memdc, RGB( 0, 0, 0 ) );
675 ::SetBkColor( memdc, RGB( 255, 255, 255 ) );
676 ::GetDIBits( memdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
677 ::DeleteDC( memdc );
678 // background color set to RGB(16,16,16) in consistent with wxGTK
679 unsigned char r=16, g=16, b=16;
680 ptdata = data;
681 ptbits = lpBits;
682 for( i=0; i<height; i++ )
683 {
684 for( j=0; j<width; j++ )
685 {
686 if( *ptbits != 0 )
687 ptdata += 3;
688 else
689 {
690 *(ptdata++) = r;
691 *(ptdata++) = g;
692 *(ptdata++) = b;
693 }
694 ptbits += 3;
695 }
696 ptbits += padding;
697 }
698 image.SetMaskColour( r, g, b );
699 image.SetMask( TRUE );
700 }
701 else
702 {
703 image.SetMask( FALSE );
704 }
705 // free allocated resources
706 ::ReleaseDC(NULL, hdc);
707 free(lpDIBh);
708 free(lpBits);
709
710 return image;
711}
712
6d51f220
VZ
713#endif // wxUSE_IMAGE
714
debe6624 715bool wxBitmap::LoadFile(const wxString& filename, long type)
2bda0e17 716{
6d167489 717 UnRef();
2bda0e17 718
6d167489 719 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 720
6d167489
VZ
721 if ( handler )
722 {
723 m_refData = new wxBitmapRefData;
2bda0e17 724
6d167489
VZ
725 return handler->LoadFile(this, filename, type, -1, -1);
726 }
6d51f220 727#if wxUSE_IMAGE
6d167489 728 else
b75dd496 729 {
6d167489 730 wxImage image;
6d51f220
VZ
731 if ( image.LoadFile( filename, type ) && image.Ok() )
732 {
733 *this = image.ConvertToBitmap();
6d167489 734
6d51f220
VZ
735 return TRUE;
736 }
b75dd496 737 }
6d51f220
VZ
738#endif // wxUSE_IMAGE
739
740 return FALSE;
2bda0e17
KB
741}
742
debe6624 743bool wxBitmap::Create(void *data, long type, int width, int height, int depth)
2bda0e17 744{
6d167489 745 UnRef();
2bda0e17 746
6d167489 747 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 748
6d167489
VZ
749 if ( !handler )
750 {
f6bcfd97 751 wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for type %d defined."), type);
2bda0e17 752
6d167489
VZ
753 return FALSE;
754 }
1d792928 755
6d167489 756 m_refData = new wxBitmapRefData;
1d792928 757
6d167489 758 return handler->Create(this, data, type, width, height, depth);
2bda0e17
KB
759}
760
debe6624 761bool wxBitmap::SaveFile(const wxString& filename, int type, const wxPalette *palette)
2bda0e17 762{
6d167489 763 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 764
6d167489
VZ
765 if ( handler )
766 {
767 return handler->SaveFile(this, filename, type, palette);
768 }
6d51f220 769#if wxUSE_IMAGE
6d167489
VZ
770 else
771 {
772 // FIXME what about palette? shouldn't we use it?
773 wxImage image( *this );
6d51f220
VZ
774 if ( image.Ok() )
775 {
776 return image.SaveFile(filename, type);
777 }
6d167489 778 }
6d51f220
VZ
779#endif // wxUSE_IMAGE
780
781 return FALSE;
2bda0e17
KB
782}
783
4b7f2165
VZ
784// ----------------------------------------------------------------------------
785// sub bitmap extraction
786// ----------------------------------------------------------------------------
787
788wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect) const
789{
790 wxCHECK_MSG( Ok() &&
791 (rect.x >= 0) && (rect.y >= 0) &&
792 (rect.x+rect.width <= GetWidth()) &&
793 (rect.y+rect.height <= GetHeight()),
794 wxNullBitmap, wxT("Invalid bitmap or bitmap region") );
795
796 wxBitmap ret( rect.width, rect.height, GetDepth() );
797 wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") );
798
799 // copy bitmap data
800 HDC dcSrc = ::CreateCompatibleDC(NULL);
801 HDC dcDst = ::CreateCompatibleDC(NULL);
802 SelectObject(dcSrc, (HBITMAP) GetHBITMAP());
803 SelectObject(dcDst, (HBITMAP) ret.GetHBITMAP());
804 BitBlt(dcDst, 0, 0, rect.width, rect.height, dcSrc, rect.x, rect.y, SRCCOPY);
805
806 // copy mask if there is one
807 if (GetMask())
808 {
809 HBITMAP hbmpMask = ::CreateBitmap(rect.width, rect.height, 1, 1, 0);
810
811 SelectObject(dcSrc, (HBITMAP) GetMask()->GetMaskBitmap());
812 SelectObject(dcDst, (HBITMAP) hbmpMask);
813 BitBlt(dcDst, 0, 0, rect.width, rect.height, dcSrc, rect.x, rect.y, SRCCOPY);
814
815 wxMask *mask = new wxMask((WXHBITMAP) hbmpMask);
816 ret.SetMask(mask);
817 }
818
819 SelectObject(dcDst, NULL);
820 SelectObject(dcSrc, NULL);
821 DeleteDC(dcDst);
822 DeleteDC(dcSrc);
823
824 return ret;
825}
826
6d167489
VZ
827// ----------------------------------------------------------------------------
828// wxBitmap accessors
829// ----------------------------------------------------------------------------
2bda0e17
KB
830
831void wxBitmap::SetQuality(int q)
832{
6d167489 833 EnsureHasData();
2bda0e17 834
6d167489 835 GetBitmapData()->m_quality = q;
2bda0e17
KB
836}
837
6d167489 838#if WXWIN_COMPATIBILITY_2
2bda0e17
KB
839void wxBitmap::SetOk(bool isOk)
840{
6d167489 841 EnsureHasData();
2bda0e17 842
6d167489 843 GetBitmapData()->m_ok = isOk;
2bda0e17 844}
6d167489 845#endif // WXWIN_COMPATIBILITY_2
2bda0e17
KB
846
847void wxBitmap::SetPalette(const wxPalette& palette)
848{
6d167489 849 EnsureHasData();
2bda0e17 850
6d167489 851 GetBitmapData()->m_bitmapPalette = palette;
2bda0e17
KB
852}
853
854void wxBitmap::SetMask(wxMask *mask)
855{
6d167489 856 EnsureHasData();
2bda0e17 857
6d167489 858 GetBitmapData()->m_bitmapMask = mask;
2bda0e17
KB
859}
860
7b46ecac
JS
861// Creates a bitmap that matches the device context, from
862// an arbitray bitmap. At present, the original bitmap must have an
863// associated palette. TODO: use a default palette if no palette exists.
864// Contributed by Frederic Villeneuve <frederic.villeneuve@natinst.com>
865wxBitmap wxBitmap::GetBitmapForDC(wxDC& dc) const
866{
867 wxMemoryDC memDC;
4b7f2165 868 wxBitmap tmpBitmap(GetWidth(), GetHeight(), dc.GetDepth());
57c208c5 869 HPALETTE hPal = (HPALETTE) NULL;
7b46ecac 870 LPBITMAPINFO lpDib;
57c208c5 871 void *lpBits = (void*) NULL;
7b46ecac 872
6d167489 873 if( GetPalette() && GetPalette()->Ok() )
a367b9b3 874 {
6d167489 875 tmpBitmap.SetPalette(*GetPalette());
a367b9b3 876 memDC.SelectObject(tmpBitmap);
6d167489
VZ
877 memDC.SetPalette(*GetPalette());
878 hPal = (HPALETTE)GetPalette()->GetHPALETTE();
a367b9b3
JS
879 }
880 else
881 {
882 hPal = (HPALETTE) ::GetStockObject(DEFAULT_PALETTE);
883 wxPalette palette;
884 palette.SetHPALETTE( (WXHPALETTE)hPal );
885 tmpBitmap.SetPalette( palette );
886 memDC.SelectObject(tmpBitmap);
887 memDC.SetPalette( palette );
888 }
7b46ecac 889
6d167489
VZ
890 // set the height negative because in a DIB the order of the lines is
891 // reversed
892 if ( !wxCreateDIB(GetWidth(), -GetHeight(), GetDepth(), hPal, &lpDib) )
893 {
894 return wxNullBitmap;
895 }
7b46ecac
JS
896
897 lpBits = malloc(lpDib->bmiHeader.biSizeImage);
898
6d167489 899 ::GetBitmapBits(GetHbitmap(), lpDib->bmiHeader.biSizeImage, lpBits);
7b46ecac 900
6d167489
VZ
901 ::SetDIBitsToDevice(GetHdcOf(memDC), 0, 0,
902 GetWidth(), GetHeight(),
903 0, 0, 0, GetHeight(),
904 lpBits, lpDib, DIB_RGB_COLORS);
7b46ecac
JS
905
906 free(lpBits);
907
6d167489
VZ
908 wxFreeDIB(lpDib);
909
910 return tmpBitmap;
7b46ecac
JS
911}
912
6d167489
VZ
913// ----------------------------------------------------------------------------
914// wxMask
915// ----------------------------------------------------------------------------
2bda0e17 916
10fcf31a 917wxMask::wxMask()
2bda0e17
KB
918{
919 m_maskBitmap = 0;
920}
921
922// Construct a mask from a bitmap and a colour indicating
923// the transparent area
924wxMask::wxMask(const wxBitmap& bitmap, const wxColour& colour)
925{
926 m_maskBitmap = 0;
6d167489 927 Create(bitmap, colour);
2bda0e17
KB
928}
929
930// Construct a mask from a bitmap and a palette index indicating
931// the transparent area
debe6624 932wxMask::wxMask(const wxBitmap& bitmap, int paletteIndex)
2bda0e17
KB
933{
934 m_maskBitmap = 0;
6d167489 935 Create(bitmap, paletteIndex);
2bda0e17
KB
936}
937
938// Construct a mask from a mono bitmap (copies the bitmap).
939wxMask::wxMask(const wxBitmap& bitmap)
940{
941 m_maskBitmap = 0;
6d167489 942 Create(bitmap);
2bda0e17
KB
943}
944
10fcf31a 945wxMask::~wxMask()
2bda0e17
KB
946{
947 if ( m_maskBitmap )
948 ::DeleteObject((HBITMAP) m_maskBitmap);
949}
950
951// Create a mask from a mono bitmap (copies the bitmap).
952bool wxMask::Create(const wxBitmap& bitmap)
953{
a58a12e9
VZ
954 wxCHECK_MSG( bitmap.Ok() && bitmap.GetDepth() == 1, FALSE,
955 _T("can't create mask from invalid or not monochrome bitmap") );
956
2bda0e17 957 if ( m_maskBitmap )
6d167489
VZ
958 {
959 ::DeleteObject((HBITMAP) m_maskBitmap);
960 m_maskBitmap = 0;
961 }
a58a12e9 962
6d167489
VZ
963 m_maskBitmap = (WXHBITMAP) CreateBitmap(
964 bitmap.GetWidth(),
965 bitmap.GetHeight(),
966 1, 1, 0
967 );
968 HDC srcDC = CreateCompatibleDC(0);
969 SelectObject(srcDC, (HBITMAP) bitmap.GetHBITMAP());
970 HDC destDC = CreateCompatibleDC(0);
971 SelectObject(destDC, (HBITMAP) m_maskBitmap);
972 BitBlt(destDC, 0, 0, bitmap.GetWidth(), bitmap.GetHeight(), srcDC, 0, 0, SRCCOPY);
973 SelectObject(srcDC, 0);
974 DeleteDC(srcDC);
975 SelectObject(destDC, 0);
976 DeleteDC(destDC);
977 return TRUE;
2bda0e17
KB
978}
979
980// Create a mask from a bitmap and a palette index indicating
981// the transparent area
debe6624 982bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex)
2bda0e17
KB
983{
984 if ( m_maskBitmap )
1d792928 985 {
6d167489
VZ
986 ::DeleteObject((HBITMAP) m_maskBitmap);
987 m_maskBitmap = 0;
1d792928 988 }
6d167489
VZ
989 if (bitmap.Ok() && bitmap.GetPalette()->Ok())
990 {
991 unsigned char red, green, blue;
992 if (bitmap.GetPalette()->GetRGB(paletteIndex, &red, &green, &blue))
993 {
994 wxColour transparentColour(red, green, blue);
995 return Create(bitmap, transparentColour);
996 }
997 }
998 return FALSE;
2bda0e17
KB
999}
1000
1001// Create a mask from a bitmap and a colour indicating
1002// the transparent area
1003bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
1004{
4b7f2165
VZ
1005 wxCHECK_MSG( bitmap.Ok(), FALSE, _T("invalid bitmap in wxMask::Create") );
1006
2bda0e17 1007 if ( m_maskBitmap )
1d792928 1008 {
6d167489
VZ
1009 ::DeleteObject((HBITMAP) m_maskBitmap);
1010 m_maskBitmap = 0;
1011 }
4b7f2165
VZ
1012
1013 int width = bitmap.GetWidth(),
1014 height = bitmap.GetHeight();
1015
1016 // scan the bitmap for the transparent colour and set the corresponding
1017 // pixels in the mask to BLACK and the rest to WHITE
1018 COLORREF maskColour = wxColourToRGB(colour);
1019 m_maskBitmap = (WXHBITMAP)::CreateBitmap(width, height, 1, 1, 0);
1020
1021 HDC srcDC = ::CreateCompatibleDC(NULL);
1022 HDC destDC = ::CreateCompatibleDC(NULL);
1023 if ( !srcDC || !destDC )
1024 {
f6bcfd97 1025 wxLogLastError(wxT("CreateCompatibleDC"));
4b7f2165
VZ
1026 }
1027
0bafad0c
VZ
1028 bool ok = TRUE;
1029
1030 HGDIOBJ hbmpSrcOld = ::SelectObject(srcDC, GetHbitmapOf(bitmap));
1031 if ( !hbmpSrcOld )
6d167489 1032 {
f6bcfd97 1033 wxLogLastError(wxT("SelectObject"));
0bafad0c
VZ
1034
1035 ok = FALSE;
4b7f2165 1036 }
0bafad0c
VZ
1037
1038 HGDIOBJ hbmpDstOld = ::SelectObject(destDC, (HBITMAP)m_maskBitmap);
1039 if ( !hbmpDstOld )
4b7f2165 1040 {
f6bcfd97 1041 wxLogLastError(wxT("SelectObject"));
0bafad0c
VZ
1042
1043 ok = FALSE;
1d792928 1044 }
2bda0e17 1045
4b7f2165
VZ
1046 // this is not very efficient, but I can't think of a better way of doing
1047 // it
0bafad0c 1048 for ( int w = 0; ok && (w < width); w++ )
2bda0e17 1049 {
0bafad0c 1050 for ( int h = 0; ok && (h < height); h++ )
c793fa87 1051 {
6d167489 1052 COLORREF col = GetPixel(srcDC, w, h);
4b7f2165
VZ
1053 if ( col == CLR_INVALID )
1054 {
f6bcfd97 1055 wxLogLastError(wxT("GetPixel"));
4b7f2165
VZ
1056
1057 // doesn't make sense to continue
0bafad0c 1058 ok = FALSE;
4b7f2165 1059
0bafad0c 1060 break;
4b7f2165
VZ
1061 }
1062
1063 if ( col == maskColour )
6d167489
VZ
1064 {
1065 ::SetPixel(destDC, w, h, RGB(0, 0, 0));
1066 }
1067 else
1068 {
1069 ::SetPixel(destDC, w, h, RGB(255, 255, 255));
1070 }
c793fa87 1071 }
2bda0e17 1072 }
4b7f2165 1073
0bafad0c 1074 ::SelectObject(srcDC, hbmpSrcOld);
6d167489 1075 ::DeleteDC(srcDC);
0bafad0c 1076 ::SelectObject(destDC, hbmpDstOld);
6d167489 1077 ::DeleteDC(destDC);
4b7f2165 1078
0bafad0c 1079 return ok;
6d167489
VZ
1080}
1081
1082// ----------------------------------------------------------------------------
1083// wxBitmapHandler
1084// ----------------------------------------------------------------------------
1d792928 1085
6d167489
VZ
1086bool wxBitmapHandler::Create(wxGDIImage *image,
1087 void *data,
1088 long flags,
1089 int width, int height, int depth)
1090{
1091 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
1d792928 1092
8c1375b9 1093 return bitmap ? Create(bitmap, data, flags, width, height, depth) : FALSE;
2bda0e17
KB
1094}
1095
6d167489
VZ
1096bool wxBitmapHandler::Load(wxGDIImage *image,
1097 const wxString& name,
1098 long flags,
1099 int width, int height)
2bda0e17 1100{
6d167489 1101 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
2bda0e17 1102
6d167489
VZ
1103 return bitmap ? LoadFile(bitmap, name, flags, width, height) : FALSE;
1104}
2bda0e17 1105
6d167489
VZ
1106bool wxBitmapHandler::Save(wxGDIImage *image,
1107 const wxString& name,
1108 int type)
2bda0e17 1109{
6d167489
VZ
1110 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
1111
1112 return bitmap ? SaveFile(bitmap, name, type) : FALSE;
2bda0e17
KB
1113}
1114
6d167489
VZ
1115bool wxBitmapHandler::Create(wxBitmap *WXUNUSED(bitmap),
1116 void *WXUNUSED(data),
1117 long WXUNUSED(type),
1118 int WXUNUSED(width),
1119 int WXUNUSED(height),
1120 int WXUNUSED(depth))
2bda0e17 1121{
6d167489 1122 return FALSE;
2bda0e17
KB
1123}
1124
6d167489
VZ
1125bool wxBitmapHandler::LoadFile(wxBitmap *WXUNUSED(bitmap),
1126 const wxString& WXUNUSED(name),
1127 long WXUNUSED(type),
1128 int WXUNUSED(desiredWidth),
1129 int WXUNUSED(desiredHeight))
2bda0e17 1130{
6d167489 1131 return FALSE;
2bda0e17
KB
1132}
1133
6d167489
VZ
1134bool wxBitmapHandler::SaveFile(wxBitmap *WXUNUSED(bitmap),
1135 const wxString& WXUNUSED(name),
1136 int WXUNUSED(type),
1137 const wxPalette *WXUNUSED(palette))
2bda0e17 1138{
6d167489 1139 return FALSE;
7b46ecac
JS
1140}
1141
6d167489
VZ
1142// ----------------------------------------------------------------------------
1143// DIB functions
1144// ----------------------------------------------------------------------------
1145
1146bool wxCreateDIB(long xSize, long ySize, long bitsPerPixel,
1147 HPALETTE hPal, LPBITMAPINFO* lpDIBHeader)
7b46ecac
JS
1148{
1149 unsigned long i, headerSize;
1150 LPBITMAPINFO lpDIBheader = NULL;
1151 LPPALETTEENTRY lpPe = NULL;
1152
1153
1154 // Allocate space for a DIB header
1155 headerSize = (sizeof(BITMAPINFOHEADER) + (256 * sizeof(PALETTEENTRY)));
1156 lpDIBheader = (BITMAPINFO *) malloc(headerSize);
1157 lpPe = (PALETTEENTRY *)((BYTE*)lpDIBheader + sizeof(BITMAPINFOHEADER));
1158
1159 GetPaletteEntries(hPal, 0, 256, lpPe);
1160
7b46ecac
JS
1161 memset(lpDIBheader, 0x00, sizeof(BITMAPINFOHEADER));
1162
7b46ecac
JS
1163 // Fill in the static parts of the DIB header
1164 lpDIBheader->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1165 lpDIBheader->bmiHeader.biWidth = xSize;
1166 lpDIBheader->bmiHeader.biHeight = ySize;
1167 lpDIBheader->bmiHeader.biPlanes = 1;
1168
1169 // this value must be 1, 4, 8 or 24 so PixelDepth can only be
1170 lpDIBheader->bmiHeader.biBitCount = (WORD)(bitsPerPixel);
1171 lpDIBheader->bmiHeader.biCompression = BI_RGB;
6d167489 1172 lpDIBheader->bmiHeader.biSizeImage = xSize * abs(ySize) * bitsPerPixel >> 3;
7b46ecac
JS
1173 lpDIBheader->bmiHeader.biClrUsed = 256;
1174
1175
1176 // Initialize the DIB palette
1177 for (i = 0; i < 256; i++) {
1178 lpDIBheader->bmiColors[i].rgbReserved = lpPe[i].peFlags;
1179 lpDIBheader->bmiColors[i].rgbRed = lpPe[i].peRed;
1180 lpDIBheader->bmiColors[i].rgbGreen = lpPe[i].peGreen;
1181 lpDIBheader->bmiColors[i].rgbBlue = lpPe[i].peBlue;
1182 }
1183
1184 *lpDIBHeader = lpDIBheader;
1185
6d167489 1186 return TRUE;
7b46ecac
JS
1187}
1188
6d167489 1189void wxFreeDIB(LPBITMAPINFO lpDIBHeader)
7b46ecac 1190{
6d167489 1191 free(lpDIBHeader);
7b46ecac
JS
1192}
1193
4b7f2165
VZ
1194// ----------------------------------------------------------------------------
1195// other helper functions
1196// ----------------------------------------------------------------------------
1197
1198extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w, int h)
1199{
1200 wxCHECK_MSG( hbmpMask, 0, _T("invalid bitmap in wxInvertMask") );
1201
1202 // get width/height from the bitmap if not given
1203 if ( !w || !h )
1204 {
1205 BITMAP bm;
1206 ::GetObject(hbmpMask, sizeof(BITMAP), (LPVOID)&bm);
1207 w = bm.bmWidth;
1208 h = bm.bmHeight;
1209 }
1210
1211 HDC hdcSrc = ::CreateCompatibleDC(NULL);
1212 HDC hdcDst = ::CreateCompatibleDC(NULL);
1213 if ( !hdcSrc || !hdcDst )
1214 {
f6bcfd97 1215 wxLogLastError(wxT("CreateCompatibleDC"));
4b7f2165
VZ
1216 }
1217
1218 HBITMAP hbmpInvMask = ::CreateBitmap(w, h, 1, 1, 0);
1219 if ( !hbmpInvMask )
1220 {
f6bcfd97 1221 wxLogLastError(wxT("CreateBitmap"));
4b7f2165
VZ
1222 }
1223
1224 ::SelectObject(hdcSrc, hbmpMask);
1225 ::SelectObject(hdcDst, hbmpInvMask);
1226 if ( !::BitBlt(hdcDst, 0, 0, w, h,
1227 hdcSrc, 0, 0,
1228 NOTSRCCOPY) )
1229 {
f6bcfd97 1230 wxLogLastError(wxT("BitBlt"));
4b7f2165 1231 }
7b46ecac 1232
4b7f2165
VZ
1233 ::DeleteDC(hdcSrc);
1234 ::DeleteDC(hdcDst);
1235
1236 return hbmpInvMask;
1237}