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