1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
20 #pragma implementation "dc.h"
23 // For compilers that support precompilation, includes "wx.h".
24 #include "wx/wxprec.h"
32 #include "wx/dcmemory.h"
35 #include "wx/fontutil.h"
36 #include "wx/fontmap.h"
37 #include "wx/mgl/private.h"
46 //-----------------------------------------------------------------------------
48 //-----------------------------------------------------------------------------
51 #define M_PI 3.14159265358979323846
54 const double mm2inches
= 0.0393700787402;
55 const double inches2mm
= 25.4;
56 const double mm2twips
= 56.6929133859;
57 const double twips2mm
= 0.0176388888889;
58 const double mm2pt
= 2.83464566929;
59 const double pt2mm
= 0.352777777778;
60 const double RAD2DEG
= 180.0 / M_PI
;
63 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
67 const ushort STIPPLE_wxDOT
= 0x5555/* - - - - - - - -*/;
68 const ushort STIPPLE_wxLONG_DASH
= 0xF0F0/* ---- ----*/;
69 const ushort STIPPLE_wxSHORT_DASH
= 0xCCCC/*-- -- -- -- */;
70 const ushort STIPPLE_wxDOT_DASH
= 0x3939/* --- - --- -*/;
71 const ushort STIPPLE_wxSOLID
= 0xFFFF/*----------------*/;
73 #define PATTERN_ROW(b7,b6,b5,b4,b3,b2,b1,b0) \
74 ((b7 << 7) | (b6 << 6) | (b5 << 5) | (b4 << 4) | \
75 (b3 << 3) | (b2 << 2) | (b1 << 1) | b0)
77 static pattern_t PATTERN_wxFDIAGONAL_HATCH
= {{
78 PATTERN_ROW(1,0,0,0,0,0,0,0),
79 PATTERN_ROW(0,1,0,0,0,0,0,0),
80 PATTERN_ROW(0,0,1,0,0,0,0,0),
81 PATTERN_ROW(0,0,0,1,0,0,0,0),
82 PATTERN_ROW(0,0,0,0,1,0,0,0),
83 PATTERN_ROW(0,0,0,0,0,1,0,0),
84 PATTERN_ROW(0,0,0,0,0,0,1,0),
85 PATTERN_ROW(0,0,0,0,0,0,0,1),
88 static pattern_t PATTERN_wxCROSSDIAG_HATCH
= {{
89 PATTERN_ROW(1,0,0,0,0,0,0,1),
90 PATTERN_ROW(0,1,0,0,0,0,1,0),
91 PATTERN_ROW(0,0,1,0,0,1,0,0),
92 PATTERN_ROW(0,0,0,1,1,0,0,0),
93 PATTERN_ROW(0,0,0,1,1,0,0,0),
94 PATTERN_ROW(0,0,1,0,0,1,0,0),
95 PATTERN_ROW(0,1,0,0,0,0,1,0),
96 PATTERN_ROW(1,0,0,0,0,0,0,1),
99 static pattern_t PATTERN_wxBDIAGONAL_HATCH
= {{
100 PATTERN_ROW(0,0,0,0,0,0,0,1),
101 PATTERN_ROW(0,0,0,0,0,0,1,0),
102 PATTERN_ROW(0,0,0,0,0,1,0,0),
103 PATTERN_ROW(0,0,0,0,1,0,0,0),
104 PATTERN_ROW(0,0,0,1,0,0,0,0),
105 PATTERN_ROW(0,0,1,0,0,0,0,0),
106 PATTERN_ROW(0,1,0,0,0,0,0,0),
107 PATTERN_ROW(1,0,0,0,0,0,0,0),
110 static pattern_t PATTERN_wxCROSS_HATCH
= {{
111 PATTERN_ROW(0,0,0,1,0,0,0,0),
112 PATTERN_ROW(0,0,0,1,0,0,0,0),
113 PATTERN_ROW(0,0,0,1,0,0,0,0),
114 PATTERN_ROW(1,1,1,1,1,1,1,1),
115 PATTERN_ROW(0,0,0,1,0,0,0,0),
116 PATTERN_ROW(0,0,0,1,0,0,0,0),
117 PATTERN_ROW(0,0,0,1,0,0,0,0),
118 PATTERN_ROW(0,0,0,1,0,0,0,0),
121 static pattern_t PATTERN_wxHORIZONTAL_HATCH
= {{
122 PATTERN_ROW(0,0,0,0,0,0,0,0),
123 PATTERN_ROW(0,0,0,0,0,0,0,0),
124 PATTERN_ROW(0,0,0,0,0,0,0,0),
125 PATTERN_ROW(1,1,1,1,1,1,1,1),
126 PATTERN_ROW(0,0,0,0,0,0,0,0),
127 PATTERN_ROW(0,0,0,0,0,0,0,0),
128 PATTERN_ROW(0,0,0,0,0,0,0,0),
129 PATTERN_ROW(0,0,0,0,0,0,0,0),
132 static pattern_t PATTERN_wxVERTICAL_HATCH
= {{
133 PATTERN_ROW(0,0,0,1,0,0,0,0),
134 PATTERN_ROW(0,0,0,1,0,0,0,0),
135 PATTERN_ROW(0,0,0,1,0,0,0,0),
136 PATTERN_ROW(0,0,0,1,0,0,0,0),
137 PATTERN_ROW(0,0,0,1,0,0,0,0),
138 PATTERN_ROW(0,0,0,1,0,0,0,0),
139 PATTERN_ROW(0,0,0,1,0,0,0,0),
140 PATTERN_ROW(0,0,0,1,0,0,0,0),
145 //-----------------------------------------------------------------------------
147 //-----------------------------------------------------------------------------
149 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxDCBase
)
151 // Default constructor
157 m_ok
= FALSE
; // must call SetMGLDevCtx() before using it
159 m_mm_to_pix_x
= (double)wxGetDisplaySize().GetWidth() /
160 (double)wxGetDisplaySizeMM().GetWidth();
161 m_mm_to_pix_y
= (double)wxGetDisplaySize().GetHeight() /
162 (double)wxGetDisplaySizeMM().GetHeight();
164 m_pen
= *wxBLACK_PEN
;
165 m_font
= *wxNORMAL_FONT
;
166 m_brush
= *wxWHITE_BRUSH
;
167 m_penOfsX
= m_penOfsY
= 0;
169 m_penSelected
= m_brushSelected
= FALSE
;
170 m_downloadedPatterns
[0] = m_downloadedPatterns
[1] = FALSE
;
182 void wxDC::SetMGLDC(MGLDevCtx
*mgldc
, bool OwnsMGLDC
)
184 if ( m_OwnsMGLDC
&& m_MGLDC
)
187 m_OwnsMGLDC
= OwnsMGLDC
;
190 if ( !m_globalClippingRegion
.IsNull() )
191 SetClippingRegion(m_globalClippingRegion
);
196 void wxDC::InitializeMGLDC()
198 if ( GetDepth() > 8 )
200 wxCurrentDCSwitcher
switcher(m_MGLDC
); // will go away with MGL6
201 m_MGLDC
->setFontBlendMode(MGL_AA_RGBBLEND
);
206 // ---------------------------------------------------------------------------
208 // ---------------------------------------------------------------------------
211 #define DO_SET_CLIPPING_BOX(rg) \
213 wxRect rect = rg.GetBox(); \
214 m_clipX1 = (wxCoord) XDEV2LOG(rect.GetLeft()); \
215 m_clipY1 = (wxCoord) YDEV2LOG(rect.GetTop()); \
216 m_clipX2 = (wxCoord) XDEV2LOG(rect.GetRight()); \
217 m_clipY2 = (wxCoord) YDEV2LOG(rect.GetBottom()); \
220 void wxDC::DoSetClippingRegion(wxCoord cx
, wxCoord cy
, wxCoord cw
, wxCoord ch
)
222 wxCHECK_RET( Ok(), wxT("invalid dc") );
224 wxRect
rect(XLOG2DEV(cx
), YLOG2DEV(cy
), XLOG2DEVREL(cw
), YLOG2DEVREL(ch
));
226 if ( !m_currentClippingRegion
.IsNull() )
227 m_currentClippingRegion
.Intersect(rect
);
229 m_currentClippingRegion
.Union(rect
);
231 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
234 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
237 void wxDC::DoSetClippingRegionAsRegion(const wxRegion
& region
)
239 wxCHECK_RET( Ok(), wxT("invalid dc") );
241 if ( region
.IsEmpty() )
243 DestroyClippingRegion();
249 // check if the DC is scaled or moved, and if yes, then
250 // convert rg to device coordinates:
251 if ( m_deviceOriginX
!= 0 || m_deviceOriginY
!= 0 ||
252 XLOG2DEVREL(500) != 500 || YLOG2DEVREL(500) != 500 )
254 region_t
*mrg
= rg
.GetMGLRegion().rgnPointer();
257 for (s
= mrg
->spans
; s
; s
= s
->next
)
259 s
->y
= YLOG2DEV(s
->y
);
260 for (p
= s
->seg
; p
; p
= p
->next
)
261 p
->x
= XLOG2DEV(p
->x
);
265 if ( !m_currentClippingRegion
.IsNull() )
266 m_currentClippingRegion
.Intersect(rg
);
268 m_currentClippingRegion
.Union(rg
);
270 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
273 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
276 void wxDC::DestroyClippingRegion()
278 wxCHECK_RET( Ok(), wxT("invalid dc") );
280 if ( !m_globalClippingRegion
.IsNull() )
282 m_MGLDC
->setClipRegion(m_globalClippingRegion
.GetMGLRegion());
283 m_currentClippingRegion
= m_globalClippingRegion
;
288 m_MGLDC
->setClipRect(MGLRect(0, 0, m_MGLDC
->sizex()+1, m_MGLDC
->sizey()+1));
290 m_currentClippingRegion
.Clear();
294 // ---------------------------------------------------------------------------
295 // query capabilities
296 // ---------------------------------------------------------------------------
298 bool wxDC::CanDrawBitmap() const
303 bool wxDC::CanGetTextExtent() const
308 int wxDC::GetDepth() const
310 return m_MGLDC
->getBitsPerPixel();
313 // ---------------------------------------------------------------------------
315 // ---------------------------------------------------------------------------
319 wxCHECK_RET( Ok(), wxT("invalid dc") );
321 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
322 if ( m_backgroundBrush
.GetStyle() != wxTRANSPARENT
)
325 wxBrush oldb
= m_brush
;
326 SetBrush(m_backgroundBrush
);
329 m_MGLDC
->fillRect(0, 0, w
, h
);
334 void wxDC::DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
, int style
)
336 wxFAIL_MSG( wxT("wxDC::DoFloodFill not implemented") );
339 bool wxDC::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
341 wxCHECK_MSG( col
, FALSE
, _T("NULL colour parameter in wxDC::GetPixel"));
344 m_MGLDC
->unpackColorFast(m_MGLDC
->getPixel(XLOG2DEV(x
), YLOG2DEV(y
)),
350 void wxDC::DoCrossHair(wxCoord x
, wxCoord y
)
352 wxCHECK_RET( Ok(), wxT("invalid dc") );
354 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
359 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
360 if ( !m_penSelected
)
362 wxCoord xx
= XLOG2DEV(x
);
363 wxCoord yy
= YLOG2DEV(y
);
364 m_MGLDC
->line(m_penOfsX
, yy
+ m_penOfsY
, w
-1 + m_penOfsX
, yy
+ m_penOfsY
);
365 m_MGLDC
->line(xx
+ m_penOfsX
, m_penOfsY
, x
+ m_penOfsX
, h
-1 + m_penOfsY
);
366 CalcBoundingBox(0, 0);
367 CalcBoundingBox(w
, h
);
371 void wxDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
373 wxCHECK_RET( Ok(), wxT("invalid dc") );
375 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
377 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
378 if ( !m_penSelected
)
380 m_MGLDC
->lineExt(XLOG2DEV(x1
) + m_penOfsX
, YLOG2DEV(y1
) + m_penOfsY
,
381 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
,FALSE
);
382 CalcBoundingBox(x1
, y1
);
383 CalcBoundingBox(x2
, y2
);
387 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
388 // and ending at (x2, y2)
389 void wxDC::DoDrawArc(wxCoord x1
, wxCoord y1
,
390 wxCoord x2
, wxCoord y2
,
391 wxCoord xc
, wxCoord yc
)
393 wxCHECK_RET( Ok(), wxT("invalid dc") );
395 wxCoord xx1
= XLOG2DEV(x1
);
396 wxCoord yy1
= YLOG2DEV(y1
);
397 wxCoord xx2
= XLOG2DEV(x2
);
398 wxCoord yy2
= YLOG2DEV(y2
);
399 wxCoord xxc
= XLOG2DEV(xc
);
400 wxCoord yyc
= YLOG2DEV(yc
);
401 double dx
= xx1
- xxc
;
402 double dy
= yy1
- yyc
;
403 double radius
= sqrt((double)(dx
*dx
+dy
*dy
));
404 wxCoord r
= (wxCoord
)radius
;
405 double radius1
, radius2
;
408 if (xx1
== xx2
&& yy1
== yy2
)
413 else if (radius
== 0.0)
415 radius1
= radius2
= 0.0;
419 radius1
= (xx1
- xxc
== 0) ?
420 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
421 -atan2(double(yy1
-yyc
), double(xx1
-xxc
)) * RAD2DEG
;
422 radius2
= (xx2
- xxc
== 0) ?
423 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
424 -atan2(double(yy2
-yyc
), double(xx2
-xxc
)) * RAD2DEG
;
426 wxCoord alpha1
= wxCoord(radius1
);
427 wxCoord alpha2
= alpha1
+ wxCoord(radius2
- radius1
);
428 while (alpha2
<= 0) alpha2
+= 360;
429 while (alpha1
> 360) alpha1
-= 360;
431 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
432 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
434 if ( !m_brushSelected
)
436 m_MGLDC
->fillEllipseArc(xxc
, yyc
, r
, r
, alpha1
, alpha2
);
439 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
441 if ( !m_penSelected
)
443 m_MGLDC
->ellipseArc(xxc
+ m_penOfsX
, yyc
+ m_penOfsY
, r
, r
, alpha1
, alpha2
);
446 CalcBoundingBox(xc
- r
, yc
- r
);
447 CalcBoundingBox(xc
+ r
, yc
+ r
);
450 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
452 wxCHECK_RET( Ok(), wxT("invalid dc") );
454 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
456 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
457 if ( !m_penSelected
)
459 m_MGLDC
->pixel(XLOG2DEV(x
), YLOG2DEV(y
));
460 CalcBoundingBox(x
, y
);
464 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int fillStyle
)
466 wxCHECK_RET( Ok(), wxT("invalid dc") );
468 wxCoord xxoffset
= XLOG2DEVREL(xoffset
),
469 yyoffset
= YLOG2DEVREL(yoffset
);
470 MGLPoint
*cpoints
= new MGLPoint
[n
+1];
471 for (int i
= 0; i
< n
; i
++)
473 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
474 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
));
475 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
));
477 cpoints
[n
] = cpoints
[0];
479 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
480 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
482 if ( !m_brushSelected
)
484 m_MGLDC
->fillPolygon(n
, cpoints
, xxoffset
, yyoffset
);
487 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
489 if ( !m_penSelected
)
491 if (m_penOfsX
!= 0 || m_penOfsY
!= 0)
493 for (int i
= 0; i
<= n
; i
++)
495 cpoints
[i
].x
+= m_penOfsX
;
496 cpoints
[i
].y
+= m_penOfsY
;
499 m_MGLDC
->polyLine(n
+1, cpoints
);
505 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
507 wxCHECK_RET( Ok(), wxT("invalid dc") );
509 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
511 MGLPoint
*cpoints
= new MGLPoint
[n
];
512 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
513 if ( !m_penSelected
)
515 for (int i
= 0; i
< n
; i
++)
517 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
518 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
+ xoffset
) /*+ m_penOfsX*/);
519 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
+ yoffset
) /*+ m_penOfsY*/);
521 m_MGLDC
->polyLine(n
, cpoints
);
526 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
528 wxCHECK_RET( Ok(), wxT("invalid dc") );
530 wxCoord xx
= XLOG2DEV(x
);
531 wxCoord yy
= YLOG2DEV(y
);
532 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
533 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
535 if ( ww
== 0 || hh
== 0 ) return;
548 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
549 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
551 if ( !m_brushSelected
)
553 m_MGLDC
->fillRect(xx
, yy
, xx
+ ww
, yy
+ hh
);
556 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
558 if ( !m_penSelected
)
560 m_MGLDC
->rect(xx
+ m_penOfsX
, yy
+ m_penOfsY
,
561 xx
+ ww
+ m_penOfsX
, yy
+ hh
+ m_penOfsY
);
564 CalcBoundingBox(x
, y
);
565 CalcBoundingBox(x
+ width
, y
+ height
);
568 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
570 wxCHECK_RET( Ok(), wxT("invalid dc") );
573 radius
= -radius
* ((width
< height
) ? width
: height
);
575 wxCoord xx
= XLOG2DEV(x
);
576 wxCoord yy
= YLOG2DEV(y
);
577 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
578 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
579 wxCoord rr
= XLOG2DEVREL((wxCoord
)radius
);
581 // CMB: handle -ve width and/or height
593 // CMB: if radius is zero use DrawRectangle() instead to avoid
594 // X drawing errors with small radii
597 DrawRectangle(x
, y
, width
, height
);
601 // CMB: draw nothing if transformed w or h is 0
602 if ( ww
== 0 || hh
== 0 ) return;
604 // CMB: ensure dd is not larger than rectangle otherwise we
605 // get an hour glass shape
607 if ( dd
> ww
) dd
= ww
;
608 if ( dd
> hh
) dd
= hh
;
611 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
612 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
614 if (!m_brushSelected
)
616 m_MGLDC
->fillRect(xx
+rr
, yy
, xx
+ww
-rr
, yy
+hh
);
617 m_MGLDC
->fillRect(xx
, yy
+rr
, xx
+ww
, yy
+hh
-rr
);
618 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
619 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
620 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
621 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
624 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
626 if ( !m_penSelected
)
630 m_MGLDC
->line(xx
+rr
+1, yy
, xx
+ww
-rr
, yy
);
631 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
632 m_MGLDC
->line(xx
+ww
, yy
+rr
+1, xx
+ww
, yy
+hh
-rr
);
633 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
634 m_MGLDC
->line(xx
+ww
-rr
, yy
+hh
, xx
+rr
+1, yy
+hh
);
635 m_MGLDC
->ellipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
636 m_MGLDC
->line(xx
, yy
+hh
-rr
, xx
, yy
+rr
+1);
637 m_MGLDC
->ellipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
640 CalcBoundingBox(x
, y
);
641 CalcBoundingBox(x
+ width
, y
+ height
);
644 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
646 wxCHECK_RET( Ok(), wxT("invalid dc") );
648 wxCoord x2
= (x
+width
);
649 wxCoord y2
= (y
+height
);
651 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
652 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
654 if ( !m_brushSelected
)
656 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
657 m_MGLDC
->fillEllipse(rect
);
660 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
662 if ( !m_penSelected
)
664 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
665 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
666 m_MGLDC
->ellipse(rect
);
669 CalcBoundingBox(x
, y
);
670 CalcBoundingBox(x2
, y2
);
673 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
675 wxCHECK_RET( Ok(), wxT("invalid dc") );
680 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
681 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
683 if (!m_brushSelected
) SelectBrush();
684 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
685 m_MGLDC
->fillEllipseArc(rect
, (int)sa
, (int)ea
);
688 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
690 if ( !m_penSelected
)
692 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
693 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
694 m_MGLDC
->ellipseArc(rect
, (int)sa
, (int)ea
);
697 CalcBoundingBox(x
, y
);
698 CalcBoundingBox(x2
, y2
);
701 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
703 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
704 DrawAnyText(text
, x
, y
);
706 // update the bounding box
708 CalcBoundingBox(x
, y
);
709 GetTextExtent(text
, &w
, &h
);
710 CalcBoundingBox(x
+ w
, y
+ h
);
713 bool wxDC::SelectMGLFont()
715 if ( m_mglFont
== NULL
)
717 float scale
= m_scaleY
;
718 bool antialiased
= (GetDepth() > 8);
720 m_mglFont
= m_font
.GetMGLfont_t(scale
, antialiased
);
721 wxCHECK_MSG( m_mglFont
, FALSE
, wxT("invalid font") );
723 m_MGLDC
->useFont(m_mglFont
);
724 wxLogTrace("mgl_font", "useFont(%p)", m_mglFont
);
727 wxNativeEncodingInfo nativeEnc
;
728 wxFontEncoding encoding
= m_font
.GetEncoding();
729 if ( !wxGetNativeFontEncoding(encoding
, &nativeEnc
) ||
730 !wxTestFontEncoding(nativeEnc
) )
733 if ( !wxTheFontMapper
->GetAltForEncoding(encoding
, &nativeEnc
) )
736 nativeEnc
.mglEncoding
= MGL_ENCODING_ASCII
;
739 m_MGLDC
->setTextEncoding(nativeEnc
.mglEncoding
);
745 void wxDC::DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
)
747 wxCHECK_RET( Ok(), wxT("invalid dc") );
752 wxCoord xx
= XLOG2DEV(x
);
753 wxCoord yy
= YLOG2DEV(y
);
755 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
756 m_MGLDC
->setLineStipple(0xFFFF);
757 m_MGLDC
->setPenSize(1, 1);
758 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
761 const wchar_t *c_text
= text
.c_str();
763 const char *c_text
= text
.c_str();
767 // FIXME_MGL - this is a temporary hack in absence of proper
768 // implementation of solid text background in MGL. Once
769 // the bug in MGL is fixed, this code should be nuked
770 // immediately. Note that the code is not 100% correct;
771 // it only works with wxCOPY logical function
772 if ( m_backgroundMode
== wxSOLID
)
774 int w
= m_MGLDC
->textWidth(c_text
);
775 int h
= m_MGLDC
->textHeight();
776 m_MGLDC
->setColor(m_MGLDC
->packColorFast(m_textBackgroundColour
.Red(),
777 m_textBackgroundColour
.Green(), m_textBackgroundColour
.Blue()));
778 m_MGLDC
->fillRect(xx
, yy
, xx
+w
, yy
+h
);
782 m_MGLDC
->setColor(m_MGLDC
->packColorFast(m_textForegroundColour
.Red(),
783 m_textForegroundColour
.Green(), m_textForegroundColour
.Blue()));
784 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(m_textBackgroundColour
.Red(),
785 m_textBackgroundColour
.Green(), m_textBackgroundColour
.Blue()));
787 m_MGLDC
->drawStr(xx
, yy
, c_text
);
790 if ( m_font
.GetUnderlined() )
792 int x1
= xx
, y1
= yy
;
794 int w
= m_MGLDC
->textWidth(c_text
);
795 m_MGLDC
->underScoreLocation(x1
, y1
, c_text
);
796 switch (m_MGLDC
->getTextDirection())
798 case MGL_RIGHT_DIR
: x2
= x1
+ w
, y2
= y1
; break;
799 case MGL_LEFT_DIR
: x2
= x1
- w
, y2
= y1
; break;
800 case MGL_UP_DIR
: x2
= x1
, y2
= y1
- w
; break;
801 case MGL_DOWN_DIR
: x2
= x1
, y2
= y1
+ w
; break;
803 m_MGLDC
->line(x1
, y1
, x2
, y2
);
806 m_penSelected
= m_brushSelected
= FALSE
;
809 void wxDC::DoDrawRotatedText(const wxString
& text
,
810 wxCoord x
, wxCoord y
,
813 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
817 DoDrawText(text
, x
, y
);
820 else if ( angle
== 90.0 )
821 m_MGLDC
->setTextDirection(MGL_UP_DIR
);
822 else if ( angle
== 180.0 )
823 m_MGLDC
->setTextDirection(MGL_LEFT_DIR
);
824 else if ( angle
== 270.0 )
825 m_MGLDC
->setTextDirection(MGL_DOWN_DIR
);
828 // FIXME_MGL -- implement once MGL supports it
829 wxFAIL_MSG(wxT("wxMGL only supports rotated text with angle 0,90,180 or 270"));
833 DrawAnyText(text
, x
, y
);
836 m_MGLDC
->setTextDirection(MGL_RIGHT_DIR
);
839 // ---------------------------------------------------------------------------
841 // ---------------------------------------------------------------------------
843 void wxDC::SelectMGLStipplePen(int style
)
849 case wxDOT
: stipple
= STIPPLE_wxDOT
; break;
850 case wxLONG_DASH
: stipple
= STIPPLE_wxLONG_DASH
; break;
851 case wxSHORT_DASH
: stipple
= STIPPLE_wxSHORT_DASH
; break;
852 case wxDOT_DASH
: stipple
= STIPPLE_wxDOT_DASH
; break;
853 default: stipple
= STIPPLE_wxSOLID
; break;
856 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
857 m_MGLDC
->setLineStipple(stipple
);
858 m_MGLDC
->setPenSize(1, 1);
859 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
860 m_penOfsY
= m_penOfsX
= 0;
863 // Accepted valus of SelectMGLFatPen's 2nd argument
865 wxMGL_SELECT_FROM_PEN
,
866 wxMGL_SELECT_FROM_BRUSH
869 void wxDC::SelectMGLFatPen(int style
, int flag
)
871 MGL_penStyleType penstyle
;
872 const pattern_t
*pattern
= NULL
;
873 pixpattern24_t
*pixPattern
= NULL
;
877 // Since MGL pens may be created from wxBrush or wxPen and we often
878 // switch between pens and brushes, we take advantage of MGL's ability
879 // to have multiple (pix)pattern_t's loaded. We always download pen
880 // to 0th slot and brush to 1st slot.
881 if ( flag
== wxMGL_SELECT_FROM_PEN
)
886 // compute pen's width:
887 if ( m_pen
.GetWidth() <= 1 )
890 m_penOfsX
= m_penOfsY
= 0;
894 wx
= (int)(0.5 + fabs((double) XLOG2DEVREL(m_pen
.GetWidth())));
895 wy
= (int)(0.5 + fabs((double) YLOG2DEVREL(m_pen
.GetWidth())));
901 penstyle
= MGL_BITMAP_TRANSPARENT
;
904 case wxBDIAGONAL_HATCH
: pattern
= &PATTERN_wxBDIAGONAL_HATCH
;
905 penstyle
= MGL_BITMAP_TRANSPARENT
;
907 case wxCROSSDIAG_HATCH
: pattern
= &PATTERN_wxCROSSDIAG_HATCH
;
908 penstyle
= MGL_BITMAP_TRANSPARENT
;
910 case wxFDIAGONAL_HATCH
: pattern
= &PATTERN_wxFDIAGONAL_HATCH
;
911 penstyle
= MGL_BITMAP_TRANSPARENT
;
913 case wxCROSS_HATCH
: pattern
= &PATTERN_wxCROSS_HATCH
;
914 penstyle
= MGL_BITMAP_TRANSPARENT
;
916 case wxHORIZONTAL_HATCH
: pattern
= &PATTERN_wxHORIZONTAL_HATCH
;
917 penstyle
= MGL_BITMAP_TRANSPARENT
;
919 case wxVERTICAL_HATCH
: pattern
= &PATTERN_wxVERTICAL_HATCH
;
920 penstyle
= MGL_BITMAP_TRANSPARENT
;
924 if ( flag
== wxMGL_SELECT_FROM_PEN
)
925 pixPattern
= (pixpattern24_t
*) m_pen
.GetPixPattern();
927 pixPattern
= (pixpattern24_t
*) m_brush
.GetPixPattern();
928 penstyle
= MGL_PIXMAP
;
931 case wxSTIPPLE_MASK_OPAQUE
:
932 pattern
= (pattern_t
*) m_brush
.GetMaskPattern();
933 penstyle
= MGL_BITMAP_OPAQUE
;
938 penstyle
= MGL_BITMAP_SOLID
; break;
941 // ...and finally, pass the pen to MGL:
945 if ( !m_downloadedPatterns
[slot
] )
947 m_MGLDC
->setPenBitmapPattern(slot
, pattern
);
948 m_downloadedPatterns
[slot
] = TRUE
;
950 m_MGLDC
->usePenBitmapPattern(slot
);
955 if ( !m_downloadedPatterns
[slot
] )
963 for (y
= 0; y
< 8; y
++)
964 for (x
= 0; x
< 8; x
++)
965 pix
.b8
.p
[x
][y
] = m_MGLDC
->packColorFast(
966 pixPattern
->p
[x
][y
][0],
967 pixPattern
->p
[x
][y
][1],
968 pixPattern
->p
[x
][y
][2]);
972 for (y
= 0; y
< 8; y
++)
973 for (x
= 0; x
< 8; x
++)
974 pix
.b16
.p
[x
][y
] = m_MGLDC
->packColorFast(
975 pixPattern
->p
[x
][y
][0],
976 pixPattern
->p
[x
][y
][1],
977 pixPattern
->p
[x
][y
][2]);
980 for (y
= 0; y
< 8; y
++)
981 for (x
= 0; x
< 8; x
++)
982 for (c
= 0; c
< 3; c
++)
983 pix
.b24
.p
[x
][y
][c
] = pixPattern
->p
[x
][y
][c
];
986 for (y
= 0; y
< 8; y
++)
987 for (x
= 0; x
< 8; x
++)
988 pix
.b32
.p
[x
][y
] = m_MGLDC
->packColorFast(
989 pixPattern
->p
[x
][y
][0],
990 pixPattern
->p
[x
][y
][1],
991 pixPattern
->p
[x
][y
][2]);
994 wxFAIL_MSG(_T("invalid DC depth"));
997 m_MGLDC
->setPenPixmapPattern(slot
, &pix
);
998 m_downloadedPatterns
[slot
] = TRUE
;
1000 m_MGLDC
->usePenPixmapPattern(slot
);
1003 m_MGLDC
->setLineStyle(MGL_LINE_PENSTYLE
);
1004 m_MGLDC
->setPenStyle(penstyle
);
1005 m_MGLDC
->setPenSize(wy
, wx
);
1008 void wxDC::SelectPen()
1010 wxCHECK_RET( Ok(), wxT("invalid dc") );
1012 wxColour
& clr
= m_pen
.GetColour();
1013 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1014 m_MGLDC
->setColorRGB(clr
.Red(), clr
.Green(), clr
.Blue());
1016 switch (m_pen
.GetStyle())
1025 SelectMGLStipplePen(m_pen
.GetStyle());
1028 case wxBDIAGONAL_HATCH
:
1029 case wxCROSSDIAG_HATCH
:
1030 case wxFDIAGONAL_HATCH
:
1032 case wxHORIZONTAL_HATCH
:
1033 case wxVERTICAL_HATCH
:
1034 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1038 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1044 if ( m_pen
.GetWidth() <= 1 )
1045 SelectMGLStipplePen(wxSOLID
);
1047 SelectMGLFatPen(wxSOLID
, wxMGL_SELECT_FROM_PEN
);
1050 m_penSelected
= TRUE
;
1051 m_brushSelected
= FALSE
;
1054 void wxDC::SelectBrush()
1056 wxCHECK_RET( Ok(), wxT("invalid dc") );
1059 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1061 if ( m_brush
.GetStyle() == wxSTIPPLE_MASK_OPAQUE
)
1063 fg
= m_textForegroundColour
;
1064 bg
= m_textBackgroundColour
;
1068 fg
= m_brush
.GetColour();
1069 bg
= m_backgroundBrush
.GetColour();
1072 m_MGLDC
->setColorRGB(fg
.Red(), fg
.Green(), fg
.Blue());
1073 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(bg
.Red(), bg
.Green(), bg
.Blue()));
1074 m_penSelected
= FALSE
;
1075 m_brushSelected
= TRUE
;
1077 SelectMGLFatPen(m_brush
.GetStyle(), wxMGL_SELECT_FROM_BRUSH
);
1080 void wxDC::SetPen(const wxPen
& pen
)
1082 if ( !pen
.Ok() ) return;
1083 if ( m_pen
== pen
) return;
1085 m_penSelected
= FALSE
;
1086 m_downloadedPatterns
[0] = FALSE
;
1089 void wxDC::SetBrush(const wxBrush
& brush
)
1091 if ( !brush
.Ok() ) return;
1092 if ( m_brush
== brush
) return;
1094 m_brushSelected
= FALSE
;
1095 m_downloadedPatterns
[1] = FALSE
;
1098 void wxDC::SetPalette(const wxPalette
& palette
)
1100 wxCHECK_RET( Ok(), wxT("invalid dc") );
1102 if ( palette
== wxNullPalette
)
1104 if ( m_oldPalette
.Ok() )
1105 SetPalette(m_oldPalette
);
1109 if ( !palette
.Ok() ) return;
1110 if ( m_palette
== palette
) return;
1111 m_oldPalette
= m_palette
;
1112 m_palette
= palette
;
1114 int cnt
= m_palette
.GetColoursCount();
1115 palette_t
*pal
= m_palette
.GetMGLpalette_t();
1116 m_MGLDC
->setPalette(pal
, cnt
, 0);
1117 m_MGLDC
->realizePalette(cnt
, 0, TRUE
);
1120 void wxDC::SetFont(const wxFont
& font
)
1129 void wxDC::SetBackground(const wxBrush
& brush
)
1131 wxCHECK_RET( Ok(), wxT("invalid dc") );
1133 if (!m_backgroundBrush
.Ok()) return;
1135 m_backgroundBrush
= brush
;
1136 wxColour
&clr
= m_backgroundBrush
.GetColour();
1137 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1138 m_MGLDC
->setBackColor(
1139 m_MGLDC
->packColorFast(clr
.Red(), clr
.Green(), clr
.Blue()));
1142 void wxDC::SetBackgroundMode(int mode
)
1144 m_backgroundMode
= mode
;
1145 if ( mode
== wxSOLID
)
1146 m_MGLDC
->setBackMode(MGL_OPAQUE_BACKGROUND
);
1148 m_MGLDC
->setBackMode(MGL_TRANSPARENT_BACKGROUND
);
1151 void wxDC::SetLogicalFunction(int function
)
1153 wxCHECK_RET( Ok(), wxT("invalid dc") );
1155 m_logicalFunction
= function
;
1157 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1158 m_MGLDC
->setWriteMode(LogicalFunctionToMGLRop(m_logicalFunction
));
1161 int wxDC::LogicalFunctionToMGLRop(int logFunc
) const
1163 MGL_writeModeType rop
;
1167 case wxCLEAR
: rop
= MGL_R2_BLACK
; break;
1168 case wxXOR
: rop
= MGL_R2_XORSRC
; break;
1169 case wxINVERT
: rop
= MGL_R2_NOT
; break;
1170 case wxOR_REVERSE
: rop
= MGL_R2_MERGESRCNOT
; break;
1171 case wxAND_REVERSE
: rop
= MGL_R2_MASKSRCNOT
; break;
1172 case wxCOPY
: rop
= MGL_R2_COPYSRC
; break;
1173 case wxAND
: rop
= MGL_R2_MASKSRC
; break;
1174 case wxAND_INVERT
: rop
= MGL_R2_MASKNOTSRC
; break;
1175 case wxNO_OP
: rop
= MGL_R2_NOP
; break;
1176 case wxNOR
: rop
= MGL_R2_NOTMERGESRC
; break;
1177 case wxEQUIV
: rop
= MGL_R2_NOTXORSRC
; break;
1178 case wxSRC_INVERT
: rop
= MGL_R2_NOTCOPYSRC
; break;
1179 case wxOR_INVERT
: rop
= MGL_R2_MERGENOTSRC
; break;
1180 case wxNAND
: rop
= MGL_R2_NOTMASKSRC
; break;
1181 case wxOR
: rop
= MGL_R2_MERGESRC
; break;
1182 case wxSET
: rop
= MGL_R2_WHITE
; break;
1184 wxFAIL_MSG( wxT("unsupported logical function") );
1185 return MGL_REPLACE_MODE
;
1190 bool wxDC::StartDoc(const wxString
& message
)
1192 // We might be previewing, so return TRUE to let it continue.
1200 void wxDC::StartPage()
1204 void wxDC::EndPage()
1208 // ---------------------------------------------------------------------------
1210 // ---------------------------------------------------------------------------
1212 wxCoord
wxDC::GetCharHeight() const
1214 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1215 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1216 return YDEV2LOGREL(m_mglFont
->fontHeight
);
1219 wxCoord
wxDC::GetCharWidth() const
1221 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1222 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1223 // VS: wxT() is intentional, charWidth() has both char and wchar_t version
1224 // VS: YDEV is corrent, it should *not* be XDEV, because font's are only
1225 // scaled according to m_scaleY
1226 return YDEV2LOGREL(m_mglFont
->fontWidth
);
1229 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
1230 wxCoord
*descent
, wxCoord
*externalLeading
,
1231 wxFont
*theFont
) const
1235 if ( theFont
!= NULL
)
1238 wxConstCast(this, wxDC
)->SetFont(*theFont
);
1241 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1242 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return;
1245 // VS: YDEV is corrent, it should *not* be XDEV, because font's are
1246 // only scaled according to m_scaleY
1247 *x
= YDEV2LOGREL(m_MGLDC
->textWidth(string
.c_str()));
1249 *y
= YDEV2LOGREL(m_MGLDC
->textHeight());
1251 *descent
= YDEV2LOGREL(m_mglFont
->descent
);
1252 if ( externalLeading
)
1253 *externalLeading
= YDEV2LOGREL(m_mglFont
->leading
);
1255 if ( theFont
!= NULL
)
1256 wxConstCast(this, wxDC
)->SetFont(oldFont
);
1261 // ---------------------------------------------------------------------------
1263 // ---------------------------------------------------------------------------
1265 void wxDC::ComputeScaleAndOrigin()
1267 double newX
= m_logicalScaleX
* m_userScaleX
;
1268 double newY
= m_logicalScaleY
* m_userScaleY
;
1270 // make sure font will be reloaded before drawing:
1271 if ( newY
!= m_scaleY
)
1273 // make sure m_penOfs{X,Y} will be reevaluated before drawing:
1274 if ( newY
!= m_scaleY
|| newX
!= m_scaleX
)
1275 m_penSelected
= FALSE
;
1277 m_scaleX
= newX
, m_scaleY
= newY
;
1280 void wxDC::SetMapMode(int mode
)
1285 SetLogicalScale(twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
1288 SetLogicalScale(pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
1291 SetLogicalScale(m_mm_to_pix_x
, m_mm_to_pix_y
);
1294 SetLogicalScale(m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0);
1298 SetLogicalScale(1.0, 1.0);
1301 m_mappingMode
= mode
;
1304 void wxDC::SetUserScale( double x
, double y
)
1306 // allow negative ? -> no
1309 ComputeScaleAndOrigin();
1312 void wxDC::SetLogicalScale( double x
, double y
)
1315 m_logicalScaleX
= x
;
1316 m_logicalScaleY
= y
;
1317 ComputeScaleAndOrigin();
1320 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
1322 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
1323 m_logicalOriginY
= y
* m_signY
;
1324 ComputeScaleAndOrigin();
1327 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
1329 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
1330 m_deviceOriginX
= x
;
1331 m_deviceOriginY
= y
;
1332 ComputeScaleAndOrigin();
1335 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
1337 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
1338 m_signX
= (xLeftRight
? 1 : -1);
1339 m_signY
= (yBottomUp
? -1 : 1);
1340 ComputeScaleAndOrigin();
1343 // ---------------------------------------------------------------------------
1344 // coordinates transformations
1345 // ---------------------------------------------------------------------------
1347 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
1349 return ((wxDC
*)this)->XDEV2LOG(x
);
1352 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
1354 return ((wxDC
*)this)->YDEV2LOG(y
);
1357 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
1359 return ((wxDC
*)this)->XDEV2LOGREL(x
);
1362 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
1364 return ((wxDC
*)this)->YDEV2LOGREL(y
);
1367 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
1369 return ((wxDC
*)this)->XLOG2DEV(x
);
1372 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
1374 return ((wxDC
*)this)->YLOG2DEV(y
);
1377 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
1379 return ((wxDC
*)this)->XLOG2DEVREL(x
);
1382 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
1384 return ((wxDC
*)this)->YLOG2DEVREL(y
);
1388 void wxDC::DoGetSize(int *w
, int *h
) const
1390 if (w
) *w
= m_MGLDC
->sizex()+1;
1391 if (h
) *h
= m_MGLDC
->sizey()+1;
1394 void wxDC::DoGetSizeMM(int *width
, int *height
) const
1399 if ( width
) *width
= int(double(w
) / (m_userScaleX
*m_mm_to_pix_x
));
1400 if ( height
) *height
= int(double(h
) / (m_userScaleY
*m_mm_to_pix_y
));
1403 wxSize
wxDC::GetPPI() const
1405 return wxSize(int(double(m_mm_to_pix_x
) * inches2mm
),
1406 int(double(m_mm_to_pix_y
) * inches2mm
));
1410 // ---------------------------------------------------------------------------
1412 // ---------------------------------------------------------------------------
1414 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
1415 wxCoord width
, wxCoord height
,
1416 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1417 int rop
, bool useMask
,
1418 wxCoord xsrcMask
, wxCoord ysrcMask
)
1420 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid dc") );
1421 wxCHECK_MSG( source
, FALSE
, wxT("invalid source dc") );
1423 // transform the source DC coords to the device ones
1424 xsrc
= source
->LogicalToDeviceX(xsrc
);
1425 ysrc
= source
->LogicalToDeviceY(ysrc
);
1427 /* FIXME_MGL: use the mask origin when drawing transparently */
1428 if (xsrcMask
== -1 && ysrcMask
== -1)
1430 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
1434 xsrcMask
= source
->LogicalToDeviceX(xsrcMask
);
1435 ysrcMask
= source
->LogicalToDeviceY(ysrcMask
);
1438 CalcBoundingBox(xdest
, ydest
);
1439 CalcBoundingBox(xdest
+ width
, ydest
+ height
);
1441 /* scale/translate size and position */
1442 wxCoord xx
= XLOG2DEV(xdest
);
1443 wxCoord yy
= YLOG2DEV(ydest
);
1444 wxCoord ww
= XLOG2DEVREL(width
);
1445 wxCoord hh
= YLOG2DEVREL(height
);
1447 if ( source
->m_isMemDC
)
1449 wxMemoryDC
*memDC
= (wxMemoryDC
*) source
;
1450 DoDrawSubBitmap(memDC
->GetSelectedObject(), xsrc
, ysrc
, ww
, hh
,
1451 xdest
, ydest
, rop
, useMask
);
1455 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1456 m_MGLDC
->bitBlt(*source
->GetMGLDC(),
1457 xsrc
, ysrc
, xsrc
+ ww
, ysrc
+ hh
,
1458 xx
, yy
, LogicalFunctionToMGLRop(rop
));
1464 void wxDC::DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
1466 wxCHECK_RET( Ok(), wxT("invalid dc") );
1467 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1469 wxCoord w
= bmp
.GetWidth();
1470 wxCoord h
= bmp
.GetHeight();
1472 DoDrawSubBitmap(bmp
, 0, 0, w
, h
, x
, y
, m_logicalFunction
, useMask
);
1475 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1477 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
1478 DoDrawBitmap((const wxBitmap
&)icon
, x
, y
, (bool)TRUE
);
1482 static inline void DoBitBlt(const wxBitmap
& src
, MGLDevCtx
*dst
,
1483 int sx
, int sy
, int sw
, int sh
,
1484 int dx
, int dy
, int dw
, int dh
,
1485 int rop
, bool useStretching
, bool putSection
)
1487 bitmap_t
*bmp
= src
.GetMGLbitmap_t();
1491 dst
->putBitmap(dx
, dy
, bmp
, rop
);
1493 dst
->putBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
, dx
, dy
, bmp
, rop
);
1498 dst
->stretchBitmap(dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1500 dst
->stretchBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
,
1501 dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1505 void wxDC::DoDrawSubBitmap(const wxBitmap
&bmp
,
1506 wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
1507 wxCoord destx
, wxCoord desty
, int rop
, bool useMask
)
1509 wxCHECK_RET( Ok(), wxT("invalid dc") );
1510 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1512 CalcBoundingBox(x
, y
);
1513 CalcBoundingBox(x
+ w
, y
+ h
);
1515 wxCoord dx
= XLOG2DEV(destx
);
1516 wxCoord dy
= YLOG2DEV(desty
);
1517 wxCoord dw
= XLOG2DEVREL(w
);
1518 wxCoord dh
= YLOG2DEVREL(h
);
1520 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1522 bool useStretching
= ((w
!= dw
) || (h
!= dh
));
1523 bool putSection
= (w
!= bmp
.GetWidth() || h
!= bmp
.GetHeight());
1524 MGL_writeModeType mglRop
= (MGL_writeModeType
)LogicalFunctionToMGLRop(rop
);
1526 if ( bmp
.GetDepth() == 1 )
1528 // Mono bitmaps are handled in special way -- all 1s are drawn in
1529 // foreground colours, all 0s in background colour.
1531 ((wxBitmap
&)bmp
).SetMonoPalette(m_textForegroundColour
, m_textBackgroundColour
);
1534 if ( useMask
&& bmp
.GetMask() )
1536 // Since MGL does not support masks directly (in MGL, mask is handled
1537 // in same way as in wxImage, i.e. there is one "key" color), we
1538 // simulate masked bitblt in 6 steps (same as in MSW):
1540 // 1. Create a temporary bitmap and copy the destination area into it.
1541 // 2. Copy the source area into the temporary bitmap using the
1542 // specified logical function.
1543 // 3. Set the masked area in the temporary bitmap to BLACK by ANDing
1544 // the mask bitmap with the temp bitmap with the foreground colour
1545 // set to WHITE and the bg colour set to BLACK.
1546 // 4. Set the unmasked area in the destination area to BLACK by
1547 // ANDing the mask bitmap with the destination area with the
1548 // foreground colour set to BLACK and the background colour set
1550 // 5. OR the temporary bitmap with the destination area.
1551 // 6. Delete the temporary bitmap.
1553 // This sequence of operations ensures that the source's transparent
1554 // area need not be black, and logical functions are supported.
1556 wxBitmap
*mask
= bmp
.GetMask()->GetBitmap();
1560 if ( GetDepth() <= 8 )
1562 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), NULL
);
1564 tempdc
.SetMGLDC(temp
, FALSE
);
1565 tempdc
.SetPalette(m_palette
);
1570 m_MGLDC
->getPixelFormat(pf
);
1571 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), &pf
);
1574 wxCHECK_RET( temp
->isValid(), wxT("cannot create temporary dc") );
1576 temp
->bitBlt(*m_MGLDC
, dx
, dy
, dx
+ dw
, dy
+ dh
, 0, 0, MGL_REPLACE_MODE
);
1578 DoBitBlt(bmp
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, mglRop
,
1579 useStretching
, putSection
);
1581 mask
->SetMonoPalette(wxColour(0,0,0), wxColour(255,255,255));
1582 DoBitBlt(*mask
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, MGL_R2_MASKSRC
,
1583 useStretching
, putSection
);
1584 DoBitBlt(*mask
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, MGL_R2_MASKNOTSRC
,
1585 useStretching
, putSection
);
1587 m_MGLDC
->bitBlt(*temp
, 0, 0, dw
, dh
, dx
, dy
, MGL_OR_MODE
);
1594 DoBitBlt(bmp
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, mglRop
,
1595 useStretching
, putSection
);