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