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 ( !m_globalClippingRegion
.IsNull() )
187 SetClippingRegion(m_globalClippingRegion
);
192 void wxDC::InitializeMGLDC()
194 if ( GetDepth() > 8 )
196 wxCurrentDCSwitcher
switcher(m_MGLDC
); // will go away with MGL6
197 m_MGLDC
->setFontBlendMode(MGL_AA_RGBBLEND
);
202 // ---------------------------------------------------------------------------
204 // ---------------------------------------------------------------------------
207 #define DO_SET_CLIPPING_BOX(rg) \
209 wxRect rect = rg.GetBox(); \
210 m_clipX1 = (wxCoord) XDEV2LOG(rect.GetLeft()); \
211 m_clipY1 = (wxCoord) YDEV2LOG(rect.GetTop()); \
212 m_clipX2 = (wxCoord) XDEV2LOG(rect.GetRight()); \
213 m_clipY2 = (wxCoord) YDEV2LOG(rect.GetBottom()); \
216 void wxDC::DoSetClippingRegion(wxCoord cx
, wxCoord cy
, wxCoord cw
, wxCoord ch
)
218 wxCHECK_RET( Ok(), wxT("invalid dc") );
220 wxRect
rect(XLOG2DEV(cx
), YLOG2DEV(cy
), XLOG2DEVREL(cw
), YLOG2DEVREL(ch
));
222 if ( !m_currentClippingRegion
.IsNull() )
223 m_currentClippingRegion
.Intersect(rect
);
225 m_currentClippingRegion
.Union(rect
);
227 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
230 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
233 void wxDC::DoSetClippingRegionAsRegion(const wxRegion
& region
)
235 wxCHECK_RET( Ok(), wxT("invalid dc") );
237 if ( region
.IsEmpty() )
239 DestroyClippingRegion();
245 // check if the DC is scaled or moved, and if yes, then
246 // convert rg to device coordinates:
247 if ( m_deviceOriginX
!= 0 || m_deviceOriginY
!= 0 ||
248 XLOG2DEVREL(500) != 500 || YLOG2DEVREL(500) != 500 )
250 region_t
*mrg
= rg
.GetMGLRegion().rgnPointer();
253 for (s
= mrg
->spans
; s
; s
= s
->next
)
255 s
->y
= YLOG2DEV(s
->y
);
256 for (p
= s
->seg
; p
; p
= p
->next
)
257 p
->x
= XLOG2DEV(p
->x
);
261 if ( !m_currentClippingRegion
.IsNull() )
262 m_currentClippingRegion
.Intersect(rg
);
264 m_currentClippingRegion
.Union(rg
);
266 m_MGLDC
->setClipRegion(m_currentClippingRegion
.GetMGLRegion());
269 DO_SET_CLIPPING_BOX(m_currentClippingRegion
)
272 void wxDC::DestroyClippingRegion()
274 wxCHECK_RET( Ok(), wxT("invalid dc") );
276 if ( !m_globalClippingRegion
.IsNull() )
278 m_MGLDC
->setClipRegion(m_globalClippingRegion
.GetMGLRegion());
279 m_currentClippingRegion
= m_globalClippingRegion
;
284 m_MGLDC
->setClipRect(MGLRect(0, 0, m_MGLDC
->sizex()+1, m_MGLDC
->sizey()+1));
286 m_currentClippingRegion
.Clear();
290 // ---------------------------------------------------------------------------
291 // query capabilities
292 // ---------------------------------------------------------------------------
294 bool wxDC::CanDrawBitmap() const
299 bool wxDC::CanGetTextExtent() const
304 int wxDC::GetDepth() const
306 return m_MGLDC
->getBitsPerPixel();
309 // ---------------------------------------------------------------------------
311 // ---------------------------------------------------------------------------
315 wxCHECK_RET( Ok(), wxT("invalid dc") );
317 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
318 if ( m_backgroundBrush
.GetStyle() != wxTRANSPARENT
)
321 wxBrush oldb
= m_brush
;
322 SetBrush(m_backgroundBrush
);
325 m_MGLDC
->fillRect(0, 0, w
-1, h
-1);
330 void wxDC::DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
, int style
)
332 wxFAIL_MSG( wxT("wxDC::DoFloodFill not implemented") );
335 bool wxDC::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
337 wxCHECK_MSG( col
, FALSE
, _T("NULL colour parameter in wxDC::GetPixel"));
340 m_MGLDC
->unpackColorFast(m_MGLDC
->getPixel(XLOG2DEV(x
), XLOG2DEV(y
)),
346 void wxDC::DoCrossHair(wxCoord x
, wxCoord y
)
348 wxCHECK_RET( Ok(), wxT("invalid dc") );
350 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
355 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
356 if ( !m_penSelected
)
358 wxCoord xx
= XLOG2DEV(x
);
359 wxCoord yy
= YLOG2DEV(y
);
360 m_MGLDC
->line(m_penOfsX
, yy
+ m_penOfsY
, w
-1 + m_penOfsX
, yy
+ m_penOfsY
);
361 m_MGLDC
->line(xx
+ m_penOfsX
, m_penOfsY
, x
+ m_penOfsX
, h
-1 + m_penOfsY
);
362 CalcBoundingBox(0, 0);
363 CalcBoundingBox(w
, h
);
367 void wxDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
369 wxCHECK_RET( Ok(), wxT("invalid dc") );
371 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
373 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
374 if ( !m_penSelected
)
376 m_MGLDC
->lineExt(XLOG2DEV(x1
) + m_penOfsX
, XLOG2DEV(y1
) + m_penOfsY
,
377 XLOG2DEV(x2
) + m_penOfsX
, XLOG2DEV(y2
) + m_penOfsY
,FALSE
);
378 CalcBoundingBox(x1
, y1
);
379 CalcBoundingBox(x2
, y2
);
383 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
384 // and ending at (x2, y2)
385 void wxDC::DoDrawArc(wxCoord x1
, wxCoord y1
,
386 wxCoord x2
, wxCoord y2
,
387 wxCoord xc
, wxCoord yc
)
389 wxCHECK_RET( Ok(), wxT("invalid dc") );
391 wxCoord xx1
= XLOG2DEV(x1
);
392 wxCoord yy1
= YLOG2DEV(y1
);
393 wxCoord xx2
= XLOG2DEV(x2
);
394 wxCoord yy2
= YLOG2DEV(y2
);
395 wxCoord xxc
= XLOG2DEV(xc
);
396 wxCoord yyc
= YLOG2DEV(yc
);
397 double dx
= xx1
- xxc
;
398 double dy
= yy1
- yyc
;
399 double radius
= sqrt((double)(dx
*dx
+dy
*dy
));
400 wxCoord r
= (wxCoord
)radius
;
401 double radius1
, radius2
;
404 if (xx1
== xx2
&& yy1
== yy2
)
409 else if (radius
== 0.0)
411 radius1
= radius2
= 0.0;
415 radius1
= (xx1
- xxc
== 0) ?
416 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
417 -atan2(double(yy1
-yyc
), double(xx1
-xxc
)) * RAD2DEG
;
418 radius2
= (xx2
- xxc
== 0) ?
419 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
420 -atan2(double(yy2
-yyc
), double(xx2
-xxc
)) * RAD2DEG
;
422 wxCoord alpha1
= wxCoord(radius1
);
423 wxCoord alpha2
= alpha1
+ wxCoord(radius2
- radius1
);
424 while (alpha2
<= 0) alpha2
+= 360;
425 while (alpha1
> 360) alpha1
-= 360;
427 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
428 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
430 if ( !m_brushSelected
)
432 m_MGLDC
->fillEllipseArc(xxc
, yyc
, r
, r
, alpha1
, alpha2
);
435 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
437 if ( !m_penSelected
)
439 m_MGLDC
->ellipseArc(xxc
+ m_penOfsX
, yyc
+ m_penOfsY
, r
, r
, alpha1
, alpha2
);
442 CalcBoundingBox(xc
- r
, yc
- r
);
443 CalcBoundingBox(xc
+ r
, yc
+ r
);
446 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
448 wxCHECK_RET( Ok(), wxT("invalid dc") );
450 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
452 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
453 if ( !m_penSelected
)
455 m_MGLDC
->pixel(XLOG2DEV(x
), YLOG2DEV(y
));
456 CalcBoundingBox(x
, y
);
460 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int fillStyle
)
462 wxCHECK_RET( Ok(), wxT("invalid dc") );
464 wxCoord xxoffset
= XLOG2DEVREL(xoffset
),
465 yyoffset
= YLOG2DEVREL(yoffset
);
466 MGLPoint
*cpoints
= new MGLPoint
[n
+1];
467 for (int i
= 0; i
< n
; i
++)
469 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
470 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
));
471 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
));
473 cpoints
[n
] = cpoints
[0];
475 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
476 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
478 if ( !m_brushSelected
)
480 m_MGLDC
->fillPolygon(n
, cpoints
, xxoffset
, yyoffset
);
483 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
485 if ( !m_penSelected
)
487 if (m_penOfsX
!= 0 || m_penOfsY
!= 0)
489 for (int i
= 0; i
<= n
; i
++)
491 cpoints
[i
].x
+= m_penOfsX
;
492 cpoints
[i
].y
+= m_penOfsY
;
495 m_MGLDC
->polyLine(n
+1, cpoints
);
501 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
503 wxCHECK_RET( Ok(), wxT("invalid dc") );
505 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
507 MGLPoint
*cpoints
= new MGLPoint
[n
];
508 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
509 if ( !m_penSelected
)
511 for (int i
= 0; i
< n
; i
++)
513 CalcBoundingBox(points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
514 cpoints
[i
].x
= (int)(XLOG2DEV(points
[i
].x
+ xoffset
) /*+ m_penOfsX*/);
515 cpoints
[i
].y
= (int)(YLOG2DEV(points
[i
].y
+ yoffset
) /*+ m_penOfsY*/);
517 m_MGLDC
->polyLine(n
, cpoints
);
522 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
524 wxCHECK_RET( Ok(), wxT("invalid dc") );
526 wxCoord xx
= XLOG2DEV(x
);
527 wxCoord yy
= YLOG2DEV(y
);
528 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
529 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
531 if ( ww
== 0 || hh
== 0 ) return;
544 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
545 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
547 if ( !m_brushSelected
)
549 m_MGLDC
->fillRect(xx
, yy
, xx
+ ww
, yy
+ hh
);
552 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
554 if ( !m_penSelected
)
556 m_MGLDC
->rect(xx
+ m_penOfsX
, yy
+ m_penOfsY
,
557 xx
+ ww
+ m_penOfsX
, yy
+ hh
+ m_penOfsY
);
560 CalcBoundingBox(x
, y
);
561 CalcBoundingBox(x
+ width
, y
+ height
);
564 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
566 wxCHECK_RET( Ok(), wxT("invalid dc") );
569 radius
= -radius
* ((width
< height
) ? width
: height
);
571 wxCoord xx
= XLOG2DEV(x
);
572 wxCoord yy
= YLOG2DEV(y
);
573 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
574 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
575 wxCoord rr
= XLOG2DEVREL((wxCoord
)radius
);
577 // CMB: handle -ve width and/or height
589 // CMB: if radius is zero use DrawRectangle() instead to avoid
590 // X drawing errors with small radii
593 DrawRectangle(x
, y
, width
, height
);
597 // CMB: draw nothing if transformed w or h is 0
598 if ( ww
== 0 || hh
== 0 ) return;
600 // CMB: ensure dd is not larger than rectangle otherwise we
601 // get an hour glass shape
603 if ( dd
> ww
) dd
= ww
;
604 if ( dd
> hh
) dd
= hh
;
607 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
608 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
610 if (!m_brushSelected
)
612 m_MGLDC
->fillRect(xx
+rr
, yy
, xx
+ww
-rr
, yy
+hh
);
613 m_MGLDC
->fillRect(xx
, yy
+rr
, xx
+ww
, yy
+hh
-rr
);
614 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
615 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
616 m_MGLDC
->fillEllipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
617 m_MGLDC
->fillEllipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
620 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
622 if ( !m_penSelected
)
626 m_MGLDC
->line(xx
+rr
+1, yy
, xx
+ww
-rr
, yy
);
627 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+rr
, rr
, rr
, 0, 90);
628 m_MGLDC
->line(xx
+ww
, yy
+rr
+1, xx
+ww
, yy
+hh
-rr
);
629 m_MGLDC
->ellipseArc(xx
+ww
-rr
, yy
+hh
-rr
, rr
, rr
, 270, 0);
630 m_MGLDC
->line(xx
+ww
-rr
, yy
+hh
, xx
+rr
+1, yy
+hh
);
631 m_MGLDC
->ellipseArc(xx
+rr
, yy
+hh
-rr
, rr
, rr
, 180, 270);
632 m_MGLDC
->line(xx
, yy
+hh
-rr
, xx
, yy
+rr
+1);
633 m_MGLDC
->ellipseArc(xx
+rr
, yy
+rr
, rr
, rr
, 90, 180);
636 CalcBoundingBox(x
, y
);
637 CalcBoundingBox(x
+ width
, y
+ height
);
640 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
642 wxCHECK_RET( Ok(), wxT("invalid dc") );
644 wxCoord x2
= (x
+width
);
645 wxCoord y2
= (y
+height
);
647 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
648 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
650 if ( !m_brushSelected
)
652 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
653 m_MGLDC
->fillEllipse(rect
);
656 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
658 if ( !m_penSelected
)
660 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
661 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
662 m_MGLDC
->ellipse(rect
);
665 CalcBoundingBox(x
, y
);
666 CalcBoundingBox(x2
, y2
);
669 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
671 wxCHECK_RET( Ok(), wxT("invalid dc") );
676 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
677 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
679 if (!m_brushSelected
) SelectBrush();
680 MGLRect
rect(XLOG2DEV(x
), YLOG2DEV(y
), XLOG2DEV(x2
), YLOG2DEV(y2
));
681 m_MGLDC
->fillEllipseArc(rect
, (int)sa
, (int)ea
);
684 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
686 if ( !m_penSelected
)
688 MGLRect
rect(XLOG2DEV(x
) + m_penOfsX
, YLOG2DEV(y
) + m_penOfsY
,
689 XLOG2DEV(x2
) + m_penOfsX
, YLOG2DEV(y2
) + m_penOfsY
);
690 m_MGLDC
->ellipseArc(rect
, (int)sa
, (int)ea
);
693 CalcBoundingBox(x
, y
);
694 CalcBoundingBox(x2
, y2
);
697 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
699 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
700 DrawAnyText(text
, x
, y
);
702 // update the bounding box
704 CalcBoundingBox(x
, y
);
705 GetTextExtent(text
, &w
, &h
);
706 CalcBoundingBox(x
+ w
, y
+ h
);
709 bool wxDC::SelectMGLFont()
711 if ( m_mglFont
== NULL
)
713 float scale
= m_scaleY
;
714 bool antialiased
= (GetDepth() > 8);
716 m_mglFont
= m_font
.GetMGLfont_t(scale
, antialiased
);
717 wxCHECK_MSG( m_mglFont
, FALSE
, wxT("invalid font") );
719 m_MGLDC
->useFont(m_mglFont
);
720 wxLogTrace("mgl_font", "useFont(%p)", m_mglFont
);
723 wxNativeEncodingInfo nativeEnc
;
724 wxFontEncoding encoding
= m_font
.GetEncoding();
725 if ( !wxGetNativeFontEncoding(encoding
, &nativeEnc
) ||
726 !wxTestFontEncoding(nativeEnc
) )
729 if ( !wxTheFontMapper
->GetAltForEncoding(encoding
, &nativeEnc
) )
732 nativeEnc
.mglEncoding
= MGL_ENCODING_ASCII
;
735 m_MGLDC
->setTextEncoding(nativeEnc
.mglEncoding
);
741 void wxDC::DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
)
743 wxCHECK_RET( Ok(), wxT("invalid dc") );
747 m_MGLDC
->setColor(m_MGLDC
->packColorFast(m_textForegroundColour
.Red(),
748 m_textForegroundColour
.Green(), m_textForegroundColour
.Blue()));
749 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(m_textBackgroundColour
.Red(),
750 m_textBackgroundColour
.Green(), m_textBackgroundColour
.Blue()));
753 wxCoord xx
= XLOG2DEV(x
);
754 wxCoord yy
= YLOG2DEV(y
);
756 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
757 m_MGLDC
->setLineStipple(0xFFFF);
758 m_MGLDC
->setPenSize(1, 1);
759 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
762 const wchar_t *c_text
= text
.c_str();
764 const char *c_text
= text
.c_str();
766 m_MGLDC
->drawStr(xx
, yy
, c_text
);
769 if ( m_font
.GetUnderlined() )
771 int x1
= xx
, y1
= yy
;
773 int w
= m_MGLDC
->textWidth(c_text
);
774 m_MGLDC
->underScoreLocation(x1
, y1
, c_text
);
775 switch (m_MGLDC
->getTextDirection())
777 case MGL_RIGHT_DIR
: x2
= x1
+ w
, y2
= y1
; break;
778 case MGL_LEFT_DIR
: x2
= x1
- w
, y2
= y1
; break;
779 case MGL_UP_DIR
: x2
= x1
, y2
= y1
- w
; break;
780 case MGL_DOWN_DIR
: x2
= x1
, y2
= y1
+ w
; break;
782 m_MGLDC
->line(x1
, y1
, x2
, y2
);
785 m_penSelected
= m_brushSelected
= FALSE
;
788 void wxDC::DoDrawRotatedText(const wxString
& text
,
789 wxCoord x
, wxCoord y
,
792 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
796 DoDrawText(text
, x
, y
);
799 else if ( angle
== 90.0 )
800 m_MGLDC
->setTextDirection(MGL_UP_DIR
);
801 else if ( angle
== 180.0 )
802 m_MGLDC
->setTextDirection(MGL_LEFT_DIR
);
803 else if ( angle
== 270.0 )
804 m_MGLDC
->setTextDirection(MGL_DOWN_DIR
);
807 // FIXME_MGL -- implement once MGL supports it
808 wxFAIL_MSG(wxT("wxMGL only supports rotated text with angle 0,90,180 or 270"));
812 DrawAnyText(text
, x
, y
);
815 m_MGLDC
->setTextDirection(MGL_RIGHT_DIR
);
818 // ---------------------------------------------------------------------------
820 // ---------------------------------------------------------------------------
822 void wxDC::SelectMGLStipplePen(int style
)
828 case wxDOT
: stipple
= STIPPLE_wxDOT
; break;
829 case wxLONG_DASH
: stipple
= STIPPLE_wxLONG_DASH
; break;
830 case wxSHORT_DASH
: stipple
= STIPPLE_wxSHORT_DASH
; break;
831 case wxDOT_DASH
: stipple
= STIPPLE_wxDOT_DASH
; break;
832 default: stipple
= STIPPLE_wxSOLID
; break;
835 m_MGLDC
->setLineStyle(MGL_LINE_STIPPLE
);
836 m_MGLDC
->setLineStipple(stipple
);
837 m_MGLDC
->setPenSize(1, 1);
838 m_MGLDC
->setPenStyle(MGL_BITMAP_SOLID
);
839 m_penOfsY
= m_penOfsX
= 0;
842 // Accepted valus of SelectMGLFatPen's 2nd argument
844 wxMGL_SELECT_FROM_PEN
,
845 wxMGL_SELECT_FROM_BRUSH
848 void wxDC::SelectMGLFatPen(int style
, int flag
)
850 MGL_penStyleType penstyle
;
851 const pattern_t
*pattern
= NULL
;
852 pixpattern24_t
*pixPattern
= NULL
;
856 // Since MGL pens may be created from wxBrush or wxPen and we often
857 // switch between pens and brushes, we take advantage of MGL's ability
858 // to have multiple (pix)pattern_t's loaded. We always download pen
859 // to 0th slot and brush to 1st slot.
860 if ( flag
== wxMGL_SELECT_FROM_PEN
)
865 // compute pen's width:
866 if ( m_pen
.GetWidth() <= 1 )
869 m_penOfsX
= m_penOfsY
= 0;
873 wx
= (int)(0.5 + fabs((double) XLOG2DEVREL(m_pen
.GetWidth())));
874 wy
= (int)(0.5 + fabs((double) YLOG2DEVREL(m_pen
.GetWidth())));
880 penstyle
= MGL_BITMAP_TRANSPARENT
;
883 case wxBDIAGONAL_HATCH
: pattern
= &PATTERN_wxBDIAGONAL_HATCH
;
884 penstyle
= MGL_BITMAP_TRANSPARENT
;
886 case wxCROSSDIAG_HATCH
: pattern
= &PATTERN_wxCROSSDIAG_HATCH
;
887 penstyle
= MGL_BITMAP_TRANSPARENT
;
889 case wxFDIAGONAL_HATCH
: pattern
= &PATTERN_wxFDIAGONAL_HATCH
;
890 penstyle
= MGL_BITMAP_TRANSPARENT
;
892 case wxCROSS_HATCH
: pattern
= &PATTERN_wxCROSS_HATCH
;
893 penstyle
= MGL_BITMAP_TRANSPARENT
;
895 case wxHORIZONTAL_HATCH
: pattern
= &PATTERN_wxHORIZONTAL_HATCH
;
896 penstyle
= MGL_BITMAP_TRANSPARENT
;
898 case wxVERTICAL_HATCH
: pattern
= &PATTERN_wxVERTICAL_HATCH
;
899 penstyle
= MGL_BITMAP_TRANSPARENT
;
903 if ( flag
== wxMGL_SELECT_FROM_PEN
)
904 pixPattern
= (pixpattern24_t
*) m_pen
.GetPixPattern();
906 pixPattern
= (pixpattern24_t
*) m_brush
.GetPixPattern();
907 penstyle
= MGL_PIXMAP
;
910 case wxSTIPPLE_MASK_OPAQUE
:
911 pattern
= (pattern_t
*) m_brush
.GetMaskPattern();
912 penstyle
= MGL_BITMAP_OPAQUE
;
917 penstyle
= MGL_BITMAP_SOLID
; break;
920 // ...and finally, pass the pen to MGL:
924 if ( !m_downloadedPatterns
[slot
] )
926 m_MGLDC
->setPenBitmapPattern(slot
, pattern
);
927 m_downloadedPatterns
[slot
] = TRUE
;
929 m_MGLDC
->usePenBitmapPattern(slot
);
934 if ( !m_downloadedPatterns
[slot
] )
942 for (y
= 0; y
< 8; y
++)
943 for (x
= 0; x
< 8; x
++)
944 pix
.b8
.p
[x
][y
] = m_MGLDC
->packColorFast(
945 pixPattern
->p
[x
][y
][0],
946 pixPattern
->p
[x
][y
][1],
947 pixPattern
->p
[x
][y
][2]);
951 for (y
= 0; y
< 8; y
++)
952 for (x
= 0; x
< 8; x
++)
953 pix
.b16
.p
[x
][y
] = m_MGLDC
->packColorFast(
954 pixPattern
->p
[x
][y
][0],
955 pixPattern
->p
[x
][y
][1],
956 pixPattern
->p
[x
][y
][2]);
959 for (y
= 0; y
< 8; y
++)
960 for (x
= 0; x
< 8; x
++)
961 for (c
= 0; c
< 3; c
++)
962 pix
.b24
.p
[x
][y
][c
] = pixPattern
->p
[x
][y
][c
];
965 for (y
= 0; y
< 8; y
++)
966 for (x
= 0; x
< 8; x
++)
967 pix
.b32
.p
[x
][y
] = m_MGLDC
->packColorFast(
968 pixPattern
->p
[x
][y
][0],
969 pixPattern
->p
[x
][y
][1],
970 pixPattern
->p
[x
][y
][2]);
973 wxFAIL_MSG(_T("invalid DC depth"));
976 m_MGLDC
->setPenPixmapPattern(slot
, &pix
);
977 m_downloadedPatterns
[slot
] = TRUE
;
979 m_MGLDC
->usePenPixmapPattern(slot
);
982 m_MGLDC
->setLineStyle(MGL_LINE_PENSTYLE
);
983 m_MGLDC
->setPenStyle(penstyle
);
984 m_MGLDC
->setPenSize(wy
, wx
);
987 void wxDC::SelectPen()
989 wxCHECK_RET( Ok(), wxT("invalid dc") );
991 wxColour
& clr
= m_pen
.GetColour();
992 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
993 m_MGLDC
->setColorRGB(clr
.Red(), clr
.Green(), clr
.Blue());
995 switch (m_pen
.GetStyle())
1004 SelectMGLStipplePen(m_pen
.GetStyle());
1007 case wxBDIAGONAL_HATCH
:
1008 case wxCROSSDIAG_HATCH
:
1009 case wxFDIAGONAL_HATCH
:
1011 case wxHORIZONTAL_HATCH
:
1012 case wxVERTICAL_HATCH
:
1013 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1017 SelectMGLFatPen(m_pen
.GetStyle(), wxMGL_SELECT_FROM_PEN
);
1023 if ( m_pen
.GetWidth() <= 1 )
1024 SelectMGLStipplePen(wxSOLID
);
1026 SelectMGLFatPen(wxSOLID
, wxMGL_SELECT_FROM_PEN
);
1029 m_penSelected
= TRUE
;
1030 m_brushSelected
= FALSE
;
1033 void wxDC::SelectBrush()
1035 wxCHECK_RET( Ok(), wxT("invalid dc") );
1038 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1040 if ( m_brush
.GetStyle() == wxSTIPPLE_MASK_OPAQUE
)
1042 fg
= m_textForegroundColour
;
1043 bg
= m_textBackgroundColour
;
1047 fg
= m_brush
.GetColour();
1048 bg
= m_backgroundBrush
.GetColour();
1051 m_MGLDC
->setColorRGB(fg
.Red(), fg
.Green(), fg
.Blue());
1052 m_MGLDC
->setBackColor(m_MGLDC
->packColorFast(bg
.Red(), bg
.Green(), bg
.Blue()));
1053 m_penSelected
= FALSE
;
1054 m_brushSelected
= TRUE
;
1056 SelectMGLFatPen(m_brush
.GetStyle(), wxMGL_SELECT_FROM_BRUSH
);
1059 void wxDC::SetPen(const wxPen
& pen
)
1061 if ( !pen
.Ok() ) return;
1062 if ( m_pen
== pen
) return;
1064 m_penSelected
= FALSE
;
1065 m_downloadedPatterns
[0] = FALSE
;
1068 void wxDC::SetBrush(const wxBrush
& brush
)
1070 if ( !brush
.Ok() ) return;
1071 if ( m_brush
== brush
) return;
1073 m_brushSelected
= FALSE
;
1074 m_downloadedPatterns
[1] = FALSE
;
1077 void wxDC::SetPalette(const wxPalette
& palette
)
1079 wxCHECK_RET( Ok(), wxT("invalid dc") );
1081 if ( palette
== wxNullPalette
)
1083 SetPalette(m_oldPalette
);
1087 if ( !palette
.Ok() ) return;
1088 if ( m_palette
== palette
) return;
1089 m_oldPalette
= m_palette
;
1090 m_palette
= palette
;
1092 int cnt
= m_palette
.GetColoursCount();
1093 palette_t
*pal
= m_palette
.GetMGLpalette_t();
1094 m_MGLDC
->setPalette(pal
, cnt
, 0);
1095 m_MGLDC
->realizePalette(cnt
, 0, TRUE
);
1098 void wxDC::SetFont(const wxFont
& font
)
1100 wxCHECK_RET( font
.Ok(), wxT("invalid font") );
1105 void wxDC::SetBackground(const wxBrush
& brush
)
1107 wxCHECK_RET( Ok(), wxT("invalid dc") );
1109 if (!m_backgroundBrush
.Ok()) return;
1111 m_backgroundBrush
= brush
;
1112 wxColour
&clr
= m_backgroundBrush
.GetColour();
1113 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1114 m_MGLDC
->setBackColor(
1115 m_MGLDC
->packColorFast(clr
.Red(), clr
.Green(), clr
.Blue()));
1118 void wxDC::SetBackgroundMode(int mode
)
1120 m_backgroundMode
= mode
;
1121 if ( mode
== wxSOLID
)
1122 m_MGLDC
->setBackMode(MGL_OPAQUE_BACKGROUND
);
1124 m_MGLDC
->setBackMode(MGL_TRANSPARENT_BACKGROUND
);
1127 void wxDC::SetLogicalFunction(int function
)
1129 wxCHECK_RET( Ok(), wxT("invalid dc") );
1131 m_logicalFunction
= function
;
1133 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1134 m_MGLDC
->setWriteMode(LogicalFunctionToMGLRop(m_logicalFunction
));
1137 int wxDC::LogicalFunctionToMGLRop(int logFunc
) const
1139 MGL_writeModeType rop
;
1143 case wxCLEAR
: rop
= MGL_R2_BLACK
; break;
1144 case wxXOR
: rop
= MGL_R2_XORSRC
; break;
1145 case wxINVERT
: rop
= MGL_R2_NOT
; break;
1146 case wxOR_REVERSE
: rop
= MGL_R2_MERGESRCNOT
; break;
1147 case wxAND_REVERSE
: rop
= MGL_R2_MASKSRCNOT
; break;
1148 case wxCOPY
: rop
= MGL_R2_COPYSRC
; break;
1149 case wxAND
: rop
= MGL_R2_MASKSRC
; break;
1150 case wxAND_INVERT
: rop
= MGL_R2_MASKNOTSRC
; break;
1151 case wxNO_OP
: rop
= MGL_R2_NOP
; break;
1152 case wxNOR
: rop
= MGL_R2_NOTMERGESRC
; break;
1153 case wxEQUIV
: rop
= MGL_R2_NOTXORSRC
; break;
1154 case wxSRC_INVERT
: rop
= MGL_R2_NOTCOPYSRC
; break;
1155 case wxOR_INVERT
: rop
= MGL_R2_MERGENOTSRC
; break;
1156 case wxNAND
: rop
= MGL_R2_NOTMASKSRC
; break;
1157 case wxOR
: rop
= MGL_R2_MERGESRC
; break;
1158 case wxSET
: rop
= MGL_R2_WHITE
; break;
1160 wxFAIL_MSG( wxT("unsupported logical function") );
1161 return MGL_REPLACE_MODE
;
1166 bool wxDC::StartDoc(const wxString
& message
)
1168 // We might be previewing, so return TRUE to let it continue.
1176 void wxDC::StartPage()
1180 void wxDC::EndPage()
1184 // ---------------------------------------------------------------------------
1186 // ---------------------------------------------------------------------------
1188 wxCoord
wxDC::GetCharHeight() const
1190 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1191 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1192 return YDEV2LOGREL(m_mglFont
->fontHeight
);
1195 wxCoord
wxDC::GetCharWidth() const
1197 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1198 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return -1;
1199 // VS: wxT() is intentional, charWidth() has both char and wchar_t version
1200 // VS: YDEV is corrent, it should *not* be XDEV, because font's are only
1201 // scaled according to m_scaleY
1202 return YDEV2LOGREL(m_mglFont
->fontWidth
);
1205 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
1206 wxCoord
*descent
, wxCoord
*externalLeading
,
1207 wxFont
*theFont
) const
1211 if ( theFont
!= NULL
)
1214 wxConstCast(this, wxDC
)->SetFont(*theFont
);
1217 wxCurrentDCSwitcher
switcher(m_MGLDC
);
1218 if ( !wxConstCast(this, wxDC
)->SelectMGLFont() ) return;
1221 // VS: YDEV is corrent, it should *not* be XDEV, because font's are
1222 // only scaled according to m_scaleY
1223 *x
= YDEV2LOGREL(m_MGLDC
->textWidth(string
.c_str()));
1225 *y
= YDEV2LOGREL(m_MGLDC
->textHeight());
1227 *descent
= YDEV2LOGREL(m_mglFont
->descent
);
1228 if ( externalLeading
)
1229 *externalLeading
= YDEV2LOGREL(m_mglFont
->leading
);
1231 if ( theFont
!= NULL
)
1232 wxConstCast(this, wxDC
)->SetFont(oldFont
);
1237 // ---------------------------------------------------------------------------
1239 // ---------------------------------------------------------------------------
1241 void wxDC::ComputeScaleAndOrigin()
1243 double newX
= m_logicalScaleX
* m_userScaleX
;
1244 double newY
= m_logicalScaleY
* m_userScaleY
;
1246 // make sure font will be reloaded before drawing:
1247 if ( newY
!= m_scaleY
)
1249 // make sure m_penOfs{X,Y} will be reevaluated before drawing:
1250 if ( newY
!= m_scaleY
|| newX
!= m_scaleX
)
1251 m_penSelected
= FALSE
;
1253 m_scaleX
= newX
, m_scaleY
= newY
;
1256 void wxDC::SetMapMode(int mode
)
1261 SetLogicalScale(twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
1264 SetLogicalScale(pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
1267 SetLogicalScale(m_mm_to_pix_x
, m_mm_to_pix_y
);
1270 SetLogicalScale(m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0);
1274 SetLogicalScale(1.0, 1.0);
1277 m_mappingMode
= mode
;
1280 void wxDC::SetUserScale( double x
, double y
)
1282 // allow negative ? -> no
1285 ComputeScaleAndOrigin();
1288 void wxDC::SetLogicalScale( double x
, double y
)
1291 m_logicalScaleX
= x
;
1292 m_logicalScaleY
= y
;
1293 ComputeScaleAndOrigin();
1296 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
1298 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
1299 m_logicalOriginY
= y
* m_signY
;
1300 ComputeScaleAndOrigin();
1303 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
1305 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
1306 m_deviceOriginX
= x
;
1307 m_deviceOriginY
= y
;
1308 ComputeScaleAndOrigin();
1311 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
1313 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
1314 m_signX
= (xLeftRight
? 1 : -1);
1315 m_signY
= (yBottomUp
? -1 : 1);
1316 ComputeScaleAndOrigin();
1319 // ---------------------------------------------------------------------------
1320 // coordinates transformations
1321 // ---------------------------------------------------------------------------
1323 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
1325 return ((wxDC
*)this)->XDEV2LOG(x
);
1328 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
1330 return ((wxDC
*)this)->YDEV2LOG(y
);
1333 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
1335 return ((wxDC
*)this)->XDEV2LOGREL(x
);
1338 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
1340 return ((wxDC
*)this)->YDEV2LOGREL(y
);
1343 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
1345 return ((wxDC
*)this)->XLOG2DEV(x
);
1348 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
1350 return ((wxDC
*)this)->YLOG2DEV(y
);
1353 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
1355 return ((wxDC
*)this)->XLOG2DEVREL(x
);
1358 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
1360 return ((wxDC
*)this)->YLOG2DEVREL(y
);
1364 void wxDC::DoGetSize(int *w
, int *h
) const
1366 if (w
) *w
= m_MGLDC
->sizex()+1;
1367 if (h
) *h
= m_MGLDC
->sizey()+1;
1370 void wxDC::DoGetSizeMM(int *width
, int *height
) const
1375 if ( width
) *width
= int(double(w
) / (m_userScaleX
*m_mm_to_pix_x
));
1376 if ( height
) *height
= int(double(h
) / (m_userScaleY
*m_mm_to_pix_y
));
1379 wxSize
wxDC::GetPPI() const
1381 return wxSize(int(double(m_mm_to_pix_x
) * inches2mm
),
1382 int(double(m_mm_to_pix_y
) * inches2mm
));
1386 // ---------------------------------------------------------------------------
1388 // ---------------------------------------------------------------------------
1390 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
1391 wxCoord width
, wxCoord height
,
1392 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1393 int rop
, bool useMask
,
1394 wxCoord xsrcMask
, wxCoord ysrcMask
)
1396 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid dc") );
1397 wxCHECK_MSG( source
, FALSE
, wxT("invalid source dc") );
1399 // transform the source DC coords to the device ones
1400 xsrc
= source
->LogicalToDeviceX(xsrc
);
1401 ysrc
= source
->LogicalToDeviceY(ysrc
);
1403 /* FIXME_MGL: use the mask origin when drawing transparently */
1404 if (xsrcMask
== -1 && ysrcMask
== -1)
1406 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
1410 xsrcMask
= source
->LogicalToDeviceX(xsrcMask
);
1411 ysrcMask
= source
->LogicalToDeviceY(ysrcMask
);
1414 CalcBoundingBox(xdest
, ydest
);
1415 CalcBoundingBox(xdest
+ width
, ydest
+ height
);
1417 /* scale/translate size and position */
1418 wxCoord xx
= XLOG2DEV(xdest
);
1419 wxCoord yy
= YLOG2DEV(ydest
);
1420 wxCoord ww
= XLOG2DEVREL(width
);
1421 wxCoord hh
= YLOG2DEVREL(height
);
1423 if ( source
->m_isMemDC
)
1425 wxMemoryDC
*memDC
= (wxMemoryDC
*) source
;
1426 DoDrawSubBitmap(memDC
->GetSelectedObject(), xsrc
, ysrc
, ww
, hh
,
1427 xdest
, ydest
, rop
, useMask
);
1431 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1432 m_MGLDC
->bitBlt(*source
->GetMGLDC(),
1433 xsrc
, ysrc
, xsrc
+ ww
, ysrc
+ hh
,
1434 xx
, yy
, LogicalFunctionToMGLRop(rop
));
1440 void wxDC::DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
1442 wxCHECK_RET( Ok(), wxT("invalid dc") );
1443 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1445 wxCoord w
= bmp
.GetWidth();
1446 wxCoord h
= bmp
.GetHeight();
1448 DoDrawSubBitmap(bmp
, 0, 0, w
, h
, x
, y
, m_logicalFunction
, useMask
);
1451 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1453 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
1454 DoDrawBitmap((const wxBitmap
&)icon
, x
, y
, (bool)TRUE
);
1458 static inline void DoBitBlt(const wxBitmap
& src
, MGLDevCtx
*dst
,
1459 int sx
, int sy
, int sw
, int sh
,
1460 int dx
, int dy
, int dw
, int dh
,
1461 int rop
, bool useStretching
, bool putSection
)
1463 bitmap_t
*bmp
= src
.GetMGLbitmap_t();
1467 dst
->putBitmap(dx
, dy
, bmp
, rop
);
1469 dst
->putBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
, dx
, dy
, bmp
, rop
);
1474 dst
->stretchBitmap(dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1476 dst
->stretchBitmapSection(sx
, sy
, sx
+ sw
, sy
+ sh
,
1477 dx
, dy
, dx
+ dw
, dy
+ dh
, bmp
, rop
);
1481 void wxDC::DoDrawSubBitmap(const wxBitmap
&bmp
,
1482 wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
1483 wxCoord destx
, wxCoord desty
, int rop
, bool useMask
)
1485 wxCHECK_RET( Ok(), wxT("invalid dc") );
1486 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
1488 CalcBoundingBox(x
, y
);
1489 CalcBoundingBox(x
+ w
, y
+ h
);
1491 wxCoord dx
= XLOG2DEV(destx
);
1492 wxCoord dy
= YLOG2DEV(desty
);
1493 wxCoord dw
= XLOG2DEVREL(w
);
1494 wxCoord dh
= YLOG2DEVREL(h
);
1496 m_MGLDC
->makeCurrent(); // will go away with MGL6.0
1498 bool useStretching
= ((w
!= dw
) || (h
!= dh
));
1499 bool putSection
= (w
!= bmp
.GetWidth() || h
!= bmp
.GetHeight());
1500 MGL_writeModeType mglRop
= (MGL_writeModeType
)LogicalFunctionToMGLRop(rop
);
1502 if ( bmp
.GetDepth() == 1 )
1504 // Mono bitmaps are handled in special way -- all 1s are drawn in
1505 // foreground colours, all 0s in background colour.
1507 ((wxBitmap
&)bmp
).SetMonoPalette(m_textForegroundColour
, m_textBackgroundColour
);
1510 if ( useMask
&& bmp
.GetMask() )
1512 // Since MGL does not support masks directly (in MGL, mask is handled
1513 // in same way as in wxImage, i.e. there is one "key" color), we
1514 // simulate masked bitblt in 6 steps (same as in MSW):
1516 // 1. Create a temporary bitmap and copy the destination area into it.
1517 // 2. Copy the source area into the temporary bitmap using the
1518 // specified logical function.
1519 // 3. Set the masked area in the temporary bitmap to BLACK by ANDing
1520 // the mask bitmap with the temp bitmap with the foreground colour
1521 // set to WHITE and the bg colour set to BLACK.
1522 // 4. Set the unmasked area in the destination area to BLACK by
1523 // ANDing the mask bitmap with the destination area with the
1524 // foreground colour set to BLACK and the background colour set
1526 // 5. OR the temporary bitmap with the destination area.
1527 // 6. Delete the temporary bitmap.
1529 // This sequence of operations ensures that the source's transparent
1530 // area need not be black, and logical functions are supported.
1532 wxBitmap
*mask
= bmp
.GetMask()->GetBitmap();
1536 if ( GetDepth() <= 8 )
1538 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), NULL
);
1540 tempdc
.SetMGLDC(temp
, FALSE
);
1541 tempdc
.SetPalette(m_palette
);
1546 m_MGLDC
->getPixelFormat(pf
);
1547 temp
= new MGLMemoryDC(dw
, dh
, GetDepth(), &pf
);
1550 wxCHECK_RET( temp
->isValid(), wxT("cannot create temporary dc") );
1552 temp
->bitBlt(*m_MGLDC
, dx
, dy
, dx
+ dw
, dy
+ dh
, 0, 0, MGL_REPLACE_MODE
);
1554 DoBitBlt(bmp
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, mglRop
,
1555 useStretching
, putSection
);
1557 mask
->SetMonoPalette(wxColour(0,0,0), wxColour(255,255,255));
1558 DoBitBlt(*mask
, temp
, x
, y
, w
, h
, 0, 0, dw
, dh
, MGL_R2_MASKSRC
,
1559 useStretching
, putSection
);
1560 DoBitBlt(*mask
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, MGL_R2_MASKNOTSRC
,
1561 useStretching
, putSection
);
1563 m_MGLDC
->bitBlt(*temp
, 0, 0, dw
, dh
, dx
, dy
, MGL_OR_MODE
);
1570 DoBitBlt(bmp
, m_MGLDC
, x
, y
, w
, h
, dx
, dy
, dw
, dh
, mglRop
,
1571 useStretching
, putSection
);