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 //-----------------------------------------------------------------------------
50 const double mm2inches
= 0.0393700787402;
51 const double inches2mm
= 25.4;
52 const double mm2twips
= 56.6929133859;
53 const double twips2mm
= 0.0176388888889;
54 const double mm2pt
= 2.83464566929;
55 const double pt2mm
= 0.352777777778;
56 const double RAD2DEG
= 180.0 / M_PI
;
59 //-----------------------------------------------------------------------------
61 //-----------------------------------------------------------------------------
63 const ushort STIPPLE_wxDOT
= 0x5555/* - - - - - - - -*/;
64 const ushort STIPPLE_wxLONG_DASH
= 0xF0F0/* ---- ----*/;
65 const ushort STIPPLE_wxSHORT_DASH
= 0xCCCC/*-- -- -- -- */;
66 const ushort STIPPLE_wxDOT_DASH
= 0x3939/* --- - --- -*/;
67 const ushort STIPPLE_wxSOLID
= 0xFFFF/*----------------*/;
69 #define PATTERN_ROW(b7,b6,b5,b4,b3,b2,b1,b0) \
70 ((b7 << 7) | (b6 << 6) | (b5 << 5) | (b4 << 4) | \
71 (b3 << 3) | (b2 << 2) | (b1 << 1) | b0)
73 static pattern_t PATTERN_wxFDIAGONAL_HATCH
= {{
74 PATTERN_ROW(1,0,0,0,0,0,0,0),
75 PATTERN_ROW(0,1,0,0,0,0,0,0),
76 PATTERN_ROW(0,0,1,0,0,0,0,0),
77 PATTERN_ROW(0,0,0,1,0,0,0,0),
78 PATTERN_ROW(0,0,0,0,1,0,0,0),
79 PATTERN_ROW(0,0,0,0,0,1,0,0),
80 PATTERN_ROW(0,0,0,0,0,0,1,0),
81 PATTERN_ROW(0,0,0,0,0,0,0,1),
84 static pattern_t PATTERN_wxCROSSDIAG_HATCH
= {{
85 PATTERN_ROW(1,0,0,0,0,0,0,1),
86 PATTERN_ROW(0,1,0,0,0,0,1,0),
87 PATTERN_ROW(0,0,1,0,0,1,0,0),
88 PATTERN_ROW(0,0,0,1,1,0,0,0),
89 PATTERN_ROW(0,0,0,1,1,0,0,0),
90 PATTERN_ROW(0,0,1,0,0,1,0,0),
91 PATTERN_ROW(0,1,0,0,0,0,1,0),
92 PATTERN_ROW(1,0,0,0,0,0,0,1),
95 static pattern_t PATTERN_wxBDIAGONAL_HATCH
= {{
96 PATTERN_ROW(0,0,0,0,0,0,0,1),
97 PATTERN_ROW(0,0,0,0,0,0,1,0),
98 PATTERN_ROW(0,0,0,0,0,1,0,0),
99 PATTERN_ROW(0,0,0,0,1,0,0,0),
100 PATTERN_ROW(0,0,0,1,0,0,0,0),
101 PATTERN_ROW(0,0,1,0,0,0,0,0),
102 PATTERN_ROW(0,1,0,0,0,0,0,0),
103 PATTERN_ROW(1,0,0,0,0,0,0,0),
106 static pattern_t PATTERN_wxCROSS_HATCH
= {{
107 PATTERN_ROW(0,0,0,1,0,0,0,0),
108 PATTERN_ROW(0,0,0,1,0,0,0,0),
109 PATTERN_ROW(0,0,0,1,0,0,0,0),
110 PATTERN_ROW(1,1,1,1,1,1,1,1),
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(0,0,0,1,0,0,0,0),
117 static pattern_t PATTERN_wxHORIZONTAL_HATCH
= {{
118 PATTERN_ROW(0,0,0,0,0,0,0,0),
119 PATTERN_ROW(0,0,0,0,0,0,0,0),
120 PATTERN_ROW(0,0,0,0,0,0,0,0),
121 PATTERN_ROW(1,1,1,1,1,1,1,1),
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(0,0,0,0,0,0,0,0),
128 static pattern_t PATTERN_wxVERTICAL_HATCH
= {{
129 PATTERN_ROW(0,0,0,1,0,0,0,0),
130 PATTERN_ROW(0,0,0,1,0,0,0,0),
131 PATTERN_ROW(0,0,0,1,0,0,0,0),
132 PATTERN_ROW(0,0,0,1,0,0,0,0),
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),
141 //-----------------------------------------------------------------------------
143 //-----------------------------------------------------------------------------
145 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxDCBase
)
147 // Default constructor
153 m_ok
= FALSE
; // must call SetMGLDevCtx() before using it
155 m_mm_to_pix_x
= (double)wxGetDisplaySize().GetWidth() /
156 (double)wxGetDisplaySizeMM().GetWidth();
157 m_mm_to_pix_y
= (double)wxGetDisplaySize().GetHeight() /
158 (double)wxGetDisplaySizeMM().GetHeight();
160 m_pen
= *wxBLACK_PEN
;
161 m_font
= *wxNORMAL_FONT
;
162 m_brush
= *wxWHITE_BRUSH
;
163 m_penOfsX
= m_penOfsY
= 0;
165 m_penSelected
= m_brushSelected
= FALSE
;
166 m_downloadedPatterns
[0] = m_downloadedPatterns
[1] = FALSE
;
178 void wxDC::SetMGLDC(MGLDevCtx
*mgldc
, bool OwnsMGLDC
)
180 if ( m_OwnsMGLDC
&& m_MGLDC
)
183 m_OwnsMGLDC
= OwnsMGLDC
;
186 if ( mgldc
->getDC()->a
.clipRegion
)
189 mgldc
->getClipRegion(clip
);
190 m_globalClippingRegion
= wxRegion(clip
);
191 // FIXME_MGL -- reuse wxWindows::m_updateRegion ?
192 m_currentClippingRegion
= m_globalClippingRegion
;
199 void wxDC::InitializeMGLDC()
201 if ( GetDepth() > 8 )
203 wxCurrentDCSwitcher
switcher(m_MGLDC
); // will go away with MGL6
204 m_MGLDC
->setFontBlendMode(MGL_AA_RGBBLEND
);
209 // ---------------------------------------------------------------------------
211 // ---------------------------------------------------------------------------
214 #define DO_SET_CLIPPING_BOX(rg) \
216 wxRect rect = rg.GetBox(); \
217 m_clipX1 = (wxCoord) XDEV2LOG(rect.GetLeft()); \
218 m_clipY1 = (wxCoord) YDEV2LOG(rect.GetTop()); \
219 m_clipX2 = (wxCoord) XDEV2LOG(rect.GetRight()); \
220 m_clipY2 = (wxCoord) YDEV2LOG(rect.GetBottom()); \
223 void wxDC::DoSetClippingRegion(wxCoord cx
, wxCoord cy
, wxCoord cw
, wxCoord ch
)
225 wxCHECK_RET( Ok(), wxT("invalid dc") );
227 wxRect
rect(XLOG2DEV(cx
), YLOG2DEV(cy
), XLOG2DEVREL(cw
), YLOG2DEVREL(ch
));
229 if ( !m_currentClippingRegion
.IsNull() )
230 m_currentClippingRegion
.Intersect(rect
);
232 m_currentClippingRegion
.Union(rect
);
234 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
237 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
240 void wxDC::DoSetClippingRegionAsRegion(const wxRegion
& region
)
242 wxCHECK_RET( Ok(), wxT("invalid dc") );
244 if ( region
.IsEmpty() )
246 DestroyClippingRegion();
252 // check if the DC is scaled or moved, and if yes, then
253 // convert rg to device coordinates:
254 if ( m_deviceOriginX
!= 0 || m_deviceOriginY
!= 0 ||
255 XLOG2DEVREL(500) != 500 || YLOG2DEVREL(500) != 500 )
257 region_t
*mrg
= rg
.GetMGLRegion().rgnPointer();
260 for (s
= mrg
->spans
; s
; s
= s
->next
)
262 s
->y
= YLOG2DEV(s
->y
);
263 for (p
= s
->seg
; p
; p
= p
->next
)
264 p
->x
= XLOG2DEV(p
->x
);
268 if ( !m_currentClippingRegion
.IsNull() )
269 m_currentClippingRegion
.Intersect(rg
);
271 m_currentClippingRegion
.Union(rg
);
273 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
276 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
279 void wxDC::DestroyClippingRegion()
281 wxCHECK_RET( Ok(), wxT("invalid dc") );
283 if ( !m_globalClippingRegion
.IsNull() )
285 m_MGLDC
->setClipRegion(m_globalClippingRegion
.GetMGLRegion());
286 m_currentClippingRegion
= m_globalClippingRegion
;
291 m_MGLDC
->setClipRect(MGLRect(0, 0, m_MGLDC
->sizex(), m_MGLDC
->sizey()));
293 m_currentClippingRegion
.Clear();
297 // ---------------------------------------------------------------------------
298 // query capabilities
299 // ---------------------------------------------------------------------------
301 bool wxDC::CanDrawBitmap() const
306 bool wxDC::CanGetTextExtent() const
311 int wxDC::GetDepth() const
313 return m_MGLDC
->getBitsPerPixel();
316 // ---------------------------------------------------------------------------
318 // ---------------------------------------------------------------------------
322 wxCHECK_RET( Ok(), wxT("invalid dc") );
324 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
325 if ( m_backgroundBrush
.GetStyle() != wxTRANSPARENT
)
328 wxBrush oldb
= m_brush
;
329 SetBrush(m_backgroundBrush
);
332 m_MGLDC
->fillRect(0, 0, w
-1, h
-1);
337 void wxDC::DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
, int style
)
339 wxFAIL_MSG( wxT("wxDC::DoFloodFill not implemented") );
342 bool wxDC::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
344 wxCHECK_MSG( col
, FALSE
, _T("NULL colour parameter in wxDC::GetPixel"));
347 m_MGLDC
->unpackColorFast(m_MGLDC
->getPixel(XLOG2DEV(x
), XLOG2DEV(y
)),
353 void wxDC::DoCrossHair(wxCoord x
, wxCoord y
)
355 wxCHECK_RET( Ok(), wxT("invalid dc") );
357 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
362 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
363 if ( !m_penSelected
)
365 wxCoord xx
= XLOG2DEV(x
);
366 wxCoord yy
= YLOG2DEV(y
);
367 m_MGLDC
->line(m_penOfsX
, yy
+ m_penOfsY
, w
-1 + m_penOfsX
, yy
+ m_penOfsY
);
368 m_MGLDC
->line(xx
+ m_penOfsX
, m_penOfsY
, x
+ m_penOfsX
, h
-1 + m_penOfsY
);
369 CalcBoundingBox(0, 0);
370 CalcBoundingBox(w
, h
);
374 void wxDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
376 wxCHECK_RET( Ok(), wxT("invalid dc") );
378 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
380 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
381 if ( !m_penSelected
)
383 m_MGLDC
->line(XLOG2DEV(x1
) + m_penOfsX
, XLOG2DEV(y1
) + m_penOfsY
,
384 XLOG2DEV(x2
) + m_penOfsX
, XLOG2DEV(y2
) + m_penOfsY
);
385 CalcBoundingBox(x1
, y1
);
386 CalcBoundingBox(x2
, y2
);
390 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
391 // and ending at (x2, y2)
392 void wxDC::DoDrawArc(wxCoord x1
, wxCoord y1
,
393 wxCoord x2
, wxCoord y2
,
394 wxCoord xc
, wxCoord yc
)
396 wxCHECK_RET( Ok(), wxT("invalid dc") );
398 wxCoord xx1
= XLOG2DEV(x1
);
399 wxCoord yy1
= YLOG2DEV(y1
);
400 wxCoord xx2
= XLOG2DEV(x2
);
401 wxCoord yy2
= YLOG2DEV(y2
);
402 wxCoord xxc
= XLOG2DEV(xc
);
403 wxCoord yyc
= YLOG2DEV(yc
);
404 double dx
= xx1
- xxc
;
405 double dy
= yy1
- yyc
;
406 double radius
= sqrt((double)(dx
*dx
+dy
*dy
));
407 wxCoord r
= (wxCoord
)radius
;
408 double radius1
, radius2
;
411 if (xx1
== xx2
&& yy1
== yy2
)
416 else if (radius
== 0.0)
418 radius1
= radius2
= 0.0;
422 radius1
= (xx1
- xxc
== 0) ?
423 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
424 -atan2(double(yy1
-yyc
), double(xx1
-xxc
)) * RAD2DEG
;
425 radius2
= (xx2
- xxc
== 0) ?
426 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
427 -atan2(double(yy2
-yyc
), double(xx2
-xxc
)) * RAD2DEG
;
429 wxCoord alpha1
= wxCoord(radius1
);
430 wxCoord alpha2
= alpha1
+ wxCoord(radius2
- radius1
);
431 while (alpha2
<= 0) alpha2
+= 360;
432 while (alpha1
> 360) alpha1
-= 360;
434 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
435 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
437 if ( !m_brushSelected
)
439 m_MGLDC
->fillEllipseArc(xxc
, yyc
, r
, r
, alpha1
, alpha2
);
442 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
444 if ( !m_penSelected
)
446 m_MGLDC
->ellipseArc(xxc
+ m_penOfsX
, yyc
+ m_penOfsY
, r
, r
, alpha1
, alpha2
);
449 CalcBoundingBox(xc
- r
, yc
- r
);
450 CalcBoundingBox(xc
+ r
, yc
+ r
);
453 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
455 wxCHECK_RET( Ok(), wxT("invalid dc") );
457 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
459 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
460 if ( !m_penSelected
)
462 m_MGLDC
->pixel(XLOG2DEV(x
), YLOG2DEV(y
));
463 CalcBoundingBox(x
, y
);
467 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int fillStyle
)
469 wxCHECK_RET( Ok(), wxT("invalid dc") );
471 wxCoord xxoffset
= XLOG2DEVREL(xoffset
),
472 yyoffset
= YLOG2DEVREL(yoffset
);
473 MGLPoint
*cpoints
= new MGLPoint
[n
+1];
474 for (int i
= 0; i
< n
; i
++)
476 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
477 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
));
478 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
));
480 cpoints
[n
] = cpoints
[0];
482 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
483 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
485 if ( !m_brushSelected
)
487 m_MGLDC
->fillPolygon(n
, cpoints
, xxoffset
, yyoffset
);
490 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
492 if ( !m_penSelected
)
494 if (m_penOfsX
!= 0 || m_penOfsY
!= 0)
496 for (int i
= 0; i
<= n
; i
++)
498 cpoints
[i
].x
+= m_penOfsX
;
499 cpoints
[i
].y
+= m_penOfsY
;
502 m_MGLDC
->polyLine(n
+1, cpoints
);
508 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
510 wxCHECK_RET( Ok(), wxT("invalid dc") );
512 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
514 MGLPoint
*cpoints
= new MGLPoint
[n
];
515 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
516 if ( !m_penSelected
)
518 for (int i
= 0; i
< n
; i
++)
520 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
521 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
+ xoffset
) /*+ m_penOfsX*/);
522 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
+ yoffset
) /*+ m_penOfsY*/);
524 m_MGLDC
->polyLine(n
, cpoints
);
529 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
531 wxCHECK_RET( Ok(), wxT("invalid dc") );
533 wxCoord xx
= XLOG2DEV(x
);
534 wxCoord yy
= YLOG2DEV(y
);
535 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
536 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
538 if ( ww
== 0 || hh
== 0 ) return;
551 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
552 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
554 if ( !m_brushSelected
)
556 m_MGLDC
->fillRect(xx
, yy
, xx
+ ww
, yy
+ hh
);
559 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
561 if ( !m_penSelected
)
563 m_MGLDC
->rect(xx
+ m_penOfsX
, yy
+ m_penOfsY
,
564 xx
+ ww
+ m_penOfsX
, yy
+ hh
+ m_penOfsY
);
567 CalcBoundingBox(x
, y
);
568 CalcBoundingBox(x
+ width
, y
+ height
);
571 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
573 wxCHECK_RET( Ok(), wxT("invalid dc") );
576 radius
= -radius
* ((width
< height
) ? width
: height
);
578 wxCoord xx
= XLOG2DEV(x
);
579 wxCoord yy
= YLOG2DEV(y
);
580 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
581 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
582 wxCoord rr
= XLOG2DEVREL((wxCoord
)radius
);
584 // CMB: handle -ve width and/or height
596 // CMB: if radius is zero use DrawRectangle() instead to avoid
597 // X drawing errors with small radii
600 DrawRectangle(x
, y
, width
, height
);
604 // CMB: draw nothing if transformed w or h is 0
605 if ( ww
== 0 || hh
== 0 ) return;
607 // CMB: ensure dd is not larger than rectangle otherwise we
608 // get an hour glass shape
610 if ( dd
> ww
) dd
= ww
;
611 if ( dd
> hh
) dd
= hh
;
614 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
615 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
617 if (!m_brushSelected
)
619 m_MGLDC
->fillRect(xx
+rr
, yy
, xx
+ww
-rr
, yy
+hh
);
620 m_MGLDC
->fillRect(xx
, yy
+rr
, xx
+ww
, yy
+hh
-rr
);
621 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
622 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
623 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
624 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
627 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
629 if ( !m_penSelected
)
633 m_MGLDC
->line(xx
+rr
+1, yy
, xx
+ww
-rr
, yy
);
634 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
635 m_MGLDC
->line(xx
+ww
, yy
+rr
+1, xx
+ww
, yy
+hh
-rr
);
636 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
637 m_MGLDC
->line(xx
+ww
-rr
, yy
+hh
, xx
+rr
+1, yy
+hh
);
638 m_MGLDC
->ellipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
639 m_MGLDC
->line(xx
, yy
+hh
-rr
, xx
, yy
+rr
+1);
640 m_MGLDC
->ellipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
643 CalcBoundingBox(x
, y
);
644 CalcBoundingBox(x
+ width
, y
+ height
);
647 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
649 wxCHECK_RET( Ok(), wxT("invalid dc") );
651 wxCoord x2
= (x
+width
);
652 wxCoord y2
= (y
+height
);
654 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
655 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
657 if ( !m_brushSelected
)
659 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
660 m_MGLDC
->fillEllipse(rect
);
663 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
665 if ( !m_penSelected
)
667 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
668 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
669 m_MGLDC
->ellipse(rect
);
672 CalcBoundingBox(x
, y
);
673 CalcBoundingBox(x2
, y2
);
676 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
678 wxCHECK_RET( Ok(), wxT("invalid dc") );
683 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
684 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
686 if (!m_brushSelected
) SelectBrush();
687 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
688 m_MGLDC
->fillEllipseArc(rect
, (int)sa
, (int)ea
);
691 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
693 if ( !m_penSelected
)
695 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
696 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
697 m_MGLDC
->ellipseArc(rect
, (int)sa
, (int)ea
);
700 CalcBoundingBox(x
, y
);
701 CalcBoundingBox(x2
, y2
);
704 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
706 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
707 DrawAnyText(text
, x
, y
);
709 // update the bounding box
711 CalcBoundingBox(x
, y
);
712 GetTextExtent(text
, &w
, &h
);
713 CalcBoundingBox(x
+ w
, y
+ h
);
716 bool wxDC::SelectMGLFont()
718 if ( m_mglFont
== NULL
)
720 float scale
= m_scaleY
;
721 bool antialiased
= (GetDepth() > 8);
723 m_mglFont
= m_font
.GetMGLfont_t(scale
, antialiased
);
724 wxCHECK_MSG( m_mglFont
, FALSE
, wxT("invalid font") );
726 m_MGLDC
->useFont(m_mglFont
);
727 wxLogTrace("mgl_font", "useFont(%p)", m_mglFont
);
730 wxNativeEncodingInfo nativeEnc
;
731 wxFontEncoding encoding
= m_font
.GetEncoding();
732 if ( !wxGetNativeFontEncoding(encoding
, &nativeEnc
) ||
733 !wxTestFontEncoding(nativeEnc
) )
736 if ( !wxTheFontMapper
->GetAltForEncoding(encoding
, &nativeEnc
) )
739 nativeEnc
.mglEncoding
= MGL_ENCODING_ASCII
;
742 m_MGLDC
->setTextEncoding(nativeEnc
.mglEncoding
);
748 void wxDC::DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
)
750 wxCHECK_RET( Ok(), wxT("invalid dc") );
754 m_MGLDC
->setColor(m_MGLDC
->packColorFast(m_textForegroundColour
.Red(),
755 m_textForegroundColour
.Green(), m_textForegroundColour
.Blue()));
756 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(m_textBackgroundColour
.Red(),
757 m_textBackgroundColour
.Green(), m_textBackgroundColour
.Blue()));
760 wxCoord xx
= XLOG2DEV(x
);
761 wxCoord yy
= YLOG2DEV(y
);
763 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
764 m_MGLDC
->setLineStipple(0xFFFF);
765 m_MGLDC
->setPenSize(1, 1);
766 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
769 const wchar_t *c_text
= text
.c_str();
771 const char *c_text
= text
.c_str();
773 m_MGLDC
->drawStr(xx
, yy
, c_text
);
776 if ( m_font
.GetUnderlined() )
778 int x1
= xx
, y1
= yy
;
780 int w
= m_MGLDC
->textWidth(c_text
);
781 m_MGLDC
->underScoreLocation(x1
, y1
, c_text
);
782 switch (m_MGLDC
->getTextDirection())
784 case MGL_RIGHT_DIR
: x2
= x1
+ w
, y2
= y1
; break;
785 case MGL_LEFT_DIR
: x2
= x1
- w
, y2
= y1
; break;
786 case MGL_UP_DIR
: x2
= x1
, y2
= y1
- w
; break;
787 case MGL_DOWN_DIR
: x2
= x1
, y2
= y1
+ w
; break;
789 m_MGLDC
->line(x1
, y1
, x2
, y2
);
792 m_penSelected
= m_brushSelected
= FALSE
;
795 void wxDC::DoDrawRotatedText(const wxString
& text
,
796 wxCoord x
, wxCoord y
,
799 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
803 DoDrawText(text
, x
, y
);
806 else if ( angle
== 90.0 )
807 m_MGLDC
->setTextDirection(MGL_UP_DIR
);
808 else if ( angle
== 180.0 )
809 m_MGLDC
->setTextDirection(MGL_LEFT_DIR
);
810 else if ( angle
== 270.0 )
811 m_MGLDC
->setTextDirection(MGL_DOWN_DIR
);
814 // FIXME_MGL -- implement once MGL supports it
815 wxFAIL_MSG(wxT("wxMGL only supports rotated text with angle 0,90,180 or 270"));
819 DrawAnyText(text
, x
, y
);
822 m_MGLDC
->setTextDirection(MGL_RIGHT_DIR
);
825 // ---------------------------------------------------------------------------
827 // ---------------------------------------------------------------------------
829 void wxDC::SelectMGLStipplePen(int style
)
835 case wxDOT
: stipple
= STIPPLE_wxDOT
; break;
836 case wxLONG_DASH
: stipple
= STIPPLE_wxLONG_DASH
; break;
837 case wxSHORT_DASH
: stipple
= STIPPLE_wxSHORT_DASH
; break;
838 case wxDOT_DASH
: stipple
= STIPPLE_wxDOT_DASH
; break;
839 default: stipple
= STIPPLE_wxSOLID
; break;
842 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
843 m_MGLDC
->setLineStipple(stipple
);
844 m_MGLDC
->setPenSize(1, 1);
845 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
846 m_penOfsY
= m_penOfsX
= 0;
849 // Accepted valus of SelectMGLFatPen's 2nd argument
851 wxMGL_SELECT_FROM_PEN
,
852 wxMGL_SELECT_FROM_BRUSH
855 void wxDC::SelectMGLFatPen(int style
, int flag
)
857 MGL_penStyleType penstyle
;
858 const pattern_t
*pattern
= NULL
;
859 pixpattern24_t
*pixPattern
= NULL
;
863 // Since MGL pens may be created from wxBrush or wxPen and we often
864 // switch between pens and brushes, we take advantage of MGL's ability
865 // to have multiple (pix)pattern_t's loaded. We always download pen
866 // to 0th slot and brush to 1st slot.
867 if ( flag
== wxMGL_SELECT_FROM_PEN
)
872 // compute pen's width:
873 if ( m_pen
.GetWidth() <= 1 )
876 m_penOfsX
= m_penOfsY
= 0;
880 wx
= (int)(0.5 + fabs((double) XLOG2DEVREL(m_pen
.GetWidth())));
881 wy
= (int)(0.5 + fabs((double) YLOG2DEVREL(m_pen
.GetWidth())));
887 penstyle
= MGL_BITMAP_TRANSPARENT
;
890 case wxBDIAGONAL_HATCH
: pattern
= &PATTERN_wxBDIAGONAL_HATCH
;
891 penstyle
= MGL_BITMAP_TRANSPARENT
;
893 case wxCROSSDIAG_HATCH
: pattern
= &PATTERN_wxCROSSDIAG_HATCH
;
894 penstyle
= MGL_BITMAP_TRANSPARENT
;
896 case wxFDIAGONAL_HATCH
: pattern
= &PATTERN_wxFDIAGONAL_HATCH
;
897 penstyle
= MGL_BITMAP_TRANSPARENT
;
899 case wxCROSS_HATCH
: pattern
= &PATTERN_wxCROSS_HATCH
;
900 penstyle
= MGL_BITMAP_TRANSPARENT
;
902 case wxHORIZONTAL_HATCH
: pattern
= &PATTERN_wxHORIZONTAL_HATCH
;
903 penstyle
= MGL_BITMAP_TRANSPARENT
;
905 case wxVERTICAL_HATCH
: pattern
= &PATTERN_wxVERTICAL_HATCH
;
906 penstyle
= MGL_BITMAP_TRANSPARENT
;
910 if ( flag
== wxMGL_SELECT_FROM_PEN
)
911 pixPattern
= (pixpattern24_t
*) m_pen
.GetPixPattern();
913 pixPattern
= (pixpattern24_t
*) m_brush
.GetPixPattern();
914 penstyle
= MGL_PIXMAP
;
917 case wxSTIPPLE_MASK_OPAQUE
:
918 pattern
= (pattern_t
*) m_brush
.GetMaskPattern();
919 penstyle
= MGL_BITMAP_OPAQUE
;
924 penstyle
= MGL_BITMAP_SOLID
; break;
927 // ...and finally, pass the pen to MGL:
931 if ( !m_downloadedPatterns
[slot
] )
933 m_MGLDC
->setPenBitmapPattern(slot
, pattern
);
934 m_downloadedPatterns
[slot
] = TRUE
;
936 m_MGLDC
->usePenBitmapPattern(slot
);
941 if ( !m_downloadedPatterns
[slot
] )
949 for (y
= 0; y
< 8; y
++)
950 for (x
= 0; x
< 8; x
++)
951 pix
.b8
.p
[x
][y
] = m_MGLDC
->packColorFast(
952 pixPattern
->p
[x
][y
][0],
953 pixPattern
->p
[x
][y
][1],
954 pixPattern
->p
[x
][y
][2]);
958 for (y
= 0; y
< 8; y
++)
959 for (x
= 0; x
< 8; x
++)
960 pix
.b16
.p
[x
][y
] = m_MGLDC
->packColorFast(
961 pixPattern
->p
[x
][y
][0],
962 pixPattern
->p
[x
][y
][1],
963 pixPattern
->p
[x
][y
][2]);
966 for (y
= 0; y
< 8; y
++)
967 for (x
= 0; x
< 8; x
++)
968 for (c
= 0; c
< 3; c
++)
969 pix
.b24
.p
[x
][y
][c
] = pixPattern
->p
[x
][y
][c
];
972 for (y
= 0; y
< 8; y
++)
973 for (x
= 0; x
< 8; x
++)
974 pix
.b32
.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 wxFAIL_MSG(_T("invalid DC depth"));
983 m_MGLDC
->setPenPixmapPattern(slot
, &pix
);
984 m_downloadedPatterns
[slot
] = TRUE
;
986 m_MGLDC
->usePenPixmapPattern(slot
);
989 m_MGLDC
->setLineStyle(MGL_LINE_PENSTYLE
);
990 m_MGLDC
->setPenStyle(penstyle
);
991 m_MGLDC
->setPenSize(wy
, wx
);
994 void wxDC::SelectPen()
996 wxCHECK_RET( Ok(), wxT("invalid dc") );
998 wxColour
& clr
= m_pen
.GetColour();
999 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1000 m_MGLDC
->setColorRGB(clr
.Red(), clr
.Green(), clr
.Blue());
1002 switch (m_pen
.GetStyle())
1011 SelectMGLStipplePen(m_pen
.GetStyle());
1014 case wxBDIAGONAL_HATCH
:
1015 case wxCROSSDIAG_HATCH
:
1016 case wxFDIAGONAL_HATCH
:
1018 case wxHORIZONTAL_HATCH
:
1019 case wxVERTICAL_HATCH
:
1020 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1024 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1030 if ( m_pen
.GetWidth() <= 1 )
1031 SelectMGLStipplePen(wxSOLID
);
1033 SelectMGLFatPen(wxSOLID
, wxMGL_SELECT_FROM_PEN
);
1036 m_penSelected
= TRUE
;
1037 m_brushSelected
= FALSE
;
1040 void wxDC::SelectBrush()
1042 wxCHECK_RET( Ok(), wxT("invalid dc") );
1045 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1047 if ( m_brush
.GetStyle() == wxSTIPPLE_MASK_OPAQUE
)
1049 fg
= m_textForegroundColour
;
1050 bg
= m_textBackgroundColour
;
1054 fg
= m_brush
.GetColour();
1055 bg
= m_backgroundBrush
.GetColour();
1058 m_MGLDC
->setColorRGB(fg
.Red(), fg
.Green(), fg
.Blue());
1059 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(bg
.Red(), bg
.Green(), bg
.Blue()));
1060 m_penSelected
= FALSE
;
1061 m_brushSelected
= TRUE
;
1063 SelectMGLFatPen(m_brush
.GetStyle(), wxMGL_SELECT_FROM_BRUSH
);
1066 void wxDC::SetPen(const wxPen
& pen
)
1068 if ( !pen
.Ok() ) return;
1069 if ( m_pen
== pen
) return;
1071 m_penSelected
= FALSE
;
1072 m_downloadedPatterns
[0] = FALSE
;
1075 void wxDC::SetBrush(const wxBrush
& brush
)
1077 if ( !brush
.Ok() ) return;
1078 if ( m_brush
== brush
) return;
1080 m_brushSelected
= FALSE
;
1081 m_downloadedPatterns
[1] = FALSE
;
1084 void wxDC::SetPalette(const wxPalette
& palette
)
1086 wxCHECK_RET( Ok(), wxT("invalid dc") );
1088 if ( palette
== wxNullPalette
)
1090 SetPalette(m_oldPalette
);
1094 if ( !palette
.Ok() ) return;
1095 if ( m_palette
== palette
) return;
1096 m_oldPalette
= m_palette
;
1097 m_palette
= palette
;
1099 int cnt
= m_palette
.GetColoursCount();
1100 palette_t
*pal
= m_palette
.GetMGLpalette_t();
1101 m_MGLDC
->setPalette(pal
, cnt
, 0);
1102 m_MGLDC
->realizePalette(cnt
, 0, TRUE
);
1105 void wxDC::SetFont(const wxFont
& font
)
1107 wxCHECK_RET( font
.Ok(), wxT("invalid font") );
1112 void wxDC::SetBackground(const wxBrush
& brush
)
1114 wxCHECK_RET( Ok(), wxT("invalid dc") );
1116 if (!m_backgroundBrush
.Ok()) return;
1118 m_backgroundBrush
= brush
;
1119 wxColour
&clr
= m_backgroundBrush
.GetColour();
1120 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1121 m_MGLDC
->setBackColor(
1122 m_MGLDC
->packColorFast(clr
.Red(), clr
.Green(), clr
.Blue()));
1125 void wxDC::SetBackgroundMode(int mode
)
1127 m_backgroundMode
= mode
;
1128 if ( mode
== wxSOLID
)
1129 m_MGLDC
->setBackMode(MGL_OPAQUE_BACKGROUND
);
1131 m_MGLDC
->setBackMode(MGL_TRANSPARENT_BACKGROUND
);
1134 void wxDC::SetLogicalFunction(int function
)
1136 wxCHECK_RET( Ok(), wxT("invalid dc") );
1138 m_logicalFunction
= function
;
1140 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1141 m_MGLDC
->setWriteMode(LogicalFunctionToMGLRop(m_logicalFunction
));
1144 int wxDC::LogicalFunctionToMGLRop(int logFunc
) const
1146 MGL_writeModeType rop
;
1150 case wxCLEAR
: rop
= MGL_R2_BLACK
; break;
1151 case wxXOR
: rop
= MGL_R2_XORSRC
; break;
1152 case wxINVERT
: rop
= MGL_R2_NOT
; break;
1153 case wxOR_REVERSE
: rop
= MGL_R2_MERGESRCNOT
; break;
1154 case wxAND_REVERSE
: rop
= MGL_R2_MASKSRCNOT
; break;
1155 case wxCOPY
: rop
= MGL_R2_COPYSRC
; break;
1156 case wxAND
: rop
= MGL_R2_MASKSRC
; break;
1157 case wxAND_INVERT
: rop
= MGL_R2_MASKNOTSRC
; break;
1158 case wxNO_OP
: rop
= MGL_R2_NOP
; break;
1159 case wxNOR
: rop
= MGL_R2_NOTMERGESRC
; break;
1160 case wxEQUIV
: rop
= MGL_R2_NOTXORSRC
; break;
1161 case wxSRC_INVERT
: rop
= MGL_R2_NOTCOPYSRC
; break;
1162 case wxOR_INVERT
: rop
= MGL_R2_MERGENOTSRC
; break;
1163 case wxNAND
: rop
= MGL_R2_NOTMASKSRC
; break;
1164 case wxOR
: rop
= MGL_R2_MERGESRC
; break;
1165 case wxSET
: rop
= MGL_R2_WHITE
; break;
1167 wxFAIL_MSG( wxT("unsupported logical function") );
1168 return MGL_REPLACE_MODE
;
1173 bool wxDC::StartDoc(const wxString
& message
)
1175 // We might be previewing, so return TRUE to let it continue.
1183 void wxDC::StartPage()
1187 void wxDC::EndPage()
1191 // ---------------------------------------------------------------------------
1193 // ---------------------------------------------------------------------------
1195 wxCoord
wxDC::GetCharHeight() const
1197 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1198 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1199 return YDEV2LOGREL(m_mglFont
->fontHeight
);
1202 wxCoord
wxDC::GetCharWidth() const
1204 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1205 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1206 // VS: wxT() is intentional, charWidth() has both char and wchar_t version
1207 // VS: YDEV is corrent, it should *not* be XDEV, because font's are only
1208 // scaled according to m_scaleY
1209 return YDEV2LOGREL(m_mglFont
->fontWidth
);
1212 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
1213 wxCoord
*descent
, wxCoord
*externalLeading
,
1214 wxFont
*theFont
) const
1218 if ( theFont
!= NULL
)
1221 wxConstCast(this, wxDC
)->SetFont(*theFont
);
1224 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1225 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return;
1228 // VS: YDEV is corrent, it should *not* be XDEV, because font's are
1229 // only scaled according to m_scaleY
1230 *x
= YDEV2LOGREL(m_MGLDC
->textWidth(string
.c_str()));
1232 *y
= YDEV2LOGREL(m_MGLDC
->textHeight());
1234 *descent
= YDEV2LOGREL(m_mglFont
->descent
);
1235 if ( externalLeading
)
1236 *externalLeading
= YDEV2LOGREL(m_mglFont
->leading
);
1238 if ( theFont
!= NULL
)
1239 wxConstCast(this, wxDC
)->SetFont(oldFont
);
1244 // ---------------------------------------------------------------------------
1246 // ---------------------------------------------------------------------------
1248 void wxDC::ComputeScaleAndOrigin()
1250 double newX
= m_logicalScaleX
* m_userScaleX
;
1251 double newY
= m_logicalScaleY
* m_userScaleY
;
1253 // make sure font will be reloaded before drawing:
1254 if ( newY
!= m_scaleY
)
1256 // make sure m_penOfs{X,Y} will be reevaluated before drawing:
1257 if ( newY
!= m_scaleY
|| newX
!= m_scaleX
)
1258 m_penSelected
= FALSE
;
1260 m_scaleX
= newX
, m_scaleY
= newY
;
1263 void wxDC::SetMapMode(int mode
)
1268 SetLogicalScale(twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
1271 SetLogicalScale(pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
1274 SetLogicalScale(m_mm_to_pix_x
, m_mm_to_pix_y
);
1277 SetLogicalScale(m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0);
1281 SetLogicalScale(1.0, 1.0);
1284 m_mappingMode
= mode
;
1287 void wxDC::SetUserScale( double x
, double y
)
1289 // allow negative ? -> no
1292 ComputeScaleAndOrigin();
1295 void wxDC::SetLogicalScale( double x
, double y
)
1298 m_logicalScaleX
= x
;
1299 m_logicalScaleY
= y
;
1300 ComputeScaleAndOrigin();
1303 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
1305 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
1306 m_logicalOriginY
= y
* m_signY
;
1307 ComputeScaleAndOrigin();
1310 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
1312 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
1313 m_deviceOriginX
= x
;
1314 m_deviceOriginY
= y
;
1315 ComputeScaleAndOrigin();
1318 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
1320 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
1321 m_signX
= (xLeftRight
? 1 : -1);
1322 m_signY
= (yBottomUp
? -1 : 1);
1323 ComputeScaleAndOrigin();
1326 // ---------------------------------------------------------------------------
1327 // coordinates transformations
1328 // ---------------------------------------------------------------------------
1330 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
1332 return ((wxDC
*)this)->XDEV2LOG(x
);
1335 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
1337 return ((wxDC
*)this)->YDEV2LOG(y
);
1340 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
1342 return ((wxDC
*)this)->XDEV2LOGREL(x
);
1345 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
1347 return ((wxDC
*)this)->YDEV2LOGREL(y
);
1350 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
1352 return ((wxDC
*)this)->XLOG2DEV(x
);
1355 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
1357 return ((wxDC
*)this)->YLOG2DEV(y
);
1360 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
1362 return ((wxDC
*)this)->XLOG2DEVREL(x
);
1365 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
1367 return ((wxDC
*)this)->YLOG2DEVREL(y
);
1371 void wxDC::DoGetSize(int *w
, int *h
) const
1373 if (w
) *w
= m_MGLDC
->sizex();
1374 if (h
) *h
= m_MGLDC
->sizey();
1377 void wxDC::DoGetSizeMM(int *width
, int *height
) const
1382 if ( width
) *width
= int(double(w
) / (m_userScaleX
*m_mm_to_pix_x
));
1383 if ( height
) *height
= int(double(h
) / (m_userScaleY
*m_mm_to_pix_y
));
1386 wxSize
wxDC::GetPPI() const
1388 return wxSize(int(double(m_mm_to_pix_x
) * inches2mm
),
1389 int(double(m_mm_to_pix_y
) * inches2mm
));
1393 // ---------------------------------------------------------------------------
1395 // ---------------------------------------------------------------------------
1397 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
1398 wxCoord width
, wxCoord height
,
1399 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1400 int rop
, bool useMask
,
1401 wxCoord xsrcMask
, wxCoord ysrcMask
)
1403 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid dc") );
1404 wxCHECK_MSG( source
, FALSE
, wxT("invalid source dc") );
1406 // transform the source DC coords to the device ones
1407 xsrc
= source
->LogicalToDeviceX(xsrc
);
1408 ysrc
= source
->LogicalToDeviceY(ysrc
);
1410 /* FIXME_MGL: use the mask origin when drawing transparently */
1411 if (xsrcMask
== -1 && ysrcMask
== -1)
1413 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
1417 xsrcMask
= source
->LogicalToDeviceX(xsrcMask
);
1418 ysrcMask
= source
->LogicalToDeviceY(ysrcMask
);
1421 CalcBoundingBox(xdest
, ydest
);
1422 CalcBoundingBox(xdest
+ width
, ydest
+ height
);
1424 /* scale/translate size and position */
1425 wxCoord xx
= XLOG2DEV(xdest
);
1426 wxCoord yy
= YLOG2DEV(ydest
);
1427 wxCoord ww
= XLOG2DEVREL(width
);
1428 wxCoord hh
= YLOG2DEVREL(height
);
1430 if ( source
->m_isMemDC
)
1432 wxMemoryDC
*memDC
= (wxMemoryDC
*) source
;
1433 DoDrawSubBitmap(memDC
->GetSelectedObject(), xsrc
, ysrc
, ww
, hh
,
1434 xdest
, ydest
, rop
, useMask
);
1438 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1439 m_MGLDC
->bitBlt(*source
->GetMGLDC(),
1440 xsrc
, ysrc
, xsrc
+ ww
, ysrc
+ hh
,
1441 xx
, yy
, LogicalFunctionToMGLRop(rop
));
1447 void wxDC::DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
1449 wxCHECK_RET( Ok(), wxT("invalid dc") );
1450 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1452 wxCoord w
= bmp
.GetWidth();
1453 wxCoord h
= bmp
.GetHeight();
1455 DoDrawSubBitmap(bmp
, 0, 0, w
, h
, x
, y
, m_logicalFunction
, useMask
);
1458 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1460 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
1461 DoDrawBitmap((const wxBitmap
&)icon
, x
, y
, (bool)TRUE
);
1465 static inline void DoBitBlt(const wxBitmap
& src
, MGLDevCtx
*dst
,
1466 int sx
, int sy
, int sw
, int sh
,
1467 int dx
, int dy
, int dw
, int dh
,
1468 int rop
, bool useStretching
, bool putSection
)
1470 bitmap_t
*bmp
= src
.GetMGLbitmap_t();
1474 dst
->putBitmap(dx
, dy
, bmp
, rop
);
1476 dst
->putBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
, dx
, dy
, bmp
, rop
);
1481 dst
->stretchBitmap(dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1483 dst
->stretchBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
,
1484 dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1488 void wxDC::DoDrawSubBitmap(const wxBitmap
&bmp
,
1489 wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
1490 wxCoord destx
, wxCoord desty
, int rop
, bool useMask
)
1492 wxCHECK_RET( Ok(), wxT("invalid dc") );
1493 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1495 CalcBoundingBox(x
, y
);
1496 CalcBoundingBox(x
+ w
, y
+ h
);
1498 wxCoord dx
= XLOG2DEV(destx
);
1499 wxCoord dy
= YLOG2DEV(desty
);
1500 wxCoord dw
= XLOG2DEVREL(w
);
1501 wxCoord dh
= YLOG2DEVREL(h
);
1503 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1505 bool useStretching
= ((w
!= dw
) || (h
!= dh
));
1506 bool putSection
= (w
!= bmp
.GetWidth() || h
!= bmp
.GetHeight());
1507 MGL_writeModeType mglRop
= (MGL_writeModeType
)LogicalFunctionToMGLRop(rop
);
1509 if ( bmp
.GetDepth() == 1 )
1511 // Mono bitmaps are handled in special way -- all 1s are drawn in
1512 // foreground colours, all 0s in background colour.
1514 ((wxBitmap
&)bmp
).SetMonoPalette(m_textForegroundColour
, m_textBackgroundColour
);
1517 if ( useMask
&& bmp
.GetMask() )
1519 // Since MGL does not support masks directly (in MGL, mask is handled
1520 // in same way as in wxImage, i.e. there is one "key" color), we
1521 // simulate masked bitblt in 6 steps (same as in MSW):
1523 // 1. Create a temporary bitmap and copy the destination area into it.
1524 // 2. Copy the source area into the temporary bitmap using the
1525 // specified logical function.
1526 // 3. Set the masked area in the temporary bitmap to BLACK by ANDing
1527 // the mask bitmap with the temp bitmap with the foreground colour
1528 // set to WHITE and the bg colour set to BLACK.
1529 // 4. Set the unmasked area in the destination area to BLACK by
1530 // ANDing the mask bitmap with the destination area with the
1531 // foreground colour set to BLACK and the background colour set
1533 // 5. OR the temporary bitmap with the destination area.
1534 // 6. Delete the temporary bitmap.
1536 // This sequence of operations ensures that the source's transparent
1537 // area need not be black, and logical functions are supported.
1539 wxBitmap
*mask
= bmp
.GetMask()->GetBitmap();
1543 if ( GetDepth() <= 8 )
1545 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), NULL
);
1547 tempdc
.SetMGLDC(temp
, FALSE
);
1548 tempdc
.SetPalette(m_palette
);
1553 m_MGLDC
->getPixelFormat(pf
);
1554 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), &pf
);
1557 wxCHECK_RET( temp
->isValid(), wxT("cannot create temporary dc") );
1559 temp
->bitBlt(*m_MGLDC
, dx
, dy
, dx
+ dw
, dy
+ dh
, 0, 0, MGL_REPLACE_MODE
);
1561 DoBitBlt(bmp
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, mglRop
,
1562 useStretching
, putSection
);
1564 mask
->SetMonoPalette(wxColour(0,0,0), wxColour(255,255,255));
1565 DoBitBlt(*mask
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, MGL_R2_MASKSRC
,
1566 useStretching
, putSection
);
1567 DoBitBlt(*mask
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, MGL_R2_MASKNOTSRC
,
1568 useStretching
, putSection
);
1570 m_MGLDC
->bitBlt(*temp
, 0, 0, dw
, dh
, dx
, dy
, MGL_OR_MODE
);
1577 DoBitBlt(bmp
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, mglRop
,
1578 useStretching
, putSection
);