]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
cb7d7375 | 2 | // Name: src/os2/dc.cpp |
0e320a79 | 3 | // Purpose: wxDC class |
fb46a9a6 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb46a9a6 | 6 | // Created: 10/14/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
fb46a9a6 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
fb46a9a6 DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifndef WX_PRECOMP | |
16 | #include "wx/window.h" | |
17 | #include "wx/dc.h" | |
18 | #include "wx/utils.h" | |
19 | #include "wx/dialog.h" | |
20 | #include "wx/app.h" | |
21 | #include "wx/bitmap.h" | |
22 | #include "wx/dcmemory.h" | |
23 | #include "wx/log.h" | |
24 | #include "wx/icon.h" | |
b9c15d10 | 25 | #include "wx/msgdlg.h" |
272ebf16 SN |
26 | #if wxUSE_STATUSBAR |
27 | #include "wx/statusbr.h" | |
28 | #endif | |
0e320a79 DW |
29 | #endif |
30 | ||
542e68c7 | 31 | #include "wx/module.h" |
fb46a9a6 DW |
32 | #include "wx/dcprint.h" |
33 | ||
34 | #include <string.h> | |
fb46a9a6 DW |
35 | |
36 | #include "wx/os2/private.h" | |
0e320a79 | 37 | |
fb46a9a6 | 38 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject) |
0e320a79 | 39 | |
5fd2b2c6 | 40 | // |
77ffb593 | 41 | // wxWidgets uses the Microsoft convention that the origin is the UPPER left. |
5fd2b2c6 | 42 | // Native OS/2 however in the GPI and PM define the origin as the LOWER left. |
77ffb593 | 43 | // In order to map OS/2 GPI/PM y coordinates to wxWidgets coordinates we must |
5fd2b2c6 DW |
44 | // perform the following transformation: |
45 | // | |
46 | // Parent object height: POBJHEIGHT | |
47 | // Desried origin: WXORIGINY | |
48 | // Object to place's height: OBJHEIGHT | |
49 | // | |
77ffb593 | 50 | // To get the OS2 position from the wxWidgets one: |
5fd2b2c6 DW |
51 | // |
52 | // OS2Y = POBJHEIGHT - (WXORIGINY + OBJHEIGHT) | |
53 | // | |
54 | // For OS/2 wxDC's we will always determine m_vRclPaint as the size of the | |
55 | // OS/2 Presentation Space associated with the device context. y is the | |
77ffb593 | 56 | // desired application's y coordinate of the origin in wxWidgets space. |
5fd2b2c6 DW |
57 | // objy is the height of the object we are going to draw. |
58 | // | |
59 | #define OS2Y(y, objy) ((m_vRclPaint.yTop - m_vRclPaint.yBottom) - (y + objy)) | |
60 | ||
fb46a9a6 | 61 | // --------------------------------------------------------------------------- |
0e320a79 | 62 | // constants |
fb46a9a6 | 63 | // --------------------------------------------------------------------------- |
1408104d | 64 | |
fb46a9a6 | 65 | static const int VIEWPORT_EXTENT = 1000; |
1408104d | 66 | |
fb46a9a6 DW |
67 | static const int MM_POINTS = 9; |
68 | static const int MM_METRIC = 10; | |
1408104d | 69 | |
f6bcfd97 BP |
70 | // --------------------------------------------------------------------------- |
71 | // private functions | |
72 | // --------------------------------------------------------------------------- | |
73 | ||
74 | // convert degrees to radians | |
75 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
76 | ||
7e99520b DW |
77 | int SetTextColor( |
78 | HPS hPS | |
79 | , int nForegroundColour | |
80 | ) | |
81 | { | |
82 | CHARBUNDLE vCbnd; | |
83 | ||
84 | vCbnd.lColor = nForegroundColour; | |
85 | ::GpiSetAttrs( hPS // presentation-space handle | |
86 | ,PRIM_CHAR // Char primitive. | |
87 | ,CBB_COLOR // sets color. | |
88 | ,0 // | |
89 | ,&vCbnd // buffer for attributes. | |
90 | ); | |
91 | return 0; | |
92 | } | |
93 | ||
94 | int QueryTextBkColor( | |
95 | HPS hPS | |
96 | ) | |
97 | { | |
98 | CHARBUNDLE vCbnd; | |
99 | ||
f44fdfb0 DW |
100 | ::GpiQueryAttrs( hPS // presentation-space handle |
101 | ,PRIM_CHAR // Char primitive. | |
102 | ,CBB_BACK_COLOR // Background color. | |
103 | ,&vCbnd // buffer for attributes. | |
104 | ); | |
7e99520b DW |
105 | return vCbnd.lBackColor; |
106 | } | |
107 | ||
108 | ||
109 | int SetTextBkColor( | |
110 | HPS hPS | |
111 | , int nBackgroundColour | |
112 | ) | |
113 | { | |
114 | CHARBUNDLE vCbnd; | |
115 | int rc; | |
116 | ||
117 | rc = QueryTextBkColor(hPS); | |
118 | ||
119 | vCbnd.lBackColor = nBackgroundColour; | |
120 | ::GpiSetAttrs(hPS, // presentation-space handle | |
121 | PRIM_CHAR, // Char primitive. | |
122 | CBB_BACK_COLOR, // sets color. | |
123 | 0, | |
124 | &vCbnd // buffer for attributes. | |
125 | ); | |
126 | return rc; | |
127 | } | |
128 | ||
129 | int SetBkMode( | |
130 | HPS hPS | |
131 | , int nBackgroundMode | |
132 | ) | |
133 | { | |
134 | if(nBackgroundMode == wxTRANSPARENT) | |
135 | ::GpiSetBackMix( hPS | |
136 | ,BM_LEAVEALONE | |
137 | ); | |
138 | else | |
139 | // the background of the primitive takes over whatever is underneath. | |
140 | ::GpiSetBackMix( hPS | |
141 | ,BM_OVERPAINT | |
142 | ); | |
143 | return 0; | |
144 | } | |
145 | ||
fb46a9a6 DW |
146 | // =========================================================================== |
147 | // implementation | |
148 | // =========================================================================== | |
1408104d | 149 | |
893758d5 DW |
150 | #if wxUSE_DC_CACHEING |
151 | ||
152 | /* | |
153 | * This implementation is a bit ugly and uses the old-fashioned wxList class, so I will | |
154 | * improve it in due course, either using arrays, or simply storing pointers to one | |
155 | * entry for the bitmap, and two for the DCs. -- JACS | |
156 | */ | |
157 | ||
158 | // --------------------------------------------------------------------------- | |
159 | // wxDCCacheEntry | |
160 | // --------------------------------------------------------------------------- | |
161 | ||
162 | wxList wxDC::m_svBitmapCache; | |
163 | wxList wxDC::m_svDCCache; | |
164 | ||
165 | wxDCCacheEntry::wxDCCacheEntry( | |
166 | WXHBITMAP hBitmap | |
167 | , int nWidth | |
168 | , int nHeight | |
169 | , int nDepth | |
170 | ) | |
171 | { | |
172 | m_hBitmap = hBitmap; | |
173 | m_hPS = NULLHANDLE; | |
174 | m_nWidth = nWidth; | |
175 | m_nHeight = nHeight; | |
176 | m_nDepth = nDepth; | |
177 | } // end of wxDCCacheEntry::wxDCCacheEntry | |
178 | ||
179 | wxDCCacheEntry::wxDCCacheEntry( | |
180 | HPS hPS | |
181 | , int nDepth | |
182 | ) | |
183 | { | |
184 | m_hBitmap = NULLHANDLE; | |
185 | m_hPS = hPS; | |
186 | m_nWidth = 0; | |
187 | m_nHeight = 0; | |
188 | m_nDepth = nDepth; | |
189 | } // end of wxDCCacheEntry::wxDCCacheEntry | |
190 | ||
191 | wxDCCacheEntry::~wxDCCacheEntry() | |
192 | { | |
193 | if (m_hBitmap) | |
194 | ::GpiDeleteBitmap(m_hBitmap); | |
195 | if (m_hPS) | |
196 | ::GpiDestroyPS(m_hPS); | |
197 | } // end of wxDCCacheEntry::~wxDCCacheEntry | |
198 | ||
199 | wxDCCacheEntry* wxDC::FindBitmapInCache( | |
200 | HPS hPS | |
201 | , int nWidth | |
202 | , int nHeight | |
203 | ) | |
204 | { | |
19193a2c | 205 | int nDepth = 24; // we'll fix this later ::GetDeviceCaps((HDC) dc, PLANES) * ::GetDeviceCaps((HDC) dc, BITSPIXEL); |
893758d5 DW |
206 | wxNode* pNode = m_svBitmapCache.First(); |
207 | BITMAPINFOHEADER2 vBmpHdr; | |
208 | ||
209 | while(pNode) | |
210 | { | |
211 | wxDCCacheEntry* pEntry = (wxDCCacheEntry*)pNode->Data(); | |
212 | ||
213 | if (pEntry->m_nDepth == nDepth) | |
214 | { | |
215 | memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2)); | |
216 | ||
217 | if (pEntry->m_nWidth < nWidth || pEntry->m_nHeight < nHeight) | |
218 | { | |
219 | ::GpiDeleteBitmap((HBITMAP)pEntry->m_hBitmap); | |
220 | vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2); | |
221 | vBmpHdr.cx = nWidth; | |
222 | vBmpHdr.cy = nHeight; | |
223 | vBmpHdr.cPlanes = 1; | |
6670f564 | 224 | vBmpHdr.cBitCount = (USHORT)nDepth; |
893758d5 DW |
225 | |
226 | pEntry->m_hBitmap = (WXHBITMAP) ::GpiCreateBitmap( hPS | |
227 | ,&vBmpHdr | |
228 | ,0L, NULL, NULL | |
229 | ); | |
230 | if (!pEntry->m_hBitmap) | |
231 | { | |
232 | wxLogLastError(wxT("CreateCompatibleBitmap")); | |
233 | } | |
234 | pEntry->m_nWidth = nWidth; | |
235 | pEntry->m_nHeight = nHeight; | |
236 | return pEntry; | |
237 | } | |
238 | return pEntry; | |
239 | } | |
240 | pNode = pNode->Next(); | |
241 | } | |
242 | memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2)); | |
243 | vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2); | |
244 | vBmpHdr.cx = nWidth; | |
245 | vBmpHdr.cy = nHeight; | |
246 | vBmpHdr.cPlanes = 1; | |
6670f564 | 247 | vBmpHdr.cBitCount = (USHORT)nDepth; |
893758d5 DW |
248 | |
249 | WXHBITMAP hBitmap = (WXHBITMAP) ::GpiCreateBitmap( hPS | |
250 | ,&vBmpHdr | |
251 | ,0L, NULL, NULL | |
252 | ); | |
253 | if (!hBitmap) | |
254 | { | |
255 | wxLogLastError(wxT("CreateCompatibleBitmap")); | |
256 | } | |
257 | wxDCCacheEntry* pEntry = new wxDCCacheEntry( hBitmap | |
258 | ,nWidth | |
259 | ,nHeight | |
260 | ,nDepth | |
261 | ); | |
262 | AddToBitmapCache(pEntry); | |
263 | return pEntry; | |
264 | } // end of FindBitmapInCache | |
265 | ||
266 | wxDCCacheEntry* wxDC::FindDCInCache( | |
267 | wxDCCacheEntry* pNotThis | |
268 | , HPS hPS | |
269 | ) | |
270 | { | |
271 | int nDepth = 24; // we'll fix this up later ::GetDeviceCaps((HDC) dc, PLANES) * ::GetDeviceCaps((HDC) dc, BITSPIXEL); | |
272 | wxNode* pNode = m_svDCCache.First(); | |
273 | ||
274 | while(pNode) | |
275 | { | |
276 | wxDCCacheEntry* pEntry = (wxDCCacheEntry*)pNode->Data(); | |
277 | ||
278 | // | |
279 | // Don't return the same one as we already have | |
280 | // | |
281 | if (!pNotThis || (pNotThis != pEntry)) | |
282 | { | |
283 | if (pEntry->m_nDepth == nDepth) | |
284 | { | |
285 | return pEntry; | |
286 | } | |
287 | } | |
288 | pNode = pNode->Next(); | |
289 | } | |
290 | wxDCCacheEntry* pEntry = new wxDCCacheEntry( hPS | |
291 | ,nDepth | |
292 | ); | |
293 | AddToDCCache(pEntry); | |
294 | return pEntry; | |
295 | } // end of wxDC::FindDCInCache | |
296 | ||
297 | void wxDC::AddToBitmapCache( | |
298 | wxDCCacheEntry* pEntry | |
299 | ) | |
300 | { | |
301 | m_svBitmapCache.Append(pEntry); | |
302 | } // end of wxDC::AddToBitmapCache | |
303 | ||
304 | void wxDC::AddToDCCache( | |
305 | wxDCCacheEntry* pEntry | |
306 | ) | |
307 | { | |
308 | m_svDCCache.Append(pEntry); | |
309 | } // end of wxDC::AddToDCCache | |
310 | ||
311 | void wxDC::ClearCache() | |
312 | { | |
aad6765c | 313 | m_svBitmapCache.DeleteContents(true); |
893758d5 | 314 | m_svBitmapCache.Clear(); |
aad6765c JS |
315 | m_svBitmapCache.DeleteContents(false); |
316 | m_svDCCache.DeleteContents(true); | |
893758d5 | 317 | m_svDCCache.Clear(); |
aad6765c | 318 | m_svDCCache.DeleteContents(false); |
893758d5 DW |
319 | } // end of wxDC::ClearCache |
320 | ||
321 | // Clean up cache at app exit | |
322 | class wxDCModule : public wxModule | |
323 | { | |
324 | public: | |
aad6765c | 325 | virtual bool OnInit() { return true; } |
893758d5 DW |
326 | virtual void OnExit() { wxDC::ClearCache(); } |
327 | ||
328 | private: | |
329 | DECLARE_DYNAMIC_CLASS(wxDCModule) | |
330 | }; // end of CLASS wxDCModule | |
331 | ||
332 | IMPLEMENT_DYNAMIC_CLASS(wxDCModule, wxModule) | |
333 | ||
334 | #endif // ndef for wxUSE_DC_CACHEING | |
335 | ||
fb46a9a6 | 336 | // --------------------------------------------------------------------------- |
0e320a79 | 337 | // wxDC |
fb46a9a6 | 338 | // --------------------------------------------------------------------------- |
0e320a79 DW |
339 | |
340 | wxDC::wxDC(void) | |
341 | { | |
7e99520b | 342 | m_pCanvas = NULL; |
c3d43472 | 343 | |
7e99520b DW |
344 | m_hOldBitmap = 0; |
345 | m_hOldPen = 0; | |
346 | m_hOldBrush = 0; | |
347 | m_hOldFont = 0; | |
348 | m_hOldPalette = 0; | |
ce44c50e | 349 | |
aad6765c | 350 | m_bOwnsDC = false; |
7e99520b | 351 | m_hDC = 0; |
7e99520b DW |
352 | m_hOldPS = NULL; |
353 | m_hPS = NULL; | |
aad6765c | 354 | m_bIsPaintTime = false; // True at Paint Time |
2b0ec34b | 355 | |
aad6765c | 356 | wxColour vColor( wxT("BLACK") ); |
2b0ec34b | 357 | m_pen.SetColour(vColor); |
aad6765c JS |
358 | |
359 | vColor.Set( wxT("WHITE") ); | |
2b0ec34b | 360 | m_brush.SetColour(vColor); |
aad6765c | 361 | |
e1a688e4 | 362 | } // end of wxDC::wxDC |
0e320a79 DW |
363 | |
364 | wxDC::~wxDC(void) | |
365 | { | |
e1a688e4 DW |
366 | if ( m_hDC != 0 ) |
367 | { | |
368 | SelectOldObjects(m_hDC); | |
369 | ||
370 | // if we own the HDC, we delete it, otherwise we just release it | |
371 | ||
372 | if (m_bOwnsDC) | |
373 | { | |
374 | if(m_hPS) | |
375 | { | |
376 | ::GpiAssociate(m_hPS, NULLHANDLE); | |
377 | ::GpiDestroyPS(m_hPS); | |
378 | } | |
379 | m_hPS = NULLHANDLE; | |
380 | ::DevCloseDC((HDC)m_hDC); | |
381 | } | |
382 | else | |
383 | { | |
384 | // | |
385 | // Just Dissacociate, not destroy if we don't own the DC | |
386 | // | |
387 | if(m_hPS) | |
388 | { | |
389 | ::GpiAssociate(m_hPS, NULLHANDLE); | |
390 | } | |
391 | } | |
392 | } | |
393 | } // end of wxDC::~wxDC | |
0e320a79 | 394 | |
fb46a9a6 DW |
395 | // This will select current objects out of the DC, |
396 | // which is what you have to do before deleting the | |
397 | // DC. | |
f07bb01b DW |
398 | void wxDC::SelectOldObjects( |
399 | WXHDC hPS | |
400 | ) | |
0e320a79 | 401 | { |
f07bb01b | 402 | if (hPS) |
fb46a9a6 | 403 | { |
f6bcfd97 | 404 | if (m_hOldBitmap) |
fb46a9a6 | 405 | { |
f07bb01b | 406 | ::GpiSetBitmap(hPS, (HBITMAP) m_hOldBitmap); |
f6bcfd97 | 407 | if (m_vSelectedBitmap.Ok()) |
fb46a9a6 | 408 | { |
f6bcfd97 | 409 | m_vSelectedBitmap.SetSelectedInto(NULL); |
fb46a9a6 DW |
410 | } |
411 | } | |
f6bcfd97 | 412 | m_hOldBitmap = 0; |
f07bb01b DW |
413 | // |
414 | // OS/2 has no other native GDI objects to set in a PS/DC like windows | |
415 | // | |
f6bcfd97 | 416 | m_hOldPen = 0; |
f6bcfd97 | 417 | m_hOldBrush = 0; |
f6bcfd97 | 418 | m_hOldFont = 0; |
f6bcfd97 | 419 | m_hOldPalette = 0; |
fb46a9a6 | 420 | } |
0e320a79 | 421 | |
f6bcfd97 BP |
422 | m_brush = wxNullBrush; |
423 | m_pen = wxNullPen; | |
424 | m_palette = wxNullPalette; | |
425 | m_font = wxNullFont; | |
fb46a9a6 | 426 | m_backgroundBrush = wxNullBrush; |
f6bcfd97 | 427 | m_vSelectedBitmap = wxNullBitmap; |
e1a688e4 | 428 | } // end of wxDC::SelectOldObjects |
0e320a79 | 429 | |
fb46a9a6 DW |
430 | // --------------------------------------------------------------------------- |
431 | // clipping | |
432 | // --------------------------------------------------------------------------- | |
0e320a79 | 433 | |
fa5593ac DW |
434 | #define DO_SET_CLIPPING_BOX() \ |
435 | { \ | |
436 | RECTL rect; \ | |
437 | \ | |
438 | ::GpiQueryClipBox(m_hPS, &rect); \ | |
439 | \ | |
440 | m_clipX1 = (wxCoord) XDEV2LOG(rect.xLeft); \ | |
441 | m_clipY1 = (wxCoord) YDEV2LOG(rect.yTop); \ | |
442 | m_clipX2 = (wxCoord) XDEV2LOG(rect.xRight); \ | |
443 | m_clipY2 = (wxCoord) YDEV2LOG(rect.yBottom); \ | |
fb46a9a6 | 444 | } |
0e320a79 | 445 | |
fa5593ac | 446 | void wxDC::DoSetClippingRegion( |
5fd2b2c6 DW |
447 | wxCoord vX |
448 | , wxCoord vY | |
449 | , wxCoord vWidth | |
450 | , wxCoord vHeight | |
fa5593ac | 451 | ) |
0e320a79 | 452 | { |
fa5593ac DW |
453 | RECTL vRect; |
454 | ||
5fd2b2c6 | 455 | vY = OS2Y(vY,vHeight); |
aad6765c | 456 | m_clipping = true; |
5fd2b2c6 DW |
457 | vRect.xLeft = vX; |
458 | vRect.yTop = vY + vHeight; | |
459 | vRect.xRight = vX + vWidth; | |
460 | vRect.yBottom = vY; | |
fa5593ac DW |
461 | ::GpiIntersectClipRectangle(m_hPS, &vRect); |
462 | DO_SET_CLIPPING_BOX() | |
463 | } // end of wxDC::DoSetClippingRegion | |
464 | ||
465 | void wxDC::DoSetClippingRegionAsRegion( | |
466 | const wxRegion& rRegion | |
467 | ) | |
0e320a79 | 468 | { |
fa5593ac DW |
469 | wxCHECK_RET(rRegion.GetHRGN(), wxT("invalid clipping region")); |
470 | HRGN hRgnOld; | |
471 | ||
aad6765c | 472 | m_clipping = true; |
fa5593ac DW |
473 | ::GpiSetClipRegion( m_hPS |
474 | ,(HRGN)rRegion.GetHRGN() | |
475 | ,&hRgnOld | |
476 | ); | |
477 | DO_SET_CLIPPING_BOX() | |
478 | } // end of wxDC::DoSetClippingRegionAsRegion | |
0e320a79 | 479 | |
fb46a9a6 | 480 | void wxDC::DestroyClippingRegion(void) |
0e320a79 | 481 | { |
fa5593ac DW |
482 | if (m_clipping && m_hPS) |
483 | { | |
484 | HRGN hRgnOld; | |
485 | RECTL vRect; | |
486 | ||
487 | // TODO: this should restore the previous clipped region | |
488 | // so that OnPaint processing works correctly, and | |
489 | // the update doesn't get destroyed after the first | |
490 | // DestroyClippingRegion | |
491 | vRect.xLeft = XLOG2DEV(0); | |
492 | vRect.yTop = YLOG2DEV(32000); | |
493 | vRect.xRight = XLOG2DEV(32000); | |
494 | vRect.yBottom = YLOG2DEV(0); | |
495 | ||
496 | HRGN hRgn = ::GpiCreateRegion(m_hPS, 1, &vRect); | |
497 | ||
498 | ::GpiSetClipRegion(m_hPS, hRgn, &hRgnOld); | |
499 | } | |
d16b634f | 500 | ResetClipping(); |
fa5593ac | 501 | } // end of wxDC::DestroyClippingRegion |
0e320a79 | 502 | |
fb46a9a6 DW |
503 | // --------------------------------------------------------------------------- |
504 | // query capabilities | |
505 | // --------------------------------------------------------------------------- | |
0e320a79 | 506 | |
fb46a9a6 | 507 | bool wxDC::CanDrawBitmap() const |
0e320a79 | 508 | { |
aad6765c | 509 | return true; |
fb46a9a6 | 510 | } |
0e320a79 | 511 | |
fb46a9a6 | 512 | bool wxDC::CanGetTextExtent() const |
0e320a79 | 513 | { |
f07bb01b | 514 | LONG lTechnology = 0L; |
0e320a79 | 515 | |
f07bb01b DW |
516 | ::DevQueryCaps(GetHDC(), CAPS_TECHNOLOGY, 1L, &lTechnology); |
517 | return (lTechnology == CAPS_TECH_RASTER_DISPLAY) || (lTechnology == CAPS_TECH_RASTER_PRINTER); | |
518 | } // end of wxDC::CanGetTextExtent | |
1408104d DW |
519 | |
520 | int wxDC::GetDepth() const | |
0e320a79 | 521 | { |
f07bb01b | 522 | LONG lArray[CAPS_COLOR_BITCOUNT]; |
9da48399 | 523 | int nBitsPerPixel = 0; |
f07bb01b DW |
524 | |
525 | if(::DevQueryCaps( GetHDC() | |
526 | ,CAPS_FAMILY | |
527 | ,CAPS_COLOR_BITCOUNT | |
528 | ,lArray | |
529 | )) | |
530 | { | |
531 | nBitsPerPixel = (int)lArray[CAPS_COLOR_BITCOUNT]; | |
532 | } | |
533 | return nBitsPerPixel; | |
534 | } // end of wxDC::GetDepth | |
0e320a79 | 535 | |
fb46a9a6 DW |
536 | // --------------------------------------------------------------------------- |
537 | // drawing | |
538 | // --------------------------------------------------------------------------- | |
0e320a79 | 539 | |
1408104d | 540 | void wxDC::Clear() |
0e320a79 | 541 | { |
81039e0d DW |
542 | // |
543 | // If this is a canvas DC then just fill with the background color | |
544 | // Otherwise purge the whole thing | |
545 | // | |
546 | if (m_pCanvas) | |
547 | { | |
548 | RECTL vRect; | |
549 | ||
550 | ::GpiQueryClipBox(m_hPS, &vRect); | |
551 | ::WinFillRect(m_hPS, &vRect, ::GpiQueryBackColor(m_hPS)); | |
552 | } | |
553 | else | |
445c7bca | 554 | ::GpiErase(m_hPS); |
5fd2b2c6 | 555 | } // end of wxDC::Clear |
0e320a79 | 556 | |
1d0edc0f | 557 | bool wxDC::DoFloodFill( |
51c1d535 DW |
558 | wxCoord vX |
559 | , wxCoord vY | |
560 | , const wxColour& rCol | |
561 | , int nStyle | |
562 | ) | |
0e320a79 | 563 | { |
51c1d535 DW |
564 | POINTL vPtlPos; |
565 | LONG lColor; | |
566 | LONG lOptions; | |
1d0edc0f | 567 | LONG lHits; |
aad6765c | 568 | bool bSuccess = false; |
51c1d535 DW |
569 | |
570 | vPtlPos.x = vX; // Loads x-coordinate | |
5fd2b2c6 | 571 | vPtlPos.y = OS2Y(vY,0); // Loads y-coordinate |
51c1d535 DW |
572 | ::GpiMove(m_hPS, &vPtlPos); // Sets current position |
573 | lColor = rCol.GetPixel(); | |
574 | lOptions = FF_BOUNDARY; | |
575 | if(wxFLOOD_SURFACE == nStyle) | |
576 | lOptions = FF_SURFACE; | |
577 | ||
1d0edc0f | 578 | if ((lHits = ::GpiFloodFill(m_hPS, lOptions, lColor)) != GPI_ERROR) |
aad6765c JS |
579 | bSuccess = true; |
580 | ||
1a0c7d55 | 581 | return bSuccess; |
5fd2b2c6 | 582 | } // end of wxDC::DoFloodFill |
0e320a79 | 583 | |
51c1d535 DW |
584 | bool wxDC::DoGetPixel( |
585 | wxCoord vX | |
586 | , wxCoord vY | |
587 | , wxColour* pCol | |
588 | ) const | |
1408104d | 589 | { |
51c1d535 DW |
590 | POINTL vPoint; |
591 | LONG lColor; | |
592 | ||
593 | vPoint.x = vX; | |
5fd2b2c6 | 594 | vPoint.y = OS2Y(vY,0); |
1a0c7d55 | 595 | lColor = ::GpiQueryPel(m_hPS, &vPoint); |
5fd2b2c6 DW |
596 | |
597 | // | |
598 | // return the color of the pixel | |
599 | // | |
600 | if(pCol) | |
601 | pCol->Set( GetRValue(lColor) | |
602 | ,GetGValue(lColor) | |
603 | ,GetBValue(lColor) | |
604 | ); | |
1a0c7d55 | 605 | return true; |
5fd2b2c6 | 606 | } // end of wxDC::DoGetPixel |
0e320a79 | 607 | |
f07bb01b DW |
608 | void wxDC::DoCrossHair( |
609 | wxCoord vX | |
610 | , wxCoord vY | |
611 | ) | |
0e320a79 | 612 | { |
5fd2b2c6 DW |
613 | vY = OS2Y(vY,0); |
614 | ||
f07bb01b DW |
615 | wxCoord vX1 = vX - VIEWPORT_EXTENT; |
616 | wxCoord vY1 = vY - VIEWPORT_EXTENT; | |
617 | wxCoord vX2 = vX + VIEWPORT_EXTENT; | |
618 | wxCoord vY2 = vY + VIEWPORT_EXTENT; | |
619 | POINTL vPoint[4]; | |
620 | ||
621 | vPoint[0].x = vX1; | |
5fd2b2c6 | 622 | vPoint[0].y = vY; |
f07bb01b DW |
623 | |
624 | vPoint[1].x = vX2; | |
5fd2b2c6 | 625 | vPoint[1].y = vY; |
f07bb01b DW |
626 | |
627 | ::GpiMove(m_hPS, &vPoint[0]); | |
628 | ::GpiLine(m_hPS, &vPoint[1]); | |
629 | ||
630 | vPoint[2].x = vX; | |
5fd2b2c6 | 631 | vPoint[2].y = vY1; |
f07bb01b DW |
632 | |
633 | vPoint[3].x = vX; | |
5fd2b2c6 | 634 | vPoint[3].y = vY2; |
f07bb01b DW |
635 | |
636 | ::GpiMove(m_hPS, &vPoint[2]); | |
637 | ::GpiLine(m_hPS, &vPoint[3]); | |
5fd2b2c6 DW |
638 | CalcBoundingBox(vX1, vY1); |
639 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 640 | } // end of wxDC::DoCrossHair |
1408104d | 641 | |
7e99520b DW |
642 | void wxDC::DoDrawLine( |
643 | wxCoord vX1 | |
644 | , wxCoord vY1 | |
645 | , wxCoord vX2 | |
646 | , wxCoord vY2 | |
647 | ) | |
0e320a79 | 648 | { |
7e99520b | 649 | POINTL vPoint[2]; |
d6d749aa | 650 | COLORREF vColor = 0x00ffffff; |
7e99520b | 651 | |
d6d749aa DW |
652 | // |
653 | // Might be a memory DC with no Paint rect. | |
654 | // | |
655 | if (!(m_vRclPaint.yTop == 0 && | |
656 | m_vRclPaint.yBottom == 0 && | |
657 | m_vRclPaint.xRight == 0 && | |
658 | m_vRclPaint.xLeft == 0)) | |
659 | { | |
660 | vY1 = OS2Y(vY1,0); | |
661 | vY2 = OS2Y(vY2,0); | |
662 | } | |
1c9a789e DW |
663 | else |
664 | { | |
665 | if (m_vSelectedBitmap != wxNullBitmap) | |
666 | { | |
667 | m_vRclPaint.yTop = m_vSelectedBitmap.GetHeight(); | |
668 | m_vRclPaint.xRight = m_vSelectedBitmap.GetWidth(); | |
669 | vY1 = OS2Y(vY1,0); | |
670 | vY2 = OS2Y(vY2,0); | |
671 | } | |
672 | } | |
7e99520b | 673 | vPoint[0].x = vX1; |
5fd2b2c6 | 674 | vPoint[0].y = vY1; |
7e99520b | 675 | vPoint[1].x = vX2; |
5fd2b2c6 | 676 | vPoint[1].y = vY2; |
d6d749aa DW |
677 | if (m_pen.Ok()) |
678 | { | |
679 | vColor = m_pen.GetColour().GetPixel(); | |
680 | } | |
681 | ::GpiSetColor(m_hPS, vColor); | |
7e99520b DW |
682 | ::GpiMove(m_hPS, &vPoint[0]); |
683 | ::GpiLine(m_hPS, &vPoint[1]); | |
5fd2b2c6 DW |
684 | CalcBoundingBox(vX1, vY1); |
685 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 686 | } // end of wxDC::DoDrawLine |
1408104d | 687 | |
51c1d535 DW |
688 | ////////////////////////////////////////////////////////////////////////////// |
689 | // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1) | |
690 | // and ending at (x2, y2). The current pen is used for the outline and the | |
691 | // current brush for filling the shape. The arc is drawn in an anticlockwise | |
692 | // direction from the start point to the end point. | |
693 | ////////////////////////////////////////////////////////////////////////////// | |
694 | void wxDC::DoDrawArc( | |
695 | wxCoord vX1 | |
696 | , wxCoord vY1 | |
697 | , wxCoord vX2 | |
698 | , wxCoord vY2 | |
699 | , wxCoord vXc | |
700 | , wxCoord vYc | |
701 | ) | |
1408104d | 702 | { |
51c1d535 DW |
703 | POINTL vPtlPos; |
704 | POINTL vPtlArc[2]; // Structure for current position | |
51c1d535 DW |
705 | double dRadius; |
706 | double dAngl1; | |
707 | double dAngl2; | |
708 | double dAnglmid; | |
709 | wxCoord vXm; | |
710 | wxCoord vYm; | |
711 | ARCPARAMS vArcp; // Structure for arc parameters | |
712 | ||
713 | if((vX1 == vXc && vY1 == vXc) || (vX2 == vXc && vY2 == vXc)) | |
714 | return; // Draw point ?? | |
715 | dRadius = 0.5 * ( hypot( (double)(vY1 - vYc) | |
716 | ,(double)(vX1 - vXc) | |
717 | ) + | |
718 | hypot( (double)(vY2 - vYc) | |
719 | ,(double)(vX2 - vXc) | |
720 | ) | |
721 | ); | |
722 | ||
723 | dAngl1 = atan2( (double)(vY1 - vYc) | |
724 | ,(double)(vX1 - vXc) | |
725 | ); | |
726 | dAngl2 = atan2( (double)(vY2 - vYc) | |
727 | ,(double)(vX2 - vXc) | |
728 | ); | |
729 | if(dAngl2 < dAngl1) | |
730 | dAngl2 += M_PI * 2; | |
731 | ||
732 | // | |
733 | // GpiPointArc can't draw full arc | |
734 | // | |
735 | if(dAngl2 == dAngl1 || (vX1 == vX2 && vY1 == vY2) ) | |
736 | { | |
737 | // | |
738 | // Medium point | |
739 | // | |
740 | dAnglmid = (dAngl1 + dAngl2)/2. + M_PI; | |
9923c37d DW |
741 | vXm = (wxCoord)(vXc + dRadius * cos(dAnglmid)); |
742 | vYm = (wxCoord)(vYc + dRadius * sin(dAnglmid)); | |
e99762c0 DW |
743 | DoDrawArc( vX1, vY1 |
744 | ,vXm, vYm | |
745 | ,vXc, vYc | |
51c1d535 | 746 | ); |
e99762c0 DW |
747 | DoDrawArc( vXm, vYm |
748 | ,vX2, vY2 | |
749 | ,vXc, vYc | |
51c1d535 DW |
750 | ); |
751 | return; | |
752 | } | |
753 | ||
754 | // | |
755 | // Medium point | |
756 | // | |
757 | dAnglmid = (dAngl1 + dAngl2)/2.; | |
9923c37d DW |
758 | vXm = (wxCoord)(vXc + dRadius * cos(dAnglmid)); |
759 | vYm = (wxCoord)(vYc + dRadius * sin(dAnglmid)); | |
51c1d535 DW |
760 | |
761 | // | |
762 | // Ellipse main axis (r,q), (p,s) with center at (0,0) */ | |
763 | // | |
764 | vArcp.lR = 0; | |
765 | vArcp.lQ = 1; | |
766 | vArcp.lP = 1; | |
767 | vArcp.lS = 0; | |
768 | ::GpiSetArcParams(m_hPS, &vArcp); // Sets parameters to default | |
769 | ||
770 | vPtlPos.x = vX1; // Loads x-coordinate | |
771 | vPtlPos.y = vY1; // Loads y-coordinate | |
772 | ::GpiMove(m_hPS, &vPtlPos); // Sets current position | |
e99762c0 DW |
773 | vPtlArc[0].x = vXm; |
774 | vPtlArc[0].y = vYm; | |
51c1d535 DW |
775 | vPtlArc[1].x = vX2; |
776 | vPtlArc[1].y = vY2; | |
777 | ::GpiPointArc(m_hPS, vPtlArc); // Draws the arc | |
9923c37d DW |
778 | CalcBoundingBox( (wxCoord)(vXc - dRadius) |
779 | ,(wxCoord)(vYc - dRadius) | |
5fd2b2c6 | 780 | ); |
9923c37d DW |
781 | CalcBoundingBox( (wxCoord)(vXc + dRadius) |
782 | ,(wxCoord)(vYc + dRadius) | |
5fd2b2c6 | 783 | ); |
f07bb01b | 784 | } // end of wxDC::DoDrawArc |
1408104d | 785 | |
51c1d535 DW |
786 | void wxDC::DoDrawCheckMark( |
787 | wxCoord vX1 | |
788 | , wxCoord vY1 | |
789 | , wxCoord vWidth | |
790 | , wxCoord vHeight | |
791 | ) | |
f6bcfd97 | 792 | { |
51c1d535 DW |
793 | POINTL vPoint[2]; |
794 | ||
5fd2b2c6 DW |
795 | vY1 = OS2Y(vY1,vHeight); |
796 | ||
51c1d535 DW |
797 | vPoint[0].x = vX1; |
798 | vPoint[0].y = vY1; | |
799 | vPoint[1].x = vX1 + vWidth; | |
800 | vPoint[1].y = vY1 + vHeight; | |
801 | ||
802 | ::GpiMove(m_hPS, &vPoint[0]); | |
803 | ::GpiBox( m_hPS // handle to a presentation space | |
804 | ,DRO_OUTLINE // draw the box outline ? or ? | |
805 | ,&vPoint[1] // address of the corner | |
806 | ,0L // horizontal corner radius | |
807 | ,0L // vertical corner radius | |
808 | ); | |
809 | if(vWidth > 4 && vHeight > 4) | |
810 | { | |
811 | int nTmp; | |
812 | ||
813 | vPoint[0].x += 2; vPoint[0].y += 2; | |
814 | vPoint[1].x -= 2; vPoint[1].y -= 2; | |
815 | ::GpiMove(m_hPS, &vPoint[0]); | |
816 | ::GpiLine(m_hPS, &vPoint[1]); | |
817 | nTmp = vPoint[0].x; | |
818 | vPoint[0].x = vPoint[1].x; | |
819 | vPoint[1].x = nTmp; | |
820 | ::GpiMove(m_hPS, &vPoint[0]); | |
821 | ::GpiLine(m_hPS, &vPoint[1]); | |
822 | } | |
5fd2b2c6 DW |
823 | CalcBoundingBox( vX1 |
824 | ,vY1 | |
825 | ); | |
826 | ||
827 | wxCoord vX2 = vX1 + vWidth; | |
828 | wxCoord vY2 = vY1 + vHeight; | |
829 | ||
830 | CalcBoundingBox( vX2 | |
831 | ,vY2 | |
832 | ); | |
f07bb01b | 833 | } // end of wxDC::DoDrawCheckMark |
f6bcfd97 | 834 | |
51c1d535 DW |
835 | void wxDC::DoDrawPoint( |
836 | wxCoord vX | |
837 | , wxCoord vY | |
838 | ) | |
1408104d | 839 | { |
51c1d535 | 840 | POINTL vPoint; |
5fd2b2c6 | 841 | COLORREF vColor = 0x00ffffff; |
51c1d535 | 842 | |
5fd2b2c6 DW |
843 | if (m_pen.Ok()) |
844 | { | |
845 | vColor = m_pen.GetColour().GetPixel(); | |
846 | } | |
847 | ::GpiSetColor(m_hPS, vColor); | |
51c1d535 | 848 | vPoint.x = vX; |
5fd2b2c6 | 849 | vPoint.y = OS2Y(vY,0); |
51c1d535 | 850 | ::GpiSetPel(m_hPS, &vPoint); |
5fd2b2c6 DW |
851 | CalcBoundingBox( vX |
852 | ,vY | |
853 | ); | |
f07bb01b | 854 | } // end of wxDC::DoDrawPoint |
1408104d | 855 | |
51c1d535 DW |
856 | void wxDC::DoDrawPolygon( |
857 | int n | |
858 | , wxPoint vPoints[] | |
859 | , wxCoord vXoffset | |
860 | , wxCoord vYoffset | |
861 | , int nFillStyle | |
862 | ) | |
1408104d | 863 | { |
51c1d535 DW |
864 | ULONG ulCount = 1; // Number of polygons. |
865 | POLYGON vPlgn; // polygon. | |
866 | ULONG flOptions = 0L; // Drawing options. | |
867 | ||
868 | ////////////////////////////////////////////////////////////////////////////// | |
869 | // This contains fields of option bits... to draw boundary lines as well as | |
870 | // the area interior. | |
871 | // | |
872 | // Drawing boundary lines: | |
873 | // POLYGON_NOBOUNDARY Does not draw boundary lines. | |
874 | // POLYGON_BOUNDARY Draws boundary lines (the default). | |
875 | // | |
876 | // Construction of the area interior: | |
877 | // POLYGON_ALTERNATE Constructs interior in alternate mode | |
878 | // (the default). | |
879 | // POLYGON_WINDING Constructs interior in winding mode. | |
880 | ////////////////////////////////////////////////////////////////////////////// | |
881 | ||
882 | ULONG flModel = 0L; // Drawing model. | |
883 | ||
884 | ////////////////////////////////////////////////////////////////////////////// | |
885 | // Drawing model. | |
886 | // POLYGON_INCL Fill is inclusive of bottom right (the default). | |
887 | // POLYGON_EXCL Fill is exclusive of bottom right. | |
888 | // This is provided to aid migration from other graphics models. | |
889 | ////////////////////////////////////////////////////////////////////////////// | |
890 | ||
891 | LONG lHits = 0L; // Correlation/error indicator. | |
892 | POINTL vPoint; | |
893 | int i; | |
894 | int nIsTRANSPARENT = 0; | |
895 | LONG lBorderColor = 0L; | |
896 | LONG lColor = 0L; | |
897 | ||
898 | lBorderColor = m_pen.GetColour().GetPixel(); | |
899 | lColor = m_brush.GetColour().GetPixel(); | |
900 | if(m_brush.GetStyle() == wxTRANSPARENT) | |
901 | nIsTRANSPARENT = 1; | |
902 | ||
903 | vPlgn.ulPoints = n; | |
904 | vPlgn.aPointl = (POINTL*) calloc( n + 1 | |
905 | ,sizeof(POINTL) | |
906 | ); // well, new will call malloc | |
907 | ||
908 | for(i = 0; i < n; i++) | |
909 | { | |
5fd2b2c6 DW |
910 | vPlgn.aPointl[i].x = vPoints[i].x; // +xoffset; |
911 | vPlgn.aPointl[i].y = OS2Y(vPoints[i].y,0); // +yoffset; | |
51c1d535 DW |
912 | } |
913 | flModel = POLYGON_BOUNDARY; | |
914 | if(nFillStyle == wxWINDING_RULE) | |
915 | flModel |= POLYGON_WINDING; | |
916 | else | |
917 | flModel |= POLYGON_ALTERNATE; | |
918 | ||
919 | vPoint.x = vXoffset; | |
5fd2b2c6 | 920 | vPoint.y = OS2Y(vYoffset,0); |
51c1d535 DW |
921 | |
922 | ::GpiSetColor(m_hPS, lBorderColor); | |
923 | ::GpiMove(m_hPS, &vPoint); | |
924 | lHits = ::GpiPolygons(m_hPS, ulCount, &vPlgn, flOptions, flModel); | |
925 | free(vPlgn.aPointl); | |
f07bb01b | 926 | } // end of wxDC::DoDrawPolygon |
1408104d | 927 | |
51c1d535 DW |
928 | void wxDC::DoDrawLines( |
929 | int n | |
930 | , wxPoint vPoints[] | |
931 | , wxCoord vXoffset | |
932 | , wxCoord vYoffset | |
933 | ) | |
1408104d | 934 | { |
51c1d535 DW |
935 | POINTL vPoint; |
936 | ||
5fd2b2c6 DW |
937 | if (vXoffset != 0L || vXoffset != 0L) |
938 | { | |
939 | int i; | |
940 | ||
941 | vPoint.x = vPoints[0].x + vXoffset; | |
942 | vPoint.y = OS2Y(vPoints[0].y + vYoffset,0); | |
943 | ::GpiMove(m_hPS, &vPoint); | |
51c1d535 | 944 | |
5fd2b2c6 | 945 | LONG lBorderColor = m_pen.GetColour().GetPixel(); |
51c1d535 | 946 | |
5fd2b2c6 DW |
947 | ::GpiSetColor(m_hPS, lBorderColor); |
948 | for(i = 1; i < n; i++) | |
949 | { | |
950 | vPoint.x = vPoints[i].x + vXoffset; | |
951 | vPoint.y = OS2Y(vPoints[i].y + vYoffset,0); | |
952 | ::GpiLine(m_hPS, &vPoint); | |
953 | } | |
954 | } | |
955 | else | |
51c1d535 | 956 | { |
5fd2b2c6 DW |
957 | int i; |
958 | ||
9da48399 JS |
959 | CalcBoundingBox( vPoints[0].x |
960 | ,vPoints[0].y | |
5fd2b2c6 DW |
961 | ); |
962 | vPoint.x = vPoints[0].x; | |
963 | vPoint.y = OS2Y(vPoints[0].y,0); | |
964 | ::GpiMove(m_hPS, &vPoint); | |
965 | ||
966 | for (i = 0; i < n; i++) | |
967 | { | |
968 | CalcBoundingBox( vPoints[i].x | |
969 | ,vPoints[i].y | |
970 | ); | |
971 | vPoint.x = vPoints[i].x; | |
972 | vPoint.y = OS2Y(vPoints[i].y,0); | |
973 | ::GpiLine(m_hPS, &vPoint); | |
974 | } | |
51c1d535 | 975 | } |
f07bb01b | 976 | } // end of wxDC::DoDrawLines |
1408104d | 977 | |
7e99520b | 978 | void wxDC::DoDrawRectangle( |
f44fdfb0 | 979 | wxCoord vX |
7e99520b DW |
980 | , wxCoord vY |
981 | , wxCoord vWidth | |
982 | , wxCoord vHeight | |
983 | ) | |
1408104d | 984 | { |
7e99520b | 985 | POINTL vPoint[2]; |
51c1d535 DW |
986 | LONG lControl; |
987 | LONG lColor; | |
988 | LONG lBorderColor; | |
989 | int nIsTRANSPARENT = 0; | |
7e99520b | 990 | |
1d0edc0f | 991 | // |
d6d749aa | 992 | // Might be a memory DC with no Paint rect. |
1d0edc0f DW |
993 | // |
994 | if (!(m_vRclPaint.yTop == 0 && | |
995 | m_vRclPaint.yBottom == 0 && | |
996 | m_vRclPaint.xRight == 0 && | |
997 | m_vRclPaint.xLeft == 0)) | |
998 | vY = OS2Y(vY,vHeight); | |
1c9a789e DW |
999 | else |
1000 | { | |
1001 | if (m_vSelectedBitmap != wxNullBitmap) | |
1002 | { | |
1003 | m_vRclPaint.yTop = m_vSelectedBitmap.GetHeight(); | |
1004 | m_vRclPaint.xRight = m_vSelectedBitmap.GetWidth(); | |
1005 | vY = OS2Y(vY,vHeight); | |
1006 | } | |
1007 | } | |
5fd2b2c6 DW |
1008 | |
1009 | wxCoord vX2 = vX + vWidth; | |
1010 | wxCoord vY2 = vY + vHeight; | |
1011 | ||
7e99520b | 1012 | vPoint[0].x = vX; |
5fd2b2c6 | 1013 | vPoint[0].y = vY; |
ba3e10c9 DW |
1014 | vPoint[1].x = vX + vWidth - 1; |
1015 | vPoint[1].y = vY + vHeight - 1; | |
7e99520b | 1016 | ::GpiMove(m_hPS, &vPoint[0]); |
51c1d535 DW |
1017 | lColor = m_brush.GetColour().GetPixel(); |
1018 | lBorderColor = m_pen.GetColour().GetPixel(); | |
1019 | if (m_brush.GetStyle() == wxTRANSPARENT) | |
1020 | nIsTRANSPARENT = 1; | |
1021 | if(lColor == lBorderColor || nIsTRANSPARENT) | |
1022 | { | |
1023 | lControl = DRO_OUTLINEFILL; //DRO_FILL; | |
1024 | if(m_brush.GetStyle() == wxTRANSPARENT) | |
1025 | lControl = DRO_OUTLINE; | |
1026 | ||
70a2c656 | 1027 | ::GpiSetColor(m_hPS, lBorderColor); |
51c1d535 DW |
1028 | ::GpiBox( m_hPS // handle to a presentation space |
1029 | ,lControl // draw the box outline ? or ? | |
1030 | ,&vPoint[1] // address of the corner | |
1031 | ,0L // horizontal corner radius | |
1032 | ,0L // vertical corner radius | |
1033 | ); | |
1034 | } | |
1035 | else | |
1036 | { | |
1037 | lControl = DRO_OUTLINE; | |
1038 | ::GpiSetColor( m_hPS | |
1039 | ,lBorderColor | |
1040 | ); | |
1041 | ::GpiBox( m_hPS | |
1042 | ,lControl | |
1043 | ,&vPoint[1] | |
1044 | ,0L | |
1045 | ,0L | |
1046 | ); | |
1047 | lControl = DRO_FILL; | |
1048 | ::GpiSetColor( m_hPS | |
1049 | ,lColor | |
1050 | ); | |
8d854fa9 | 1051 | vPoint[0].x = vX + 1; |
5fd2b2c6 | 1052 | vPoint[0].y = vY + 1; |
ba3e10c9 DW |
1053 | vPoint[1].x = vX + vWidth - 2; |
1054 | vPoint[1].y = vY + vHeight - 2; | |
8d854fa9 | 1055 | ::GpiMove(m_hPS, &vPoint[0]); |
51c1d535 DW |
1056 | ::GpiBox( m_hPS |
1057 | ,lControl | |
1058 | ,&vPoint[1] | |
1059 | ,0L | |
1060 | ,0L | |
1061 | ); | |
1062 | } | |
5fd2b2c6 DW |
1063 | CalcBoundingBox(vX, vY); |
1064 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 1065 | } // end of wxDC::DoDrawRectangle |
1408104d | 1066 | |
7e99520b DW |
1067 | void wxDC::DoDrawRoundedRectangle( |
1068 | wxCoord vX | |
1069 | , wxCoord vY | |
1070 | , wxCoord vWidth | |
1071 | , wxCoord vHeight | |
1072 | , double dRadius | |
1073 | ) | |
1408104d | 1074 | { |
7e99520b | 1075 | POINTL vPoint[2]; |
51c1d535 | 1076 | LONG lControl; |
1c9a789e DW |
1077 | LONG lColor; |
1078 | LONG lBorderColor; | |
1079 | int nIsTRANSPARENT = 0; | |
7e99520b | 1080 | |
d6d749aa DW |
1081 | // |
1082 | // Might be a memory DC with no Paint rect. | |
1083 | // | |
1084 | if (!(m_vRclPaint.yTop == 0 && | |
1085 | m_vRclPaint.yBottom == 0 && | |
1086 | m_vRclPaint.xRight == 0 && | |
1087 | m_vRclPaint.xLeft == 0)) | |
1088 | vY = OS2Y(vY,vHeight); | |
1c9a789e DW |
1089 | else |
1090 | { | |
1091 | if (m_vSelectedBitmap != wxNullBitmap) | |
1092 | { | |
1093 | m_vRclPaint.yTop = m_vSelectedBitmap.GetHeight(); | |
1094 | m_vRclPaint.xRight = m_vSelectedBitmap.GetWidth(); | |
1095 | vY = OS2Y(vY,vHeight); | |
1096 | } | |
1097 | } | |
5fd2b2c6 DW |
1098 | |
1099 | wxCoord vX2 = (vX + vWidth); | |
1100 | wxCoord vY2 = (vY + vHeight); | |
1101 | ||
7e99520b | 1102 | vPoint[0].x = vX; |
1c9a789e DW |
1103 | vPoint[0].y = vY; |
1104 | vPoint[1].x = vX + vWidth - 1; | |
1105 | vPoint[1].y = vY + vHeight - 1; | |
7e99520b | 1106 | ::GpiMove(m_hPS, &vPoint[0]); |
51c1d535 | 1107 | |
1c9a789e DW |
1108 | lColor = m_brush.GetColour().GetPixel(); |
1109 | lBorderColor = m_pen.GetColour().GetPixel(); | |
51c1d535 DW |
1110 | lControl = DRO_OUTLINEFILL; //DRO_FILL; |
1111 | if (m_brush.GetStyle() == wxTRANSPARENT) | |
1c9a789e DW |
1112 | nIsTRANSPARENT = 1; |
1113 | if(lColor == lBorderColor || nIsTRANSPARENT) | |
1114 | { | |
1115 | lControl = DRO_OUTLINEFILL; //DRO_FILL; | |
1116 | if(m_brush.GetStyle() == wxTRANSPARENT) | |
1117 | lControl = DRO_OUTLINE; | |
1118 | ||
1119 | ::GpiSetColor(m_hPS, lColor); | |
1120 | ::GpiBox( m_hPS // handle to a presentation space | |
1121 | ,lControl // draw the box outline ? or ? | |
1122 | ,&vPoint[1] // address of the corner | |
1123 | ,(LONG)dRadius // horizontal corner radius | |
1124 | ,(LONG)dRadius // vertical corner radius | |
1125 | ); | |
1126 | } | |
1127 | else | |
1128 | { | |
51c1d535 | 1129 | lControl = DRO_OUTLINE; |
1c9a789e DW |
1130 | ::GpiSetColor( m_hPS |
1131 | ,lBorderColor | |
1132 | ); | |
1133 | ::GpiBox( m_hPS | |
1134 | ,lControl | |
1135 | ,&vPoint[1] | |
ad6bd870 DW |
1136 | ,(LONG)dRadius |
1137 | ,(LONG)dRadius | |
1c9a789e DW |
1138 | ); |
1139 | lControl = DRO_FILL; | |
1140 | ::GpiSetColor( m_hPS | |
1141 | ,lColor | |
1142 | ); | |
1143 | vPoint[0].x = vX + 1; | |
1144 | vPoint[0].y = vY + 1; | |
1145 | vPoint[1].x = vX + vWidth - 2; | |
1146 | vPoint[1].y = vY + vHeight - 2; | |
1147 | ::GpiMove(m_hPS, &vPoint[0]); | |
1148 | ::GpiBox( m_hPS | |
1149 | ,lControl | |
1150 | ,&vPoint[1] | |
ad6bd870 DW |
1151 | ,(LONG)dRadius |
1152 | ,(LONG)dRadius | |
1c9a789e DW |
1153 | ); |
1154 | } | |
1155 | ||
5fd2b2c6 DW |
1156 | CalcBoundingBox(vX, vY); |
1157 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 1158 | } // end of wxDC::DoDrawRoundedRectangle |
1408104d | 1159 | |
51c1d535 DW |
1160 | // Draw Ellipse within box (x,y) - (x+width, y+height) |
1161 | void wxDC::DoDrawEllipse( | |
1162 | wxCoord vX | |
1163 | , wxCoord vY | |
1164 | , wxCoord vWidth | |
1165 | , wxCoord vHeight | |
1166 | ) | |
1408104d | 1167 | { |
51c1d535 DW |
1168 | POINTL vPtlPos; // Structure for current position |
1169 | FIXED vFxMult; // Multiplier for ellipse | |
1170 | ARCPARAMS vArcp; // Structure for arc parameters | |
1171 | ||
5fd2b2c6 DW |
1172 | vY = OS2Y(vY,vHeight); |
1173 | ||
51c1d535 DW |
1174 | vArcp.lR = 0; |
1175 | vArcp.lQ = vHeight/2; | |
1176 | vArcp.lP = vWidth/2; | |
1177 | vArcp.lS = 0; | |
1178 | ::GpiSetArcParams( m_hPS | |
1179 | ,&vArcp | |
1180 | ); // Sets parameters to default | |
1181 | vPtlPos.x = vX + vWidth/2; // Loads x-coordinate | |
1182 | vPtlPos.y = vY + vHeight/2; // Loads y-coordinate | |
1183 | ::GpiMove( m_hPS | |
1184 | ,&vPtlPos | |
1185 | ); // Sets current position | |
1186 | vFxMult = MAKEFIXED(1, 0); /* Sets multiplier */ | |
1187 | ||
1188 | // | |
1189 | // DRO_FILL, DRO_OTLINEFILL - where to get | |
1190 | // | |
1191 | ::GpiFullArc( m_hPS | |
1192 | ,DRO_OUTLINE | |
1193 | ,vFxMult | |
1194 | ); // Draws full arc with center at current position | |
5fd2b2c6 DW |
1195 | |
1196 | wxCoord vX2 = (vX + vWidth); | |
1197 | wxCoord vY2 = (vY + vHeight); | |
1198 | ||
1199 | CalcBoundingBox(vX, vY); | |
1200 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 1201 | } // end of wxDC::DoDrawEllipse |
1408104d | 1202 | |
51c1d535 DW |
1203 | void wxDC::DoDrawEllipticArc( |
1204 | wxCoord vX | |
1205 | , wxCoord vY | |
1206 | , wxCoord vWidth | |
1207 | , wxCoord vHeight | |
1208 | , double dSa | |
1209 | , double dEa | |
1210 | ) | |
1408104d | 1211 | { |
51c1d535 DW |
1212 | POINTL vPtlPos; // Structure for current position |
1213 | FIXED vFxMult; // Multiplier for ellipse | |
1214 | ARCPARAMS vArcp; // Structure for arc parameters | |
1215 | FIXED vFSa; | |
1216 | FIXED vFSweepa; // Start angle, sweep angle | |
1217 | double dIntPart; | |
1218 | double dFractPart; | |
51c1d535 | 1219 | |
5fd2b2c6 DW |
1220 | vY = OS2Y(vY,vHeight); |
1221 | ||
51c1d535 DW |
1222 | dFractPart = modf(dSa,&dIntPart); |
1223 | vFSa = MAKEFIXED((int)dIntPart, (int)(dFractPart * 0xffff) ); | |
1224 | dFractPart = modf(dEa - dSa, &dIntPart); | |
1225 | vFSweepa = MAKEFIXED((int)dIntPart, (int)(dFractPart * 0xffff) ); | |
1226 | ||
1227 | // | |
1228 | // Ellipse main axis (r,q), (p,s) with center at (0,0) | |
1229 | // | |
1230 | vArcp.lR = 0; | |
1231 | vArcp.lQ = vHeight/2; | |
1232 | vArcp.lP = vWidth/2; | |
1233 | vArcp.lS = 0; | |
1234 | ::GpiSetArcParams(m_hPS, &vArcp); // Sets parameters to default | |
9923c37d DW |
1235 | vPtlPos.x = (wxCoord)(vX + vWidth/2 * (1. + cos(DegToRad(dSa)))); // Loads x-coordinate |
1236 | vPtlPos.y = (wxCoord)(vY + vHeight/2 * (1. + sin(DegToRad(dSa)))); // Loads y-coordinate | |
51c1d535 DW |
1237 | ::GpiMove(m_hPS, &vPtlPos); // Sets current position |
1238 | ||
1239 | // | |
1240 | // May be not to the center ? | |
1241 | // | |
1242 | vPtlPos.x = vX + vWidth/2 ; // Loads x-coordinate | |
1243 | vPtlPos.y = vY + vHeight/2; // Loads y-coordinate | |
1244 | vFxMult = MAKEFIXED(1, 0); // Sets multiplier | |
1245 | ||
1246 | // | |
1247 | // DRO_FILL, DRO_OTLINEFILL - where to get | |
1248 | // | |
1249 | ::GpiPartialArc( m_hPS | |
1250 | ,&vPtlPos | |
1251 | ,vFxMult | |
1252 | ,vFSa | |
1253 | ,vFSweepa | |
1254 | ); | |
5fd2b2c6 DW |
1255 | wxCoord vX2 = (vX + vWidth); |
1256 | wxCoord vY2 = (vY + vHeight); | |
1257 | ||
1258 | CalcBoundingBox(vX, vY); | |
1259 | CalcBoundingBox(vX2, vY2); | |
f07bb01b | 1260 | } // end of wxDC::DoDrawEllipticArc |
1408104d | 1261 | |
f07bb01b DW |
1262 | void wxDC::DoDrawIcon( |
1263 | const wxIcon& rIcon | |
1264 | , wxCoord vX | |
1265 | , wxCoord vY | |
1266 | ) | |
1408104d | 1267 | { |
16ff355b DW |
1268 | // |
1269 | // Need to copy back into a bitmap. ::WinDrawPointer uses device coords | |
1270 | // and I don't feel like figuring those out for scrollable windows so | |
154daa94 | 1271 | // just convert to a bitmap then let the DoDrawBitmap routine display it |
16ff355b DW |
1272 | // |
1273 | if (rIcon.IsXpm()) | |
1274 | { | |
aad6765c | 1275 | DoDrawBitmap(rIcon.GetXpmSrc(), vX, vY, true); |
16ff355b DW |
1276 | } |
1277 | else | |
1278 | { | |
1279 | wxBitmap vBitmap(rIcon); | |
1280 | ||
aad6765c | 1281 | DoDrawBitmap(vBitmap, vX, vY, false); |
16ff355b | 1282 | } |
5fd2b2c6 DW |
1283 | CalcBoundingBox(vX, vY); |
1284 | CalcBoundingBox(vX + rIcon.GetWidth(), vY + rIcon.GetHeight()); | |
f07bb01b DW |
1285 | } // end of wxDC::DoDrawIcon |
1286 | ||
1287 | void wxDC::DoDrawBitmap( | |
1288 | const wxBitmap& rBmp | |
1289 | , wxCoord vX | |
1290 | , wxCoord vY | |
1291 | , bool bUseMask | |
1292 | ) | |
1408104d | 1293 | { |
6670f564 | 1294 | #if wxUSE_PRINTING_ARCHITECTURE |
ba3e10c9 | 1295 | if (!IsKindOf(CLASSINFO(wxPrinterDC))) |
6670f564 | 1296 | #endif |
c354beea DW |
1297 | { |
1298 | HBITMAP hBitmap = (HBITMAP)rBmp.GetHBITMAP(); | |
d0ee33f5 | 1299 | HBITMAP hBitmapOld = NULLHANDLE; |
1c9a789e | 1300 | POINTL vPoint[4]; |
c354beea | 1301 | |
ba3e10c9 DW |
1302 | vY = OS2Y(vY,rBmp.GetHeight()); |
1303 | ||
ad6bd870 DW |
1304 | vPoint[0].x = vX; |
1305 | vPoint[0].y = vY + rBmp.GetHeight(); | |
1306 | vPoint[1].x = vX + rBmp.GetWidth(); | |
1307 | vPoint[1].y = vY; | |
1308 | vPoint[2].x = 0; | |
1309 | vPoint[2].y = 0; | |
1310 | vPoint[3].x = rBmp.GetWidth(); | |
1311 | vPoint[3].y = rBmp.GetHeight(); | |
ba3e10c9 DW |
1312 | if (bUseMask) |
1313 | { | |
1314 | wxMask* pMask = rBmp.GetMask(); | |
c354beea | 1315 | |
52315bc3 | 1316 | if (pMask) |
ba3e10c9 | 1317 | { |
52315bc3 DW |
1318 | // |
1319 | // Need to imitate ::MaskBlt in windows. | |
1320 | // 1) Extract the bits from from the bitmap. | |
1321 | // 2) Extract the bits from the mask | |
1322 | // 3) Using the mask bits do the following: | |
1323 | // A) If the mask byte is 00 leave the bitmap byte alone | |
1324 | // B) If the mask byte is FF copy the screen color into | |
1325 | // bitmap byte | |
1326 | // 4) Create a new bitmap and set its bits to the above result | |
1327 | // 5) Blit this to the screen PS | |
1328 | // | |
1329 | HBITMAP hMask = (HBITMAP)pMask->GetMaskBitmap(); | |
d6d749aa | 1330 | HBITMAP hOldMask = NULLHANDLE; |
52315bc3 DW |
1331 | HBITMAP hOldBitmap = NULLHANDLE; |
1332 | HBITMAP hNewBitmap = NULLHANDLE; | |
1333 | unsigned char* pucBits; // buffer that will contain the bitmap data | |
1334 | unsigned char* pucBitsMask; // buffer that will contain the mask data | |
1335 | unsigned char* pucData; // pointer to use to traverse bitmap data | |
1336 | unsigned char* pucDataMask; // pointer to use to traverse mask data | |
1337 | LONG lHits; | |
1338 | ERRORID vError; | |
1339 | wxString sError; | |
1340 | ||
1341 | // | |
1342 | // The usual Memory context creation stuff | |
1343 | // | |
ba3e10c9 DW |
1344 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; |
1345 | SIZEL vSize = {0, 0}; | |
52315bc3 DW |
1346 | HDC hDC = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); |
1347 | HPS hPS = ::GpiCreatePS(vHabmain, hDC, &vSize, PU_PELS | GPIA_ASSOC); | |
1348 | ||
1349 | // | |
1350 | // The usual bitmap header stuff | |
1351 | // | |
1352 | BITMAPINFOHEADER2 vHeader; | |
1353 | BITMAPINFO2 vInfo; | |
1354 | ||
1355 | memset(&vHeader, '\0', 16); | |
1356 | vHeader.cbFix = 16; | |
52315bc3 DW |
1357 | |
1358 | memset(&vInfo, '\0', 16); | |
1359 | vInfo.cbFix = 16; | |
1360 | vInfo.cx = (ULONG)rBmp.GetWidth(); | |
1361 | vInfo.cy = (ULONG)rBmp.GetHeight(); | |
1362 | vInfo.cPlanes = 1; | |
1363 | vInfo.cBitCount = 24; // Set to desired count going in | |
1364 | ||
1365 | // | |
1366 | // Create the buffers for data....all wxBitmaps are 24 bit internally | |
1367 | // | |
1368 | int nBytesPerLine = rBmp.GetWidth() * 3; | |
1369 | int nSizeDWORD = sizeof(DWORD); | |
1370 | int nLineBoundary = nBytesPerLine % nSizeDWORD; | |
1371 | int nPadding = 0; | |
1372 | int i; | |
1373 | int j; | |
1374 | LONG lScans = 0L; | |
1375 | LONG lColor = 0L; | |
1376 | ||
1377 | // | |
1378 | // Need to get a background color for mask blitting | |
1379 | // | |
2590f154 | 1380 | if (IsKindOf(CLASSINFO(wxWindowDC))) |
52315bc3 | 1381 | { |
d697657f | 1382 | wxWindowDC* pWindowDC = wxDynamicCast(this, wxWindowDC); |
c354beea | 1383 | |
d697657f | 1384 | lColor = pWindowDC->m_pCanvas->GetBackgroundColour().GetPixel(); |
52315bc3 | 1385 | } |
9da48399 | 1386 | else if (GetBrush().Ok()) |
52315bc3 DW |
1387 | lColor = GetBrush().GetColour().GetPixel(); |
1388 | else | |
1389 | lColor = m_textBackgroundColour.GetPixel(); | |
1390 | ||
1391 | // | |
d6922577 | 1392 | // Bitmap must be in a double-word aligned address so we may |
52315bc3 DW |
1393 | // have some padding to worry about |
1394 | // | |
1395 | if (nLineBoundary > 0) | |
1396 | { | |
1397 | nPadding = nSizeDWORD - nLineBoundary; | |
1398 | nBytesPerLine += nPadding; | |
1399 | } | |
1400 | pucBits = (unsigned char *)malloc(nBytesPerLine * rBmp.GetHeight()); | |
1401 | pucBitsMask = (unsigned char *)malloc(nBytesPerLine * rBmp.GetHeight()); | |
1402 | memset(pucBits, '\0', (nBytesPerLine * rBmp.GetHeight())); | |
1403 | memset(pucBitsMask, '\0', (nBytesPerLine * rBmp.GetHeight())); | |
1404 | ||
1405 | // | |
1406 | // Extract the bitmap and mask data | |
1407 | // | |
1408 | if ((hOldBitmap = ::GpiSetBitmap(hPS, hBitmap)) == HBM_ERROR) | |
1409 | { | |
1410 | vError = ::WinGetLastError(vHabmain); | |
1411 | sError = wxPMErrorToStr(vError); | |
1412 | } | |
d6d749aa DW |
1413 | ::GpiQueryBitmapInfoHeader(hBitmap, &vHeader); |
1414 | vInfo.cBitCount = 24; | |
ba3e10c9 DW |
1415 | if ((lScans = ::GpiQueryBitmapBits( hPS |
1416 | ,0L | |
1417 | ,(LONG)rBmp.GetHeight() | |
52315bc3 | 1418 | ,(PBYTE)pucBits |
ba3e10c9 DW |
1419 | ,&vInfo |
1420 | )) == GPI_ALTERROR) | |
1421 | { | |
ba3e10c9 DW |
1422 | vError = ::WinGetLastError(vHabmain); |
1423 | sError = wxPMErrorToStr(vError); | |
1424 | } | |
d6d749aa | 1425 | if ((hOldMask = ::GpiSetBitmap(hPS, hMask)) == HBM_ERROR) |
ba3e10c9 | 1426 | { |
ba3e10c9 DW |
1427 | vError = ::WinGetLastError(vHabmain); |
1428 | sError = wxPMErrorToStr(vError); | |
1429 | } | |
d6d749aa DW |
1430 | ::GpiQueryBitmapInfoHeader(hMask, &vHeader); |
1431 | vInfo.cBitCount = 24; | |
52315bc3 DW |
1432 | if ((lScans = ::GpiQueryBitmapBits( hPS |
1433 | ,0L | |
1434 | ,(LONG)rBmp.GetHeight() | |
1435 | ,(PBYTE)pucBitsMask | |
1436 | ,&vInfo | |
1437 | )) == GPI_ALTERROR) | |
ba3e10c9 | 1438 | { |
ba3e10c9 DW |
1439 | vError = ::WinGetLastError(vHabmain); |
1440 | sError = wxPMErrorToStr(vError); | |
1441 | } | |
d6d749aa DW |
1442 | if (( hMask = ::GpiSetBitmap(hPS, hOldMask)) == HBM_ERROR) |
1443 | { | |
1444 | vError = ::WinGetLastError(vHabmain); | |
1445 | sError = wxPMErrorToStr(vError); | |
1446 | } | |
52315bc3 DW |
1447 | |
1448 | // | |
1449 | // Now set the bytes(bits) according to the mask values | |
1450 | // 3 bytes per pel...must handle one at a time | |
1451 | // | |
1452 | pucData = pucBits; | |
1453 | pucDataMask = pucBitsMask; | |
1454 | ||
d6d749aa DW |
1455 | // |
1456 | // 16 bit kludge really only kinda works. The mask gets applied | |
1457 | // where needed but the original bitmap bits are dorked sometimes | |
1458 | // | |
1459 | bool bpp16 = (wxDisplayDepth() == 16); | |
1460 | ||
52315bc3 | 1461 | for (i = 0; i < rBmp.GetHeight(); i++) |
ba3e10c9 | 1462 | { |
52315bc3 DW |
1463 | for (j = 0; j < rBmp.GetWidth(); j++) |
1464 | { | |
1465 | // Byte 1 | |
d6d749aa DW |
1466 | if (bpp16 && *pucDataMask == 0xF8) // 16 bit display gobblygook |
1467 | pucData++; | |
1468 | else if (*pucDataMask == 0xFF) // leave bitmap byte alone | |
52315bc3 DW |
1469 | pucData++; |
1470 | else | |
1471 | { | |
16ff355b | 1472 | *pucData = ((unsigned char)(lColor >> 16)); |
52315bc3 DW |
1473 | pucData++; |
1474 | } | |
1475 | // Byte 2 | |
d6d749aa DW |
1476 | if (bpp16 && *(pucDataMask + 1) == 0xFC) // 16 bit display gobblygook |
1477 | pucData++; | |
1478 | else if (*(pucDataMask + 1) == 0xFF) // leave bitmap byte alone | |
52315bc3 DW |
1479 | pucData++; |
1480 | else | |
1481 | { | |
16ff355b | 1482 | *pucData = ((unsigned char)(lColor >> 8)); |
52315bc3 DW |
1483 | pucData++; |
1484 | } | |
1485 | ||
1486 | // Byte 3 | |
d6d749aa DW |
1487 | if (bpp16 && *(pucDataMask + 2) == 0xF8) // 16 bit display gobblygook |
1488 | pucData++; | |
1489 | else if (*(pucDataMask + 2) == 0xFF) // leave bitmap byte alone | |
52315bc3 DW |
1490 | pucData++; |
1491 | else | |
1492 | { | |
16ff355b | 1493 | *pucData = ((unsigned char)lColor); |
52315bc3 DW |
1494 | pucData++; |
1495 | } | |
1496 | pucDataMask += 3; | |
1497 | } | |
1498 | for (j = 0; j < nPadding; j++) | |
1499 | { | |
1500 | pucData++; | |
1501 | pucDataMask++; | |
1502 | } | |
1503 | } | |
52315bc3 DW |
1504 | // |
1505 | // Create a new bitmap | |
1506 | // | |
d6d749aa DW |
1507 | vHeader.cx = (ULONG)rBmp.GetWidth(); |
1508 | vHeader.cy = (ULONG)rBmp.GetHeight(); | |
1509 | vHeader.cPlanes = 1L; | |
1510 | vHeader.cBitCount = 24; | |
52315bc3 DW |
1511 | if ((hNewBitmap = ::GpiCreateBitmap( hPS |
1512 | ,&vHeader | |
1513 | ,CBM_INIT | |
1514 | ,(PBYTE)pucBits | |
1515 | ,&vInfo | |
1516 | )) == GPI_ERROR) | |
1517 | { | |
ba3e10c9 DW |
1518 | vError = ::WinGetLastError(vHabmain); |
1519 | sError = wxPMErrorToStr(vError); | |
1520 | } | |
ba3e10c9 | 1521 | |
52315bc3 DW |
1522 | // |
1523 | // Now blit it to the screen PS | |
1524 | // | |
1525 | if ((lHits = ::GpiWCBitBlt( (HPS)GetHPS() | |
1526 | ,hNewBitmap | |
1527 | ,4 | |
1528 | ,vPoint | |
1529 | ,ROP_SRCCOPY | |
1530 | ,BBO_IGNORE | |
1531 | )) == GPI_ERROR) | |
1532 | { | |
ba3e10c9 DW |
1533 | vError = ::WinGetLastError(vHabmain); |
1534 | sError = wxPMErrorToStr(vError); | |
1535 | } | |
52315bc3 DW |
1536 | |
1537 | // | |
1538 | // Clean up | |
1539 | // | |
1540 | free(pucBits); | |
1541 | free(pucBitsMask); | |
1542 | ::GpiSetBitmap(hPS, NULLHANDLE); | |
d6d749aa | 1543 | ::GpiDeleteBitmap(hNewBitmap); |
52315bc3 DW |
1544 | ::GpiDestroyPS(hPS); |
1545 | ::DevCloseDC(hDC); | |
ba3e10c9 DW |
1546 | } |
1547 | } | |
1548 | else | |
1549 | { | |
9923c37d DW |
1550 | ULONG lOldForeGround = ::GpiQueryColor((HPS)GetHPS()); |
1551 | ULONG lOldBackGround = ::GpiQueryBackColor((HPS)GetHPS()); | |
52315bc3 DW |
1552 | |
1553 | if (m_textForegroundColour.Ok()) | |
1554 | { | |
1555 | ::GpiSetColor( (HPS)GetHPS() | |
1556 | ,m_textForegroundColour.GetPixel() | |
1557 | ); | |
1558 | } | |
1559 | if (m_textBackgroundColour.Ok()) | |
1560 | { | |
1561 | ::GpiSetBackColor( (HPS)GetHPS() | |
1562 | ,m_textBackgroundColour.GetPixel() | |
1563 | ); | |
1564 | } | |
16ff355b DW |
1565 | // |
1566 | // Need to alter bits in a mono bitmap to match the new | |
1567 | // background-foreground if it is different. | |
1568 | // | |
1569 | if (rBmp.IsMono() && | |
1570 | ((m_textForegroundColour.GetPixel() != lOldForeGround) || | |
1571 | (m_textBackgroundColour.GetPixel() != lOldBackGround))) | |
1572 | { | |
1573 | DEVOPENSTRUC vDop = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
1574 | SIZEL vSize = {0, 0}; | |
1575 | HDC hDC = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDop, NULLHANDLE); | |
1576 | HPS hPS = ::GpiCreatePS(vHabmain, hDC, &vSize, PU_PELS | GPIA_ASSOC); | |
1577 | ||
1578 | int nBytesPerLine = rBmp.GetWidth() * 3; | |
1579 | int i, j; | |
1580 | LONG lForeGround = m_textForegroundColour.GetPixel(); | |
1581 | LONG lBackGround = m_textBackgroundColour.GetPixel(); | |
1582 | LONG lScans; | |
1583 | HBITMAP hOldBitmap = NULLHANDLE; | |
1584 | BITMAPINFO2 vInfo; | |
1585 | ERRORID vError; | |
1586 | wxString sError; | |
1587 | ||
1588 | ||
1589 | memset(&vInfo, '\0', 16); | |
1590 | vInfo.cbFix = 16; | |
1591 | vInfo.cx = (ULONG)rBmp.GetWidth(); | |
1592 | vInfo.cy = (ULONG)rBmp.GetHeight(); | |
1593 | vInfo.cPlanes = 1; | |
1594 | vInfo.cBitCount = 24; | |
1595 | ||
1596 | unsigned char* pucBits; // buffer that will contain the bitmap data | |
1597 | unsigned char* pucData; // pointer to use to traverse bitmap data | |
1598 | ||
1599 | pucBits = new unsigned char[nBytesPerLine * rBmp.GetHeight()]; | |
1600 | memset(pucBits, '\0', (nBytesPerLine * rBmp.GetHeight())); | |
1601 | ||
1602 | if ((hOldBitmap = ::GpiSetBitmap(hPS, hBitmap)) == HBM_ERROR) | |
1603 | { | |
1604 | vError = ::WinGetLastError(vHabmain); | |
1605 | sError = wxPMErrorToStr(vError); | |
1606 | return; | |
1607 | } | |
1608 | if ((lScans = ::GpiQueryBitmapBits( hPS | |
1609 | ,0L | |
1610 | ,(LONG)rBmp.GetHeight() | |
1611 | ,(PBYTE)pucBits | |
1612 | ,&vInfo | |
1613 | )) == GPI_ALTERROR) | |
1614 | { | |
1615 | vError = ::WinGetLastError(vHabmain); | |
1616 | sError = wxPMErrorToStr(vError); | |
1617 | return; | |
1618 | } | |
1619 | unsigned char cOldRedFore = (unsigned char)(lOldForeGround >> 16); | |
1620 | unsigned char cOldGreenFore = (unsigned char)(lOldForeGround >> 8); | |
1621 | unsigned char cOldBlueFore = (unsigned char)lOldForeGround; | |
1622 | ||
16ff355b DW |
1623 | unsigned char cRedFore = (unsigned char)(lForeGround >> 16); |
1624 | unsigned char cGreenFore = (unsigned char)(lForeGround >> 8); | |
1625 | unsigned char cBlueFore = (unsigned char)lForeGround; | |
1626 | ||
1627 | unsigned char cRedBack = (unsigned char)(lBackGround >> 16); | |
1628 | unsigned char cGreenBack = (unsigned char)(lBackGround >> 8); | |
1629 | unsigned char cBlueBack = (unsigned char)lBackGround; | |
1630 | ||
1631 | pucData = pucBits; | |
1632 | for (i = 0; i < rBmp.GetHeight(); i++) | |
1633 | { | |
1634 | for (j = 0; j < rBmp.GetWidth(); j++) | |
1635 | { | |
1636 | unsigned char cBmpRed = *pucData; | |
1637 | unsigned char cBmpGreen = *(pucData + 1); | |
1638 | unsigned char cBmpBlue = *(pucData + 2); | |
1639 | ||
1640 | if ((cBmpRed == cOldRedFore) && | |
1641 | (cBmpGreen == cOldGreenFore) && | |
1642 | (cBmpBlue == cOldBlueFore)) | |
1643 | { | |
29172908 | 1644 | *pucData = cBlueFore; |
16ff355b DW |
1645 | pucData++; |
1646 | *pucData = cGreenFore; | |
1647 | pucData++; | |
29172908 | 1648 | *pucData = cRedFore; |
16ff355b DW |
1649 | pucData++; |
1650 | } | |
1651 | else | |
1652 | { | |
29172908 | 1653 | *pucData = cBlueBack; |
16ff355b DW |
1654 | pucData++; |
1655 | *pucData = cGreenBack; | |
1656 | pucData++; | |
29172908 | 1657 | *pucData = cRedBack; |
16ff355b DW |
1658 | pucData++; |
1659 | } | |
1660 | } | |
1661 | } | |
1662 | if ((lScans = ::GpiSetBitmapBits( hPS | |
1663 | ,0L | |
1664 | ,(LONG)rBmp.GetHeight() | |
1665 | ,(PBYTE)pucBits | |
1666 | ,&vInfo | |
1667 | )) == GPI_ALTERROR) | |
1668 | { | |
1669 | vError = ::WinGetLastError(vHabmain); | |
1670 | sError = wxPMErrorToStr(vError); | |
1671 | return; | |
1672 | } | |
1673 | delete [] pucBits; | |
1674 | ::GpiSetBitmap(hPS, NULLHANDLE); | |
1675 | ::GpiDestroyPS(hPS); | |
1676 | ::DevCloseDC(hDC); | |
1677 | } | |
ba3e10c9 DW |
1678 | ::GpiWCBitBlt( (HPS)GetHPS() |
1679 | ,hBitmap | |
1680 | ,4 | |
1681 | ,vPoint | |
1682 | ,ROP_SRCCOPY | |
1683 | ,BBO_IGNORE | |
1684 | ); | |
52315bc3 | 1685 | ::GpiSetBitmap((HPS)GetHPS(), hBitmapOld); |
16ff355b DW |
1686 | ::GpiSetColor((HPS)GetHPS(), lOldForeGround); |
1687 | ::GpiSetBackColor((HPS)GetHPS(), lOldBackGround); | |
ba3e10c9 | 1688 | } |
c354beea | 1689 | } |
f07bb01b | 1690 | } // end of wxDC::DoDrawBitmap |
1408104d | 1691 | |
7e99520b DW |
1692 | void wxDC::DoDrawText( |
1693 | const wxString& rsText | |
1694 | , wxCoord vX | |
1695 | , wxCoord vY | |
1696 | ) | |
1408104d | 1697 | { |
5fd2b2c6 DW |
1698 | wxCoord vWidth; |
1699 | wxCoord vHeight; | |
1700 | ||
7e99520b DW |
1701 | DrawAnyText( rsText |
1702 | ,vX | |
1703 | ,vY | |
1704 | ); | |
5fd2b2c6 DW |
1705 | |
1706 | CalcBoundingBox(vX, vY); | |
1707 | GetTextExtent(rsText, &vWidth, &vHeight); | |
1708 | CalcBoundingBox((vX + vWidth), (vY + vHeight)); | |
1709 | } // end of wxDC::DoDrawText | |
1408104d | 1710 | |
7e99520b DW |
1711 | void wxDC::DrawAnyText( |
1712 | const wxString& rsText | |
1713 | , wxCoord vX | |
1714 | , wxCoord vY | |
1715 | ) | |
f6bcfd97 | 1716 | { |
7e99520b DW |
1717 | int nOldBackground = 0; |
1718 | POINTL vPtlStart; | |
1719 | LONG lHits; | |
5fd2b2c6 DW |
1720 | wxCoord vTextX = 0; |
1721 | wxCoord vTextY = 0; | |
f6bcfd97 | 1722 | |
7e99520b DW |
1723 | // |
1724 | // prepare for drawing the text | |
1725 | // | |
1726 | ||
1727 | // | |
1728 | // Set text color attributes | |
1729 | // | |
1730 | if (m_textForegroundColour.Ok()) | |
1731 | { | |
1732 | SetTextColor( m_hPS | |
1733 | ,(int)m_textForegroundColour.GetPixel() | |
1734 | ); | |
1735 | } | |
1736 | ||
1737 | if (m_textBackgroundColour.Ok()) | |
1738 | { | |
1739 | nOldBackground = SetTextBkColor( m_hPS | |
1740 | ,(int)m_textBackgroundColour.GetPixel() | |
1741 | ); | |
1742 | } | |
1743 | SetBkMode( m_hPS | |
1744 | ,m_backgroundMode | |
1745 | ); | |
5fd2b2c6 DW |
1746 | GetTextExtent( rsText |
1747 | ,&vTextX | |
1748 | ,&vTextY | |
1749 | ); | |
7e99520b | 1750 | vPtlStart.x = vX; |
d6d749aa DW |
1751 | if (!(m_vRclPaint.yTop == 0 && |
1752 | m_vRclPaint.yBottom == 0 && | |
1753 | m_vRclPaint.xRight == 0 && | |
1754 | m_vRclPaint.xLeft == 0)) | |
650ff63d DW |
1755 | { |
1756 | // | |
1757 | // Position Text a little differently in the Statusbar from other panels | |
1758 | // | |
1759 | if (m_pCanvas && m_pCanvas->IsKindOf(CLASSINFO(wxStatusBar))) | |
1760 | vPtlStart.y = OS2Y(vY,vTextY); | |
1761 | else | |
9923c37d | 1762 | vPtlStart.y = (wxCoord)(OS2Y(vY,vTextY/1.5)); // Full extent is a bit much |
650ff63d | 1763 | } |
d6d749aa | 1764 | else |
1c9a789e DW |
1765 | { |
1766 | if (m_vSelectedBitmap != wxNullBitmap) | |
1767 | { | |
1768 | m_vRclPaint.yTop = m_vSelectedBitmap.GetHeight(); | |
1769 | m_vRclPaint.xRight = m_vSelectedBitmap.GetWidth(); | |
650ff63d DW |
1770 | if (m_pCanvas && m_pCanvas->IsKindOf(CLASSINFO(wxStatusBar))) |
1771 | vPtlStart.y = OS2Y(vY,vTextY); | |
1772 | else | |
9923c37d | 1773 | vPtlStart.y = (LONG)(OS2Y(vY,vTextY/1.5)); |
1c9a789e DW |
1774 | } |
1775 | else | |
1776 | vPtlStart.y = vY; | |
1777 | } | |
d6d749aa DW |
1778 | |
1779 | PCH pzStr = (PCH)rsText.c_str(); | |
7e99520b | 1780 | |
d6d749aa DW |
1781 | ::GpiMove(m_hPS, &vPtlStart); |
1782 | lHits = ::GpiCharString( m_hPS | |
1783 | ,rsText.length() | |
1784 | ,pzStr | |
1785 | ); | |
7e99520b DW |
1786 | if (lHits != GPI_OK) |
1787 | { | |
1788 | wxLogLastError(wxT("TextOut")); | |
1789 | } | |
1790 | ||
1791 | // | |
1792 | // Restore the old parameters (text foreground colour may be left because | |
1793 | // it never is set to anything else, but background should remain | |
1794 | // transparent even if we just drew an opaque string) | |
1795 | // | |
1796 | if (m_textBackgroundColour.Ok()) | |
1797 | SetTextBkColor( m_hPS | |
1798 | ,nOldBackground | |
1799 | ); | |
1800 | SetBkMode( m_hPS | |
1801 | ,wxTRANSPARENT | |
1802 | ); | |
1803 | } | |
1804 | ||
1805 | void wxDC::DoDrawRotatedText( | |
1806 | const wxString& rsText | |
1807 | , wxCoord vX | |
1808 | , wxCoord vY | |
1809 | , double dAngle | |
1810 | ) | |
c8ce6bcc | 1811 | { |
7e99520b DW |
1812 | if (dAngle == 0.0) |
1813 | { | |
1814 | DoDrawText( rsText | |
1815 | ,vX | |
1816 | ,vY | |
1817 | ); | |
1818 | } | |
1819 | ||
c8ce6bcc DW |
1820 | // TODO: |
1821 | /* | |
1822 | if ( angle == 0.0 ) | |
1823 | { | |
1824 | DoDrawText(text, x, y); | |
1825 | } | |
1826 | else | |
1827 | { | |
1828 | LOGFONT lf; | |
1829 | wxFillLogFont(&lf, &m_font); | |
1830 | ||
1831 | // GDI wants the angle in tenth of degree | |
1832 | long angle10 = (long)(angle * 10); | |
1833 | lf.lfEscapement = angle10; | |
1834 | lf. lfOrientation = angle10; | |
1835 | ||
1836 | HFONT hfont = ::CreateFontIndirect(&lf); | |
1837 | if ( !hfont ) | |
1838 | { | |
1839 | wxLogLastError("CreateFont"); | |
1840 | } | |
1841 | else | |
1842 | { | |
1843 | HFONT hfontOld = ::SelectObject(GetHdc(), hfont); | |
1844 | ||
1845 | DrawAnyText(text, x, y); | |
1846 | ||
1847 | (void)::SelectObject(GetHdc(), hfontOld); | |
1848 | } | |
1849 | ||
1850 | // call the bounding box by adding all four vertices of the rectangle | |
1851 | // containing the text to it (simpler and probably not slower than | |
1852 | // determining which of them is really topmost/leftmost/...) | |
1853 | wxCoord w, h; | |
1854 | GetTextExtent(text, &w, &h); | |
1855 | ||
1856 | double rad = DegToRad(angle); | |
1857 | ||
1858 | // "upper left" and "upper right" | |
1859 | CalcBoundingBox(x, y); | |
1860 | CalcBoundingBox(x + w*cos(rad), y - h*sin(rad)); | |
1861 | CalcBoundingBox(x + h*sin(rad), y + h*cos(rad)); | |
1862 | ||
1863 | // "bottom left" and "bottom right" | |
1864 | x += (wxCoord)(h*sin(rad)); | |
1865 | y += (wxCoord)(h*cos(rad)); | |
1866 | CalcBoundingBox(x, y); | |
1867 | CalcBoundingBox(x + h*sin(rad), y + h*cos(rad)); | |
1868 | } | |
1869 | */ | |
1870 | } | |
1871 | ||
fb46a9a6 DW |
1872 | // --------------------------------------------------------------------------- |
1873 | // set GDI objects | |
1874 | // --------------------------------------------------------------------------- | |
1408104d | 1875 | |
6670f564 | 1876 | void wxDC::DoSelectPalette( bool WXUNUSED(bRealize) ) |
938aa9c4 DW |
1877 | { |
1878 | // | |
1879 | // Set the old object temporarily, in case the assignment deletes an object | |
1880 | // that's not yet selected out. | |
1881 | // | |
1882 | if (m_hOldPalette) | |
1883 | { | |
1884 | m_hOldPalette = 0; | |
1885 | } | |
1886 | ||
1887 | if (m_palette.Ok()) | |
1888 | { | |
1889 | HPALETTE hOldPal; | |
1890 | ||
1891 | hOldPal = ::GpiSelectPalette((HDC) m_hPS, (HPALETTE) m_palette.GetHPALETTE()); | |
1892 | if (!m_hOldPalette) | |
1893 | m_hOldPalette = (WXHPALETTE)hOldPal; | |
1894 | } | |
1895 | } // end of wxDC::DoSelectPalette | |
1896 | ||
1897 | void wxDC::InitializePalette() | |
1898 | { | |
1899 | if (wxDisplayDepth() <= 8 ) | |
1900 | { | |
1901 | // | |
1902 | // Look for any window or parent that has a custom palette. If any has | |
1903 | // one then we need to use it in drawing operations | |
1904 | // | |
1905 | wxWindow* pWin = m_pCanvas->GetAncestorWithCustomPalette(); | |
1906 | ||
1907 | m_hasCustomPalette = pWin && pWin->HasCustomPalette(); | |
1908 | if (m_hasCustomPalette) | |
1909 | { | |
1910 | m_palette = pWin->GetPalette(); | |
1911 | ||
1912 | // | |
1913 | // turn on PM translation for this palette | |
1914 | // | |
1915 | DoSelectPalette(); | |
1916 | } | |
1917 | } | |
1918 | } // end of wxDC::InitializePalette | |
1919 | ||
5fd2b2c6 DW |
1920 | void wxDC::SetPalette( |
1921 | const wxPalette& rPalette | |
1922 | ) | |
1408104d | 1923 | { |
5fd2b2c6 DW |
1924 | if (m_hOldFont) |
1925 | { | |
1926 | m_hOldFont = 0; | |
1927 | } | |
1928 | m_palette = rPalette; | |
1929 | if (!rPalette.Ok()) | |
1930 | { | |
1931 | if (m_hOldFont) | |
1932 | { | |
1933 | m_hOldFont = 0; | |
1934 | } | |
1935 | } | |
1936 | HPALETTE hOldPal = ::GpiSelectPalette((HDC) m_hPS, (HPALETTE) m_palette.GetHPALETTE()); | |
1937 | if (!m_hOldPalette) | |
1938 | m_hOldPalette = (WXHPALETTE)hOldPal; | |
1939 | } // end of wxDC::SetPalette | |
1408104d | 1940 | |
f6bcfd97 BP |
1941 | void wxDC::SetFont( |
1942 | const wxFont& rFont | |
1943 | ) | |
1408104d | 1944 | { |
f6bcfd97 BP |
1945 | // |
1946 | // Set the old object temporarily, in case the assignment deletes an object | |
1947 | // that's not yet selected out. | |
1948 | // | |
1949 | if (m_hOldFont) | |
1950 | { | |
f6bcfd97 BP |
1951 | m_hOldFont = 0; |
1952 | } | |
f6bcfd97 | 1953 | m_font = rFont; |
f6bcfd97 BP |
1954 | if (!rFont.Ok()) |
1955 | { | |
f6bcfd97 BP |
1956 | m_hOldFont = 0; |
1957 | } | |
1958 | ||
e99762c0 DW |
1959 | m_font.SetPS(m_hPS); // this will realize the font |
1960 | ||
1961 | if (m_font.Ok()) | |
f6bcfd97 | 1962 | { |
e99762c0 | 1963 | HFONT hFont = m_font.GetResourceHandle(); |
f6bcfd97 BP |
1964 | if (hFont == (HFONT) NULL) |
1965 | { | |
1966 | wxLogDebug(wxT("::SelectObject failed in wxDC::SetFont.")); | |
1967 | } | |
1968 | if (!m_hOldFont) | |
1969 | m_hOldFont = (WXHFONT) hFont; | |
1970 | } | |
e99762c0 | 1971 | } // end of wxDC::SetFont |
1408104d | 1972 | |
7e99520b DW |
1973 | void wxDC::SetPen( |
1974 | const wxPen& rPen | |
1975 | ) | |
1408104d | 1976 | { |
7e99520b DW |
1977 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
1978 | ||
1979 | if (m_pen == rPen) | |
1980 | return; | |
1981 | m_pen = rPen; | |
1982 | if (!m_pen.Ok()) | |
1983 | return; | |
1984 | ||
26ac77db DW |
1985 | if (m_hOldPen) |
1986 | m_hOldPen = 0L; | |
1987 | m_pen = rPen; | |
7e99520b | 1988 | |
26ac77db | 1989 | if (!m_pen.Ok()) |
7e99520b | 1990 | { |
26ac77db DW |
1991 | if (m_hOldPen) |
1992 | { | |
1993 | m_pen.SetPS((HPS)m_hOldPen); | |
1994 | } | |
1995 | m_hOldPen = 0L; | |
7e99520b | 1996 | } |
51c1d535 | 1997 | |
26ac77db | 1998 | if (m_pen.Ok()) |
51c1d535 | 1999 | { |
26ac77db DW |
2000 | if (m_pen.GetResourceHandle()) |
2001 | { | |
2002 | m_pen.SetPS(m_hPS); | |
2003 | if (!m_hOldPen) | |
2004 | m_hOldPen = m_pen.GetPS(); | |
2005 | } | |
29172908 | 2006 | ::GpiSetColor(m_hPS, m_pen.GetColour().GetPixel()); |
51c1d535 | 2007 | } |
1408104d | 2008 | } |
7e99520b | 2009 | |
51c1d535 DW |
2010 | void wxDC::SetBrush( |
2011 | const wxBrush& rBrush | |
2012 | ) | |
1408104d | 2013 | { |
15f03b25 DW |
2014 | wxCHECK_RET( Ok(), wxT("invalid window dc") ); |
2015 | ||
15f03b25 DW |
2016 | if (m_hOldBrush) |
2017 | m_hOldBrush = 0L; | |
2018 | m_brush = rBrush; | |
5fd2b2c6 DW |
2019 | if (!m_brush.Ok()) |
2020 | if (m_brush == rBrush) | |
2021 | return; | |
2022 | if (!m_brush.Ok()) | |
2023 | if (m_hOldBrush) | |
2024 | m_hOldBrush = 0L; | |
15f03b25 DW |
2025 | |
2026 | if (!m_brush.Ok()) | |
2027 | { | |
2028 | if (m_hOldBrush) | |
2029 | { | |
2030 | m_brush.SetPS((HPS)m_hOldBrush); | |
2031 | } | |
2032 | m_hOldBrush = 0L; | |
2033 | } | |
2034 | ||
2035 | if (m_brush.Ok()) | |
2036 | { | |
2037 | if (m_brush.GetResourceHandle()) | |
2038 | { | |
2039 | m_brush.SetPS(m_hPS); | |
2040 | if (!m_hOldBrush) | |
5fd2b2c6 | 2041 | m_hOldBrush = (WXHWND)m_brush.GetPS(); |
15f03b25 DW |
2042 | } |
2043 | } | |
2044 | } // end of wxDC::SetBrush | |
1408104d | 2045 | |
1c067fe3 | 2046 | void wxDC::SetBackground(const wxBrush& rBrush) |
1408104d | 2047 | { |
5fd2b2c6 | 2048 | m_backgroundBrush = rBrush; |
5fd2b2c6 | 2049 | |
1c067fe3 WS |
2050 | if (m_backgroundBrush.Ok()) |
2051 | { | |
2052 | (void)::GpiSetBackColor((HPS)m_hPS, m_backgroundBrush.GetColour().GetPixel()); | |
5fd2b2c6 | 2053 | } |
5fd2b2c6 | 2054 | } // end of wxDC::SetBackground |
1408104d | 2055 | |
1c067fe3 | 2056 | void wxDC::SetBackgroundMode(int nMode) |
1408104d | 2057 | { |
7e99520b | 2058 | m_backgroundMode = nMode; |
5fd2b2c6 | 2059 | } // end of wxDC::SetBackgroundMode |
1408104d | 2060 | |
1c067fe3 | 2061 | void wxDC::SetLogicalFunction(int nFunction) |
1408104d | 2062 | { |
5fd2b2c6 DW |
2063 | m_logicalFunction = nFunction; |
2064 | SetRop((WXHDC)m_hDC); | |
2065 | } // wxDC::SetLogicalFunction | |
1408104d | 2066 | |
1c067fe3 | 2067 | void wxDC::SetRop(WXHDC hDC) |
ce44c50e | 2068 | { |
5fd2b2c6 | 2069 | if (!hDC || m_logicalFunction < 0) |
ce44c50e DW |
2070 | return; |
2071 | ||
1c067fe3 | 2072 | LONG lCRop; |
ce44c50e DW |
2073 | switch (m_logicalFunction) |
2074 | { | |
5fd2b2c6 DW |
2075 | case wxXOR: |
2076 | lCRop = FM_XOR; | |
2077 | break; | |
2078 | ||
2079 | case wxINVERT: | |
2080 | lCRop = FM_INVERT; | |
2081 | break; | |
2082 | ||
2083 | case wxOR_REVERSE: | |
2084 | lCRop = FM_MERGESRCNOT; | |
2085 | break; | |
2086 | ||
2087 | case wxAND_REVERSE: | |
2088 | lCRop = FM_NOTMASKSRC; | |
2089 | break; | |
2090 | ||
2091 | case wxCLEAR: | |
2092 | lCRop = FM_ONE; | |
2093 | break; | |
2094 | ||
2095 | case wxSET: | |
2096 | lCRop = FM_ZERO; | |
2097 | break; | |
2098 | ||
2099 | case wxSRC_INVERT: | |
2100 | lCRop = FM_MERGENOTSRC; | |
2101 | break; | |
2102 | ||
2103 | case wxOR_INVERT: | |
2104 | lCRop = FM_MERGESRCNOT; | |
2105 | break; | |
2106 | ||
2107 | case wxAND: | |
2108 | lCRop = FM_AND; | |
2109 | break; | |
2110 | ||
2111 | case wxOR: | |
2112 | lCRop = FM_OR; | |
2113 | break; | |
2114 | ||
2115 | case wxAND_INVERT: | |
2116 | lCRop = FM_SUBTRACT; | |
2117 | break; | |
2118 | ||
2119 | case wxEQUIV: | |
2120 | case wxNAND: | |
2121 | case wxCOPY: | |
2122 | default: | |
2123 | lCRop = FM_OVERPAINT; | |
2124 | break; | |
ce44c50e | 2125 | } |
5fd2b2c6 DW |
2126 | ::GpiSetMix((HPS)hDC, lCRop); |
2127 | } // end of wxDC::SetRop | |
ce44c50e | 2128 | |
6670f564 | 2129 | bool wxDC::StartDoc( const wxString& WXUNUSED(rsMessage) ) |
ce44c50e | 2130 | { |
aad6765c JS |
2131 | // We might be previewing, so return true to let it continue. |
2132 | return true; | |
5fd2b2c6 | 2133 | } // end of wxDC::StartDoc |
fb46a9a6 DW |
2134 | |
2135 | void wxDC::EndDoc() | |
2136 | { | |
5fd2b2c6 | 2137 | } // end of wxDC::EndDoc |
fb46a9a6 DW |
2138 | |
2139 | void wxDC::StartPage() | |
2140 | { | |
5fd2b2c6 | 2141 | } // end of wxDC::StartPage |
fb46a9a6 DW |
2142 | |
2143 | void wxDC::EndPage() | |
2144 | { | |
5fd2b2c6 | 2145 | } // end of wxDC::EndPage |
fb46a9a6 DW |
2146 | |
2147 | // --------------------------------------------------------------------------- | |
2148 | // text metrics | |
2149 | // --------------------------------------------------------------------------- | |
2150 | ||
7cdc2f1e | 2151 | wxCoord wxDC::GetCharHeight() const |
fb46a9a6 | 2152 | { |
05a8bfed DW |
2153 | FONTMETRICS vFM; // metrics structure |
2154 | ||
2155 | ::GpiQueryFontMetrics( m_hPS | |
2156 | ,sizeof(FONTMETRICS) | |
2157 | ,&vFM | |
2158 | ); | |
2159 | return YDEV2LOGREL(vFM.lXHeight); | |
fb46a9a6 DW |
2160 | } |
2161 | ||
7cdc2f1e | 2162 | wxCoord wxDC::GetCharWidth() const |
fb46a9a6 | 2163 | { |
05a8bfed DW |
2164 | FONTMETRICS vFM; // metrics structure |
2165 | ||
2166 | ::GpiQueryFontMetrics( m_hPS | |
2167 | ,sizeof(FONTMETRICS) | |
2168 | ,&vFM | |
2169 | ); | |
2170 | return XDEV2LOGREL(vFM.lAveCharWidth); | |
7e99520b DW |
2171 | } |
2172 | ||
2173 | void wxDC::DoGetTextExtent( | |
2174 | const wxString& rsString | |
2175 | , wxCoord* pvX | |
2176 | , wxCoord* pvY | |
f44fdfb0 | 2177 | , wxCoord* pvDescent |
7e99520b DW |
2178 | , wxCoord* pvExternalLeading |
2179 | , wxFont* pTheFont | |
2180 | ) const | |
2181 | { | |
2182 | POINTL avPoint[TXTBOX_COUNT]; | |
2183 | POINTL vPtMin; | |
2184 | POINTL vPtMax; | |
2185 | int i; | |
2186 | int l; | |
2187 | FONTMETRICS vFM; // metrics structure | |
2188 | BOOL bRc; | |
7e99520b DW |
2189 | ERRORID vErrorCode; // last error id code |
2190 | wxFont* pFontToUse = (wxFont*)pTheFont; | |
2191 | ||
0fba44b4 | 2192 | wxChar zMsg[128]; // DEBUG |
2c4a8d17 DW |
2193 | wxString sError; |
2194 | ||
7e99520b DW |
2195 | if (!pFontToUse) |
2196 | pFontToUse = (wxFont*)&m_font; | |
2197 | l = rsString.length(); | |
fb46a9a6 | 2198 | |
7e99520b DW |
2199 | // |
2200 | // In world coordinates. | |
2201 | // | |
2202 | bRc = ::GpiQueryTextBox( m_hPS | |
2203 | ,l | |
0fba44b4 | 2204 | ,(PCH)rsString.c_str() |
7e99520b DW |
2205 | ,TXTBOX_COUNT // return maximum information |
2206 | ,avPoint // array of coordinates points | |
f44fdfb0 | 2207 | ); |
7e99520b DW |
2208 | if(!bRc) |
2209 | { | |
2210 | vErrorCode = ::WinGetLastError(wxGetInstance()); | |
2c4a8d17 DW |
2211 | sError = wxPMErrorToStr(vErrorCode); |
2212 | // DEBUG | |
0fba44b4 DW |
2213 | wxSprintf(zMsg, _T("GpiQueryTextBox for %s: failed with Error: %lx - %s"), rsString.c_str(), vErrorCode, sError.c_str()); |
2214 | (void)wxMessageBox( _T("wxWidgets Menu sample") | |
2c4a8d17 DW |
2215 | ,zMsg |
2216 | ,wxICON_INFORMATION | |
2217 | ); | |
7e99520b DW |
2218 | } |
2219 | ||
2220 | vPtMin.x = avPoint[0].x; | |
2221 | vPtMax.x = avPoint[0].x; | |
2222 | vPtMin.y = avPoint[0].y; | |
2223 | vPtMax.y = avPoint[0].y; | |
2224 | for (i = 1; i < 4; i++) | |
2225 | { | |
2226 | if(vPtMin.x > avPoint[i].x) vPtMin.x = avPoint[i].x; | |
2227 | if(vPtMin.y > avPoint[i].y) vPtMin.y = avPoint[i].y; | |
2228 | if(vPtMax.x < avPoint[i].x) vPtMax.x = avPoint[i].x; | |
2229 | if(vPtMax.y < avPoint[i].y) vPtMax.y = avPoint[i].y; | |
2230 | } | |
2231 | ::GpiQueryFontMetrics( m_hPS | |
2232 | ,sizeof(FONTMETRICS) | |
2233 | ,&vFM | |
2234 | ); | |
2235 | ||
2236 | if (pvX) | |
2237 | *pvX = (wxCoord)(vPtMax.x - vPtMin.x + 1); | |
2238 | if (pvY) | |
2239 | *pvY = (wxCoord)(vPtMax.y - vPtMin.y + 1); | |
2240 | if (pvDescent) | |
2241 | *pvDescent = vFM.lMaxDescender; | |
f44fdfb0 | 2242 | if (pvExternalLeading) |
7e99520b | 2243 | *pvExternalLeading = vFM.lExternalLeading; |
fb46a9a6 DW |
2244 | } |
2245 | ||
5fd2b2c6 DW |
2246 | void wxDC::SetMapMode( |
2247 | int nMode | |
2248 | ) | |
fb46a9a6 | 2249 | { |
5fd2b2c6 DW |
2250 | int nPixelWidth = 0; |
2251 | int nPixelHeight = 0; | |
2252 | int nMmWidth = 1; | |
2253 | int nMmHeight = 1; | |
2254 | LONG lArray[CAPS_VERTICAL_RESOLUTION]; | |
fb46a9a6 | 2255 | |
5fd2b2c6 DW |
2256 | m_mappingMode = nMode; |
2257 | ||
2258 | if(::DevQueryCaps( m_hDC | |
2259 | ,CAPS_FAMILY | |
2260 | ,CAPS_VERTICAL_RESOLUTION | |
2261 | ,lArray | |
2262 | )) | |
2263 | { | |
2264 | LONG lHorzRes; | |
2265 | LONG lVertRes; | |
2266 | ||
2267 | nPixelWidth = lArray[CAPS_WIDTH]; | |
2268 | nPixelHeight = lArray[CAPS_HEIGHT]; | |
2269 | lHorzRes = lArray[CAPS_HORIZONTAL_RESOLUTION]; // returns pel/meter | |
2270 | lVertRes = lArray[CAPS_VERTICAL_RESOLUTION]; // returns pel/meter | |
2271 | nMmWidth = (lHorzRes/1000) * nPixelWidth; | |
2272 | nMmWidth = (lVertRes/1000) * nPixelHeight; | |
2273 | } | |
2274 | if ((nPixelWidth == 0) || (nPixelHeight == 0) || (nMmWidth == 0) || (nMmHeight == 0)) | |
2275 | { | |
2276 | return; | |
2277 | } | |
2278 | ||
2279 | double dMm2pixelsX = nPixelWidth/nMmWidth; | |
2280 | double dMm2pixelsY = nPixelHeight/nMmHeight; | |
2281 | ||
2282 | switch (nMode) | |
2283 | { | |
2284 | case wxMM_TWIPS: | |
2285 | m_logicalScaleX = (twips2mm * dMm2pixelsX); | |
2286 | m_logicalScaleY = (twips2mm * dMm2pixelsY); | |
2287 | break; | |
2288 | ||
2289 | case wxMM_POINTS: | |
2290 | m_logicalScaleX = (pt2mm * dMm2pixelsX); | |
2291 | m_logicalScaleY = (pt2mm * dMm2pixelsY); | |
2292 | break; | |
2293 | ||
2294 | case wxMM_METRIC: | |
2295 | m_logicalScaleX = dMm2pixelsX; | |
2296 | m_logicalScaleY = dMm2pixelsY; | |
2297 | break; | |
2298 | ||
2299 | case wxMM_LOMETRIC: | |
2300 | m_logicalScaleX = (dMm2pixelsX/10.0); | |
2301 | m_logicalScaleY = (dMm2pixelsY/10.0); | |
2302 | break; | |
2303 | ||
2304 | case wxMM_TEXT: | |
2305 | default: | |
2306 | m_logicalScaleX = 1.0; | |
2307 | m_logicalScaleY = 1.0; | |
2308 | break; | |
2309 | } | |
2310 | SIZEL vSize; | |
2311 | ULONG ulOptions; | |
2312 | ||
2313 | ulOptions = ::GpiQueryPS(m_hPS, &vSize); | |
2314 | if (!ulOptions & PU_ARBITRARY) | |
2315 | { | |
2316 | ulOptions = PU_ARBITRARY | GPIF_DEFAULT; | |
2317 | ::GpiSetPS(m_hPS, &vSize, ulOptions); | |
2318 | } | |
74de9ed6 GD |
2319 | m_nWindowExtX = (int)MS_XDEV2LOG(VIEWPORT_EXTENT); |
2320 | m_nWindowExtY = (int)MS_YDEV2LOG(VIEWPORT_EXTENT); | |
5fd2b2c6 DW |
2321 | // ???? |
2322 | }; // end of wxDC::SetMapMode | |
2323 | ||
77f4f0a7 WS |
2324 | void wxDC::SetUserScale( double dX, |
2325 | double dY ) | |
fb46a9a6 | 2326 | { |
5fd2b2c6 DW |
2327 | m_userScaleX = dX; |
2328 | m_userScaleY = dY; | |
fb46a9a6 DW |
2329 | |
2330 | SetMapMode(m_mappingMode); | |
5fd2b2c6 | 2331 | } // end of wxDC::SetUserScale |
fb46a9a6 | 2332 | |
77f4f0a7 WS |
2333 | void wxDC::SetAxisOrientation( bool bXLeftRight, |
2334 | bool bYBottomUp ) | |
fb46a9a6 | 2335 | { |
5fd2b2c6 DW |
2336 | m_signX = bXLeftRight ? 1 : -1; |
2337 | m_signY = bYBottomUp ? -1 : 1; | |
fb46a9a6 DW |
2338 | |
2339 | SetMapMode(m_mappingMode); | |
5fd2b2c6 | 2340 | } // end of wxDC::SetAxisOrientation |
fb46a9a6 | 2341 | |
5fd2b2c6 DW |
2342 | void wxDC::SetSystemScale( |
2343 | double dX | |
2344 | , double dY | |
2345 | ) | |
fb46a9a6 | 2346 | { |
5fd2b2c6 DW |
2347 | m_scaleX = dX; |
2348 | m_scaleY = dY; | |
fb46a9a6 DW |
2349 | |
2350 | SetMapMode(m_mappingMode); | |
5fd2b2c6 | 2351 | } // end of wxDC::SetSystemScale |
fb46a9a6 | 2352 | |
5fd2b2c6 DW |
2353 | void wxDC::SetLogicalOrigin( |
2354 | wxCoord vX | |
2355 | , wxCoord vY | |
2356 | ) | |
fb46a9a6 | 2357 | { |
5fd2b2c6 DW |
2358 | RECTL vRect; |
2359 | ||
2360 | ::GpiQueryPageViewport( m_hPS | |
2361 | ,&vRect | |
2362 | ); | |
2363 | vRect.xRight -= vX; | |
2364 | vRect.yTop += vY; | |
2365 | vRect.xLeft = vX; | |
2366 | vRect.yBottom = vY; | |
2367 | ::GpiSetPageViewport( m_hPS | |
2368 | ,&vRect | |
2369 | ); | |
2370 | }; // end of wxDC::SetLogicalOrigin | |
fb46a9a6 | 2371 | |
8d854fa9 | 2372 | void wxDC::SetDeviceOrigin( |
5fd2b2c6 DW |
2373 | wxCoord vX |
2374 | , wxCoord vY | |
8d854fa9 | 2375 | ) |
fb46a9a6 | 2376 | { |
26ac77db DW |
2377 | RECTL vRect; |
2378 | ||
5fd2b2c6 DW |
2379 | m_deviceOriginX = vX; |
2380 | m_deviceOriginY = vY; | |
26ac77db DW |
2381 | ::GpiQueryPageViewport( m_hPS |
2382 | ,&vRect | |
2383 | ); | |
5fd2b2c6 DW |
2384 | vRect.xLeft += vX; |
2385 | vRect.xRight += vX; | |
2386 | vRect.yBottom -= vY; | |
2387 | vRect.yTop -= vY; | |
26ac77db DW |
2388 | ::GpiSetPageViewport( m_hPS |
2389 | ,&vRect | |
2390 | ); | |
5fd2b2c6 | 2391 | }; // end of wxDC::SetDeviceOrigin |
fb46a9a6 DW |
2392 | |
2393 | // --------------------------------------------------------------------------- | |
2394 | // coordinates transformations | |
2395 | // --------------------------------------------------------------------------- | |
2396 | ||
7cdc2f1e | 2397 | wxCoord wxDCBase::DeviceToLogicalX(wxCoord x) const |
fb46a9a6 | 2398 | { |
f6bcfd97 BP |
2399 | return (wxCoord) (((x) - m_deviceOriginX)/(m_logicalScaleX*m_userScaleX*m_signX*m_scaleX) - m_logicalOriginX); |
2400 | } | |
fb46a9a6 | 2401 | |
7cdc2f1e | 2402 | wxCoord wxDCBase::DeviceToLogicalXRel(wxCoord x) const |
fb46a9a6 | 2403 | { |
aad6765c | 2404 | // axis orientation is not taken into account for conversion of a distance |
74de9ed6 | 2405 | return (wxCoord) ((x)/(m_logicalScaleX*m_userScaleX*m_scaleX)); |
f6bcfd97 | 2406 | } |
fb46a9a6 | 2407 | |
7cdc2f1e | 2408 | wxCoord wxDCBase::DeviceToLogicalY(wxCoord y) const |
fb46a9a6 | 2409 | { |
f6bcfd97 BP |
2410 | return (wxCoord) (((y) - m_deviceOriginY)/(m_logicalScaleY*m_userScaleY*m_signY*m_scaleY) - m_logicalOriginY); |
2411 | } | |
fb46a9a6 | 2412 | |
7cdc2f1e | 2413 | wxCoord wxDCBase::DeviceToLogicalYRel(wxCoord y) const |
fb46a9a6 | 2414 | { |
aad6765c | 2415 | // axis orientation is not taken into account for conversion of a distance |
74de9ed6 | 2416 | return (wxCoord) ((y)/(m_logicalScaleY*m_userScaleY*m_scaleY)); |
f6bcfd97 | 2417 | } |
fb46a9a6 | 2418 | |
7cdc2f1e | 2419 | wxCoord wxDCBase::LogicalToDeviceX(wxCoord x) const |
fb46a9a6 | 2420 | { |
f6bcfd97 BP |
2421 | return (wxCoord) ((x - m_logicalOriginX)*m_logicalScaleX*m_userScaleX*m_signX*m_scaleX + m_deviceOriginX); |
2422 | } | |
fb46a9a6 | 2423 | |
7cdc2f1e | 2424 | wxCoord wxDCBase::LogicalToDeviceXRel(wxCoord x) const |
fb46a9a6 | 2425 | { |
aad6765c | 2426 | // axis orientation is not taken into account for conversion of a distance |
74de9ed6 | 2427 | return (wxCoord) (x*m_logicalScaleX*m_userScaleX*m_scaleX); |
f6bcfd97 | 2428 | } |
fb46a9a6 | 2429 | |
7cdc2f1e | 2430 | wxCoord wxDCBase::LogicalToDeviceY(wxCoord y) const |
fb46a9a6 | 2431 | { |
f6bcfd97 BP |
2432 | return (wxCoord) ((y - m_logicalOriginY)*m_logicalScaleY*m_userScaleY*m_signY*m_scaleY + m_deviceOriginY); |
2433 | } | |
fb46a9a6 | 2434 | |
7cdc2f1e | 2435 | wxCoord wxDCBase::LogicalToDeviceYRel(wxCoord y) const |
fb46a9a6 | 2436 | { |
aad6765c | 2437 | // axis orientation is not taken into account for conversion of a distance |
74de9ed6 | 2438 | return (wxCoord) (y*m_logicalScaleY*m_userScaleY*m_scaleY); |
f6bcfd97 | 2439 | } |
fb46a9a6 DW |
2440 | |
2441 | // --------------------------------------------------------------------------- | |
2442 | // bit blit | |
2443 | // --------------------------------------------------------------------------- | |
2444 | ||
6670f564 WS |
2445 | bool wxDC::DoBlit( wxCoord vXdest, |
2446 | wxCoord vYdest, | |
2447 | wxCoord vWidth, | |
2448 | wxCoord vHeight, | |
2449 | wxDC* pSource, | |
2450 | wxCoord vXsrc, | |
2451 | wxCoord vYsrc, | |
2452 | int nRop, | |
2453 | bool bUseMask, | |
2454 | wxCoord WXUNUSED(vXsrcMask), | |
2455 | wxCoord WXUNUSED(vYsrcMask) ) | |
fb46a9a6 | 2456 | { |
5afb9458 DW |
2457 | wxMask* pMask = NULL; |
2458 | CHARBUNDLE vCbnd; | |
2459 | COLORREF vOldTextColor; | |
2460 | COLORREF vOldBackground = ::GpiQueryBackColor(m_hPS); | |
5afb9458 DW |
2461 | |
2462 | if (bUseMask) | |
2463 | { | |
2464 | const wxBitmap& rBmp = pSource->m_vSelectedBitmap; | |
2465 | ||
2466 | pMask = rBmp.GetMask(); | |
2467 | if (!(rBmp.Ok() && pMask && pMask->GetMaskBitmap())) | |
2468 | { | |
aad6765c | 2469 | bUseMask = false; |
5afb9458 DW |
2470 | } |
2471 | } | |
2472 | ||
2473 | ::GpiQueryAttrs( m_hPS | |
2474 | ,PRIM_CHAR | |
2475 | ,CBB_COLOR | |
2476 | ,&vCbnd | |
2477 | ); | |
2478 | vOldTextColor = (COLORREF)vCbnd.lColor; | |
2479 | ||
2480 | if (m_textForegroundColour.Ok()) | |
2481 | { | |
2482 | vCbnd.lColor = (LONG)m_textForegroundColour.GetPixel(); | |
2483 | ::GpiSetAttrs( m_hPS // presentation-space handle | |
2484 | ,PRIM_CHAR // Char primitive. | |
2485 | ,CBB_COLOR // sets color. | |
2486 | ,0 | |
2487 | ,&vCbnd // buffer for attributes. | |
2488 | ); | |
2489 | } | |
2490 | if (m_textBackgroundColour.Ok()) | |
2491 | { | |
2492 | ::GpiSetBackColor(m_hPS, (LONG)m_textBackgroundColour.GetPixel()); | |
2493 | } | |
2494 | ||
2495 | LONG lRop = ROP_SRCCOPY; | |
2496 | ||
2497 | switch (nRop) | |
2498 | { | |
2499 | case wxXOR: lRop = ROP_SRCINVERT; break; | |
2500 | case wxINVERT: lRop = ROP_DSTINVERT; break; | |
2501 | case wxOR_REVERSE: lRop = 0x00DD0228; break; | |
2502 | case wxAND_REVERSE: lRop = ROP_SRCERASE; break; | |
2503 | case wxCLEAR: lRop = ROP_ZERO; break; | |
2504 | case wxSET: lRop = ROP_ONE; break; | |
2505 | case wxOR_INVERT: lRop = ROP_MERGEPAINT; break; | |
2506 | case wxAND: lRop = ROP_SRCAND; break; | |
2507 | case wxOR: lRop = ROP_SRCPAINT; break; | |
2508 | case wxEQUIV: lRop = 0x00990066; break; | |
2509 | case wxNAND: lRop = 0x007700E6; break; | |
2510 | case wxAND_INVERT: lRop = 0x00220326; break; | |
2511 | case wxCOPY: lRop = ROP_SRCCOPY; break; | |
2512 | case wxNO_OP: lRop = ROP_NOTSRCERASE; break; | |
2513 | case wxSRC_INVERT: lRop = ROP_SRCINVERT; break; | |
2514 | case wxNOR: lRop = ROP_NOTSRCCOPY; break; | |
2515 | default: | |
2516 | wxFAIL_MSG( wxT("unsupported logical function") ); | |
aad6765c | 2517 | return false; |
5afb9458 DW |
2518 | } |
2519 | ||
2520 | bool bSuccess; | |
b02121c3 | 2521 | |
5afb9458 DW |
2522 | if (bUseMask) |
2523 | { | |
2524 | // | |
2525 | // Blit bitmap with mask | |
2526 | // | |
2527 | ||
2528 | // | |
b02121c3 | 2529 | // Create a temp buffer bitmap and DCs/PSs to access it and the mask |
5afb9458 | 2530 | // |
b02121c3 DW |
2531 | HDC hDCMask; |
2532 | HDC hDCBuffer; | |
2533 | HPS hPSMask; | |
2534 | HPS hPSBuffer; | |
2535 | DEVOPENSTRUC vDOP = {0L, "DISPLAY", NULL, 0L, 0L, 0L, 0L, 0L, 0L}; | |
2536 | BITMAPINFOHEADER2 vBmpHdr; | |
893758d5 | 2537 | HBITMAP hBufBitmap; |
b02121c3 DW |
2538 | SIZEL vSize = {0, 0}; |
2539 | LONG rc; | |
2540 | ||
b02121c3 DW |
2541 | memset(&vBmpHdr, 0, sizeof(BITMAPINFOHEADER2)); |
2542 | vBmpHdr.cbFix = sizeof(BITMAPINFOHEADER2); | |
2543 | vBmpHdr.cx = vWidth; | |
2544 | vBmpHdr.cy = vHeight; | |
2545 | vBmpHdr.cPlanes = 1; | |
2546 | vBmpHdr.cBitCount = 24; | |
2547 | ||
893758d5 | 2548 | #if wxUSE_DC_CACHEING |
893758d5 DW |
2549 | { |
2550 | // | |
2551 | // create a temp buffer bitmap and DCs to access it and the mask | |
2552 | // | |
2553 | wxDCCacheEntry* pDCCacheEntry1 = FindDCInCache( NULL | |
2554 | ,pSource->GetHPS() | |
2555 | ); | |
2556 | wxDCCacheEntry* pDCCacheEntry2 = FindDCInCache( pDCCacheEntry1 | |
2557 | ,GetHPS() | |
2558 | ); | |
2559 | wxDCCacheEntry* pBitmapCacheEntry = FindBitmapInCache( GetHPS() | |
2560 | ,vWidth | |
2561 | ,vHeight | |
2562 | ); | |
2563 | ||
2564 | hPSMask = pDCCacheEntry1->m_hPS; | |
2565 | hDCBuffer = (HDC)pDCCacheEntry2->m_hPS; | |
2566 | hBufBitmap = (HBITMAP)pBitmapCacheEntry->m_hBitmap; | |
6670f564 | 2567 | wxUnusedVar(hDCMask); |
893758d5 | 2568 | } |
6670f564 | 2569 | #else |
893758d5 DW |
2570 | { |
2571 | hDCMask = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE); | |
2572 | hDCBuffer = ::DevOpenDC(vHabmain, OD_MEMORY, "*", 5L, (PDEVOPENDATA)&vDOP, NULLHANDLE); | |
2573 | hPSMask = ::GpiCreatePS(vHabmain, hDCMask, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC); | |
2574 | hPSBuffer = ::GpiCreatePS(vHabmain, hDCBuffer, &vSize, PU_PELS | GPIT_MICRO | GPIA_ASSOC); | |
2575 | hBufBitmap = ::GpiCreateBitmap(GetHPS(), &vBmpHdr, 0L, NULL, NULL); | |
2576 | } | |
6670f564 | 2577 | #endif |
893758d5 | 2578 | |
b93aba84 | 2579 | POINTL aPoint1[4] = { {0, 0} |
aad6765c JS |
2580 | ,{vWidth, vHeight} |
2581 | ,{vXdest, vYdest} | |
2582 | ,{vXdest + vWidth, vYdest + vHeight} | |
b02121c3 | 2583 | }; |
b93aba84 | 2584 | POINTL aPoint2[4] = { {0, 0} |
aad6765c JS |
2585 | ,{vWidth, vHeight} |
2586 | ,{vXsrc, vYsrc} | |
2587 | ,{vXsrc + vWidth, vYsrc + vHeight} | |
b02121c3 | 2588 | }; |
b93aba84 | 2589 | POINTL aPoint3[4] = { {vXdest, vYdest} |
aad6765c JS |
2590 | ,{vXdest + vWidth, vYdest + vHeight} |
2591 | ,{vXsrc, vYsrc} | |
2592 | ,{vXsrc + vWidth, vYsrc + vHeight} | |
23e356de | 2593 | }; |
b93aba84 | 2594 | POINTL aPoint4[4] = { {vXdest, vYdest} |
aad6765c JS |
2595 | ,{vXdest + vWidth, vYdest + vHeight} |
2596 | ,{0, 0} | |
2597 | ,{vWidth, vHeight} | |
b02121c3 DW |
2598 | }; |
2599 | ::GpiSetBitmap(hPSMask, (HBITMAP) pMask->GetMaskBitmap()); | |
2600 | ::GpiSetBitmap(hPSBuffer, (HBITMAP) hBufBitmap); | |
5afb9458 | 2601 | |
b02121c3 DW |
2602 | // |
2603 | // Copy dest to buffer | |
2604 | // | |
2605 | rc = ::GpiBitBlt( hPSBuffer | |
2606 | ,GetHPS() | |
2607 | ,4L | |
2608 | ,aPoint1 | |
2609 | ,ROP_SRCCOPY | |
2610 | ,BBO_IGNORE | |
2611 | ); | |
2612 | if (rc == GPI_ERROR) | |
2613 | { | |
2614 | wxLogLastError(wxT("BitBlt")); | |
2615 | } | |
5afb9458 | 2616 | |
b02121c3 DW |
2617 | // |
2618 | // Copy src to buffer using selected raster op | |
2619 | // | |
2620 | rc = ::GpiBitBlt( hPSBuffer | |
2621 | ,GetHPS() | |
2622 | ,4L | |
2623 | ,aPoint2 | |
2624 | ,lRop | |
2625 | ,BBO_IGNORE | |
2626 | ); | |
2627 | if (rc == GPI_ERROR) | |
2628 | { | |
2629 | wxLogLastError(wxT("BitBlt")); | |
2630 | } | |
5afb9458 | 2631 | |
b02121c3 DW |
2632 | // |
2633 | // Set masked area in buffer to BLACK (pixel value 0) | |
2634 | // | |
2635 | COLORREF vPrevBkCol = ::GpiQueryBackColor(GetHPS()); | |
2636 | COLORREF vPrevCol = ::GpiQueryColor(GetHPS()); | |
2637 | ||
2638 | ::GpiSetBackColor(GetHPS(), OS2RGB(255, 255, 255)); | |
2639 | ::GpiSetColor(GetHPS(), OS2RGB(0, 0, 0)); | |
2640 | ||
2641 | rc = ::GpiBitBlt( hPSBuffer | |
2642 | ,hPSMask | |
2643 | ,4L | |
2644 | ,aPoint2 | |
2645 | ,ROP_SRCAND | |
2646 | ,BBO_IGNORE | |
2647 | ); | |
2648 | if (rc == GPI_ERROR) | |
2649 | { | |
2650 | wxLogLastError(wxT("BitBlt")); | |
2651 | } | |
5afb9458 | 2652 | |
b02121c3 DW |
2653 | // |
2654 | // Set unmasked area in dest to BLACK | |
2655 | // | |
2656 | ::GpiSetBackColor(GetHPS(), OS2RGB(0, 0, 0)); | |
2657 | ::GpiSetColor(GetHPS(), OS2RGB(255, 255, 255)); | |
2658 | rc = ::GpiBitBlt( GetHPS() | |
2659 | ,hPSMask | |
2660 | ,4L | |
23e356de | 2661 | ,aPoint3 |
b02121c3 DW |
2662 | ,ROP_SRCAND |
2663 | ,BBO_IGNORE | |
2664 | ); | |
2665 | if (rc == GPI_ERROR) | |
2666 | { | |
2667 | wxLogLastError(wxT("BitBlt")); | |
5afb9458 | 2668 | } |
b02121c3 DW |
2669 | |
2670 | // | |
2671 | // Restore colours to original values | |
2672 | // | |
2673 | ::GpiSetBackColor(GetHPS(), vPrevBkCol); | |
2674 | ::GpiSetColor(GetHPS(), vPrevCol); | |
2675 | ||
2676 | // | |
2677 | // OR buffer to dest | |
2678 | // | |
2679 | rc = ::GpiBitBlt( GetHPS() | |
2680 | ,hPSMask | |
2681 | ,4L | |
23e356de | 2682 | ,aPoint4 |
b02121c3 DW |
2683 | ,ROP_SRCPAINT |
2684 | ,BBO_IGNORE | |
2685 | ); | |
2686 | if (rc == GPI_ERROR) | |
2687 | { | |
aad6765c | 2688 | bSuccess = false; |
b02121c3 DW |
2689 | wxLogLastError(wxT("BitBlt")); |
2690 | } | |
2691 | ||
2692 | // | |
2693 | // Tidy up temporary DCs and bitmap | |
2694 | // | |
2695 | ::GpiSetBitmap(hPSMask, NULLHANDLE); | |
2696 | ::GpiSetBitmap(hPSBuffer, NULLHANDLE); | |
893758d5 | 2697 | #if !wxUSE_DC_CACHEING |
b02121c3 DW |
2698 | ::GpiDestroyPS(hPSMask); |
2699 | ::GpiDestroyPS(hPSBuffer); | |
2700 | ::DevCloseDC(hDCMask); | |
2701 | ::DevCloseDC(hDCBuffer); | |
2702 | ::GpiDeleteBitmap(hBufBitmap); | |
893758d5 | 2703 | #endif |
aad6765c | 2704 | bSuccess = true; |
5afb9458 | 2705 | } |
b02121c3 DW |
2706 | else // no mask, just BitBlt() it |
2707 | { | |
b93aba84 | 2708 | POINTL aPoint[4] = { {vXdest, vYdest} |
aad6765c JS |
2709 | ,{vXdest + vWidth, vYdest + vHeight} |
2710 | ,{vXsrc, vYsrc} | |
2711 | ,{vXsrc + vWidth, vYsrc + vHeight} | |
b02121c3 DW |
2712 | }; |
2713 | ||
5afb9458 DW |
2714 | bSuccess = (::GpiBitBlt( m_hPS |
2715 | ,pSource->GetHPS() | |
2716 | ,4L | |
2717 | ,aPoint | |
2718 | ,lRop | |
2719 | ,BBO_IGNORE | |
2720 | ) != GPI_ERROR); | |
2721 | if (!bSuccess ) | |
2722 | { | |
2723 | wxLogLastError(wxT("BitBlt")); | |
2724 | } | |
b02121c3 | 2725 | } |
5afb9458 DW |
2726 | vCbnd.lColor = (LONG)vOldTextColor; |
2727 | ::GpiSetAttrs( m_hPS // presentation-space handle | |
2728 | ,PRIM_CHAR // Char primitive. | |
2729 | ,CBB_COLOR // sets color. | |
2730 | ,0 | |
2731 | ,&vCbnd // buffer for attributes. | |
2732 | ); | |
2733 | ::GpiSetBackColor(m_hPS, (LONG)vOldBackground); | |
2734 | return bSuccess; | |
fb46a9a6 DW |
2735 | } |
2736 | ||
5fd2b2c6 DW |
2737 | void wxDC::DoGetSize( |
2738 | int* pnWidth | |
2739 | , int* pnHeight | |
2740 | ) const | |
fb46a9a6 | 2741 | { |
5fd2b2c6 DW |
2742 | LONG lArray[CAPS_HEIGHT]; |
2743 | ||
2744 | if(::DevQueryCaps( m_hDC | |
2745 | ,CAPS_FAMILY | |
2746 | ,CAPS_HEIGHT | |
2747 | ,lArray | |
2748 | )) | |
2749 | { | |
2750 | *pnWidth = lArray[CAPS_WIDTH]; | |
2751 | *pnHeight = lArray[CAPS_HEIGHT]; | |
2752 | } | |
2753 | }; // end of wxDC::DoGetSize( | |
fb46a9a6 | 2754 | |
6670f564 WS |
2755 | void wxDC::DoGetSizeMM( int* pnWidth, |
2756 | int* pnHeight ) const | |
fb46a9a6 | 2757 | { |
5fd2b2c6 DW |
2758 | LONG lArray[CAPS_VERTICAL_RESOLUTION]; |
2759 | ||
2760 | if(::DevQueryCaps( m_hDC | |
2761 | ,CAPS_FAMILY | |
2762 | ,CAPS_VERTICAL_RESOLUTION | |
2763 | ,lArray | |
2764 | )) | |
2765 | { | |
6670f564 WS |
2766 | if(pnWidth) |
2767 | { | |
2768 | int nWidth = lArray[CAPS_WIDTH]; | |
2769 | int nHorzRes = lArray[CAPS_HORIZONTAL_RESOLUTION]; // returns pel/meter | |
2770 | *pnWidth = (nHorzRes/1000) * nWidth; | |
2771 | } | |
5fd2b2c6 | 2772 | |
6670f564 WS |
2773 | if(pnHeight) |
2774 | { | |
2775 | int nHeight = lArray[CAPS_HEIGHT]; | |
2776 | int nVertRes = lArray[CAPS_VERTICAL_RESOLUTION]; // returns pel/meter | |
2777 | *pnHeight = (nVertRes/1000) * nHeight; | |
2778 | } | |
5fd2b2c6 DW |
2779 | } |
2780 | }; // end of wxDC::DoGetSizeMM | |
fb46a9a6 DW |
2781 | |
2782 | wxSize wxDC::GetPPI() const | |
2783 | { | |
5fd2b2c6 | 2784 | LONG lArray[CAPS_VERTICAL_RESOLUTION]; |
322d45dd DW |
2785 | int nWidth = 0; |
2786 | int nHeight = 0; | |
fb46a9a6 | 2787 | |
5fd2b2c6 DW |
2788 | if(::DevQueryCaps( m_hDC |
2789 | ,CAPS_FAMILY | |
2790 | ,CAPS_VERTICAL_RESOLUTION | |
2791 | ,lArray | |
2792 | )) | |
2793 | { | |
2794 | int nPelWidth; | |
2795 | int nPelHeight; | |
2796 | int nHorzRes; | |
2797 | int nVertRes; | |
2798 | ||
2799 | nPelWidth = lArray[CAPS_WIDTH]; | |
2800 | nPelHeight = lArray[CAPS_HEIGHT]; | |
2801 | nHorzRes = lArray[CAPS_HORIZONTAL_RESOLUTION]; // returns pel/meter | |
2802 | nVertRes = lArray[CAPS_VERTICAL_RESOLUTION]; // returns pel/meter | |
9923c37d DW |
2803 | nWidth = (int)((nHorzRes/39.3) * nPelWidth); |
2804 | nHeight = (int)((nVertRes/39.3) * nPelHeight); | |
5fd2b2c6 | 2805 | } |
6670f564 WS |
2806 | wxSize ppisize(nWidth, nHeight); |
2807 | return ppisize; | |
5fd2b2c6 DW |
2808 | } // end of wxDC::GetPPI |
2809 | ||
2810 | void wxDC::SetLogicalScale( | |
2811 | double dX | |
2812 | , double dY | |
2813 | ) | |
fb46a9a6 | 2814 | { |
5fd2b2c6 DW |
2815 | m_logicalScaleX = dX; |
2816 | m_logicalScaleY = dY; | |
2817 | }; // end of wxDC::SetLogicalScale |