]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: bitmap.cpp | |
3 | // Purpose: wxBitmap | |
f0a56ab0 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
f0a56ab0 | 6 | // Created: 08/08/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
f0a56ab0 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
aa213887 SN |
12 | #ifdef __GNUG__ |
13 | #pragma implementation "bitmap.h" | |
14 | #endif | |
15 | ||
d88de032 DW |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifndef WX_PRECOMP | |
20 | #include <stdio.h> | |
21 | ||
22 | #include "wx/list.h" | |
23 | #include "wx/utils.h" | |
24 | #include "wx/app.h" | |
25 | #include "wx/palette.h" | |
26 | #include "wx/dcmemory.h" | |
27 | #include "wx/bitmap.h" | |
28 | #include "wx/icon.h" | |
0e320a79 DW |
29 | #endif |
30 | ||
d88de032 | 31 | #include "wx/os2/private.h" |
0e320a79 DW |
32 | #include "wx/log.h" |
33 | ||
3b9e3455 DW |
34 | //#include "wx/msw/dib.h" |
35 | #include "wx/image.h" | |
1c344e89 | 36 | #include "wx/xpmdecod.h" |
3b9e3455 | 37 | |
d88de032 DW |
38 | // ---------------------------------------------------------------------------- |
39 | // macros | |
40 | // ---------------------------------------------------------------------------- | |
41 | ||
0e320a79 DW |
42 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject) |
43 | IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject) | |
3b9e3455 DW |
44 | |
45 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject) | |
0e320a79 | 46 | |
3b9e3455 DW |
47 | // ============================================================================ |
48 | // implementation | |
49 | // ============================================================================ | |
50 | ||
51 | // ---------------------------------------------------------------------------- | |
52 | // wxBitmapRefData | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
0e320a79 DW |
55 | wxBitmapRefData::wxBitmapRefData() |
56 | { | |
3b9e3455 DW |
57 | m_nQuality = 0; |
58 | m_pSelectedInto = NULL; | |
59 | m_nNumColors = 0; | |
60 | m_pBitmapMask = NULL; | |
70a2c656 | 61 | m_hBitmap = (WXHBITMAP) NULL; |
341366c6 | 62 | } // end of wxBitmapRefData::wxBitmapRefData |
0e320a79 | 63 | |
3b9e3455 | 64 | void wxBitmapRefData::Free() |
0e320a79 | 65 | { |
1d0edc0f DW |
66 | if ( m_pSelectedInto ) |
67 | { | |
68 | wxLogLastError("GpiDeleteBitmap(hbitmap)"); | |
69 | } | |
3b9e3455 DW |
70 | if (m_hBitmap) |
71 | { | |
3437f881 | 72 | if (!::GpiDeleteBitmap((HBITMAP)m_hBitmap)) |
3b9e3455 DW |
73 | { |
74 | wxLogLastError("GpiDeleteBitmap(hbitmap)"); | |
75 | } | |
76 | } | |
2590f154 DW |
77 | if (m_pBitmapMask) |
78 | { | |
79 | delete m_pBitmapMask; | |
80 | m_pBitmapMask = NULL; | |
81 | } | |
341366c6 | 82 | } // end of wxBitmapRefData::Free |
0e320a79 | 83 | |
3b9e3455 DW |
84 | // ---------------------------------------------------------------------------- |
85 | // wxBitmap creation | |
86 | // ---------------------------------------------------------------------------- | |
0e320a79 | 87 | |
3b9e3455 DW |
88 | // this function should be called from all wxBitmap ctors |
89 | void wxBitmap::Init() | |
0e320a79 | 90 | { |
16ff355b | 91 | m_bIsMono = FALSE; |
1c9a789e DW |
92 | // |
93 | // True for all bitmaps created from bits, wxImages, Xpms | |
94 | // | |
6f38c86f | 95 | } // end of wxBitmap::Init |
0e320a79 | 96 | |
3b9e3455 DW |
97 | bool wxBitmap::CopyFromIconOrCursor( |
98 | const wxGDIImage& rIcon | |
99 | ) | |
d88de032 | 100 | { |
6f38c86f DW |
101 | HPOINTER hIcon = (HPOINTER)rIcon.GetHandle(); |
102 | POINTERINFO SIconInfo; | |
103 | ||
104 | if (!::WinQueryPointerInfo(hIcon, &SIconInfo)) | |
105 | { | |
106 | wxLogLastError(wxT("WinQueryPointerInfo")); | |
107 | return FALSE; | |
108 | } | |
3b9e3455 | 109 | wxBitmapRefData* pRefData = new wxBitmapRefData; |
d88de032 | 110 | |
3b9e3455 | 111 | m_refData = pRefData; |
d88de032 | 112 | |
6f38c86f DW |
113 | int nWidth = rIcon.GetWidth(); |
114 | int nHeight = rIcon.GetHeight(); | |
d88de032 | 115 | |
6f38c86f DW |
116 | pRefData->m_nWidth = nWidth; |
117 | pRefData->m_nHeight = nHeight; | |
118 | pRefData->m_nDepth = wxDisplayDepth(); | |
d88de032 | 119 | |
6f38c86f DW |
120 | pRefData->m_hBitmap = (WXHBITMAP)SIconInfo.hbmColor; |
121 | ||
16ff355b DW |
122 | wxMask* pMask = new wxMask(SIconInfo.hbmPointer); |
123 | ||
124 | pMask->SetMaskBitmap(GetHBITMAP()); | |
125 | SetMask(pMask); | |
126 | ||
3b9e3455 | 127 | return(TRUE); |
6f38c86f | 128 | } // end of wxBitmap::CopyFromIconOrCursor |
0e320a79 | 129 | |
3b9e3455 DW |
130 | bool wxBitmap::CopyFromCursor( |
131 | const wxCursor& rCursor | |
132 | ) | |
d88de032 | 133 | { |
3b9e3455 | 134 | UnRef(); |
d88de032 | 135 | |
3b9e3455 DW |
136 | if (!rCursor.Ok()) |
137 | return(FALSE); | |
43543d98 | 138 | return(CopyFromIconOrCursor(rCursor)); |
6f38c86f | 139 | } // end of wxBitmap::CopyFromCursor |
d88de032 | 140 | |
3b9e3455 DW |
141 | bool wxBitmap::CopyFromIcon( |
142 | const wxIcon& rIcon | |
143 | ) | |
0e320a79 | 144 | { |
3b9e3455 | 145 | UnRef(); |
0e320a79 | 146 | |
3b9e3455 DW |
147 | if (!rIcon.Ok()) |
148 | return(FALSE); | |
0e320a79 | 149 | |
43543d98 | 150 | return CopyFromIconOrCursor(rIcon); |
6f38c86f | 151 | } // end of wxBitmap::CopyFromIcon |
0e320a79 | 152 | |
3b9e3455 | 153 | wxBitmap::~wxBitmap() |
d88de032 | 154 | { |
6f38c86f | 155 | } // end of wxBitmap::~wxBitmap |
d88de032 | 156 | |
3b9e3455 DW |
157 | wxBitmap::wxBitmap( |
158 | const char zBits[] | |
3437f881 DW |
159 | , int nWidth |
160 | , int nHeight | |
161 | , int nDepth | |
3b9e3455 DW |
162 | ) |
163 | { | |
164 | Init(); | |
165 | ||
166 | wxBitmapRefData* pRefData = new wxBitmapRefData; | |
167 | BITMAPINFOHEADER2 vHeader; | |
168 | BITMAPINFO2 vInfo; | |
169 | HDC hDc; | |
170 | HPS hPs; | |
43543d98 | 171 | DEVOPENSTRUC vDop = { NULL, "DISPLAY", NULL, NULL, NULL, NULL, NULL, NULL, NULL }; |
3b9e3455 | 172 | SIZEL vSize = {0, 0}; |
3437f881 | 173 | char* pzData; |
3b9e3455 | 174 | |
43543d98 | 175 | wxASSERT(vHabmain != NULL); |
3b9e3455 | 176 | |
3437f881 | 177 | m_refData = pRefData; |
3b9e3455 | 178 | |
3437f881 DW |
179 | pRefData->m_nWidth = nWidth; |
180 | pRefData->m_nHeight = nHeight; | |
181 | pRefData->m_nDepth = nDepth; | |
182 | pRefData->m_nNumColors = 0; | |
183 | pRefData->m_pSelectedInto = NULL; | |
3b9e3455 | 184 | |
c354beea | 185 | hDc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); |
43543d98 | 186 | hPs = ::GpiCreatePS(vHabmain, hDc, &vSize, GPIA_ASSOC | PU_PELS); |
4f72fe4f | 187 | if (hPs == 0) |
3b9e3455 DW |
188 | { |
189 | wxLogLastError("GpiCreatePS Failure"); | |
190 | } | |
0e320a79 | 191 | |
3437f881 DW |
192 | if (nDepth == 1) |
193 | { | |
194 | // | |
195 | // We assume that it is in XBM format which is not quite the same as | |
196 | // the format CreateBitmap() wants because the order of bytes in the | |
197 | // line is inversed! | |
198 | // | |
199 | const size_t nBytesPerLine = (nWidth + 7) / 8; | |
200 | const size_t nPadding = nBytesPerLine % 2; | |
201 | const size_t nLen = nHeight * (nPadding + nBytesPerLine); | |
202 | const char* pzSrc = zBits; | |
203 | int nRows; | |
204 | size_t nCols; | |
205 | ||
206 | pzData = (char *)malloc(nLen); | |
207 | ||
208 | char* pzDst = pzData; | |
209 | ||
210 | for (nRows = 0; nRows < nHeight; nRows++) | |
211 | { | |
212 | for (nCols = 0; nCols < nBytesPerLine; nCols++) | |
213 | { | |
214 | unsigned char ucVal = *pzSrc++; | |
215 | unsigned char ucReversed = 0; | |
216 | int nBits; | |
0e320a79 | 217 | |
3437f881 DW |
218 | for (nBits = 0; nBits < 8; nBits++) |
219 | { | |
220 | ucReversed <<= 1; | |
221 | ucReversed |= (ucVal & 0x01); | |
222 | ucVal >>= 1; | |
223 | } | |
224 | *pzDst++ = ucReversed; | |
225 | } | |
226 | if (nPadding) | |
227 | *pzDst++ = 0; | |
228 | } | |
229 | } | |
230 | else | |
231 | { | |
232 | // | |
233 | // Bits should already be in Windows standard format | |
234 | // | |
235 | pzData = (char *)zBits; // const_cast is harmless | |
236 | } | |
237 | ||
ba3e10c9 DW |
238 | if (nDepth > 24) |
239 | nDepth = 24; // MAX supported in PM | |
c354beea DW |
240 | memset(&vHeader, '\0', 16); |
241 | vHeader.cbFix = 16; | |
3437f881 DW |
242 | vHeader.cx = (USHORT)nWidth; |
243 | vHeader.cy = (USHORT)nHeight; | |
244 | vHeader.cPlanes = 1L; | |
245 | vHeader.cBitCount = nDepth; | |
246 | vHeader.usReserved = 0; | |
c354beea DW |
247 | |
248 | memset(&vInfo, '\0', 16); | |
249 | vInfo.cbFix = 16; | |
3437f881 DW |
250 | vInfo.cx = (USHORT)nWidth; |
251 | vInfo.cy = (USHORT)nHeight; | |
252 | vInfo.cPlanes = 1L; | |
253 | vInfo.cBitCount = nDepth; | |
3437f881 DW |
254 | |
255 | HBITMAP hBmp = ::GpiCreateBitmap(hPs, &vHeader, CBM_INIT, (PBYTE)pzData, &vInfo); | |
0e320a79 | 256 | |
43543d98 | 257 | if (!hBmp) |
3b9e3455 DW |
258 | { |
259 | wxLogLastError("CreateBitmap"); | |
260 | } | |
c354beea DW |
261 | ::GpiDestroyPS(hPs); |
262 | ::DevCloseDC(hDc); | |
43543d98 | 263 | SetHBITMAP((WXHBITMAP)hBmp); |
6f38c86f | 264 | } // end of wxBitmap::wxBitmap |
0e320a79 | 265 | |
3b9e3455 DW |
266 | wxBitmap::wxBitmap( |
267 | int nW | |
268 | , int nH | |
269 | , int nD | |
270 | ) | |
271 | { | |
272 | Init(); | |
3b9e3455 DW |
273 | (void)Create( nW |
274 | ,nH | |
275 | ,nD | |
276 | ); | |
6f38c86f | 277 | } // end of wxBitmap::wxBitmap |
3b9e3455 DW |
278 | |
279 | wxBitmap::wxBitmap( | |
280 | void* pData | |
281 | , long lType | |
282 | , int nWidth | |
283 | , int nHeight | |
284 | , int nDepth | |
285 | ) | |
286 | { | |
287 | Init(); | |
288 | ||
289 | (void)Create( pData | |
290 | ,lType | |
291 | ,nWidth | |
292 | ,nHeight | |
293 | ,nDepth | |
294 | ); | |
6f38c86f | 295 | } // end of wxBitmap::wxBitmap |
3b9e3455 DW |
296 | |
297 | wxBitmap::wxBitmap( | |
3029781e | 298 | int nId |
3b9e3455 DW |
299 | , long lType |
300 | ) | |
301 | { | |
302 | Init(); | |
3029781e | 303 | LoadFile( nId |
3b9e3455 DW |
304 | ,(int)lType |
305 | ); | |
70a2c656 | 306 | SetId(nId); |
6f38c86f | 307 | } // end of wxBitmap::wxBitmap |
3b9e3455 DW |
308 | |
309 | bool wxBitmap::Create( | |
310 | int nW | |
311 | , int nH | |
312 | , int nD | |
313 | ) | |
314 | { | |
315 | HBITMAP hBmp; | |
316 | BITMAPINFOHEADER2 vHeader; | |
3b9e3455 | 317 | |
43543d98 | 318 | wxASSERT(vHabmain != NULL); |
0e320a79 | 319 | UnRef(); |
0e320a79 | 320 | m_refData = new wxBitmapRefData; |
43543d98 DW |
321 | GetBitmapData()->m_nWidth = nW; |
322 | GetBitmapData()->m_nHeight = nH; | |
323 | GetBitmapData()->m_nDepth = nD; | |
0e320a79 | 324 | |
16ff355b DW |
325 | // |
326 | // Xpms and bitmaps from other images can also be mono's, but only | |
327 | // mono's need help changing their colors with MemDC changes | |
328 | // | |
3b9e3455 DW |
329 | if (nD > 0) |
330 | { | |
6f38c86f DW |
331 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; |
332 | SIZEL vSize = {0, 0}; | |
333 | HDC hDC = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
334 | HPS hPS = ::GpiCreatePS(vHabmain, hDC, &vSize, PU_PELS | GPIA_ASSOC); | |
335 | ||
ad6bd870 DW |
336 | if (nD == 1) |
337 | m_bIsMono = TRUE; | |
c354beea DW |
338 | memset(&vHeader, '\0', 16); |
339 | vHeader.cbFix = 16; | |
6f38c86f DW |
340 | vHeader.cx = nW; |
341 | vHeader.cy = nH; | |
342 | vHeader.cPlanes = 1; | |
16ff355b | 343 | vHeader.cBitCount = 24; //nD; |
6f38c86f DW |
344 | |
345 | hBmp = ::GpiCreateBitmap( hPS | |
346 | ,&vHeader | |
347 | ,0L | |
348 | ,NULL | |
349 | ,NULL | |
350 | ); | |
351 | ::GpiDestroyPS(hPS); | |
352 | ::DevCloseDC(hDC); | |
3b9e3455 DW |
353 | } |
354 | else | |
355 | { | |
6f38c86f DW |
356 | HPS hPSScreen; |
357 | HDC hDCScreen; | |
358 | LONG lBitCount; | |
359 | ||
360 | hPSScreen = ::WinGetScreenPS(HWND_DESKTOP); | |
361 | hDCScreen = ::GpiQueryDevice(hPSScreen); | |
362 | ::DevQueryCaps(hDCScreen, CAPS_COLOR_BITCOUNT, 1L, &lBitCount); | |
363 | ||
ba3e10c9 DW |
364 | if (lBitCount > 24) |
365 | lBitCount = 24; | |
366 | ||
c354beea DW |
367 | memset(&vHeader, '\0', 16); |
368 | vHeader.cbFix = 16; | |
6f38c86f DW |
369 | vHeader.cx = nW; |
370 | vHeader.cy = nH; | |
371 | vHeader.cPlanes = 1; | |
372 | vHeader.cBitCount = lBitCount; | |
373 | ||
374 | hBmp = ::GpiCreateBitmap( hPSScreen | |
375 | ,&vHeader | |
376 | ,0L | |
377 | ,NULL | |
378 | ,NULL | |
379 | ); | |
4f72fe4f | 380 | |
43543d98 | 381 | GetBitmapData()->m_nDepth = wxDisplayDepth(); |
6f38c86f | 382 | ::WinReleasePS(hPSScreen); |
3b9e3455 | 383 | } |
4f72fe4f | 384 | SetHBITMAP((WXHBITMAP)hBmp); |
0e320a79 | 385 | |
3b9e3455 | 386 | return Ok(); |
6f38c86f | 387 | } // end of wxBitmap::Create |
0e320a79 | 388 | |
1c344e89 DW |
389 | bool wxBitmap::CreateFromXpm( |
390 | const char** ppData | |
391 | ) | |
392 | { | |
393 | #if wxUSE_IMAGE && wxUSE_XPM | |
394 | Init(); | |
395 | ||
396 | wxCHECK_MSG(ppData != NULL, FALSE, wxT("invalid bitmap data")) | |
397 | ||
398 | wxXPMDecoder vDecoder; | |
399 | wxImage vImg = vDecoder.ReadData(ppData); | |
400 | ||
401 | wxCHECK_MSG(vImg.Ok(), FALSE, wxT("invalid bitmap data")) | |
402 | ||
403 | *this = wxBitmap(vImg); | |
404 | return TRUE; | |
405 | #else | |
406 | return FALSE; | |
407 | #endif | |
408 | } // end of wxBitmap::CreateFromXpm | |
409 | ||
4f72fe4f | 410 | bool wxBitmap::LoadFile( |
3029781e | 411 | int nId |
4f72fe4f DW |
412 | , long lType |
413 | ) | |
0e320a79 DW |
414 | { |
415 | UnRef(); | |
416 | ||
4f72fe4f DW |
417 | wxBitmapHandler* pHandler = wxDynamicCast( FindHandler(lType) |
418 | ,wxBitmapHandler | |
419 | ); | |
0e320a79 | 420 | |
4f72fe4f | 421 | if (pHandler) |
3b9e3455 DW |
422 | { |
423 | m_refData = new wxBitmapRefData; | |
0e320a79 | 424 | |
4f72fe4f | 425 | return(pHandler->LoadFile( this |
3029781e | 426 | ,nId |
4f72fe4f DW |
427 | ,lType |
428 | , -1 | |
429 | , -1 | |
43543d98 | 430 | )); |
0e320a79 | 431 | } |
3b9e3455 DW |
432 | else |
433 | { | |
3029781e | 434 | return(FALSE); |
3b9e3455 | 435 | } |
6f38c86f | 436 | } // end of wxBitmap::LoadFile |
0e320a79 | 437 | |
4f72fe4f DW |
438 | bool wxBitmap::Create( |
439 | void* pData | |
440 | , long lType | |
441 | , int nWidth | |
442 | , int nHeight | |
443 | , int nDepth | |
444 | ) | |
0e320a79 DW |
445 | { |
446 | UnRef(); | |
447 | ||
4f72fe4f DW |
448 | wxBitmapHandler* pHandler = wxDynamicCast( FindHandler(lType) |
449 | ,wxBitmapHandler | |
450 | ); | |
0e320a79 | 451 | |
4f72fe4f | 452 | if (!pHandler) |
3b9e3455 | 453 | { |
9923c37d | 454 | wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for type %ld defined."), lType); |
0e320a79 | 455 | |
4f72fe4f | 456 | return(FALSE); |
0e320a79 DW |
457 | } |
458 | ||
3b9e3455 DW |
459 | m_refData = new wxBitmapRefData; |
460 | ||
43543d98 DW |
461 | return(pHandler->Create( this |
462 | ,pData | |
463 | ,lType | |
464 | ,nWidth | |
465 | ,nHeight | |
466 | ,nDepth | |
467 | )); | |
6f38c86f | 468 | } // end of wxBitmap::Create |
0e320a79 | 469 | |
58b16424 | 470 | bool wxBitmap::SaveFile( |
4f72fe4f DW |
471 | const wxString& rFilename |
472 | , int lType | |
473 | , const wxPalette* pPalette | |
474 | ) | |
0e320a79 | 475 | { |
4f72fe4f DW |
476 | wxBitmapHandler* pHandler = wxDynamicCast( FindHandler(lType) |
477 | ,wxBitmapHandler | |
478 | ); | |
0e320a79 | 479 | |
4f72fe4f | 480 | if (pHandler) |
3b9e3455 | 481 | { |
4f72fe4f DW |
482 | return pHandler->SaveFile( this |
483 | ,rFilename | |
484 | ,lType | |
485 | ,pPalette | |
486 | ); | |
3b9e3455 DW |
487 | } |
488 | else | |
489 | { | |
490 | // FIXME what about palette? shouldn't we use it? | |
f95255e2 | 491 | wxImage vImage = ConvertToImage(); |
4f72fe4f DW |
492 | |
493 | if (!vImage.Ok()) | |
494 | return(FALSE); | |
0e320a79 | 495 | |
4f72fe4f DW |
496 | return(vImage.SaveFile( rFilename |
497 | ,lType | |
498 | )); | |
3b9e3455 | 499 | } |
6f38c86f DW |
500 | } // end of wxBitmap::SaveFile |
501 | ||
fec19ea9 VS |
502 | |
503 | // ---------------------------------------------------------------------------- | |
2b5f62a0 | 504 | // wxImage-wxBitmap conversion |
fec19ea9 VS |
505 | // ---------------------------------------------------------------------------- |
506 | ||
3437f881 DW |
507 | bool wxBitmap::CreateFromImage ( |
508 | const wxImage& rImage | |
509 | , int nDepth | |
510 | ) | |
fec19ea9 | 511 | { |
3437f881 | 512 | wxCHECK_MSG(rImage.Ok(), FALSE, wxT("invalid image")); |
a086de98 | 513 | m_refData = new wxBitmapRefData(); |
c354beea | 514 | |
3437f881 | 515 | int nSizeLimit = 1024 * 768 * 3; |
a086de98 DW |
516 | int nWidth = rImage.GetWidth(); |
517 | int nBmpHeight = rImage.GetHeight(); | |
3437f881 DW |
518 | int nBytePerLine = nWidth * 3; |
519 | int nSizeDWORD = sizeof(DWORD); | |
520 | int nLineBoundary = nBytePerLine % nSizeDWORD; | |
521 | int nPadding = 0; | |
522 | ||
523 | if (nLineBoundary > 0) | |
fec19ea9 | 524 | { |
3437f881 DW |
525 | nPadding = nSizeDWORD - nLineBoundary; |
526 | nBytePerLine += nPadding; | |
fec19ea9 | 527 | } |
3437f881 DW |
528 | |
529 | // | |
530 | // Calc the number of DIBs and heights of DIBs | |
531 | // | |
532 | int nNumDIB = 1; | |
533 | int nHRemain = 0; | |
534 | int nHeight = nSizeLimit / nBytePerLine; | |
535 | ||
536 | if (nHeight >= nBmpHeight) | |
537 | nHeight = nBmpHeight; | |
fec19ea9 VS |
538 | else |
539 | { | |
3437f881 DW |
540 | nNumDIB = nBmpHeight / nHeight; |
541 | nHRemain = nBmpHeight % nHeight; | |
542 | if (nHRemain > 0) | |
543 | nNumDIB++; | |
fec19ea9 VS |
544 | } |
545 | ||
3437f881 DW |
546 | // |
547 | // Set bitmap parameters | |
548 | // | |
549 | wxCHECK_MSG(rImage.Ok(), FALSE, wxT("invalid image")); | |
550 | SetWidth(nWidth); | |
551 | SetHeight(nBmpHeight); | |
ad6bd870 DW |
552 | if (nDepth == 1) |
553 | m_bIsMono = TRUE; | |
554 | else | |
555 | m_bIsMono = FALSE; | |
3437f881 | 556 | if (nDepth == -1) |
1cee3f60 | 557 | nDepth = wxDisplayDepth(); |
3437f881 DW |
558 | SetDepth(nDepth); |
559 | ||
560 | #if wxUSE_PALETTE | |
561 | // | |
562 | // Copy the palette from the source image | |
563 | // | |
564 | SetPalette(rImage.GetPalette()); | |
565 | #endif // wxUSE_PALETTE | |
566 | ||
567 | // | |
568 | // Create a DIB header | |
569 | // | |
570 | BITMAPINFOHEADER2 vHeader; | |
c354beea | 571 | BITMAPINFO2 vInfo; |
3437f881 DW |
572 | |
573 | // | |
fec19ea9 | 574 | // Fill in the DIB header |
3437f881 | 575 | // |
c354beea DW |
576 | memset(&vHeader, '\0', 16); |
577 | vHeader.cbFix = 16; | |
578 | vHeader.cx = (ULONG)nWidth; | |
579 | vHeader.cy = (ULONG)nHeight; | |
3437f881 DW |
580 | vHeader.cPlanes = 1L; |
581 | vHeader.cBitCount = 24; | |
3437f881 DW |
582 | |
583 | // | |
584 | // Memory for DIB data | |
585 | // | |
586 | unsigned char* pucBits; | |
587 | ||
c354beea | 588 | pucBits = (unsigned char *)malloc(nBytePerLine * nHeight); |
3437f881 DW |
589 | if(!pucBits) |
590 | { | |
591 | wxFAIL_MSG(wxT("could not allocate memory for DIB")); | |
592 | return FALSE; | |
593 | } | |
52315bc3 | 594 | memset(pucBits, '\0', (nBytePerLine * nHeight)); |
3437f881 DW |
595 | |
596 | // | |
597 | // Create and set the device-dependent bitmap | |
598 | // | |
599 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
600 | SIZEL vSize = {0, 0}; | |
601 | HDC hDC = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
602 | HPS hPS = ::GpiCreatePS(vHabmain, hDC, &vSize, PU_PELS | GPIA_ASSOC); | |
c354beea | 603 | LONG lScans; |
b1b054da | 604 | HDC hDCScreen = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); |
c354beea | 605 | HPS hPSScreen; |
3437f881 DW |
606 | HBITMAP hBmp; |
607 | HBITMAP hBmpOld; | |
608 | ||
ba3e10c9 DW |
609 | memset(&vInfo, '\0', 16); |
610 | vInfo.cbFix = 16; | |
611 | vInfo.cx = (ULONG)nWidth; | |
612 | vInfo.cy = (ULONG)nHeight; | |
613 | vInfo.cPlanes = 1; | |
52315bc3 | 614 | vInfo.cBitCount = 24; // Set to desired count going in |
ba3e10c9 | 615 | |
3437f881 DW |
616 | hBmp = ::GpiCreateBitmap( hPS |
617 | ,&vHeader | |
618 | ,0L | |
619 | ,NULL | |
620 | ,NULL | |
621 | ); | |
3437f881 DW |
622 | #if wxUSE_PALETTE |
623 | HPAL hOldPalette = NULLHANDLE; | |
624 | if (rImage.GetPalette().Ok()) | |
fec19ea9 | 625 | { |
3437f881 | 626 | hOldPalette = ::GpiSelectPalette(hPS, (HPAL)rImage.GetPalette().GetHPALETTE()); |
fec19ea9 | 627 | } |
3437f881 | 628 | #endif // wxUSE_PALETTE |
fec19ea9 | 629 | |
3437f881 DW |
630 | // |
631 | // Copy image data into DIB data and then into DDB (in a loop) | |
632 | // | |
633 | unsigned char* pData = rImage.GetData(); | |
634 | int i; | |
635 | int j; | |
636 | int n; | |
637 | int nOrigin = 0; | |
638 | unsigned char* ptdata = pData; | |
639 | unsigned char* ptbits; | |
640 | ||
16ff355b DW |
641 | if ((hBmpOld = ::GpiSetBitmap(hPS, hBmp)) == HBM_ERROR) |
642 | { | |
643 | ERRORID vError; | |
644 | wxString sError; | |
645 | ||
646 | vError = ::WinGetLastError(vHabmain); | |
647 | sError = wxPMErrorToStr(vError); | |
648 | } | |
3437f881 | 649 | for (n = 0; n < nNumDIB; n++) |
fec19ea9 | 650 | { |
3437f881 | 651 | if (nNumDIB > 1 && n == nNumDIB - 1 && nHRemain > 0) |
fec19ea9 | 652 | { |
3437f881 DW |
653 | // |
654 | // Redefine height and size of the (possibly) last smaller DIB | |
fec19ea9 | 655 | // memory is not reallocated |
3437f881 DW |
656 | // |
657 | nHeight = nHRemain; | |
658 | vHeader.cy = (DWORD)(nHeight); | |
659 | vHeader.cbImage = nBytePerLine * nHeight; | |
fec19ea9 | 660 | } |
3437f881 DW |
661 | ptbits = pucBits; |
662 | for (j = 0; j < nHeight; j++) | |
fec19ea9 | 663 | { |
3437f881 | 664 | for (i = 0; i < nWidth; i++) |
fec19ea9 | 665 | { |
3437f881 DW |
666 | *(ptbits++) = *(ptdata + 2); |
667 | *(ptbits++) = *(ptdata + 1); | |
668 | *(ptbits++) = *(ptdata); | |
fec19ea9 VS |
669 | ptdata += 3; |
670 | } | |
3437f881 DW |
671 | for (i = 0; i < nPadding; i++) |
672 | *(ptbits++) = 0; | |
fec19ea9 | 673 | } |
3437f881 DW |
674 | |
675 | // | |
676 | // Have to do something similar to WIN32's StretchDIBits, use GpiBitBlt | |
c354beea | 677 | // in combination with setting the bits into the selected bitmap |
3437f881 | 678 | // |
f16e72c8 DW |
679 | if ((lScans = ::GpiSetBitmapBits( hPS |
680 | ,0 // Start at the bottom | |
681 | ,(LONG)nHeight // One line per scan | |
682 | ,(PBYTE)pucBits | |
683 | ,&vInfo | |
684 | )) == GPI_ALTERROR) | |
685 | { | |
686 | ERRORID vError; | |
687 | wxString sError; | |
688 | ||
689 | vError = ::WinGetLastError(vHabmain); | |
690 | sError = wxPMErrorToStr(vError); | |
691 | } | |
c354beea DW |
692 | hPSScreen = ::GpiCreatePS( vHabmain |
693 | ,hDCScreen | |
694 | ,&vSize | |
695 | ,PU_PELS | GPIA_ASSOC | |
696 | ); | |
697 | ||
3c623cf7 SN |
698 | POINTL vPoint[4] = { {0, nOrigin}, |
699 | {nWidth, nHeight}, | |
700 | {0, 0}, {nWidth, nHeight} | |
3437f881 DW |
701 | }; |
702 | ||
c354beea DW |
703 | |
704 | ::GpiBitBlt( hPSScreen | |
3437f881 DW |
705 | ,hPS |
706 | ,4 | |
707 | ,vPoint | |
708 | ,ROP_SRCCOPY | |
709 | ,BBO_IGNORE | |
710 | ); | |
c354beea | 711 | ::GpiDestroyPS(hPSScreen); |
3437f881 | 712 | nOrigin += nHeight; |
fec19ea9 | 713 | } |
3437f881 DW |
714 | SetHBITMAP((WXHBITMAP)hBmp); |
715 | #if wxUSE_PALETTE | |
716 | if (hOldPalette) | |
717 | ::GpiSelectPalette(hPS, hOldPalette); | |
718 | #endif // wxUSE_PALETTE | |
fec19ea9 | 719 | |
3437f881 DW |
720 | // |
721 | // Similarly, created an mono-bitmap for the possible mask | |
722 | // | |
723 | if (rImage.HasMask()) | |
fec19ea9 | 724 | { |
b1b054da | 725 | vHeader.cbFix = 16; |
3437f881 DW |
726 | vHeader.cx = nWidth; |
727 | vHeader.cy = nHeight; | |
728 | vHeader.cPlanes = 1; | |
b1b054da | 729 | vHeader.cBitCount = 24; |
3437f881 DW |
730 | hBmp = ::GpiCreateBitmap( hPS |
731 | ,&vHeader | |
732 | ,0L | |
733 | ,NULL | |
734 | ,NULL | |
735 | ); | |
1d0edc0f | 736 | hBmpOld = ::GpiSetBitmap(hPS, hBmp); |
3437f881 DW |
737 | if (nNumDIB == 1) |
738 | nHeight = nBmpHeight; | |
739 | else | |
740 | nHeight = nSizeLimit / nBytePerLine; | |
741 | vHeader.cy = (DWORD)(nHeight); | |
3437f881 DW |
742 | nOrigin = 0; |
743 | ||
744 | unsigned char cRed = rImage.GetMaskRed(); | |
745 | unsigned char cGreen = rImage.GetMaskGreen(); | |
746 | unsigned char cBlue = rImage.GetMaskBlue(); | |
747 | unsigned char cZero = 0; | |
748 | unsigned char cOne = 255; | |
749 | ||
750 | ptdata = pData; | |
751 | for (n = 0; n < nNumDIB; n++) | |
fec19ea9 | 752 | { |
3437f881 | 753 | if (nNumDIB > 1 && n == nNumDIB - 1 && nHRemain > 0) |
fec19ea9 | 754 | { |
3437f881 DW |
755 | // |
756 | // Redefine height and size of the (possibly) last smaller DIB | |
fec19ea9 | 757 | // memory is not reallocated |
3437f881 DW |
758 | // |
759 | nHeight = nHRemain; | |
760 | vHeader.cy = (DWORD)(nHeight); | |
ad6bd870 | 761 | vHeader.cbImage = nBytePerLine * nHeight; |
fec19ea9 | 762 | } |
3437f881 DW |
763 | ptbits = pucBits; |
764 | for (int j = 0; j < nHeight; j++) | |
fec19ea9 | 765 | { |
3437f881 | 766 | for (i = 0; i < nWidth; i++) |
fec19ea9 | 767 | { |
16ff355b DW |
768 | unsigned char cRedImage = (*(ptdata++)) ; |
769 | unsigned char cGreenImage = (*(ptdata++)) ; | |
770 | unsigned char cBlueImage = (*(ptdata++)) ; | |
771 | ||
772 | if ((cRedImage != cRed) || (cGreenImage != cGreen) || (cBlueImage != cBlue)) | |
fec19ea9 | 773 | { |
3437f881 DW |
774 | *(ptbits++) = cOne; |
775 | *(ptbits++) = cOne; | |
776 | *(ptbits++) = cOne; | |
fec19ea9 VS |
777 | } |
778 | else | |
779 | { | |
3437f881 DW |
780 | *(ptbits++) = cZero; |
781 | *(ptbits++) = cZero; | |
782 | *(ptbits++) = cZero; | |
fec19ea9 VS |
783 | } |
784 | } | |
3437f881 DW |
785 | for (i = 0; i < nPadding; i++) |
786 | *(ptbits++) = cZero; | |
fec19ea9 | 787 | } |
c354beea DW |
788 | lScans = ::GpiSetBitmapBits( hPS |
789 | ,0 // Start at the bottom | |
790 | ,(LONG)nHeight // One line per scan | |
791 | ,(PBYTE)pucBits | |
792 | ,&vInfo | |
793 | ); | |
794 | hPSScreen = ::GpiCreatePS( vHabmain | |
795 | ,hDCScreen | |
796 | ,&vSize | |
797 | ,PU_PELS | GPIA_ASSOC | |
798 | ); | |
3c623cf7 SN |
799 | POINTL vPoint2[4] = { {0, nOrigin}, |
800 | {nWidth, nHeight}, | |
801 | {0, 0}, {nWidth, nHeight} | |
c354beea DW |
802 | }; |
803 | ::GpiBitBlt( hPSScreen | |
3437f881 DW |
804 | ,hPS |
805 | ,4 | |
c354beea | 806 | ,vPoint2 |
3437f881 DW |
807 | ,ROP_SRCCOPY |
808 | ,BBO_IGNORE | |
c354beea DW |
809 | ); |
810 | ::GpiDestroyPS(hPSScreen); | |
3437f881 | 811 | nOrigin += nHeight; |
fec19ea9 | 812 | } |
fec19ea9 | 813 | |
3437f881 DW |
814 | // |
815 | // Create a wxMask object | |
816 | // | |
817 | wxMask* pMask = new wxMask(); | |
fec19ea9 | 818 | |
3437f881 DW |
819 | pMask->SetMaskBitmap((WXHBITMAP)hBmp); |
820 | SetMask(pMask); | |
b1b054da | 821 | hBmpOld = ::GpiSetBitmap(hPS, hBmpOld); |
3437f881 | 822 | } |
fec19ea9 | 823 | |
3437f881 DW |
824 | // |
825 | // Free allocated resources | |
826 | // | |
827 | ::GpiSetBitmap(hPS, NULLHANDLE); | |
828 | ::GpiDestroyPS(hPS); | |
ba3e10c9 | 829 | ::DevCloseDC(hDCScreen); |
3437f881 DW |
830 | ::DevCloseDC(hDC); |
831 | free(pucBits); | |
fec19ea9 | 832 | return TRUE; |
3437f881 | 833 | } // end of wxBitmap::CreateFromImage |
fec19ea9 VS |
834 | |
835 | wxImage wxBitmap::ConvertToImage() const | |
836 | { | |
3437f881 | 837 | wxImage vImage; |
1cee3f60 | 838 | wxDC* pDC; |
1c344e89 | 839 | |
fec19ea9 VS |
840 | wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") ); |
841 | ||
3437f881 DW |
842 | // |
843 | // Create an wxImage object | |
844 | // | |
845 | int nWidth = GetWidth(); | |
846 | int nHeight = GetHeight(); | |
847 | int nDevWidth; | |
848 | int nDevHeight; | |
849 | int nBytePerLine = nWidth * 3; | |
850 | int nSizeDWORD = sizeof(DWORD); | |
851 | int nLineBoundary = nBytePerLine % nSizeDWORD; | |
852 | int nPadding = 0; | |
853 | unsigned char* pData; | |
854 | unsigned char* lpBits; | |
855 | long lScans; | |
856 | BITMAPINFOHEADER2 vDIBh; | |
857 | BITMAPINFO2 vDIBInfo; | |
3437f881 | 858 | HPS hPSMem; |
3437f881 | 859 | HBITMAP hBitmap; |
1cee3f60 DW |
860 | HBITMAP hOldBitmap; |
861 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
862 | SIZEL vSizlPage = {0,0}; | |
863 | HDC hDCMem; | |
3437f881 DW |
864 | |
865 | vImage.Create( nWidth | |
866 | ,nHeight | |
867 | ); | |
868 | pData = vImage.GetData(); | |
869 | if(!pData) | |
fec19ea9 VS |
870 | { |
871 | wxFAIL_MSG( wxT("could not allocate data for image") ); | |
872 | return wxNullImage; | |
873 | } | |
3437f881 | 874 | if(nLineBoundary > 0) |
fec19ea9 | 875 | { |
3437f881 DW |
876 | nPadding = nSizeDWORD - nLineBoundary; |
877 | nBytePerLine += nPadding; | |
fec19ea9 | 878 | } |
3437f881 DW |
879 | wxDisplaySize( &nDevWidth |
880 | ,&nDevHeight | |
881 | ); | |
882 | // | |
883 | // Create and fill a DIB header | |
884 | // | |
c354beea DW |
885 | memset(&vDIBh, '\0', 16); |
886 | vDIBh.cbFix = 16; | |
3437f881 DW |
887 | vDIBh.cx = nWidth; |
888 | vDIBh.cy = nHeight; | |
889 | vDIBh.cPlanes = 1; | |
3437f881 DW |
890 | vDIBh.cBitCount = 24; |
891 | ||
c354beea DW |
892 | memset(&vDIBInfo, '\0', 16); |
893 | vDIBInfo.cbFix = 16; | |
894 | vDIBInfo.cx = nWidth; | |
895 | vDIBInfo.cy = nHeight; | |
3437f881 | 896 | vDIBInfo.cPlanes = 1; |
52315bc3 | 897 | vDIBInfo.cBitCount = 24; |
c354beea DW |
898 | |
899 | lpBits = (unsigned char *)malloc(nBytePerLine * nHeight); | |
3437f881 | 900 | if (!lpBits) |
fec19ea9 | 901 | { |
3437f881 DW |
902 | wxFAIL_MSG(wxT("could not allocate data for DIB")); |
903 | free(pData); | |
904 | return wxNullImage; | |
fec19ea9 | 905 | } |
52315bc3 DW |
906 | memset(lpBits, '\0', (nBytePerLine * nHeight)); |
907 | hBitmap = (HBITMAP)GetHBITMAP(); | |
fec19ea9 | 908 | |
1cee3f60 DW |
909 | // |
910 | // May already be selected into a PS | |
911 | // | |
912 | if ((pDC = GetSelectedInto()) != NULL) | |
913 | { | |
914 | hPSMem = pDC->GetHPS(); | |
915 | } | |
916 | else | |
917 | { | |
918 | hDCMem = ::DevOpenDC( vHabmain | |
919 | ,OD_MEMORY | |
920 | ,"*" | |
921 | ,5L | |
922 | ,(PDEVOPENDATA)&vDop | |
923 | ,NULLHANDLE | |
924 | ); | |
925 | hPSMem = ::GpiCreatePS( vHabmain | |
926 | ,hDCMem | |
927 | ,&vSizlPage | |
928 | ,PU_PELS | GPIA_ASSOC | |
929 | ); | |
29172908 DW |
930 | } |
931 | if ((hOldBitmap = ::GpiSetBitmap(hPSMem, hBitmap)) == HBM_ERROR) | |
932 | { | |
933 | ERRORID vError; | |
934 | wxString sError; | |
1cee3f60 | 935 | |
29172908 DW |
936 | vError = ::WinGetLastError(vHabmain); |
937 | sError = wxPMErrorToStr(vError); | |
1cee3f60 DW |
938 | } |
939 | ||
3437f881 DW |
940 | // |
941 | // Copy data from the device-dependent bitmap to the DIB | |
942 | // | |
1cee3f60 DW |
943 | if ((lScans = ::GpiQueryBitmapBits( hPSMem |
944 | ,0L | |
945 | ,(LONG)nHeight | |
946 | ,(PBYTE)lpBits | |
947 | ,&vDIBInfo | |
948 | )) == GPI_ALTERROR) | |
949 | { | |
950 | ERRORID vError; | |
951 | wxString sError; | |
952 | ||
953 | vError = ::WinGetLastError(vHabmain); | |
954 | sError = wxPMErrorToStr(vError); | |
955 | } | |
3437f881 DW |
956 | |
957 | // | |
958 | // Copy DIB data into the wxImage object | |
959 | // | |
960 | int i; | |
961 | int j; | |
962 | unsigned char* ptdata = pData; | |
963 | unsigned char* ptbits = lpBits; | |
964 | ||
965 | for (i = 0; i < nHeight; i++) | |
fec19ea9 | 966 | { |
3437f881 | 967 | for (j = 0; j < nWidth; j++) |
fec19ea9 VS |
968 | { |
969 | *(ptdata++) = *(ptbits+2); | |
970 | *(ptdata++) = *(ptbits+1); | |
971 | *(ptdata++) = *(ptbits ); | |
972 | ptbits += 3; | |
973 | } | |
3437f881 | 974 | ptbits += nPadding; |
fec19ea9 | 975 | } |
1cee3f60 DW |
976 | if ((pDC = GetSelectedInto()) == NULL) |
977 | { | |
978 | ::GpiSetBitmap(hPSMem, NULLHANDLE); | |
979 | ::GpiDestroyPS(hPSMem); | |
980 | ::DevCloseDC(hDCMem); | |
981 | } | |
fec19ea9 | 982 | |
3437f881 DW |
983 | // |
984 | // Similarly, set data according to the possible mask bitmap | |
985 | // | |
986 | if (GetMask() && GetMask()->GetMaskBitmap()) | |
fec19ea9 | 987 | { |
3437f881 DW |
988 | hBitmap = (HBITMAP)GetMask()->GetMaskBitmap(); |
989 | ||
990 | // | |
991 | // Memory DC/PS created, color set, data copied, and memory DC/PS deleted | |
992 | // | |
1cee3f60 DW |
993 | HDC hMemDC = ::DevOpenDC( vHabmain |
994 | ,OD_MEMORY | |
995 | ,"*" | |
996 | ,5L | |
997 | ,(PDEVOPENDATA)&vDop | |
998 | ,NULLHANDLE | |
999 | ); | |
3437f881 DW |
1000 | HPS hMemPS = ::GpiCreatePS( vHabmain |
1001 | ,hMemDC | |
1002 | ,&vSizlPage | |
b1b054da | 1003 | ,PU_PELS | GPIA_ASSOC |
3437f881 DW |
1004 | ); |
1005 | ::GpiSetColor(hMemPS, OS2RGB(0, 0, 0)); | |
1006 | ::GpiSetBackColor(hMemPS, OS2RGB(255, 255, 255) ); | |
1d0edc0f | 1007 | ::GpiSetBitmap(hMemPS, hBitmap); |
3437f881 DW |
1008 | ::GpiQueryBitmapBits( hPSMem |
1009 | ,0L | |
1010 | ,(LONG)nHeight | |
1011 | ,(PBYTE)lpBits | |
1012 | ,&vDIBInfo | |
1013 | ); | |
1d0edc0f | 1014 | ::GpiSetBitmap(hMemPS, NULLHANDLE); |
3437f881 DW |
1015 | ::GpiDestroyPS(hMemPS); |
1016 | ::DevCloseDC(hMemDC); | |
1017 | ||
1018 | // | |
1019 | // Background color set to RGB(16,16,16) in consistent with wxGTK | |
1020 | // | |
1021 | unsigned char ucRed = 16; | |
1022 | unsigned char ucGreen = 16; | |
1023 | unsigned char ucBlue = 16; | |
1024 | ||
1025 | ptdata = pData; | |
fec19ea9 | 1026 | ptbits = lpBits; |
3437f881 | 1027 | for (i = 0; i < nHeight; i++) |
fec19ea9 | 1028 | { |
3437f881 | 1029 | for (j = 0; j < nWidth; j++) |
fec19ea9 | 1030 | { |
3437f881 | 1031 | if (*ptbits != 0) |
fec19ea9 VS |
1032 | ptdata += 3; |
1033 | else | |
1034 | { | |
3437f881 DW |
1035 | *(ptdata++) = ucRed; |
1036 | *(ptdata++) = ucGreen; | |
1037 | *(ptdata++) = ucBlue; | |
fec19ea9 VS |
1038 | } |
1039 | ptbits += 3; | |
1040 | } | |
3437f881 | 1041 | ptbits += nPadding; |
fec19ea9 | 1042 | } |
3437f881 DW |
1043 | vImage.SetMaskColour( ucRed |
1044 | ,ucGreen | |
1045 | ,ucBlue | |
1046 | ); | |
1047 | vImage.SetMask(TRUE); | |
fec19ea9 VS |
1048 | } |
1049 | else | |
1050 | { | |
3437f881 | 1051 | vImage.SetMask(FALSE); |
fec19ea9 | 1052 | } |
fec19ea9 | 1053 | |
3437f881 DW |
1054 | // |
1055 | // Free allocated resources | |
1056 | // | |
3437f881 DW |
1057 | free(lpBits); |
1058 | return vImage; | |
1059 | } // end of wxBitmap::ConvertToImage | |
fec19ea9 | 1060 | |
6f38c86f DW |
1061 | // ---------------------------------------------------------------------------- |
1062 | // sub bitmap extraction | |
1063 | // ---------------------------------------------------------------------------- | |
1064 | ||
1065 | wxBitmap wxBitmap::GetSubBitmap( | |
1066 | const wxRect& rRect | |
1067 | ) const | |
1068 | { | |
1069 | wxCHECK_MSG( Ok() && | |
1070 | (rRect.x >= 0) && (rRect.y >= 0) && | |
1071 | (rRect.x + rRect.width <= GetWidth()) && | |
1072 | (rRect.y + rRect.height <= GetHeight()), | |
1073 | wxNullBitmap, wxT("Invalid bitmap or bitmap region") ); | |
1074 | ||
1075 | wxBitmap vRet( rRect.width | |
1076 | ,rRect.height | |
1077 | ,GetDepth() | |
1078 | ); | |
1079 | wxASSERT_MSG( vRet.Ok(), wxT("GetSubBitmap error") ); | |
1080 | ||
1081 | ||
1082 | // | |
1083 | // Copy bitmap data | |
1084 | // | |
1085 | SIZEL vSize = {0, 0}; | |
1086 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
1087 | HDC hDCSrc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1088 | HDC hDCDst = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1089 | HPS hPSSrc = ::GpiCreatePS(vHabmain, hDCSrc, &vSize, PU_PELS | GPIA_ASSOC); | |
1090 | HPS hPSDst = ::GpiCreatePS(vHabmain, hDCDst, &vSize, PU_PELS | GPIA_ASSOC); | |
3c623cf7 SN |
1091 | POINTL vPoint[4] = { {0, 0}, {rRect.width, rRect.height}, |
1092 | {rRect.x, rRect.y}, | |
1093 | {rRect.x + rRect.width, rRect.y + rRect.height} | |
6f38c86f DW |
1094 | }; |
1095 | ||
1096 | ::GpiSetBitmap(hPSSrc, (HBITMAP) GetHBITMAP()); | |
1097 | ::GpiSetBitmap(hPSDst, (HBITMAP) vRet.GetHBITMAP()); | |
1098 | ::GpiBitBlt( hPSDst | |
1099 | ,hPSSrc | |
1100 | ,4L | |
1101 | ,vPoint | |
1102 | ,ROP_SRCCOPY | |
1103 | ,BBO_IGNORE | |
1104 | ); | |
1105 | ||
1106 | // | |
1107 | // Copy mask if there is one | |
1108 | // | |
1109 | if (GetMask()) | |
1110 | { | |
1111 | BITMAPINFOHEADER2 vBmih; | |
1112 | ||
1113 | memset(&vBmih, '\0', sizeof(BITMAPINFOHEADER2)); | |
1114 | vBmih.cbFix = sizeof(BITMAPINFOHEADER2); | |
1115 | vBmih.cx = rRect.width; | |
1116 | vBmih.cy = rRect.height; | |
1117 | vBmih.cPlanes = 1; | |
1c9a789e | 1118 | vBmih.cBitCount = 24; |
6f38c86f DW |
1119 | |
1120 | HBITMAP hBmpMask = ::GpiCreateBitmap( hPSDst | |
1121 | ,&vBmih | |
1122 | ,0L | |
1123 | ,NULL | |
1124 | ,NULL | |
1125 | ); | |
1126 | ||
1127 | ::GpiSetBitmap(hPSSrc, (HBITMAP) GetHBITMAP()); | |
1128 | ::GpiSetBitmap(hPSDst, (HBITMAP) vRet.GetHBITMAP()); | |
1129 | ||
1130 | ::GpiSetBitmap(hPSSrc, (HBITMAP) GetMask()->GetMaskBitmap()); | |
1131 | ::GpiSetBitmap(hPSDst, (HBITMAP) hBmpMask); | |
1132 | ::GpiBitBlt( hPSDst | |
1133 | ,hPSSrc | |
1134 | ,4L | |
1135 | ,vPoint | |
1136 | ,ROP_SRCCOPY | |
1137 | ,BBO_IGNORE | |
1138 | ); | |
1139 | ||
1140 | wxMask* pMask = new wxMask((WXHBITMAP)hBmpMask); | |
1141 | vRet.SetMask(pMask); | |
1142 | } | |
1143 | ||
1144 | ::GpiSetBitmap(hPSSrc, NULL); | |
1145 | ::GpiSetBitmap(hPSDst, NULL); | |
1146 | ::GpiDestroyPS(hPSSrc); | |
1147 | ::GpiDestroyPS(hPSDst); | |
1148 | ::DevCloseDC(hDCSrc); | |
1149 | ::DevCloseDC(hDCDst); | |
1150 | return vRet; | |
1151 | } // end of wxBitmap::GetSubBitmap | |
0e320a79 | 1152 | |
3b9e3455 DW |
1153 | // ---------------------------------------------------------------------------- |
1154 | // wxBitmap accessors | |
1155 | // ---------------------------------------------------------------------------- | |
0e320a79 | 1156 | |
4f72fe4f DW |
1157 | void wxBitmap::SetQuality( |
1158 | int nQ | |
1159 | ) | |
0e320a79 | 1160 | { |
3b9e3455 | 1161 | EnsureHasData(); |
0e320a79 | 1162 | |
4f72fe4f | 1163 | GetBitmapData()->m_nQuality = nQ; |
6f38c86f | 1164 | } // end of wxBitmap::SetQuality |
0e320a79 | 1165 | |
4f72fe4f DW |
1166 | void wxBitmap::SetPalette( |
1167 | const wxPalette& rPalette | |
1168 | ) | |
0e320a79 | 1169 | { |
3b9e3455 | 1170 | EnsureHasData(); |
0e320a79 | 1171 | |
4f72fe4f | 1172 | GetBitmapData()->m_vBitmapPalette = rPalette; |
6f38c86f | 1173 | } // end of wxBitmap::SetPalette |
0e320a79 | 1174 | |
4f72fe4f DW |
1175 | void wxBitmap::SetMask( |
1176 | wxMask* pMask | |
1177 | ) | |
0e320a79 | 1178 | { |
3b9e3455 | 1179 | EnsureHasData(); |
0e320a79 | 1180 | |
4f72fe4f | 1181 | GetBitmapData()->m_pBitmapMask = pMask; |
6f38c86f | 1182 | } // end of wxBitmap::SetMask |
0e320a79 | 1183 | |
4f72fe4f DW |
1184 | wxBitmap wxBitmap::GetBitmapForDC( |
1185 | wxDC& rDc | |
1186 | ) const | |
d88de032 | 1187 | { |
3437f881 | 1188 | return(*this); |
6f38c86f | 1189 | } // end of wxBitmap::GetBitmapForDC |
d88de032 | 1190 | |
3b9e3455 DW |
1191 | // ---------------------------------------------------------------------------- |
1192 | // wxMask | |
1193 | // ---------------------------------------------------------------------------- | |
0e320a79 DW |
1194 | |
1195 | wxMask::wxMask() | |
1196 | { | |
4f72fe4f | 1197 | m_hMaskBitmap = 0; |
6f38c86f | 1198 | } // end of wxMask::wxMask |
0e320a79 DW |
1199 | |
1200 | // Construct a mask from a bitmap and a colour indicating | |
1201 | // the transparent area | |
4f72fe4f DW |
1202 | wxMask::wxMask( |
1203 | const wxBitmap& rBitmap | |
1204 | , const wxColour& rColour | |
1205 | ) | |
0e320a79 | 1206 | { |
4f72fe4f DW |
1207 | m_hMaskBitmap = 0; |
1208 | Create( rBitmap | |
1209 | ,rColour | |
1210 | ); | |
6f38c86f | 1211 | } // end of wxMask::wxMask |
0e320a79 DW |
1212 | |
1213 | // Construct a mask from a bitmap and a palette index indicating | |
1214 | // the transparent area | |
4f72fe4f DW |
1215 | wxMask::wxMask( |
1216 | const wxBitmap& rBitmap | |
1217 | , int nPaletteIndex | |
1218 | ) | |
0e320a79 | 1219 | { |
4f72fe4f DW |
1220 | m_hMaskBitmap = 0; |
1221 | Create( rBitmap | |
1222 | ,nPaletteIndex | |
1223 | ); | |
6f38c86f | 1224 | } // end of wxMask::wxMask |
0e320a79 DW |
1225 | |
1226 | // Construct a mask from a mono bitmap (copies the bitmap). | |
4f72fe4f DW |
1227 | wxMask::wxMask( |
1228 | const wxBitmap& rBitmap | |
1229 | ) | |
0e320a79 | 1230 | { |
4f72fe4f DW |
1231 | m_hMaskBitmap = 0; |
1232 | Create(rBitmap); | |
6f38c86f | 1233 | } // end of wxMask::wxMask |
0e320a79 DW |
1234 | |
1235 | wxMask::~wxMask() | |
1236 | { | |
4f72fe4f DW |
1237 | if (m_hMaskBitmap) |
1238 | ::GpiDeleteBitmap((HBITMAP)m_hMaskBitmap); | |
6f38c86f | 1239 | } // end of wxMask::~wxMask |
0e320a79 DW |
1240 | |
1241 | // Create a mask from a mono bitmap (copies the bitmap). | |
58b16424 DW |
1242 | bool wxMask::Create( |
1243 | const wxBitmap& rBitmap | |
1244 | ) | |
0e320a79 | 1245 | { |
6f38c86f | 1246 | BITMAPINFOHEADER2 vBmih; |
58b16424 | 1247 | SIZEL vSize = {0, 0}; |
6f38c86f DW |
1248 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; |
1249 | HDC hDCSrc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1250 | HDC hDCDst = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1251 | HPS hPSSrc = ::GpiCreatePS(vHabmain, hDCSrc, &vSize, PU_PELS | GPIA_ASSOC); | |
1252 | HPS hPSDst = ::GpiCreatePS(vHabmain, hDCDst, &vSize, PU_PELS | GPIA_ASSOC); | |
3c623cf7 SN |
1253 | POINTL vPoint[4] = { {0 ,0}, {rBitmap.GetWidth(), rBitmap.GetHeight()}, |
1254 | {0, 0}, {rBitmap.GetWidth(), rBitmap.GetHeight()} | |
6f38c86f | 1255 | }; |
58b16424 DW |
1256 | |
1257 | if (m_hMaskBitmap) | |
3b9e3455 | 1258 | { |
58b16424 DW |
1259 | ::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap); |
1260 | m_hMaskBitmap = 0; | |
3b9e3455 | 1261 | } |
58b16424 | 1262 | if (!rBitmap.Ok() || rBitmap.GetDepth() != 1) |
3b9e3455 | 1263 | { |
58b16424 | 1264 | return(FALSE); |
3b9e3455 | 1265 | } |
6f38c86f DW |
1266 | |
1267 | memset(&vBmih, '\0', sizeof(BITMAPINFOHEADER2)); | |
1268 | vBmih.cbFix = sizeof(BITMAPINFOHEADER2); | |
1269 | vBmih.cx = rBitmap.GetWidth(); | |
1270 | vBmih.cy = rBitmap.GetHeight(); | |
1271 | vBmih.cPlanes = 1; | |
1c9a789e | 1272 | vBmih.cBitCount = 24; |
6f38c86f DW |
1273 | |
1274 | m_hMaskBitmap = ::GpiCreateBitmap( hPSDst | |
1275 | ,&vBmih | |
1276 | ,0L | |
1277 | ,NULL | |
1278 | ,NULL | |
1279 | ); | |
1280 | ||
1281 | ::GpiSetBitmap(hPSSrc, (HBITMAP) rBitmap.GetHBITMAP()); | |
1282 | ::GpiSetBitmap(hPSDst, (HBITMAP) m_hMaskBitmap); | |
1283 | ::GpiBitBlt( hPSDst | |
1284 | ,hPSSrc | |
1285 | ,4L | |
1286 | ,vPoint | |
1287 | ,ROP_SRCCOPY | |
1288 | ,BBO_IGNORE | |
1289 | ); | |
1290 | ||
1291 | ::GpiDestroyPS(hPSSrc); | |
1292 | ::GpiDestroyPS(hPSDst); | |
1293 | ::DevCloseDC(hDCSrc); | |
1294 | ::DevCloseDC(hDCDst); | |
58b16424 | 1295 | return(TRUE); |
6f38c86f | 1296 | } // end of wxMask::Create |
0e320a79 DW |
1297 | |
1298 | // Create a mask from a bitmap and a palette index indicating | |
1299 | // the transparent area | |
58b16424 DW |
1300 | bool wxMask::Create( |
1301 | const wxBitmap& rBitmap | |
1302 | , int nPaletteIndex | |
1303 | ) | |
0e320a79 | 1304 | { |
58b16424 | 1305 | if (m_hMaskBitmap) |
3b9e3455 | 1306 | { |
58b16424 DW |
1307 | ::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap); |
1308 | m_hMaskBitmap = 0; | |
3b9e3455 | 1309 | } |
58b16424 | 1310 | if (rBitmap.Ok() && rBitmap.GetPalette()->Ok()) |
3b9e3455 | 1311 | { |
43543d98 DW |
1312 | unsigned char cRed; |
1313 | unsigned char cGreen; | |
1314 | unsigned char cBlue; | |
1315 | ||
58b16424 | 1316 | if (rBitmap.GetPalette()->GetRGB( nPaletteIndex |
43543d98 DW |
1317 | ,&cRed |
1318 | ,&cGreen | |
1319 | ,&cBlue | |
58b16424 | 1320 | )) |
3b9e3455 | 1321 | { |
43543d98 DW |
1322 | wxColour vTransparentColour( cRed |
1323 | ,cGreen | |
1324 | ,cBlue | |
58b16424 DW |
1325 | ); |
1326 | ||
1327 | return (Create( rBitmap | |
1328 | ,vTransparentColour | |
1329 | )); | |
3b9e3455 DW |
1330 | } |
1331 | } | |
58b16424 | 1332 | return(FALSE); |
6f38c86f | 1333 | } // end of wxMask::Create |
0e320a79 DW |
1334 | |
1335 | // Create a mask from a bitmap and a colour indicating | |
1336 | // the transparent area | |
58b16424 DW |
1337 | bool wxMask::Create( |
1338 | const wxBitmap& rBitmap | |
1339 | , const wxColour& rColour | |
1340 | ) | |
0e320a79 | 1341 | { |
6f38c86f DW |
1342 | bool bOk = TRUE; |
1343 | COLORREF vMaskColour = OS2RGB( rColour.Red() | |
1344 | ,rColour.Green() | |
1345 | ,rColour.Blue() | |
1346 | ); | |
1347 | BITMAPINFOHEADER2 vBmih; | |
58b16424 | 1348 | SIZEL vSize = {0, 0}; |
6f38c86f DW |
1349 | DEVOPENSTRUC vDop = { NULL, "DISPLAY", NULL, NULL, NULL, NULL, NULL, NULL, NULL }; |
1350 | HDC hDCSrc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1351 | HDC hDCDst = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1352 | HPS hPSSrc = ::GpiCreatePS(vHabmain, hDCSrc, &vSize, PU_PELS | GPIA_ASSOC); | |
1353 | HPS hPSDst = ::GpiCreatePS(vHabmain, hDCDst, &vSize, PU_PELS | GPIA_ASSOC); | |
58b16424 DW |
1354 | |
1355 | if (m_hMaskBitmap) | |
3b9e3455 | 1356 | { |
58b16424 DW |
1357 | ::GpiDeleteBitmap((HBITMAP) m_hMaskBitmap); |
1358 | m_hMaskBitmap = 0; | |
3b9e3455 | 1359 | } |
58b16424 | 1360 | if (!rBitmap.Ok()) |
3b9e3455 | 1361 | { |
58b16424 | 1362 | return(FALSE); |
3b9e3455 DW |
1363 | } |
1364 | ||
6f38c86f DW |
1365 | // |
1366 | // Scan the bitmap for the transparent colour and set | |
3b9e3455 DW |
1367 | // the corresponding pixels in the mask to BLACK and |
1368 | // the rest to WHITE | |
6f38c86f DW |
1369 | // |
1370 | ||
1371 | memset(&vBmih, '\0', sizeof(BITMAPINFOHEADER2)); | |
1372 | vBmih.cbFix = sizeof(BITMAPINFOHEADER2); | |
1373 | vBmih.cx = rBitmap.GetWidth(); | |
1374 | vBmih.cy = rBitmap.GetHeight(); | |
1375 | vBmih.cPlanes = 1; | |
1376 | vBmih.cBitCount = 1; | |
1377 | ||
1378 | m_hMaskBitmap = ::GpiCreateBitmap( hPSDst | |
1379 | ,&vBmih | |
1380 | ,0L | |
1381 | ,NULL | |
1382 | ,NULL | |
1383 | ); | |
1384 | ||
1385 | ::GpiSetBitmap(hPSSrc, (HBITMAP) rBitmap.GetHBITMAP()); | |
1386 | ::GpiSetBitmap(hPSDst, (HBITMAP) m_hMaskBitmap); | |
1387 | ||
1388 | // | |
1389 | // This is not very efficient, but I can't think | |
3b9e3455 | 1390 | // of a better way of doing it |
6f38c86f | 1391 | // |
58b16424 | 1392 | for (int w = 0; w < rBitmap.GetWidth(); w++) |
3b9e3455 | 1393 | { |
58b16424 | 1394 | for (int h = 0; h < rBitmap.GetHeight(); h++) |
3b9e3455 | 1395 | { |
6f38c86f DW |
1396 | POINTL vPt = {w, h}; |
1397 | COLORREF vCol = (COLORREF)::GpiQueryPel(hPSSrc, &vPt); | |
1398 | if (vCol == (COLORREF)CLR_NOINDEX) | |
1399 | { | |
1400 | // | |
1401 | // Doesn't make sense to continue | |
1402 | // | |
1403 | bOk = FALSE; | |
1404 | break; | |
1405 | } | |
58b16424 | 1406 | |
6f38c86f | 1407 | if (vCol == vMaskColour) |
3b9e3455 | 1408 | { |
6f38c86f DW |
1409 | ::GpiSetColor(hPSDst, OS2RGB(0, 0, 0)); |
1410 | ::GpiSetPel(hPSDst, &vPt); | |
3b9e3455 DW |
1411 | } |
1412 | else | |
1413 | { | |
6f38c86f DW |
1414 | ::GpiSetColor(hPSDst, OS2RGB(255, 255, 255)); |
1415 | ::GpiSetPel(hPSDst, &vPt); | |
3b9e3455 DW |
1416 | } |
1417 | } | |
1418 | } | |
6f38c86f DW |
1419 | ::GpiSetBitmap(hPSSrc, NULL); |
1420 | ::GpiSetBitmap(hPSDst, NULL); | |
1421 | ::GpiDestroyPS(hPSSrc); | |
1422 | ::GpiDestroyPS(hPSDst); | |
1423 | ::DevCloseDC(hDCSrc); | |
1424 | ::DevCloseDC(hDCDst); | |
58b16424 | 1425 | return(TRUE); |
6f38c86f | 1426 | } // end of wxMask::Create |
0e320a79 | 1427 | |
3b9e3455 DW |
1428 | // ---------------------------------------------------------------------------- |
1429 | // wxBitmapHandler | |
1430 | // ---------------------------------------------------------------------------- | |
0e320a79 | 1431 | |
58b16424 DW |
1432 | bool wxBitmapHandler::Create( |
1433 | wxGDIImage* pImage | |
1434 | , void* pData | |
1435 | , long lFlags | |
1436 | , int nWidth | |
1437 | , int nHeight | |
1438 | , int nDepth | |
1439 | ) | |
3b9e3455 | 1440 | { |
58b16424 DW |
1441 | wxBitmap* pBitmap = wxDynamicCast( pImage |
1442 | ,wxBitmap | |
1443 | ); | |
3b9e3455 | 1444 | |
58b16424 DW |
1445 | return(pBitmap ? Create( pBitmap |
1446 | ,pData | |
1447 | ,nWidth | |
1448 | ,nHeight | |
1449 | ,nDepth | |
1450 | ) : FALSE); | |
3b9e3455 DW |
1451 | } |
1452 | ||
58b16424 DW |
1453 | bool wxBitmapHandler::Load( |
1454 | wxGDIImage* pImage | |
3029781e | 1455 | , int nId |
58b16424 DW |
1456 | , long lFlags |
1457 | , int nWidth | |
1458 | , int nHeight | |
1459 | ) | |
3b9e3455 | 1460 | { |
43543d98 DW |
1461 | wxBitmap* pBitmap = wxDynamicCast( pImage |
1462 | ,wxBitmap | |
1463 | ); | |
3b9e3455 | 1464 | |
58b16424 | 1465 | return(pBitmap ? LoadFile( pBitmap |
3029781e | 1466 | ,nId |
58b16424 DW |
1467 | ,lFlags |
1468 | ,nWidth | |
1469 | ,nHeight | |
1470 | ) : FALSE); | |
3b9e3455 DW |
1471 | } |
1472 | ||
58b16424 DW |
1473 | bool wxBitmapHandler::Save( |
1474 | wxGDIImage* pImage | |
1475 | , const wxString& rName | |
1476 | , int lType | |
1477 | ) | |
0e320a79 | 1478 | { |
58b16424 DW |
1479 | wxBitmap* pBitmap = wxDynamicCast( pImage |
1480 | ,wxBitmap | |
1481 | ); | |
0e320a79 | 1482 | |
58b16424 DW |
1483 | return(pBitmap ? SaveFile( pBitmap |
1484 | ,rName | |
1485 | ,lType | |
1486 | ) : FALSE); | |
0e320a79 DW |
1487 | } |
1488 | ||
58b16424 DW |
1489 | bool wxBitmapHandler::Create( |
1490 | wxBitmap* WXUNUSED(pBitmap) | |
1491 | , void* WXUNUSED(pData) | |
1492 | , long WXUNUSED(lType) | |
1493 | , int WXUNUSED(nWidth) | |
1494 | , int WXUNUSED(nHeight) | |
1495 | , int WXUNUSED(nDepth) | |
1496 | ) | |
0e320a79 | 1497 | { |
58b16424 | 1498 | return(FALSE); |
0e320a79 DW |
1499 | } |
1500 | ||
58b16424 DW |
1501 | bool wxBitmapHandler::LoadFile( |
1502 | wxBitmap* WXUNUSED(pBitmap) | |
3029781e | 1503 | , int WXUNUSED(nId) |
58b16424 DW |
1504 | , long WXUNUSED(lType) |
1505 | , int WXUNUSED(nDesiredWidth) | |
1506 | , int WXUNUSED(nDesiredHeight) | |
1507 | ) | |
0e320a79 | 1508 | { |
43543d98 | 1509 | return(FALSE); |
0e320a79 DW |
1510 | } |
1511 | ||
58b16424 DW |
1512 | bool wxBitmapHandler::SaveFile( |
1513 | wxBitmap* WXUNUSED(pBitmap) | |
1514 | , const wxString& WXUNUSED(rName) | |
1515 | , int WXUNUSED(nType) | |
1516 | , const wxPalette* WXUNUSED(pPalette) | |
1517 | ) | |
0e320a79 | 1518 | { |
58b16424 | 1519 | return(FALSE); |
0e320a79 | 1520 | } |
ce44c50e | 1521 | |
020a1653 DW |
1522 | // ---------------------------------------------------------------------------- |
1523 | // Utility functions | |
1524 | // ---------------------------------------------------------------------------- | |
1525 | HBITMAP wxInvertMask( | |
1526 | HBITMAP hBmpMask | |
1527 | , int nWidth | |
1528 | , int nHeight | |
1529 | ) | |
1530 | { | |
1531 | HBITMAP hBmpInvMask = 0; | |
1532 | ||
1533 | wxCHECK_MSG( hBmpMask, 0, _T("invalid bitmap in wxInvertMask") ); | |
1534 | ||
1535 | // | |
1536 | // Get width/height from the bitmap if not given | |
1537 | // | |
1538 | if (!nWidth || !nHeight) | |
1539 | { | |
1540 | BITMAPINFOHEADER2 vBmhdr; | |
1541 | ||
1542 | ::GpiQueryBitmapInfoHeader( hBmpMask | |
1543 | ,&vBmhdr | |
1544 | ); | |
1545 | nWidth = (int)vBmhdr.cx; | |
e464c180 | 1546 | nHeight = (int)vBmhdr.cy; |
020a1653 DW |
1547 | } |
1548 | ||
1549 | BITMAPINFOHEADER2 vBmih; | |
1550 | SIZEL vSize = {0, 0}; | |
1551 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
e464c180 DW |
1552 | HDC hDCSrc = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); |
1553 | HDC hDCDst = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1554 | HPS hPSSrc = ::GpiCreatePS(vHabmain, hDCSrc, &vSize, PU_PELS | GPIA_ASSOC); | |
1555 | HPS hPSDst = ::GpiCreatePS(vHabmain, hDCDst, &vSize, PU_PELS | GPIA_ASSOC); | |
3c623cf7 SN |
1556 | POINTL vPoint[4] = { {0 ,0}, {nWidth, nHeight}, |
1557 | {0, 0}, {nWidth, nHeight} | |
020a1653 DW |
1558 | }; |
1559 | ||
1c9a789e DW |
1560 | memset(&vBmih, '\0', 16); |
1561 | vBmih.cbFix = 16; | |
e464c180 DW |
1562 | vBmih.cx = nWidth; |
1563 | vBmih.cy = nHeight; | |
020a1653 | 1564 | vBmih.cPlanes = 1; |
1c9a789e | 1565 | vBmih.cBitCount = 24; |
020a1653 DW |
1566 | |
1567 | hBmpInvMask = ::GpiCreateBitmap( hPSDst | |
1568 | ,&vBmih | |
1569 | ,0L | |
1570 | ,NULL | |
1571 | ,NULL | |
1572 | ); | |
1573 | ||
1574 | ::GpiSetBitmap(hPSSrc, (HBITMAP) hBmpMask); | |
1575 | ::GpiSetBitmap(hPSDst, (HBITMAP) hBmpInvMask); | |
1576 | ||
1577 | ::GpiBitBlt( hPSDst | |
1578 | ,hPSSrc | |
1579 | ,4L | |
e464c180 | 1580 | ,vPoint |
8e8d8eef | 1581 | ,ROP_SRCINVERT |
020a1653 DW |
1582 | ,BBO_IGNORE |
1583 | ); | |
1584 | ||
1585 | ::GpiDestroyPS(hPSSrc); | |
1586 | ::GpiDestroyPS(hPSDst); | |
1587 | ::DevCloseDC(hDCSrc); | |
e464c180 | 1588 | ::DevCloseDC(hDCDst); |
020a1653 DW |
1589 | |
1590 | return hBmpInvMask; | |
1591 | } // end of WxWinGdi_InvertMask | |
3437f881 | 1592 |