]>
Commit | Line | Data |
---|---|---|
0becd470 | 1 | //////////////////////////////////////////////////////////////////////////// |
8ecff181 | 2 | // Name: src/msw/bitmap.cpp |
2bda0e17 KB |
3 | // Purpose: wxBitmap |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
10fcf31a VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
10fcf31a | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
0bca0373 WS |
27 | #include "wx/bitmap.h" |
28 | ||
2bda0e17 | 29 | #ifndef WX_PRECOMP |
10fcf31a VZ |
30 | #include <stdio.h> |
31 | ||
32 | #include "wx/list.h" | |
33 | #include "wx/utils.h" | |
34 | #include "wx/app.h" | |
35 | #include "wx/palette.h" | |
36 | #include "wx/dcmemory.h" | |
10fcf31a | 37 | #include "wx/icon.h" |
e4db172a | 38 | #include "wx/log.h" |
155ecd4c | 39 | #include "wx/image.h" |
2bda0e17 KB |
40 | #endif |
41 | ||
42 | #include "wx/msw/private.h" | |
025f7d77 | 43 | #include "wx/msw/dc.h" |
1d792928 | 44 | |
4676948b | 45 | #if wxUSE_WXDIB |
155ecd4c | 46 | #include "wx/msw/dib.h" |
04ef50df JS |
47 | #endif |
48 | ||
1e3c12d7 | 49 | #ifdef wxHAVE_RAW_BITMAP |
155ecd4c | 50 | #include "wx/rawbmp.h" |
1e3c12d7 | 51 | #endif |
2cf45d69 | 52 | |
3c1a88d8 VZ |
53 | // missing from mingw32 header |
54 | #ifndef CLR_INVALID | |
55 | #define CLR_INVALID ((COLORREF)-1) | |
56 | #endif // no CLR_INVALID | |
57 | ||
8bbbae21 VZ |
58 | // ---------------------------------------------------------------------------- |
59 | // Bitmap data | |
60 | // ---------------------------------------------------------------------------- | |
61 | ||
62 | class WXDLLEXPORT wxBitmapRefData : public wxGDIImageRefData | |
63 | { | |
64 | public: | |
65 | wxBitmapRefData(); | |
7ff64980 | 66 | wxBitmapRefData(const wxBitmapRefData& data); |
8bbbae21 VZ |
67 | virtual ~wxBitmapRefData() { Free(); } |
68 | ||
69 | virtual void Free(); | |
70 | ||
71 | // set the mask object to use as the mask, we take ownership of it | |
72 | void SetMask(wxMask *mask) | |
73 | { | |
74 | delete m_bitmapMask; | |
75 | m_bitmapMask = mask; | |
76 | } | |
77 | ||
78 | // set the HBITMAP to use as the mask | |
79 | void SetMask(HBITMAP hbmpMask) | |
80 | { | |
81 | SetMask(new wxMask((WXHBITMAP)hbmpMask)); | |
82 | } | |
83 | ||
84 | // return the mask | |
85 | wxMask *GetMask() const { return m_bitmapMask; } | |
86 | ||
87 | public: | |
8bbbae21 VZ |
88 | #if wxUSE_PALETTE |
89 | wxPalette m_bitmapPalette; | |
90 | #endif // wxUSE_PALETTE | |
91 | ||
92 | // MSW-specific | |
93 | // ------------ | |
94 | ||
acf8e3d2 | 95 | #ifdef __WXDEBUG__ |
8bbbae21 VZ |
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) | |
99 | wxDC *m_selectedInto; | |
acf8e3d2 | 100 | #endif // __WXDEBUG__ |
8bbbae21 | 101 | |
4676948b | 102 | #if wxUSE_WXDIB |
fa275e86 VZ |
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 | |
106 | wxDIB *m_dib; | |
4676948b | 107 | #endif |
fa275e86 | 108 | |
acf8e3d2 VZ |
109 | // true if we have alpha transparency info and can be drawn using |
110 | // AlphaBlend() | |
111 | bool m_hasAlpha; | |
8bbbae21 | 112 | |
fa275e86 VZ |
113 | // true if our HBITMAP is a DIB section, false if it is a DDB |
114 | bool m_isDIB; | |
115 | ||
8bbbae21 VZ |
116 | private: |
117 | // optional mask for transparent drawing | |
118 | wxMask *m_bitmapMask; | |
119 | ||
7ff64980 VZ |
120 | |
121 | // not implemented | |
122 | wxBitmapRefData& operator=(const wxBitmapRefData&); | |
8bbbae21 VZ |
123 | }; |
124 | ||
10fcf31a VZ |
125 | // ---------------------------------------------------------------------------- |
126 | // macros | |
127 | // ---------------------------------------------------------------------------- | |
128 | ||
4b7f2165 VZ |
129 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject) |
130 | IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject) | |
6d167489 | 131 | |
4b7f2165 | 132 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject) |
2bda0e17 | 133 | |
10fcf31a VZ |
134 | // ============================================================================ |
135 | // implementation | |
136 | // ============================================================================ | |
137 | ||
2cf45d69 VZ |
138 | // ---------------------------------------------------------------------------- |
139 | // helper functions | |
140 | // ---------------------------------------------------------------------------- | |
141 | ||
142 | // decide whether we should create a DIB or a DDB for the given parameters | |
be69f971 VZ |
143 | // |
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 | |
147 | #ifdef __WXWINCE__ | |
148 | static inline bool wxShouldCreateDIB(int, int, int, WXHDC) { return true; } | |
149 | ||
150 | #define ALWAYS_USE_DIB | |
151 | #elif !wxUSE_WXDIB | |
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) | |
157 | { | |
158 | // here is the logic: | |
159 | // | |
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 | |
167 | // | |
168 | // consequences (all of which seem to make sense): | |
169 | // | |
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 | |
173 | return !hdc && | |
174 | (d >= 24 || | |
175 | (d == -1 && | |
176 | wxDIB::GetLineSize(w, wxDisplayDepth())*h > 16*1024*1024)); | |
177 | } | |
178 | ||
179 | #define SOMETIMES_USE_DIB | |
180 | #endif // different DIB usage scenarious | |
2cf45d69 | 181 | |
10fcf31a VZ |
182 | // ---------------------------------------------------------------------------- |
183 | // wxBitmapRefData | |
184 | // ---------------------------------------------------------------------------- | |
185 | ||
186 | wxBitmapRefData::wxBitmapRefData() | |
2bda0e17 | 187 | { |
3ca22d5e | 188 | #ifdef __WXDEBUG__ |
6d167489 | 189 | m_selectedInto = NULL; |
3ca22d5e | 190 | #endif |
6d167489 | 191 | m_bitmapMask = NULL; |
fa275e86 | 192 | |
340196c0 | 193 | m_hBitmap = (WXHBITMAP) NULL; |
4676948b | 194 | #if wxUSE_WXDIB |
fa275e86 | 195 | m_dib = NULL; |
4676948b | 196 | #endif |
fa275e86 VZ |
197 | |
198 | m_isDIB = | |
fcf90ee1 | 199 | m_hasAlpha = false; |
2bda0e17 KB |
200 | } |
201 | ||
7ff64980 VZ |
202 | wxBitmapRefData::wxBitmapRefData(const wxBitmapRefData& data) |
203 | : wxGDIImageRefData(data) | |
204 | { | |
205 | #ifdef __WXDEBUG__ | |
206 | m_selectedInto = NULL; | |
207 | #endif | |
208 | ||
1b7c01c9 | 209 | // (deep) copy the mask if present |
7ff64980 | 210 | m_bitmapMask = NULL; |
1b7c01c9 VZ |
211 | if (data.m_bitmapMask) |
212 | m_bitmapMask = new wxMask(*data.m_bitmapMask); | |
213 | ||
214 | // FIXME: we don't copy m_hBitmap currently but we should, see wxBitmap:: | |
8f884a0d | 215 | // CloneGDIRefData() |
7ff64980 VZ |
216 | |
217 | wxASSERT_MSG( !data.m_isDIB, | |
218 | _T("can't copy bitmap locked for raw access!") ); | |
fcf90ee1 | 219 | m_isDIB = false; |
7ff64980 VZ |
220 | |
221 | m_hasAlpha = data.m_hasAlpha; | |
222 | } | |
223 | ||
6d167489 | 224 | void wxBitmapRefData::Free() |
2bda0e17 | 225 | { |
d59ceba5 VZ |
226 | wxASSERT_MSG( !m_selectedInto, |
227 | wxT("deleting bitmap still selected into wxMemoryDC") ); | |
2bda0e17 | 228 | |
4676948b | 229 | #if wxUSE_WXDIB |
fa275e86 | 230 | wxASSERT_MSG( !m_dib, _T("forgot to call wxBitmap::UngetRawData()!") ); |
4676948b | 231 | #endif |
fa275e86 | 232 | |
d59ceba5 | 233 | if ( m_hBitmap) |
6d167489 VZ |
234 | { |
235 | if ( !::DeleteObject((HBITMAP)m_hBitmap) ) | |
236 | { | |
f6bcfd97 | 237 | wxLogLastError(wxT("DeleteObject(hbitmap)")); |
6d167489 VZ |
238 | } |
239 | } | |
e7003166 | 240 | |
6d167489 VZ |
241 | delete m_bitmapMask; |
242 | m_bitmapMask = NULL; | |
2bda0e17 KB |
243 | } |
244 | ||
10fcf31a | 245 | // ---------------------------------------------------------------------------- |
6d167489 | 246 | // wxBitmap creation |
10fcf31a VZ |
247 | // ---------------------------------------------------------------------------- |
248 | ||
8bbbae21 VZ |
249 | wxGDIImageRefData *wxBitmap::CreateData() const |
250 | { | |
251 | return new wxBitmapRefData; | |
252 | } | |
253 | ||
8f884a0d | 254 | wxGDIRefData *wxBitmap::CloneGDIRefData(const wxGDIRefData *dataOrig) const |
7ff64980 VZ |
255 | { |
256 | const wxBitmapRefData * | |
257 | data = wx_static_cast(const wxBitmapRefData *, dataOrig); | |
258 | if ( !data ) | |
259 | return NULL; | |
260 | ||
1b7c01c9 VZ |
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 | |
7ff64980 | 265 | wxBitmap *self = wx_const_cast(wxBitmap *, this); |
7ff64980 VZ |
266 | |
267 | #if wxUSE_WXDIB | |
268 | // copy the other bitmap | |
269 | if ( data->m_hBitmap ) | |
270 | { | |
271 | wxDIB dib((HBITMAP)(data->m_hBitmap)); | |
272 | self->CopyFromDIB(dib); | |
273 | } | |
7b24e975 | 274 | else |
7ff64980 | 275 | #endif // wxUSE_WXDIB |
7b24e975 | 276 | { |
1b7c01c9 | 277 | // copy the bitmap data |
7b24e975 VZ |
278 | self->m_refData = new wxBitmapRefData(*data); |
279 | } | |
7ff64980 | 280 | |
8f884a0d VZ |
281 | wxBitmapRefData * const |
282 | selfdata = wx_static_cast(wxBitmapRefData *, m_refData); | |
283 | ||
1b7c01c9 VZ |
284 | // copy also the mask |
285 | wxMask * const maskSrc = data->GetMask(); | |
286 | if ( maskSrc ) | |
287 | { | |
1b7c01c9 VZ |
288 | selfdata->SetMask(new wxMask(*maskSrc)); |
289 | } | |
290 | ||
8f884a0d | 291 | return selfdata; |
7ff64980 VZ |
292 | } |
293 | ||
11f406f9 VZ |
294 | bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon, |
295 | wxBitmapTransparency transp) | |
6d167489 | 296 | { |
4676948b | 297 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
6d167489 VZ |
298 | // it may be either HICON or HCURSOR |
299 | HICON hicon = (HICON)icon.GetHandle(); | |
300 | ||
301 | ICONINFO iconInfo; | |
302 | if ( !::GetIconInfo(hicon, &iconInfo) ) | |
303 | { | |
f6bcfd97 | 304 | wxLogLastError(wxT("GetIconInfo")); |
6d167489 | 305 | |
7010702f | 306 | return false; |
6d167489 VZ |
307 | } |
308 | ||
309 | wxBitmapRefData *refData = new wxBitmapRefData; | |
310 | m_refData = refData; | |
311 | ||
d9c8e68e VZ |
312 | int w = icon.GetWidth(), |
313 | h = icon.GetHeight(); | |
314 | ||
315 | refData->m_width = w; | |
316 | refData->m_height = h; | |
6d167489 VZ |
317 | refData->m_depth = wxDisplayDepth(); |
318 | ||
319 | refData->m_hBitmap = (WXHBITMAP)iconInfo.hbmColor; | |
d9c8e68e | 320 | |
11f406f9 | 321 | switch ( transp ) |
5a60b5f0 | 322 | { |
11f406f9 VZ |
323 | default: |
324 | wxFAIL_MSG( _T("unknown wxBitmapTransparency value") ); | |
325 | ||
326 | case wxBitmapTransparency_None: | |
327 | // nothing to do, refData->m_hasAlpha is false by default | |
328 | break; | |
329 | ||
330 | case wxBitmapTransparency_Auto: | |
331 | #if wxUSE_WXDIB | |
332 | // If the icon is 32 bits per pixel then it may have alpha channel | |
333 | // data, although there are some icons that are 32 bpp but have no | |
334 | // alpha... So convert to a DIB and manually check the 4th byte for | |
335 | // each pixel. | |
5a60b5f0 | 336 | { |
11f406f9 VZ |
337 | BITMAP bm; |
338 | if ( ::GetObject(iconInfo.hbmColor, sizeof(bm), &bm) && | |
339 | (bm.bmBitsPixel == 32) ) | |
5a60b5f0 | 340 | { |
11f406f9 VZ |
341 | wxDIB dib(iconInfo.hbmColor); |
342 | if (dib.IsOk()) | |
343 | { | |
344 | const unsigned char* pixels = dib.GetData(); | |
345 | for (int idx = 0; idx < w*h*4; idx+=4) | |
346 | { | |
347 | if (pixels[idx+3] != 0) | |
348 | { | |
349 | // If there is an alpha byte that is non-zero | |
350 | // then set the alpha flag and stop checking | |
351 | refData->m_hasAlpha = true; | |
352 | break; | |
353 | } | |
354 | } | |
355 | } | |
5a60b5f0 RD |
356 | } |
357 | } | |
11f406f9 VZ |
358 | break; |
359 | #endif // wxUSE_WXDIB | |
360 | ||
361 | case wxBitmapTransparency_Always: | |
362 | refData->m_hasAlpha = true; | |
363 | break; | |
5a60b5f0 | 364 | } |
11f406f9 | 365 | |
5a60b5f0 RD |
366 | if ( !refData->m_hasAlpha ) |
367 | { | |
3103e8a9 | 368 | // the mask returned by GetIconInfo() is inverted compared to the usual |
5a60b5f0 RD |
369 | // wxWin convention |
370 | refData->SetMask(wxInvertMask(iconInfo.hbmMask, w, h)); | |
371 | } | |
d0ee33f5 | 372 | |
68f36a2c VZ |
373 | // delete the old one now as we don't need it any more |
374 | ::DeleteObject(iconInfo.hbmMask); | |
375 | ||
7010702f | 376 | return true; |
11f406f9 | 377 | #else // __WXMICROWIN__ || __WXWINCE__ |
7010702f | 378 | wxUnusedVar(icon); |
d6f2a891 VZ |
379 | wxUnusedVar(transp); |
380 | ||
7010702f | 381 | return false; |
11f406f9 | 382 | #endif // !__WXWINCE__/__WXWINCE__ |
6d167489 VZ |
383 | } |
384 | ||
11f406f9 | 385 | bool wxBitmap::CopyFromCursor(const wxCursor& cursor, wxBitmapTransparency transp) |
4fe5383d VZ |
386 | { |
387 | UnRef(); | |
07cf98cb | 388 | |
6d167489 | 389 | if ( !cursor.Ok() ) |
fcf90ee1 | 390 | return false; |
07cf98cb | 391 | |
11f406f9 | 392 | return CopyFromIconOrCursor(cursor, transp); |
6d167489 VZ |
393 | } |
394 | ||
11f406f9 | 395 | bool wxBitmap::CopyFromIcon(const wxIcon& icon, wxBitmapTransparency transp) |
6d167489 VZ |
396 | { |
397 | UnRef(); | |
07cf98cb | 398 | |
6d167489 | 399 | if ( !icon.Ok() ) |
fcf90ee1 | 400 | return false; |
4fe5383d | 401 | |
11f406f9 | 402 | return CopyFromIconOrCursor(icon, transp); |
10fcf31a VZ |
403 | } |
404 | ||
be69f971 VZ |
405 | #ifndef NEVER_USE_DIB |
406 | ||
b0ea5d96 VZ |
407 | bool wxBitmap::CopyFromDIB(const wxDIB& dib) |
408 | { | |
fcf90ee1 | 409 | wxCHECK_MSG( dib.IsOk(), false, _T("invalid DIB in CopyFromDIB") ); |
b0ea5d96 | 410 | |
be69f971 | 411 | #ifdef SOMETIMES_USE_DIB |
b0ea5d96 VZ |
412 | HBITMAP hbitmap = dib.CreateDDB(); |
413 | if ( !hbitmap ) | |
fcf90ee1 | 414 | return false; |
be69f971 VZ |
415 | #else // ALWAYS_USE_DIB |
416 | HBITMAP hbitmap = ((wxDIB &)dib).Detach(); // const_cast | |
417 | #endif // SOMETIMES_USE_DIB/ALWAYS_USE_DIB | |
b0ea5d96 VZ |
418 | |
419 | UnRef(); | |
420 | ||
421 | wxBitmapRefData *refData = new wxBitmapRefData; | |
422 | m_refData = refData; | |
423 | ||
424 | refData->m_width = dib.GetWidth(); | |
425 | refData->m_height = dib.GetHeight(); | |
426 | refData->m_depth = dib.GetDepth(); | |
427 | ||
428 | refData->m_hBitmap = (WXHBITMAP)hbitmap; | |
429 | ||
430 | #if wxUSE_PALETTE | |
431 | wxPalette *palette = dib.CreatePalette(); | |
432 | if ( palette ) | |
433 | { | |
434 | refData->m_bitmapPalette = *palette; | |
435 | } | |
436 | ||
437 | delete palette; | |
438 | #endif // wxUSE_PALETTE | |
439 | ||
fcf90ee1 | 440 | return true; |
b0ea5d96 | 441 | } |
be69f971 VZ |
442 | |
443 | #endif // NEVER_USE_DIB | |
b0ea5d96 | 444 | |
10fcf31a | 445 | wxBitmap::~wxBitmap() |
2bda0e17 | 446 | { |
2bda0e17 KB |
447 | } |
448 | ||
5bd3a2da | 449 | wxBitmap::wxBitmap(const char bits[], int width, int height, int depth) |
2bda0e17 | 450 | { |
04ef50df | 451 | #ifndef __WXMICROWIN__ |
6d167489 VZ |
452 | wxBitmapRefData *refData = new wxBitmapRefData; |
453 | m_refData = refData; | |
2bda0e17 | 454 | |
5bd3a2da VZ |
455 | refData->m_width = width; |
456 | refData->m_height = height; | |
457 | refData->m_depth = depth; | |
2bda0e17 | 458 | |
5bd3a2da VZ |
459 | char *data; |
460 | if ( depth == 1 ) | |
461 | { | |
462 | // we assume that it is in XBM format which is not quite the same as | |
463 | // the format CreateBitmap() wants because the order of bytes in the | |
3103e8a9 | 464 | // line is reversed! |
4d24ece7 VZ |
465 | const size_t bytesPerLine = (width + 7) / 8; |
466 | const size_t padding = bytesPerLine % 2; | |
467 | const size_t len = height * ( padding + bytesPerLine ); | |
5bd3a2da VZ |
468 | data = (char *)malloc(len); |
469 | const char *src = bits; | |
470 | char *dst = data; | |
471 | ||
472 | for ( int rows = 0; rows < height; rows++ ) | |
473 | { | |
0765adca | 474 | for ( size_t cols = 0; cols < bytesPerLine; cols++ ) |
5bd3a2da | 475 | { |
0765adca VZ |
476 | unsigned char val = *src++; |
477 | unsigned char reversed = 0; | |
478 | ||
479 | for ( int bits = 0; bits < 8; bits++) | |
480 | { | |
481 | reversed <<= 1; | |
907173e5 | 482 | reversed |= (unsigned char)(val & 0x01); |
0765adca VZ |
483 | val >>= 1; |
484 | } | |
c4d39711 | 485 | *dst++ = ~reversed; |
5bd3a2da VZ |
486 | } |
487 | ||
488 | if ( padding ) | |
489 | *dst++ = 0; | |
5bd3a2da VZ |
490 | } |
491 | } | |
492 | else | |
493 | { | |
494 | // bits should already be in Windows standard format | |
495 | data = (char *)bits; // const_cast is harmless | |
496 | } | |
497 | ||
498 | HBITMAP hbmp = ::CreateBitmap(width, height, 1, depth, data); | |
6d167489 VZ |
499 | if ( !hbmp ) |
500 | { | |
f6bcfd97 | 501 | wxLogLastError(wxT("CreateBitmap")); |
6d167489 | 502 | } |
2bda0e17 | 503 | |
5bd3a2da VZ |
504 | if ( data != bits ) |
505 | { | |
506 | free(data); | |
507 | } | |
508 | ||
6d167489 | 509 | SetHBITMAP((WXHBITMAP)hbmp); |
04ef50df | 510 | #endif |
2bda0e17 KB |
511 | } |
512 | ||
debe6624 | 513 | wxBitmap::wxBitmap(int w, int h, int d) |
2bda0e17 | 514 | { |
4fe5383d | 515 | (void)Create(w, h, d); |
2bda0e17 KB |
516 | } |
517 | ||
98ea6b7d VZ |
518 | wxBitmap::wxBitmap(int w, int h, const wxDC& dc) |
519 | { | |
98ea6b7d VZ |
520 | (void)Create(w, h, dc); |
521 | } | |
522 | ||
e86f2cc8 | 523 | wxBitmap::wxBitmap(const void* data, wxBitmapType type, int width, int height, int depth) |
2bda0e17 | 524 | { |
6d167489 | 525 | (void)Create(data, type, width, height, depth); |
2bda0e17 KB |
526 | } |
527 | ||
2aeec9ec | 528 | wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type) |
2bda0e17 | 529 | { |
e86f2cc8 | 530 | LoadFile(filename, type); |
2bda0e17 KB |
531 | } |
532 | ||
2cf45d69 VZ |
533 | bool wxBitmap::Create(int width, int height, int depth) |
534 | { | |
535 | return DoCreate(width, height, depth, 0); | |
536 | } | |
537 | ||
538 | bool wxBitmap::Create(int width, int height, const wxDC& dc) | |
539 | { | |
888dde65 | 540 | wxCHECK_MSG( dc.IsOk(), false, _T("invalid HDC in wxBitmap::Create()") ); |
2cf45d69 | 541 | |
888dde65 RR |
542 | const wxMSWDCImpl *impl = wxDynamicCast( dc.GetImpl(), wxMSWDCImpl ); |
543 | ||
544 | if (impl) | |
545 | return DoCreate(width, height, -1, impl->GetHDC()); | |
546 | else | |
547 | return false; | |
2cf45d69 VZ |
548 | } |
549 | ||
550 | bool wxBitmap::DoCreate(int w, int h, int d, WXHDC hdc) | |
2bda0e17 | 551 | { |
6d167489 VZ |
552 | UnRef(); |
553 | ||
554 | m_refData = new wxBitmapRefData; | |
555 | ||
2cf45d69 VZ |
556 | GetBitmapData()->m_width = w; |
557 | GetBitmapData()->m_height = h; | |
558 | ||
be69f971 | 559 | HBITMAP hbmp wxDUMMY_INITIALIZE(0); |
2cf45d69 | 560 | |
be69f971 | 561 | #ifndef NEVER_USE_DIB |
2cf45d69 | 562 | if ( wxShouldCreateDIB(w, h, d, hdc) ) |
6d167489 | 563 | { |
2cf45d69 VZ |
564 | if ( d == -1 ) |
565 | { | |
566 | // create DIBs without alpha channel by default | |
567 | d = 24; | |
568 | } | |
569 | ||
570 | wxDIB dib(w, h, d); | |
571 | if ( !dib.IsOk() ) | |
fcf90ee1 | 572 | return false; |
2cf45d69 VZ |
573 | |
574 | // don't delete the DIB section in dib object dtor | |
575 | hbmp = dib.Detach(); | |
576 | ||
fcf90ee1 | 577 | GetBitmapData()->m_isDIB = true; |
2cf45d69 | 578 | GetBitmapData()->m_depth = d; |
6d167489 | 579 | } |
2cf45d69 | 580 | else // create a DDB |
be69f971 | 581 | #endif // NEVER_USE_DIB |
6d167489 | 582 | { |
be69f971 | 583 | #ifndef ALWAYS_USE_DIB |
0becd470 VZ |
584 | #ifndef __WXMICROWIN__ |
585 | if ( d > 0 ) | |
6d167489 | 586 | { |
0becd470 VZ |
587 | hbmp = ::CreateBitmap(w, h, 1, d, NULL); |
588 | if ( !hbmp ) | |
589 | { | |
590 | wxLogLastError(wxT("CreateBitmap")); | |
591 | } | |
be69f971 VZ |
592 | |
593 | GetBitmapData()->m_depth = d; | |
6d167489 | 594 | } |
be69f971 | 595 | else // d == 0, create bitmap compatible with the screen |
0becd470 VZ |
596 | #endif // !__WXMICROWIN__ |
597 | { | |
598 | ScreenHDC dc; | |
599 | hbmp = ::CreateCompatibleBitmap(dc, w, h); | |
600 | if ( !hbmp ) | |
601 | { | |
602 | wxLogLastError(wxT("CreateCompatibleBitmap")); | |
603 | } | |
6d167489 | 604 | |
0becd470 VZ |
605 | GetBitmapData()->m_depth = wxDisplayDepth(); |
606 | } | |
be69f971 | 607 | #endif // !ALWAYS_USE_DIB |
2cf45d69 | 608 | } |
2bda0e17 | 609 | |
2cf45d69 | 610 | SetHBITMAP((WXHBITMAP)hbmp); |
2bda0e17 | 611 | |
6d167489 | 612 | return Ok(); |
2bda0e17 KB |
613 | } |
614 | ||
acf8e3d2 | 615 | #if wxUSE_IMAGE |
0becd470 | 616 | |
6d51f220 | 617 | // ---------------------------------------------------------------------------- |
acf8e3d2 | 618 | // wxImage to/from conversions for Microwin |
6d51f220 VZ |
619 | // ---------------------------------------------------------------------------- |
620 | ||
acf8e3d2 VZ |
621 | // Microwin versions are so different from normal ones that it really doesn't |
622 | // make sense to use #ifdefs inside the function bodies | |
623 | #ifdef __WXMICROWIN__ | |
6d51f220 | 624 | |
2cf45d69 | 625 | bool wxBitmap::CreateFromImage(const wxImage& image, int depth, const wxDC& dc) |
fec19ea9 | 626 | { |
acf8e3d2 VZ |
627 | // Set this to 1 to experiment with mask code, |
628 | // which currently doesn't work | |
629 | #define USE_MASKS 0 | |
62e1ba75 | 630 | |
54a96d02 | 631 | m_refData = new wxBitmapRefData(); |
e640f823 JS |
632 | |
633 | // Initial attempt at a simple-minded implementation. | |
634 | // The bitmap will always be created at the screen depth, | |
635 | // so the 'depth' argument is ignored. | |
8e9ff815 | 636 | |
e640f823 JS |
637 | HDC hScreenDC = ::GetDC(NULL); |
638 | int screenDepth = ::GetDeviceCaps(hScreenDC, BITSPIXEL); | |
639 | ||
640 | HBITMAP hBitmap = ::CreateCompatibleBitmap(hScreenDC, image.GetWidth(), image.GetHeight()); | |
62e1ba75 JS |
641 | HBITMAP hMaskBitmap = NULL; |
642 | HBITMAP hOldMaskBitmap = NULL; | |
643 | HDC hMaskDC = NULL; | |
644 | unsigned char maskR = 0; | |
645 | unsigned char maskG = 0; | |
646 | unsigned char maskB = 0; | |
647 | ||
54a96d02 | 648 | // printf("Created bitmap %d\n", (int) hBitmap); |
e640f823 JS |
649 | if (hBitmap == NULL) |
650 | { | |
651 | ::ReleaseDC(NULL, hScreenDC); | |
fcf90ee1 | 652 | return false; |
e640f823 JS |
653 | } |
654 | HDC hMemDC = ::CreateCompatibleDC(hScreenDC); | |
e640f823 JS |
655 | |
656 | HBITMAP hOldBitmap = ::SelectObject(hMemDC, hBitmap); | |
62e1ba75 JS |
657 | ::ReleaseDC(NULL, hScreenDC); |
658 | ||
659 | // created an mono-bitmap for the possible mask | |
660 | bool hasMask = image.HasMask(); | |
661 | ||
662 | if ( hasMask ) | |
663 | { | |
664 | #if USE_MASKS | |
665 | // FIXME: we should be able to pass bpp = 1, but | |
666 | // GdBlit can't handle a different depth | |
667 | #if 0 | |
668 | hMaskBitmap = ::CreateBitmap( (WORD)image.GetWidth(), (WORD)image.GetHeight(), 1, 1, NULL ); | |
669 | #else | |
670 | hMaskBitmap = ::CreateCompatibleBitmap( hMemDC, (WORD)image.GetWidth(), (WORD)image.GetHeight()); | |
671 | #endif | |
672 | maskR = image.GetMaskRed(); | |
673 | maskG = image.GetMaskGreen(); | |
674 | maskB = image.GetMaskBlue(); | |
675 | ||
676 | if (!hMaskBitmap) | |
677 | { | |
fcf90ee1 | 678 | hasMask = false; |
8e9ff815 | 679 | } |
62e1ba75 JS |
680 | else |
681 | { | |
682 | hScreenDC = ::GetDC(NULL); | |
683 | hMaskDC = ::CreateCompatibleDC(hScreenDC); | |
684 | ::ReleaseDC(NULL, hScreenDC); | |
685 | ||
686 | hOldMaskBitmap = ::SelectObject( hMaskDC, hMaskBitmap); | |
8e9ff815 | 687 | } |
62e1ba75 | 688 | #else |
fcf90ee1 | 689 | hasMask = false; |
62e1ba75 JS |
690 | #endif |
691 | } | |
e640f823 JS |
692 | |
693 | int i, j; | |
694 | for (i = 0; i < image.GetWidth(); i++) | |
695 | { | |
8e9ff815 VZ |
696 | for (j = 0; j < image.GetHeight(); j++) |
697 | { | |
698 | unsigned char red = image.GetRed(i, j); | |
699 | unsigned char green = image.GetGreen(i, j); | |
700 | unsigned char blue = image.GetBlue(i, j); | |
e640f823 | 701 | |
8e9ff815 | 702 | ::SetPixel(hMemDC, i, j, PALETTERGB(red, green, blue)); |
62e1ba75 JS |
703 | |
704 | if (hasMask) | |
705 | { | |
706 | // scan the bitmap for the transparent colour and set the corresponding | |
707 | // pixels in the mask to BLACK and the rest to WHITE | |
708 | if (maskR == red && maskG == green && maskB == blue) | |
709 | ::SetPixel(hMaskDC, i, j, PALETTERGB(0, 0, 0)); | |
710 | else | |
711 | ::SetPixel(hMaskDC, i, j, PALETTERGB(255, 255, 255)); | |
8e9ff815 VZ |
712 | } |
713 | } | |
e640f823 JS |
714 | } |
715 | ||
716 | ::SelectObject(hMemDC, hOldBitmap); | |
717 | ::DeleteDC(hMemDC); | |
62e1ba75 JS |
718 | if (hasMask) |
719 | { | |
720 | ::SelectObject(hMaskDC, hOldMaskBitmap); | |
8e9ff815 | 721 | ::DeleteDC(hMaskDC); |
62e1ba75 | 722 | |
8bbbae21 | 723 | ((wxBitmapRefData*)m_refData)->SetMask(hMaskBitmap); |
62e1ba75 | 724 | } |
8e9ff815 | 725 | |
e640f823 JS |
726 | SetWidth(image.GetWidth()); |
727 | SetHeight(image.GetHeight()); | |
728 | SetDepth(screenDepth); | |
729 | SetHBITMAP( (WXHBITMAP) hBitmap ); | |
8e9ff815 | 730 | |
e640f823 JS |
731 | #if wxUSE_PALETTE |
732 | // Copy the palette from the source image | |
733 | SetPalette(image.GetPalette()); | |
734 | #endif // wxUSE_PALETTE | |
735 | ||
fcf90ee1 | 736 | return true; |
fec19ea9 VS |
737 | } |
738 | ||
739 | wxImage wxBitmap::ConvertToImage() const | |
740 | { | |
e640f823 JS |
741 | // Initial attempt at a simple-minded implementation. |
742 | // The bitmap will always be created at the screen depth, | |
743 | // so the 'depth' argument is ignored. | |
744 | // TODO: transparency (create a mask image) | |
745 | ||
746 | if (!Ok()) | |
747 | { | |
748 | wxFAIL_MSG( wxT("bitmap is invalid") ); | |
8e9ff815 | 749 | return wxNullImage; |
e640f823 JS |
750 | } |
751 | ||
752 | wxImage image; | |
753 | ||
754 | wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") ); | |
755 | ||
756 | // create an wxImage object | |
757 | int width = GetWidth(); | |
758 | int height = GetHeight(); | |
759 | image.Create( width, height ); | |
760 | unsigned char *data = image.GetData(); | |
761 | if( !data ) | |
762 | { | |
763 | wxFAIL_MSG( wxT("could not allocate data for image") ); | |
764 | return wxNullImage; | |
765 | } | |
8e9ff815 | 766 | |
e640f823 JS |
767 | HDC hScreenDC = ::GetDC(NULL); |
768 | ||
769 | HDC hMemDC = ::CreateCompatibleDC(hScreenDC); | |
770 | ::ReleaseDC(NULL, hScreenDC); | |
771 | ||
772 | HBITMAP hBitmap = (HBITMAP) GetHBITMAP(); | |
8e9ff815 | 773 | |
e640f823 JS |
774 | HBITMAP hOldBitmap = ::SelectObject(hMemDC, hBitmap); |
775 | ||
776 | int i, j; | |
777 | for (i = 0; i < GetWidth(); i++) | |
778 | { | |
8e9ff815 VZ |
779 | for (j = 0; j < GetHeight(); j++) |
780 | { | |
781 | COLORREF color = ::GetPixel(hMemDC, i, j); | |
782 | unsigned char red = GetRValue(color); | |
783 | unsigned char green = GetGValue(color); | |
784 | unsigned char blue = GetBValue(color); | |
785 | ||
786 | image.SetRGB(i, j, red, green, blue); | |
787 | } | |
e640f823 JS |
788 | } |
789 | ||
790 | ::SelectObject(hMemDC, hOldBitmap); | |
791 | ::DeleteDC(hMemDC); | |
8e9ff815 | 792 | |
e640f823 JS |
793 | #if wxUSE_PALETTE |
794 | // Copy the palette from the source image | |
795 | if (GetPalette()) | |
796 | image.SetPalette(* GetPalette()); | |
797 | #endif // wxUSE_PALETTE | |
798 | ||
799 | return image; | |
acf8e3d2 VZ |
800 | } |
801 | ||
802 | #endif // __WXMICROWIN__ | |
803 | ||
804 | // ---------------------------------------------------------------------------- | |
805 | // wxImage to/from conversions | |
806 | // ---------------------------------------------------------------------------- | |
807 | ||
2cf45d69 VZ |
808 | bool wxBitmap::CreateFromImage(const wxImage& image, int depth) |
809 | { | |
810 | return CreateFromImage(image, depth, 0); | |
811 | } | |
812 | ||
813 | bool wxBitmap::CreateFromImage(const wxImage& image, const wxDC& dc) | |
814 | { | |
888dde65 | 815 | wxCHECK_MSG( dc.IsOk(), false, |
2cf45d69 VZ |
816 | _T("invalid HDC in wxBitmap::CreateFromImage()") ); |
817 | ||
888dde65 RR |
818 | const wxMSWDCImpl *impl = wxDynamicCast( dc.GetImpl(), wxMSWDCImpl ); |
819 | ||
820 | if (impl) | |
821 | return CreateFromImage(image, -1, impl->GetHDC()); | |
822 | else | |
823 | return false; | |
2cf45d69 VZ |
824 | } |
825 | ||
50a9dd77 VZ |
826 | #if wxUSE_WXDIB |
827 | ||
be69f971 | 828 | bool wxBitmap::CreateFromImage(const wxImage& image, int depth, WXHDC hdc) |
acf8e3d2 | 829 | { |
fcf90ee1 | 830 | wxCHECK_MSG( image.Ok(), false, wxT("invalid image") ); |
acf8e3d2 VZ |
831 | |
832 | UnRef(); | |
833 | ||
834 | // first convert the image to DIB | |
835 | const int h = image.GetHeight(); | |
836 | const int w = image.GetWidth(); | |
837 | ||
838 | wxDIB dib(image); | |
839 | if ( !dib.IsOk() ) | |
fcf90ee1 | 840 | return false; |
511fb92a VZ |
841 | |
842 | if ( depth == -1 ) | |
843 | depth = dib.GetDepth(); // Get depth from image if none specified | |
acf8e3d2 VZ |
844 | |
845 | // store the bitmap parameters | |
846 | wxBitmapRefData *refData = new wxBitmapRefData; | |
847 | refData->m_width = w; | |
848 | refData->m_height = h; | |
acf8e3d2 VZ |
849 | refData->m_hasAlpha = image.HasAlpha(); |
850 | ||
851 | m_refData = refData; | |
852 | ||
853 | ||
854 | // next either store DIB as is or create a DDB from it | |
be69f971 | 855 | HBITMAP hbitmap wxDUMMY_INITIALIZE(0); |
acf8e3d2 | 856 | |
2cf45d69 | 857 | // are we going to use DIB? |
4b8ab2f9 VZ |
858 | // |
859 | // NB: DDBs don't support alpha so if we have alpha channel we must use DIB | |
860 | if ( image.HasAlpha() || wxShouldCreateDIB(w, h, depth, hdc) ) | |
2cf45d69 VZ |
861 | { |
862 | // don't delete the DIB section in dib object dtor | |
863 | hbitmap = dib.Detach(); | |
864 | ||
fcf90ee1 | 865 | refData->m_isDIB = true; |
7532f691 | 866 | refData->m_depth = depth; |
2cf45d69 | 867 | } |
be69f971 | 868 | #ifndef ALWAYS_USE_DIB |
2cf45d69 | 869 | else // we need to convert DIB to DDB |
acf8e3d2 | 870 | { |
b0ea5d96 | 871 | hbitmap = dib.CreateDDB((HDC)hdc); |
2cf45d69 | 872 | |
7532f691 | 873 | refData->m_depth = depth; |
acf8e3d2 | 874 | } |
be69f971 | 875 | #endif // !ALWAYS_USE_DIB |
acf8e3d2 VZ |
876 | |
877 | // validate this object | |
878 | SetHBITMAP((WXHBITMAP)hbitmap); | |
879 | ||
acf8e3d2 VZ |
880 | // finally also set the mask if we have one |
881 | if ( image.HasMask() ) | |
882 | { | |
eabd3333 VZ |
883 | const size_t len = 2*((w+15)/16); |
884 | BYTE *src = image.GetData(); | |
885 | BYTE *data = new BYTE[h*len]; | |
886 | memset(data, 0, h*len); | |
887 | BYTE r = image.GetMaskRed(), | |
888 | g = image.GetMaskGreen(), | |
889 | b = image.GetMaskBlue(); | |
890 | BYTE *dst = data; | |
891 | for ( int y = 0; y < h; y++, dst += len ) | |
892 | { | |
893 | BYTE *dstLine = dst; | |
894 | BYTE mask = 0x80; | |
895 | for ( int x = 0; x < w; x++, src += 3 ) | |
896 | { | |
897 | if (src[0] != r || src[1] != g || src[2] != b) | |
898 | *dstLine |= mask; | |
899 | ||
900 | if ( (mask >>= 1) == 0 ) | |
901 | { | |
902 | dstLine++; | |
903 | mask = 0x80; | |
904 | } | |
905 | } | |
906 | } | |
907 | ||
908 | hbitmap = ::CreateBitmap(w, h, 1, 1, data); | |
909 | if ( !hbitmap ) | |
910 | { | |
911 | wxLogLastError(_T("CreateBitmap(mask)")); | |
912 | } | |
913 | else | |
914 | { | |
915 | SetMask(new wxMask((WXHBITMAP)hbitmap)); | |
916 | } | |
917 | ||
d0ee33f5 | 918 | delete[] data; |
acf8e3d2 VZ |
919 | } |
920 | ||
fcf90ee1 | 921 | return true; |
acf8e3d2 VZ |
922 | } |
923 | ||
924 | wxImage wxBitmap::ConvertToImage() const | |
925 | { | |
6faac21b | 926 | // convert DDB to DIB |
be69f971 | 927 | wxDIB dib(*this); |
c8688869 | 928 | |
003e6c07 DS |
929 | if ( !dib.IsOk() ) |
930 | { | |
931 | return wxNullImage; | |
932 | } | |
933 | ||
6faac21b | 934 | // and then DIB to our wxImage |
003e6c07 DS |
935 | wxImage image = dib.ConvertToImage(); |
936 | if ( !image.Ok() ) | |
937 | { | |
938 | return wxNullImage; | |
939 | } | |
940 | ||
6faac21b VZ |
941 | // now do the same for the mask, if we have any |
942 | HBITMAP hbmpMask = GetMask() ? (HBITMAP) GetMask()->GetMaskBitmap() : NULL; | |
943 | if ( hbmpMask ) | |
fec19ea9 | 944 | { |
6faac21b VZ |
945 | wxDIB dibMask(hbmpMask); |
946 | if ( dibMask.IsOk() ) | |
003e6c07 | 947 | { |
6faac21b VZ |
948 | // TODO: use wxRawBitmap to iterate over DIB |
949 | ||
950 | // we hard code the mask colour for now but we could also make an | |
951 | // effort (and waste time) to choose a colour not present in the | |
952 | // image already to avoid having to fudge the pixels below -- | |
953 | // whether it's worth to do it is unclear however | |
954 | static const int MASK_RED = 1; | |
955 | static const int MASK_GREEN = 2; | |
956 | static const int MASK_BLUE = 3; | |
957 | static const int MASK_BLUE_REPLACEMENT = 2; | |
958 | ||
959 | const int h = dibMask.GetHeight(); | |
960 | const int w = dibMask.GetWidth(); | |
961 | const int bpp = dibMask.GetDepth(); | |
962 | const int maskBytesPerPixel = bpp >> 3; | |
963 | const int maskBytesPerLine = wxDIB::GetLineSize(w, bpp); | |
964 | unsigned char *data = image.GetData(); | |
965 | ||
966 | // remember that DIBs are stored in bottom to top order | |
967 | unsigned char * | |
968 | maskLineStart = dibMask.GetData() + ((h - 1) * maskBytesPerLine); | |
969 | ||
970 | for ( int y = 0; y < h; y++, maskLineStart -= maskBytesPerLine ) | |
003e6c07 | 971 | { |
6faac21b VZ |
972 | // traverse one mask DIB line |
973 | unsigned char *mask = maskLineStart; | |
974 | for ( int x = 0; x < w; x++, mask += maskBytesPerPixel ) | |
003e6c07 | 975 | { |
6faac21b VZ |
976 | // should this pixel be transparent? |
977 | if ( *mask ) | |
003e6c07 | 978 | { |
6faac21b VZ |
979 | // no, check that it isn't transparent by accident |
980 | if ( (data[0] == MASK_RED) && | |
981 | (data[1] == MASK_GREEN) && | |
982 | (data[2] == MASK_BLUE) ) | |
983 | { | |
984 | // we have to fudge the colour a bit to prevent | |
985 | // this pixel from appearing transparent | |
986 | data[2] = MASK_BLUE_REPLACEMENT; | |
987 | } | |
988 | ||
989 | data += 3; | |
990 | } | |
991 | else // yes, transparent pixel | |
992 | { | |
993 | *data++ = MASK_RED; | |
994 | *data++ = MASK_GREEN; | |
995 | *data++ = MASK_BLUE; | |
003e6c07 | 996 | } |
003e6c07 | 997 | } |
003e6c07 | 998 | } |
003e6c07 | 999 | |
6faac21b VZ |
1000 | image.SetMaskColour(MASK_RED, MASK_GREEN, MASK_BLUE); |
1001 | } | |
fec19ea9 | 1002 | } |
fec19ea9 VS |
1003 | |
1004 | return image; | |
1005 | } | |
1006 | ||
50a9dd77 VZ |
1007 | #else // !wxUSE_WXDIB |
1008 | ||
1009 | bool | |
1010 | wxBitmap::CreateFromImage(const wxImage& WXUNUSED(image), | |
1011 | int WXUNUSED(depth), | |
1012 | WXHDC WXUNUSED(hdc)) | |
1013 | { | |
1014 | return false; | |
1015 | } | |
1016 | ||
1017 | wxImage wxBitmap::ConvertToImage() const | |
1018 | { | |
1019 | return wxImage(); | |
1020 | } | |
1021 | ||
1022 | #endif // wxUSE_WXDIB/!wxUSE_WXDIB | |
be69f971 | 1023 | |
6d51f220 VZ |
1024 | #endif // wxUSE_IMAGE |
1025 | ||
acf8e3d2 VZ |
1026 | // ---------------------------------------------------------------------------- |
1027 | // loading and saving bitmaps | |
1028 | // ---------------------------------------------------------------------------- | |
1029 | ||
e86f2cc8 | 1030 | bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type) |
2bda0e17 | 1031 | { |
6d167489 | 1032 | UnRef(); |
2bda0e17 | 1033 | |
6d167489 | 1034 | wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler); |
2bda0e17 | 1035 | |
6d167489 VZ |
1036 | if ( handler ) |
1037 | { | |
1038 | m_refData = new wxBitmapRefData; | |
2bda0e17 | 1039 | |
6d167489 VZ |
1040 | return handler->LoadFile(this, filename, type, -1, -1); |
1041 | } | |
64c288fa | 1042 | #if wxUSE_IMAGE && wxUSE_WXDIB |
be69f971 | 1043 | else // no bitmap handler found |
b75dd496 | 1044 | { |
6d167489 | 1045 | wxImage image; |
6d51f220 VZ |
1046 | if ( image.LoadFile( filename, type ) && image.Ok() ) |
1047 | { | |
368d59f0 | 1048 | *this = wxBitmap(image); |
6d167489 | 1049 | |
fcf90ee1 | 1050 | return true; |
6d51f220 | 1051 | } |
b75dd496 | 1052 | } |
6d51f220 VZ |
1053 | #endif // wxUSE_IMAGE |
1054 | ||
fcf90ee1 | 1055 | return false; |
2bda0e17 KB |
1056 | } |
1057 | ||
e86f2cc8 | 1058 | bool wxBitmap::Create(const void* data, wxBitmapType type, int width, int height, int depth) |
2bda0e17 | 1059 | { |
6d167489 | 1060 | UnRef(); |
2bda0e17 | 1061 | |
6d167489 | 1062 | wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler); |
2bda0e17 | 1063 | |
6d167489 VZ |
1064 | if ( !handler ) |
1065 | { | |
9b601c24 | 1066 | wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for type %ld defined."), type); |
2bda0e17 | 1067 | |
fcf90ee1 | 1068 | return false; |
6d167489 | 1069 | } |
1d792928 | 1070 | |
6d167489 | 1071 | m_refData = new wxBitmapRefData; |
1d792928 | 1072 | |
6d167489 | 1073 | return handler->Create(this, data, type, width, height, depth); |
2bda0e17 KB |
1074 | } |
1075 | ||
d275c7eb | 1076 | bool wxBitmap::SaveFile(const wxString& filename, |
e86f2cc8 FM |
1077 | wxBitmapType type, |
1078 | const wxPalette *palette) const | |
2bda0e17 | 1079 | { |
6d167489 | 1080 | wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler); |
2bda0e17 | 1081 | |
6d167489 VZ |
1082 | if ( handler ) |
1083 | { | |
1084 | return handler->SaveFile(this, filename, type, palette); | |
1085 | } | |
64c288fa | 1086 | #if wxUSE_IMAGE && wxUSE_WXDIB |
be69f971 | 1087 | else // no bitmap handler found |
6d167489 VZ |
1088 | { |
1089 | // FIXME what about palette? shouldn't we use it? | |
368d59f0 | 1090 | wxImage image = ConvertToImage(); |
6d51f220 VZ |
1091 | if ( image.Ok() ) |
1092 | { | |
1093 | return image.SaveFile(filename, type); | |
1094 | } | |
6d167489 | 1095 | } |
6d51f220 VZ |
1096 | #endif // wxUSE_IMAGE |
1097 | ||
fcf90ee1 | 1098 | return false; |
2bda0e17 KB |
1099 | } |
1100 | ||
4b7f2165 VZ |
1101 | // ---------------------------------------------------------------------------- |
1102 | // sub bitmap extraction | |
1103 | // ---------------------------------------------------------------------------- | |
18f2ae49 KO |
1104 | wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect ) const |
1105 | { | |
1106 | MemoryHDC dcSrc; | |
1107 | SelectInHDC selectSrc(dcSrc, GetHbitmap()); | |
1108 | return GetSubBitmapOfHDC( rect, (WXHDC)dcSrc ); | |
1109 | } | |
4b7f2165 | 1110 | |
18f2ae49 | 1111 | wxBitmap wxBitmap::GetSubBitmapOfHDC( const wxRect& rect, WXHDC hdc ) const |
4b7f2165 VZ |
1112 | { |
1113 | wxCHECK_MSG( Ok() && | |
1114 | (rect.x >= 0) && (rect.y >= 0) && | |
1115 | (rect.x+rect.width <= GetWidth()) && | |
1116 | (rect.y+rect.height <= GetHeight()), | |
1117 | wxNullBitmap, wxT("Invalid bitmap or bitmap region") ); | |
1118 | ||
e5d4ef74 | 1119 | wxBitmap ret( rect.width, rect.height, GetDepth() ); |
4b7f2165 VZ |
1120 | wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") ); |
1121 | ||
8e9ff815 | 1122 | #ifndef __WXMICROWIN__ |
e5d4ef74 VZ |
1123 | // handle alpha channel, if any |
1124 | if (HasAlpha()) | |
92218ce6 | 1125 | ret.UseAlpha(); |
acf8e3d2 | 1126 | |
4b7f2165 | 1127 | // copy bitmap data |
acf8e3d2 VZ |
1128 | MemoryHDC dcSrc, |
1129 | dcDst; | |
8e9ff815 VZ |
1130 | |
1131 | { | |
18f2ae49 KO |
1132 | SelectInHDC selectDst(dcDst, GetHbitmapOf(ret)); |
1133 | ||
1134 | if ( !selectDst ) | |
acf8e3d2 | 1135 | { |
18f2ae49 | 1136 | wxLogLastError(_T("SelectObject(destBitmap)")); |
acf8e3d2 VZ |
1137 | } |
1138 | ||
8e9ff815 | 1139 | if ( !::BitBlt(dcDst, 0, 0, rect.width, rect.height, |
18f2ae49 | 1140 | (HDC)hdc, rect.x, rect.y, SRCCOPY) ) |
8e9ff815 VZ |
1141 | { |
1142 | wxLogLastError(_T("BitBlt")); | |
1143 | } | |
1144 | } | |
4b7f2165 VZ |
1145 | |
1146 | // copy mask if there is one | |
8e9ff815 | 1147 | if ( GetMask() ) |
4b7f2165 VZ |
1148 | { |
1149 | HBITMAP hbmpMask = ::CreateBitmap(rect.width, rect.height, 1, 1, 0); | |
1150 | ||
8e9ff815 VZ |
1151 | SelectInHDC selectSrc(dcSrc, (HBITMAP) GetMask()->GetMaskBitmap()), |
1152 | selectDst(dcDst, hbmpMask); | |
1153 | ||
1154 | if ( !::BitBlt(dcDst, 0, 0, rect.width, rect.height, | |
1155 | dcSrc, rect.x, rect.y, SRCCOPY) ) | |
1156 | { | |
1157 | wxLogLastError(_T("BitBlt")); | |
1158 | } | |
4b7f2165 VZ |
1159 | |
1160 | wxMask *mask = new wxMask((WXHBITMAP) hbmpMask); | |
1161 | ret.SetMask(mask); | |
1162 | } | |
8e9ff815 | 1163 | #endif // !__WXMICROWIN__ |
4b7f2165 VZ |
1164 | |
1165 | return ret; | |
1166 | } | |
1167 | ||
6d167489 VZ |
1168 | // ---------------------------------------------------------------------------- |
1169 | // wxBitmap accessors | |
1170 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 1171 | |
adf9e099 | 1172 | #if wxUSE_PALETTE |
8bbbae21 | 1173 | wxPalette* wxBitmap::GetPalette() const |
2bda0e17 | 1174 | { |
8bbbae21 VZ |
1175 | return GetBitmapData() ? &GetBitmapData()->m_bitmapPalette |
1176 | : (wxPalette *) NULL; | |
1177 | } | |
adf9e099 | 1178 | #endif |
8bbbae21 VZ |
1179 | |
1180 | wxMask *wxBitmap::GetMask() const | |
1181 | { | |
1182 | return GetBitmapData() ? GetBitmapData()->GetMask() : (wxMask *) NULL; | |
1183 | } | |
2bda0e17 | 1184 | |
ec023a6e VZ |
1185 | wxBitmap wxBitmap::GetMaskBitmap() const |
1186 | { | |
1187 | wxBitmap bmp; | |
1188 | wxMask *mask = GetMask(); | |
1189 | if ( mask ) | |
1190 | bmp.SetHBITMAP(mask->GetMaskBitmap()); | |
1191 | return bmp; | |
1192 | } | |
1193 | ||
3ca22d5e MB |
1194 | #ifdef __WXDEBUG__ |
1195 | ||
8bbbae21 VZ |
1196 | wxDC *wxBitmap::GetSelectedInto() const |
1197 | { | |
1198 | return GetBitmapData() ? GetBitmapData()->m_selectedInto : (wxDC *) NULL; | |
2bda0e17 KB |
1199 | } |
1200 | ||
3ca22d5e MB |
1201 | #endif |
1202 | ||
10b41b53 VZ |
1203 | void wxBitmap::UseAlpha() |
1204 | { | |
1205 | if ( GetBitmapData() ) | |
1206 | GetBitmapData()->m_hasAlpha = true; | |
1207 | } | |
1208 | ||
acf8e3d2 VZ |
1209 | bool wxBitmap::HasAlpha() const |
1210 | { | |
1211 | return GetBitmapData() && GetBitmapData()->m_hasAlpha; | |
1212 | } | |
1213 | ||
8bbbae21 VZ |
1214 | // ---------------------------------------------------------------------------- |
1215 | // wxBitmap setters | |
1216 | // ---------------------------------------------------------------------------- | |
1217 | ||
3ca22d5e MB |
1218 | #ifdef __WXDEBUG__ |
1219 | ||
8bbbae21 VZ |
1220 | void wxBitmap::SetSelectedInto(wxDC *dc) |
1221 | { | |
1222 | if ( GetBitmapData() ) | |
1223 | GetBitmapData()->m_selectedInto = dc; | |
2bda0e17 KB |
1224 | } |
1225 | ||
3ca22d5e MB |
1226 | #endif |
1227 | ||
d275c7eb VZ |
1228 | #if wxUSE_PALETTE |
1229 | ||
2bda0e17 KB |
1230 | void wxBitmap::SetPalette(const wxPalette& palette) |
1231 | { | |
7ff64980 | 1232 | AllocExclusive(); |
2bda0e17 | 1233 | |
6d167489 | 1234 | GetBitmapData()->m_bitmapPalette = palette; |
2bda0e17 KB |
1235 | } |
1236 | ||
d275c7eb VZ |
1237 | #endif // wxUSE_PALETTE |
1238 | ||
2bda0e17 KB |
1239 | void wxBitmap::SetMask(wxMask *mask) |
1240 | { | |
7ff64980 | 1241 | AllocExclusive(); |
2bda0e17 | 1242 | |
8bbbae21 VZ |
1243 | GetBitmapData()->SetMask(mask); |
1244 | } | |
1245 | ||
2cf45d69 VZ |
1246 | // ---------------------------------------------------------------------------- |
1247 | // raw bitmap access support | |
1248 | // ---------------------------------------------------------------------------- | |
1249 | ||
1e3c12d7 | 1250 | #ifdef wxHAVE_RAW_BITMAP |
b9bcaf11 | 1251 | void *wxBitmap::GetRawData(wxPixelDataBase& data, int bpp) |
2cf45d69 | 1252 | { |
4676948b | 1253 | #if wxUSE_WXDIB |
2cf45d69 VZ |
1254 | if ( !Ok() ) |
1255 | { | |
1256 | // no bitmap, no data (raw or otherwise) | |
b9bcaf11 | 1257 | return NULL; |
2cf45d69 VZ |
1258 | } |
1259 | ||
fa275e86 VZ |
1260 | // if we're already a DIB we can access our data directly, but if not we |
1261 | // need to convert this DDB to a DIB section and use it for raw access and | |
1262 | // then convert it back | |
1263 | HBITMAP hDIB; | |
1264 | if ( !GetBitmapData()->m_isDIB ) | |
1265 | { | |
d0ee33f5 | 1266 | wxCHECK_MSG( !GetBitmapData()->m_dib, NULL, |
fa275e86 VZ |
1267 | _T("GetRawData() may be called only once") ); |
1268 | ||
1269 | wxDIB *dib = new wxDIB(*this); | |
1270 | if ( !dib->IsOk() ) | |
1271 | { | |
1272 | delete dib; | |
1273 | ||
b9bcaf11 | 1274 | return NULL; |
fa275e86 VZ |
1275 | } |
1276 | ||
1277 | // we'll free it in UngetRawData() | |
1278 | GetBitmapData()->m_dib = dib; | |
1279 | ||
1280 | hDIB = dib->GetHandle(); | |
1281 | } | |
1282 | else // we're a DIB | |
1283 | { | |
1284 | hDIB = GetHbitmap(); | |
1285 | } | |
1286 | ||
2cf45d69 | 1287 | DIBSECTION ds; |
fa275e86 | 1288 | if ( ::GetObject(hDIB, sizeof(ds), &ds) != sizeof(DIBSECTION) ) |
2cf45d69 | 1289 | { |
fa275e86 VZ |
1290 | wxFAIL_MSG( _T("failed to get DIBSECTION from a DIB?") ); |
1291 | ||
b9bcaf11 VZ |
1292 | return NULL; |
1293 | } | |
1294 | ||
1295 | // check that the bitmap is in correct format | |
1296 | if ( ds.dsBm.bmBitsPixel != bpp ) | |
1297 | { | |
1298 | wxFAIL_MSG( _T("incorrect bitmap type in wxBitmap::GetRawData()") ); | |
1299 | ||
1300 | return NULL; | |
2cf45d69 VZ |
1301 | } |
1302 | ||
b9bcaf11 | 1303 | // ok, store the relevant info in wxPixelDataBase |
2cf45d69 VZ |
1304 | const LONG h = ds.dsBm.bmHeight; |
1305 | ||
b9bcaf11 VZ |
1306 | data.m_width = ds.dsBm.bmWidth; |
1307 | data.m_height = h; | |
2cf45d69 VZ |
1308 | |
1309 | // remember that DIBs are stored in top to bottom order! | |
e5d4ef74 VZ |
1310 | // (We can't just use ds.dsBm.bmWidthBytes here, because it isn't always a |
1311 | // multiple of 2, as required by the documentation. So we use the official | |
1312 | // formula, which we already use elsewhere.) | |
1313 | const LONG bytesPerRow = | |
1314 | wxDIB::GetLineSize(ds.dsBm.bmWidth, ds.dsBm.bmBitsPixel); | |
b9bcaf11 VZ |
1315 | data.m_stride = -bytesPerRow; |
1316 | ||
1317 | char *bits = (char *)ds.dsBm.bmBits; | |
2cf45d69 VZ |
1318 | if ( h > 1 ) |
1319 | { | |
b9bcaf11 | 1320 | bits += (h - 1)*bytesPerRow; |
2cf45d69 VZ |
1321 | } |
1322 | ||
b9bcaf11 | 1323 | return bits; |
4676948b JS |
1324 | #else |
1325 | return NULL; | |
1326 | #endif | |
2cf45d69 VZ |
1327 | } |
1328 | ||
b9bcaf11 | 1329 | void wxBitmap::UngetRawData(wxPixelDataBase& dataBase) |
13c13ecb | 1330 | { |
4676948b | 1331 | #if wxUSE_WXDIB |
fa275e86 VZ |
1332 | if ( !Ok() ) |
1333 | return; | |
1334 | ||
e5d4ef74 | 1335 | if ( !&dataBase ) |
7af64aac VZ |
1336 | { |
1337 | // invalid data, don't crash -- but don't assert neither as we're | |
b9bcaf11 | 1338 | // called automatically from wxPixelDataBase dtor and so there is no |
7af64aac VZ |
1339 | // way to prevent this from happening |
1340 | return; | |
1341 | } | |
1342 | ||
289307fa VZ |
1343 | // if we're a DDB we need to convert DIB back to DDB now to make the |
1344 | // changes made via raw bitmap access effective | |
1345 | if ( !GetBitmapData()->m_isDIB ) | |
1346 | { | |
1347 | wxDIB *dib = GetBitmapData()->m_dib; | |
1348 | GetBitmapData()->m_dib = NULL; | |
fa275e86 | 1349 | |
289307fa | 1350 | // TODO: convert |
fa275e86 | 1351 | |
289307fa | 1352 | delete dib; |
fa275e86 | 1353 | } |
289307fa | 1354 | #endif // wxUSE_WXDIB |
13c13ecb | 1355 | } |
1e3c12d7 | 1356 | #endif // #ifdef wxHAVE_RAW_BITMAP |
13c13ecb | 1357 | |
6d167489 VZ |
1358 | // ---------------------------------------------------------------------------- |
1359 | // wxMask | |
1360 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 1361 | |
10fcf31a | 1362 | wxMask::wxMask() |
2bda0e17 KB |
1363 | { |
1364 | m_maskBitmap = 0; | |
1365 | } | |
1366 | ||
1b7c01c9 VZ |
1367 | // Copy constructor |
1368 | wxMask::wxMask(const wxMask &mask) | |
0a704d39 | 1369 | : wxObject() |
1b7c01c9 VZ |
1370 | { |
1371 | BITMAP bmp; | |
1372 | ||
1373 | HDC srcDC = CreateCompatibleDC(0); | |
1374 | HDC destDC = CreateCompatibleDC(0); | |
1375 | ||
1376 | // GetBitmapDimensionEx won't work if SetBitmapDimensionEx wasn't used | |
1377 | // so we'll use GetObject() API here: | |
1378 | if (::GetObject((HGDIOBJ)mask.m_maskBitmap, sizeof(bmp), &bmp) == 0) | |
1379 | { | |
1380 | wxFAIL_MSG(wxT("Cannot retrieve the dimensions of the wxMask to copy")); | |
1381 | return; | |
1382 | } | |
1383 | ||
1384 | // create our HBITMAP | |
1385 | int w = bmp.bmWidth, h = bmp.bmHeight; | |
1386 | m_maskBitmap = (WXHBITMAP)CreateCompatibleBitmap(srcDC, w, h); | |
1387 | ||
1388 | // copy the mask's HBITMAP into our HBITMAP | |
1389 | SelectObject(srcDC, (HBITMAP) mask.m_maskBitmap); | |
1390 | SelectObject(destDC, (HBITMAP) m_maskBitmap); | |
1391 | ||
1392 | BitBlt(destDC, 0, 0, w, h, srcDC, 0, 0, SRCCOPY); | |
f4322df6 | 1393 | |
1b7c01c9 VZ |
1394 | SelectObject(srcDC, 0); |
1395 | DeleteDC(srcDC); | |
1396 | SelectObject(destDC, 0); | |
1397 | DeleteDC(destDC); | |
1398 | } | |
1399 | ||
2bda0e17 KB |
1400 | // Construct a mask from a bitmap and a colour indicating |
1401 | // the transparent area | |
1402 | wxMask::wxMask(const wxBitmap& bitmap, const wxColour& colour) | |
1403 | { | |
1404 | m_maskBitmap = 0; | |
6d167489 | 1405 | Create(bitmap, colour); |
2bda0e17 KB |
1406 | } |
1407 | ||
1408 | // Construct a mask from a bitmap and a palette index indicating | |
1409 | // the transparent area | |
debe6624 | 1410 | wxMask::wxMask(const wxBitmap& bitmap, int paletteIndex) |
2bda0e17 KB |
1411 | { |
1412 | m_maskBitmap = 0; | |
6d167489 | 1413 | Create(bitmap, paletteIndex); |
2bda0e17 KB |
1414 | } |
1415 | ||
1416 | // Construct a mask from a mono bitmap (copies the bitmap). | |
1417 | wxMask::wxMask(const wxBitmap& bitmap) | |
1418 | { | |
1419 | m_maskBitmap = 0; | |
6d167489 | 1420 | Create(bitmap); |
2bda0e17 KB |
1421 | } |
1422 | ||
10fcf31a | 1423 | wxMask::~wxMask() |
2bda0e17 KB |
1424 | { |
1425 | if ( m_maskBitmap ) | |
1426 | ::DeleteObject((HBITMAP) m_maskBitmap); | |
1427 | } | |
1428 | ||
1429 | // Create a mask from a mono bitmap (copies the bitmap). | |
1430 | bool wxMask::Create(const wxBitmap& bitmap) | |
1431 | { | |
04ef50df | 1432 | #ifndef __WXMICROWIN__ |
fcf90ee1 | 1433 | wxCHECK_MSG( bitmap.Ok() && bitmap.GetDepth() == 1, false, |
a58a12e9 VZ |
1434 | _T("can't create mask from invalid or not monochrome bitmap") ); |
1435 | ||
2bda0e17 | 1436 | if ( m_maskBitmap ) |
6d167489 VZ |
1437 | { |
1438 | ::DeleteObject((HBITMAP) m_maskBitmap); | |
1439 | m_maskBitmap = 0; | |
1440 | } | |
a58a12e9 | 1441 | |
6d167489 VZ |
1442 | m_maskBitmap = (WXHBITMAP) CreateBitmap( |
1443 | bitmap.GetWidth(), | |
1444 | bitmap.GetHeight(), | |
1445 | 1, 1, 0 | |
1446 | ); | |
1447 | HDC srcDC = CreateCompatibleDC(0); | |
1448 | SelectObject(srcDC, (HBITMAP) bitmap.GetHBITMAP()); | |
1449 | HDC destDC = CreateCompatibleDC(0); | |
1450 | SelectObject(destDC, (HBITMAP) m_maskBitmap); | |
1451 | BitBlt(destDC, 0, 0, bitmap.GetWidth(), bitmap.GetHeight(), srcDC, 0, 0, SRCCOPY); | |
1452 | SelectObject(srcDC, 0); | |
1453 | DeleteDC(srcDC); | |
1454 | SelectObject(destDC, 0); | |
1455 | DeleteDC(destDC); | |
fcf90ee1 | 1456 | return true; |
04ef50df | 1457 | #else |
fcf90ee1 WS |
1458 | wxUnusedVar(bitmap); |
1459 | return false; | |
04ef50df | 1460 | #endif |
2bda0e17 KB |
1461 | } |
1462 | ||
1463 | // Create a mask from a bitmap and a palette index indicating | |
1464 | // the transparent area | |
debe6624 | 1465 | bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex) |
2bda0e17 KB |
1466 | { |
1467 | if ( m_maskBitmap ) | |
1d792928 | 1468 | { |
6d167489 VZ |
1469 | ::DeleteObject((HBITMAP) m_maskBitmap); |
1470 | m_maskBitmap = 0; | |
1d792928 | 1471 | } |
d275c7eb VZ |
1472 | |
1473 | #if wxUSE_PALETTE | |
6d167489 VZ |
1474 | if (bitmap.Ok() && bitmap.GetPalette()->Ok()) |
1475 | { | |
1476 | unsigned char red, green, blue; | |
1477 | if (bitmap.GetPalette()->GetRGB(paletteIndex, &red, &green, &blue)) | |
1478 | { | |
1479 | wxColour transparentColour(red, green, blue); | |
1480 | return Create(bitmap, transparentColour); | |
1481 | } | |
1482 | } | |
d275c7eb VZ |
1483 | #endif // wxUSE_PALETTE |
1484 | ||
fcf90ee1 | 1485 | return false; |
2bda0e17 KB |
1486 | } |
1487 | ||
1488 | // Create a mask from a bitmap and a colour indicating | |
1489 | // the transparent area | |
1490 | bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour) | |
1491 | { | |
04ef50df | 1492 | #ifndef __WXMICROWIN__ |
fcf90ee1 | 1493 | wxCHECK_MSG( bitmap.Ok(), false, _T("invalid bitmap in wxMask::Create") ); |
4b7f2165 | 1494 | |
2bda0e17 | 1495 | if ( m_maskBitmap ) |
1d792928 | 1496 | { |
6d167489 VZ |
1497 | ::DeleteObject((HBITMAP) m_maskBitmap); |
1498 | m_maskBitmap = 0; | |
1499 | } | |
4b7f2165 VZ |
1500 | |
1501 | int width = bitmap.GetWidth(), | |
1502 | height = bitmap.GetHeight(); | |
1503 | ||
1504 | // scan the bitmap for the transparent colour and set the corresponding | |
1505 | // pixels in the mask to BLACK and the rest to WHITE | |
f423f4db | 1506 | COLORREF maskColour = wxColourToPalRGB(colour); |
4b7f2165 VZ |
1507 | m_maskBitmap = (WXHBITMAP)::CreateBitmap(width, height, 1, 1, 0); |
1508 | ||
1509 | HDC srcDC = ::CreateCompatibleDC(NULL); | |
1510 | HDC destDC = ::CreateCompatibleDC(NULL); | |
1511 | if ( !srcDC || !destDC ) | |
1512 | { | |
f6bcfd97 | 1513 | wxLogLastError(wxT("CreateCompatibleDC")); |
4b7f2165 VZ |
1514 | } |
1515 | ||
fcf90ee1 | 1516 | bool ok = true; |
0bafad0c | 1517 | |
1e6feb95 VZ |
1518 | // SelectObject() will fail |
1519 | wxASSERT_MSG( !bitmap.GetSelectedInto(), | |
1520 | _T("bitmap can't be selected in another DC") ); | |
1521 | ||
0bafad0c VZ |
1522 | HGDIOBJ hbmpSrcOld = ::SelectObject(srcDC, GetHbitmapOf(bitmap)); |
1523 | if ( !hbmpSrcOld ) | |
6d167489 | 1524 | { |
f6bcfd97 | 1525 | wxLogLastError(wxT("SelectObject")); |
0bafad0c | 1526 | |
fcf90ee1 | 1527 | ok = false; |
4b7f2165 | 1528 | } |
0bafad0c VZ |
1529 | |
1530 | HGDIOBJ hbmpDstOld = ::SelectObject(destDC, (HBITMAP)m_maskBitmap); | |
1531 | if ( !hbmpDstOld ) | |
4b7f2165 | 1532 | { |
f6bcfd97 | 1533 | wxLogLastError(wxT("SelectObject")); |
0bafad0c | 1534 | |
fcf90ee1 | 1535 | ok = false; |
1d792928 | 1536 | } |
2bda0e17 | 1537 | |
59ff46cb | 1538 | if ( ok ) |
2bda0e17 | 1539 | { |
59ff46cb VZ |
1540 | // this will create a monochrome bitmap with 0 points for the pixels |
1541 | // which have the same value as the background colour and 1 for the | |
1542 | // others | |
1543 | ::SetBkColor(srcDC, maskColour); | |
1544 | ::BitBlt(destDC, 0, 0, width, height, srcDC, 0, 0, NOTSRCCOPY); | |
2bda0e17 | 1545 | } |
4b7f2165 | 1546 | |
0bafad0c | 1547 | ::SelectObject(srcDC, hbmpSrcOld); |
6d167489 | 1548 | ::DeleteDC(srcDC); |
0bafad0c | 1549 | ::SelectObject(destDC, hbmpDstOld); |
6d167489 | 1550 | ::DeleteDC(destDC); |
4b7f2165 | 1551 | |
0bafad0c | 1552 | return ok; |
59ff46cb | 1553 | #else // __WXMICROWIN__ |
fcf90ee1 WS |
1554 | wxUnusedVar(bitmap); |
1555 | wxUnusedVar(colour); | |
1556 | return false; | |
59ff46cb | 1557 | #endif // __WXMICROWIN__/!__WXMICROWIN__ |
6d167489 VZ |
1558 | } |
1559 | ||
1560 | // ---------------------------------------------------------------------------- | |
1561 | // wxBitmapHandler | |
1562 | // ---------------------------------------------------------------------------- | |
1d792928 | 1563 | |
6d167489 | 1564 | bool wxBitmapHandler::Create(wxGDIImage *image, |
452418c4 | 1565 | const void* data, |
e86f2cc8 | 1566 | wxBitmapType type, |
6d167489 VZ |
1567 | int width, int height, int depth) |
1568 | { | |
1569 | wxBitmap *bitmap = wxDynamicCast(image, wxBitmap); | |
1d792928 | 1570 | |
e86f2cc8 | 1571 | return bitmap && Create(bitmap, data, type, width, height, depth); |
2bda0e17 KB |
1572 | } |
1573 | ||
6d167489 VZ |
1574 | bool wxBitmapHandler::Load(wxGDIImage *image, |
1575 | const wxString& name, | |
e86f2cc8 | 1576 | wxBitmapType type, |
6d167489 | 1577 | int width, int height) |
2bda0e17 | 1578 | { |
6d167489 | 1579 | wxBitmap *bitmap = wxDynamicCast(image, wxBitmap); |
2bda0e17 | 1580 | |
e86f2cc8 | 1581 | return bitmap && LoadFile(bitmap, name, type, width, height); |
6d167489 | 1582 | } |
2bda0e17 | 1583 | |
e86f2cc8 | 1584 | bool wxBitmapHandler::Save(const wxGDIImage *image, |
6d167489 | 1585 | const wxString& name, |
e86f2cc8 | 1586 | wxBitmapType type) const |
2bda0e17 | 1587 | { |
6d167489 VZ |
1588 | wxBitmap *bitmap = wxDynamicCast(image, wxBitmap); |
1589 | ||
452418c4 | 1590 | return bitmap && SaveFile(bitmap, name, type); |
7b46ecac JS |
1591 | } |
1592 | ||
8adefcac PC |
1593 | bool wxBitmapHandler::Create(wxBitmap *WXUNUSED(bitmap), |
1594 | const void* WXUNUSED(data), | |
e86f2cc8 | 1595 | wxBitmapType WXUNUSED(type), |
8adefcac PC |
1596 | int WXUNUSED(width), |
1597 | int WXUNUSED(height), | |
1598 | int WXUNUSED(depth)) | |
1599 | { | |
1600 | return false; | |
1601 | } | |
1602 | ||
1603 | bool wxBitmapHandler::LoadFile(wxBitmap *WXUNUSED(bitmap), | |
1604 | const wxString& WXUNUSED(name), | |
e86f2cc8 | 1605 | wxBitmapType WXUNUSED(type), |
8adefcac PC |
1606 | int WXUNUSED(desiredWidth), |
1607 | int WXUNUSED(desiredHeight)) | |
1608 | { | |
1609 | return false; | |
1610 | } | |
1611 | ||
e86f2cc8 | 1612 | bool wxBitmapHandler::SaveFile(const wxBitmap *WXUNUSED(bitmap), |
8adefcac | 1613 | const wxString& WXUNUSED(name), |
e86f2cc8 FM |
1614 | wxBitmapType WXUNUSED(type), |
1615 | const wxPalette *WXUNUSED(palette)) const | |
8adefcac PC |
1616 | { |
1617 | return false; | |
1618 | } | |
1619 | ||
4b7f2165 | 1620 | // ---------------------------------------------------------------------------- |
211b54b1 | 1621 | // global helper functions implemented here |
4b7f2165 VZ |
1622 | // ---------------------------------------------------------------------------- |
1623 | ||
211b54b1 VZ |
1624 | // helper of wxBitmapToHICON/HCURSOR |
1625 | static | |
1626 | HICON wxBitmapToIconOrCursor(const wxBitmap& bmp, | |
1627 | bool iconWanted, | |
1628 | int hotSpotX, | |
1629 | int hotSpotY) | |
1630 | { | |
1631 | if ( !bmp.Ok() ) | |
1632 | { | |
1633 | // we can't create an icon/cursor form nothing | |
1634 | return 0; | |
1635 | } | |
1636 | ||
0806fc20 RD |
1637 | if ( bmp.HasAlpha() ) |
1638 | { | |
07430847 JS |
1639 | // Create an empty mask bitmap. |
1640 | // it doesn't seem to work if we mess with the mask at all. | |
1641 | HBITMAP hMonoBitmap = CreateBitmap(bmp.GetWidth(),bmp.GetHeight(),1,1,NULL); | |
1642 | ||
1643 | ICONINFO iconInfo; | |
1644 | wxZeroMemory(iconInfo); | |
1645 | iconInfo.fIcon = iconWanted; // do we want an icon or a cursor? | |
1646 | if ( !iconWanted ) | |
1647 | { | |
1648 | iconInfo.xHotspot = hotSpotX; | |
1649 | iconInfo.yHotspot = hotSpotY; | |
1650 | } | |
1651 | ||
1652 | iconInfo.hbmMask = hMonoBitmap; | |
1653 | iconInfo.hbmColor = GetHbitmapOf(bmp); | |
1654 | ||
1655 | HICON hicon = ::CreateIconIndirect(&iconInfo); | |
1656 | ||
1657 | ::DeleteObject(hMonoBitmap); | |
1658 | ||
1659 | return hicon; | |
0806fc20 | 1660 | } |
d0ee33f5 | 1661 | |
07430847 JS |
1662 | wxMask* mask = bmp.GetMask(); |
1663 | ||
211b54b1 VZ |
1664 | if ( !mask ) |
1665 | { | |
1666 | // we must have a mask for an icon, so even if it's probably incorrect, | |
1667 | // do create it (grey is the "standard" transparent colour) | |
1668 | mask = new wxMask(bmp, *wxLIGHT_GREY); | |
1669 | } | |
1670 | ||
1671 | ICONINFO iconInfo; | |
4104d2b3 | 1672 | wxZeroMemory(iconInfo); |
211b54b1 VZ |
1673 | iconInfo.fIcon = iconWanted; // do we want an icon or a cursor? |
1674 | if ( !iconWanted ) | |
1675 | { | |
1676 | iconInfo.xHotspot = hotSpotX; | |
1677 | iconInfo.yHotspot = hotSpotY; | |
1678 | } | |
1679 | ||
1680 | iconInfo.hbmMask = wxInvertMask((HBITMAP)mask->GetMaskBitmap()); | |
1681 | iconInfo.hbmColor = GetHbitmapOf(bmp); | |
1682 | ||
1683 | // black out the transparent area to preserve background colour, because | |
1684 | // Windows blits the original bitmap using SRCINVERT (XOR) after applying | |
1685 | // the mask to the dest rect. | |
1686 | { | |
1687 | MemoryHDC dcSrc, dcDst; | |
1688 | SelectInHDC selectMask(dcSrc, (HBITMAP)mask->GetMaskBitmap()), | |
1689 | selectBitmap(dcDst, iconInfo.hbmColor); | |
1690 | ||
1691 | if ( !::BitBlt(dcDst, 0, 0, bmp.GetWidth(), bmp.GetHeight(), | |
1692 | dcSrc, 0, 0, SRCAND) ) | |
1693 | { | |
1694 | wxLogLastError(_T("BitBlt")); | |
1695 | } | |
1696 | } | |
1697 | ||
1698 | HICON hicon = ::CreateIconIndirect(&iconInfo); | |
1699 | ||
0806fc20 | 1700 | if ( !bmp.GetMask() && !bmp.HasAlpha() ) |
211b54b1 VZ |
1701 | { |
1702 | // we created the mask, now delete it | |
1703 | delete mask; | |
1704 | } | |
1705 | ||
1706 | // delete the inverted mask bitmap we created as well | |
1707 | ::DeleteObject(iconInfo.hbmMask); | |
1708 | ||
1709 | return hicon; | |
1710 | } | |
1711 | ||
1712 | HICON wxBitmapToHICON(const wxBitmap& bmp) | |
1713 | { | |
fcf90ee1 | 1714 | return wxBitmapToIconOrCursor(bmp, true, 0, 0); |
211b54b1 VZ |
1715 | } |
1716 | ||
1717 | HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY) | |
1718 | { | |
fcf90ee1 | 1719 | return (HCURSOR)wxBitmapToIconOrCursor(bmp, false, hotSpotX, hotSpotY); |
211b54b1 VZ |
1720 | } |
1721 | ||
1722 | HBITMAP wxInvertMask(HBITMAP hbmpMask, int w, int h) | |
4b7f2165 | 1723 | { |
04ef50df | 1724 | #ifndef __WXMICROWIN__ |
4b7f2165 VZ |
1725 | wxCHECK_MSG( hbmpMask, 0, _T("invalid bitmap in wxInvertMask") ); |
1726 | ||
1727 | // get width/height from the bitmap if not given | |
1728 | if ( !w || !h ) | |
1729 | { | |
1730 | BITMAP bm; | |
1731 | ::GetObject(hbmpMask, sizeof(BITMAP), (LPVOID)&bm); | |
1732 | w = bm.bmWidth; | |
1733 | h = bm.bmHeight; | |
1734 | } | |
1735 | ||
1736 | HDC hdcSrc = ::CreateCompatibleDC(NULL); | |
1737 | HDC hdcDst = ::CreateCompatibleDC(NULL); | |
1738 | if ( !hdcSrc || !hdcDst ) | |
1739 | { | |
f6bcfd97 | 1740 | wxLogLastError(wxT("CreateCompatibleDC")); |
4b7f2165 VZ |
1741 | } |
1742 | ||
1743 | HBITMAP hbmpInvMask = ::CreateBitmap(w, h, 1, 1, 0); | |
1744 | if ( !hbmpInvMask ) | |
1745 | { | |
f6bcfd97 | 1746 | wxLogLastError(wxT("CreateBitmap")); |
4b7f2165 VZ |
1747 | } |
1748 | ||
e7222d65 JS |
1749 | HGDIOBJ srcTmp = ::SelectObject(hdcSrc, hbmpMask); |
1750 | HGDIOBJ dstTmp = ::SelectObject(hdcDst, hbmpInvMask); | |
4b7f2165 VZ |
1751 | if ( !::BitBlt(hdcDst, 0, 0, w, h, |
1752 | hdcSrc, 0, 0, | |
1753 | NOTSRCCOPY) ) | |
1754 | { | |
f6bcfd97 | 1755 | wxLogLastError(wxT("BitBlt")); |
4b7f2165 | 1756 | } |
7b46ecac | 1757 | |
e7222d65 JS |
1758 | // Deselect objects |
1759 | SelectObject(hdcSrc,srcTmp); | |
1760 | SelectObject(hdcDst,dstTmp); | |
fcf90ee1 | 1761 | |
4b7f2165 VZ |
1762 | ::DeleteDC(hdcSrc); |
1763 | ::DeleteDC(hdcDst); | |
1764 | ||
1765 | return hbmpInvMask; | |
04ef50df JS |
1766 | #else |
1767 | return 0; | |
1768 | #endif | |
4b7f2165 | 1769 | } |