1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dcgraph.cpp
3 // Purpose: graphics context methods common to all platforms
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 #if defined(__BORLANDC__)
19 #if wxUSE_GRAPHICS_CONTEXT
21 #include "wx/graphics.h"
22 #include "wx/dcgraph.h"
26 #include "wx/bitmap.h"
27 #include "wx/dcmemory.h"
28 #include "wx/region.h"
31 #include "wx/dcclient.h"
33 #ifdef __WXOSX_OR_COCOA__
34 #ifdef __WXOSX_IPHONE__
35 #include <CoreGraphics/CoreGraphics.h>
37 #include <ApplicationServices/ApplicationServices.h>
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 static const double RAD2DEG
= 180.0 / M_PI
;
47 //-----------------------------------------------------------------------------
49 //-----------------------------------------------------------------------------
51 static inline double DegToRad(double deg
)
53 return (deg
* M_PI
) / 180.0;
56 static wxCompositionMode
TranslateRasterOp(wxRasterOperationMode function
)
61 // since we are supporting alpha, _OVER is closer to the intention than _SOURCE
62 // since the latter would overwrite even when alpha is not set to opaque
63 return wxCOMPOSITION_OVER
;
65 case wxOR
: // src OR dst
66 return wxCOMPOSITION_ADD
;
69 return wxCOMPOSITION_DEST
; // ignore the source
72 return wxCOMPOSITION_CLEAR
;// clear dst
74 case wxXOR
: // src XOR dst
75 return wxCOMPOSITION_XOR
;
77 case wxAND
: // src AND dst
78 case wxAND_INVERT
: // (NOT src) AND dst
79 case wxAND_REVERSE
:// src AND (NOT dst)
80 case wxEQUIV
: // (NOT src) XOR dst
81 case wxINVERT
: // NOT dst
82 case wxNAND
: // (NOT src) OR (NOT dst)
83 case wxNOR
: // (NOT src) AND (NOT dst)
84 case wxOR_INVERT
: // (NOT src) OR dst
85 case wxOR_REVERSE
: // src OR (NOT dst)
87 case wxSRC_INVERT
: // NOT src
91 return wxCOMPOSITION_INVALID
;
94 //-----------------------------------------------------------------------------
96 //-----------------------------------------------------------------------------
98 IMPLEMENT_DYNAMIC_CLASS(wxGCDC
, wxDC
)
100 wxGCDC::wxGCDC(const wxWindowDC
& dc
) :
101 wxDC( new wxGCDCImpl( this, dc
) )
105 wxGCDC::wxGCDC( const wxMemoryDC
& dc
) :
106 wxDC( new wxGCDCImpl( this, dc
) )
110 #if wxUSE_PRINTING_ARCHITECTURE
111 wxGCDC::wxGCDC( const wxPrinterDC
& dc
) :
112 wxDC( new wxGCDCImpl( this, dc
) )
117 #if defined(__WXMSW__) && wxUSE_ENH_METAFILE
118 wxGCDC::wxGCDC(const wxEnhMetaFileDC
& dc
)
119 : wxDC(new wxGCDCImpl(this, dc
))
124 wxGCDC::wxGCDC(wxGraphicsContext
* context
) :
125 wxDC( new wxGCDCImpl( this ) )
127 SetGraphicsContext(context
);
131 wxDC( new wxGCDCImpl( this ) )
139 wxGraphicsContext
* wxGCDC::GetGraphicsContext() const
141 if (!m_pimpl
) return NULL
;
142 wxGCDCImpl
*gc_impl
= (wxGCDCImpl
*) m_pimpl
;
143 return gc_impl
->GetGraphicsContext();
146 void wxGCDC::SetGraphicsContext( wxGraphicsContext
* ctx
)
148 if (!m_pimpl
) return;
149 wxGCDCImpl
*gc_impl
= (wxGCDCImpl
*) m_pimpl
;
150 gc_impl
->SetGraphicsContext( ctx
);
153 IMPLEMENT_ABSTRACT_CLASS(wxGCDCImpl
, wxDCImpl
)
155 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
) :
161 void wxGCDCImpl::SetGraphicsContext( wxGraphicsContext
* ctx
)
163 delete m_graphicContext
;
164 m_graphicContext
= ctx
;
165 if ( m_graphicContext
)
167 m_matrixOriginal
= m_graphicContext
->GetTransform();
169 // apply the stored transformations to the passed in context
170 ComputeScaleAndOrigin();
171 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
172 m_graphicContext
->SetPen( m_pen
);
173 m_graphicContext
->SetBrush( m_brush
);
177 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxWindowDC
& dc
) :
181 SetGraphicsContext( wxGraphicsContext::Create(dc
) );
182 m_window
= dc
.GetWindow();
185 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxMemoryDC
& dc
) :
189 wxGraphicsContext
* context
;
190 context
= wxGraphicsContext::Create(dc
);
191 SetGraphicsContext( context
);
194 #if wxUSE_PRINTING_ARCHITECTURE
195 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxPrinterDC
& dc
) :
199 SetGraphicsContext( wxGraphicsContext::Create(dc
) );
203 #if defined(__WXMSW__) && wxUSE_ENH_METAFILE
204 wxGCDCImpl::wxGCDCImpl(wxDC
*owner
, const wxEnhMetaFileDC
& dc
)
208 SetGraphicsContext(wxGraphicsContext::Create(dc
));
212 void wxGCDCImpl::Init()
216 m_mm_to_pix_x
= mm2pt
;
217 m_mm_to_pix_y
= mm2pt
;
219 m_pen
= *wxBLACK_PEN
;
220 m_font
= *wxNORMAL_FONT
;
221 m_brush
= *wxWHITE_BRUSH
;
223 m_graphicContext
= wxGraphicsContext::Create();
224 m_logicalFunctionSupported
= true;
228 wxGCDCImpl::~wxGCDCImpl()
230 delete m_graphicContext
;
233 void wxGCDCImpl::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
236 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid DC") );
237 wxCHECK_RET( bmp
.IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid bitmap") );
239 int w
= bmp
.GetWidth();
240 int h
= bmp
.GetHeight();
241 if ( bmp
.GetDepth() == 1 )
243 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
244 m_graphicContext
->SetBrush( wxBrush( m_textBackgroundColour
, wxSOLID
) );
245 m_graphicContext
->DrawRectangle( x
, y
, w
, h
);
246 m_graphicContext
->SetBrush( wxBrush( m_textForegroundColour
, wxSOLID
) );
247 m_graphicContext
->DrawBitmap( bmp
, x
, y
, w
, h
);
248 m_graphicContext
->SetBrush( m_graphicContext
->CreateBrush(m_brush
));
249 m_graphicContext
->SetPen( m_graphicContext
->CreatePen(m_pen
));
251 else // not a monochrome bitmap, handle it normally
253 // make a copy in case we need to remove its mask, if we don't modify
254 // it the copy is cheap as bitmaps are reference-counted
255 wxBitmap
bmpCopy(bmp
);
256 if ( !useMask
&& bmp
.GetMask() )
257 bmpCopy
.SetMask(NULL
);
259 m_graphicContext
->DrawBitmap( bmpCopy
, x
, y
, w
, h
);
263 void wxGCDCImpl::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
265 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid DC") );
266 wxCHECK_RET( icon
.IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid icon") );
268 wxCoord w
= icon
.GetWidth();
269 wxCoord h
= icon
.GetHeight();
271 m_graphicContext
->DrawIcon( icon
, x
, y
, w
, h
);
274 bool wxGCDCImpl::StartDoc( const wxString
& WXUNUSED(message
) )
279 void wxGCDCImpl::EndDoc()
283 void wxGCDCImpl::StartPage()
287 void wxGCDCImpl::EndPage()
291 void wxGCDCImpl::Flush()
293 m_graphicContext
->Flush();
296 void wxGCDCImpl::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
298 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetClippingRegion - invalid DC") );
300 m_graphicContext
->Clip( x
, y
, w
, h
);
303 m_clipX1
= wxMax( m_clipX1
, x
);
304 m_clipY1
= wxMax( m_clipY1
, y
);
305 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
306 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
319 void wxGCDCImpl::DoSetDeviceClippingRegion( const wxRegion
®ion
)
321 // region is in device coordinates
322 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetDeviceClippingRegion - invalid DC") );
326 //DestroyClippingRegion();
330 wxRegion
logRegion( region
);
333 logRegion
.Offset( DeviceToLogicalX(0), DeviceToLogicalY(0) );
334 logRegion
.GetBox( x
, y
, w
, h
);
336 m_graphicContext
->Clip( logRegion
);
339 m_clipX1
= wxMax( m_clipX1
, x
);
340 m_clipY1
= wxMax( m_clipY1
, y
);
341 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
342 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
355 void wxGCDCImpl::DestroyClippingRegion()
357 m_graphicContext
->ResetClip();
358 // currently the clip eg of a window extends to the area between the scrollbars
359 // so we must explicitly make sure it only covers the area we want it to draw
361 GetOwner()->GetSize( &width
, &height
) ;
362 m_graphicContext
->Clip( DeviceToLogicalX(0) , DeviceToLogicalY(0) , DeviceToLogicalXRel(width
), DeviceToLogicalYRel(height
) );
364 m_graphicContext
->SetPen( m_pen
);
365 m_graphicContext
->SetBrush( m_brush
);
370 void wxGCDCImpl::DoGetSizeMM( int* width
, int* height
) const
374 GetOwner()->GetSize( &w
, &h
);
376 *width
= long( double(w
) / (m_scaleX
* m_mm_to_pix_x
) );
378 *height
= long( double(h
) / (m_scaleY
* m_mm_to_pix_y
) );
381 void wxGCDCImpl::SetTextForeground( const wxColour
&col
)
383 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextForeground - invalid DC") );
385 // don't set m_textForegroundColour to an invalid colour as we'd crash
386 // later then (we use m_textForegroundColour.GetColor() without checking
390 m_textForegroundColour
= col
;
391 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
395 void wxGCDCImpl::SetTextBackground( const wxColour
&col
)
397 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextBackground - invalid DC") );
399 m_textBackgroundColour
= col
;
402 wxSize
wxGCDCImpl::GetPPI() const
404 return wxSize(72, 72);
407 int wxGCDCImpl::GetDepth() const
412 void wxGCDCImpl::ComputeScaleAndOrigin()
414 wxDCImpl::ComputeScaleAndOrigin();
416 if ( m_graphicContext
)
418 m_matrixCurrent
= m_graphicContext
->CreateMatrix();
420 // the logical origin sets the origin to have new coordinates
421 m_matrixCurrent
.Translate( m_deviceOriginX
- m_logicalOriginX
* m_signX
* m_scaleX
,
422 m_deviceOriginY
-m_logicalOriginY
* m_signY
* m_scaleY
);
424 m_matrixCurrent
.Scale( m_scaleX
* m_signX
, m_scaleY
* m_signY
);
426 m_graphicContext
->SetTransform( m_matrixOriginal
);
427 m_graphicContext
->ConcatTransform( m_matrixCurrent
);
431 void wxGCDCImpl::SetPalette( const wxPalette
& WXUNUSED(palette
) )
436 void wxGCDCImpl::SetBackgroundMode( int mode
)
438 m_backgroundMode
= mode
;
441 void wxGCDCImpl::SetFont( const wxFont
&font
)
444 if ( m_graphicContext
)
448 f
.SetPointSize( /*LogicalToDeviceYRel*/(font
.GetPointSize()));
449 m_graphicContext
->SetFont( f
, m_textForegroundColour
);
453 void wxGCDCImpl::SetPen( const wxPen
&pen
)
456 if ( m_graphicContext
)
458 m_graphicContext
->SetPen( m_pen
);
462 void wxGCDCImpl::SetBrush( const wxBrush
&brush
)
465 if ( m_graphicContext
)
467 m_graphicContext
->SetBrush( m_brush
);
471 void wxGCDCImpl::SetBackground( const wxBrush
&brush
)
473 m_backgroundBrush
= brush
;
474 if (!m_backgroundBrush
.IsOk())
478 void wxGCDCImpl::SetLogicalFunction( wxRasterOperationMode function
)
480 m_logicalFunction
= function
;
482 wxCompositionMode mode
= TranslateRasterOp( function
);
483 m_logicalFunctionSupported
= mode
!= wxCOMPOSITION_INVALID
;
484 if (m_logicalFunctionSupported
)
485 m_logicalFunctionSupported
= m_graphicContext
->SetCompositionMode(mode
);
487 if ( function
== wxXOR
)
488 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
490 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_DEFAULT
);
493 bool wxGCDCImpl::DoFloodFill(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
494 const wxColour
& WXUNUSED(col
),
495 wxFloodFillStyle
WXUNUSED(style
))
500 bool wxGCDCImpl::DoGetPixel( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxColour
*WXUNUSED(col
) ) const
502 // wxCHECK_MSG( 0 , false, wxT("wxGCDC(cg)::DoGetPixel - not implemented") );
506 void wxGCDCImpl::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
508 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
510 if ( !m_logicalFunctionSupported
)
513 m_graphicContext
->StrokeLine(x1
,y1
,x2
,y2
);
515 CalcBoundingBox(x1
, y1
);
516 CalcBoundingBox(x2
, y2
);
519 void wxGCDCImpl::DoCrossHair( wxCoord x
, wxCoord y
)
521 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
523 if ( !m_logicalFunctionSupported
)
528 GetOwner()->GetSize( &w
, &h
);
530 m_graphicContext
->StrokeLine(0,y
,w
,y
);
531 m_graphicContext
->StrokeLine(x
,0,x
,h
);
533 CalcBoundingBox(0, 0);
534 CalcBoundingBox(0+w
, 0+h
);
537 void wxGCDCImpl::DoDrawArc( wxCoord x1
, wxCoord y1
,
538 wxCoord x2
, wxCoord y2
,
539 wxCoord xc
, wxCoord yc
)
541 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
543 if ( !m_logicalFunctionSupported
)
548 double radius
= sqrt((double)(dx
* dx
+ dy
* dy
));
549 wxCoord rad
= (wxCoord
)radius
;
551 if (x1
== x2
&& y1
== y2
)
556 else if (radius
== 0.0)
562 sa
= (x1
- xc
== 0) ?
563 (y1
- yc
< 0) ? 90.0 : -90.0 :
564 -atan2(double(y1
- yc
), double(x1
- xc
)) * RAD2DEG
;
565 ea
= (x2
- xc
== 0) ?
566 (y2
- yc
< 0) ? 90.0 : -90.0 :
567 -atan2(double(y2
- yc
), double(x2
- xc
)) * RAD2DEG
;
570 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
572 wxGraphicsPath path
= m_graphicContext
->CreatePath();
573 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
574 path
.MoveToPoint( xc
, yc
);
575 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
576 // get clockwise angles
577 path
.AddArc( xc
, yc
, rad
, DegToRad(-sa
) , DegToRad(-ea
), false );
578 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
579 path
.AddLineToPoint( xc
, yc
);
580 m_graphicContext
->DrawPath(path
);
583 void wxGCDCImpl::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
584 double sa
, double ea
)
586 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipticArc - invalid DC") );
588 if ( !m_logicalFunctionSupported
)
591 m_graphicContext
->PushState();
592 m_graphicContext
->Translate(x
+w
/2.0,y
+h
/2.0);
593 wxDouble factor
= ((wxDouble
) w
) / h
;
594 m_graphicContext
->Scale( factor
, 1.0);
596 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
597 // get clockwise angles
598 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
600 wxGraphicsPath path
= m_graphicContext
->CreatePath();
601 path
.MoveToPoint( 0, 0 );
602 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
603 path
.AddLineToPoint( 0, 0 );
604 m_graphicContext
->FillPath( path
);
606 path
= m_graphicContext
->CreatePath();
607 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
608 m_graphicContext
->StrokePath( path
);
612 wxGraphicsPath path
= m_graphicContext
->CreatePath();
613 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
614 m_graphicContext
->DrawPath( path
);
617 m_graphicContext
->PopState();
620 void wxGCDCImpl::DoDrawPoint( wxCoord x
, wxCoord y
)
622 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPoint - invalid DC") );
624 DoDrawLine( x
, y
, x
+ 1 , y
+ 1 );
627 void wxGCDCImpl::DoDrawLines(int n
, wxPoint points
[],
628 wxCoord xoffset
, wxCoord yoffset
)
630 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLines - invalid DC") );
632 if ( !m_logicalFunctionSupported
)
635 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
];
636 for( int i
= 0; i
< n
; ++i
)
638 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
639 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
642 m_graphicContext
->StrokeLines( n
, pointsD
);
647 void wxGCDCImpl::DoDrawSpline(const wxPointList
*points
)
649 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawSpline - invalid DC") );
651 if ( !m_logicalFunctionSupported
)
654 wxGraphicsPath path
= m_graphicContext
->CreatePath();
656 wxPointList::compatibility_iterator node
= points
->GetFirst();
661 wxPoint
*p
= node
->GetData();
666 node
= node
->GetNext();
671 wxCoord cx1
= ( x1
+ x2
) / 2;
672 wxCoord cy1
= ( y1
+ y2
) / 2;
674 path
.MoveToPoint( x1
, y1
);
675 path
.AddLineToPoint( cx1
, cy1
);
676 #if !wxUSE_STD_CONTAINERS
678 while ((node
= node
->GetNext()) != NULL
)
681 while ((node
= node
->GetNext()))
682 #endif // !wxUSE_STD_CONTAINERS
690 wxCoord cx4
= (x1
+ x2
) / 2;
691 wxCoord cy4
= (y1
+ y2
) / 2;
693 path
.AddQuadCurveToPoint(x1
, y1
,cx4
, cy4
);
699 path
.AddLineToPoint( x2
, y2
);
701 m_graphicContext
->StrokePath( path
);
703 #endif // wxUSE_SPLINES
705 void wxGCDCImpl::DoDrawPolygon( int n
, wxPoint points
[],
706 wxCoord xoffset
, wxCoord yoffset
,
707 wxPolygonFillMode fillStyle
)
709 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPolygon - invalid DC") );
711 if ( n
<= 0 || (m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
) )
713 if ( !m_logicalFunctionSupported
)
716 bool closeIt
= false;
717 if (points
[n
-1] != points
[0])
720 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
+(closeIt
?1:0)];
721 for( int i
= 0; i
< n
; ++i
)
723 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
724 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
727 pointsD
[n
] = pointsD
[0];
729 m_graphicContext
->DrawLines( n
+(closeIt
?1:0) , pointsD
, fillStyle
);
733 void wxGCDCImpl::DoDrawPolyPolygon(int n
,
738 wxPolygonFillMode fillStyle
)
741 wxGraphicsPath path
= m_graphicContext
->CreatePath();
744 for ( int j
= 0; j
< n
; ++j
)
746 wxPoint start
= points
[i
];
747 path
.MoveToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
750 for ( int k
= 1; k
< l
; ++k
)
752 path
.AddLineToPoint( points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
756 if ( start
!= points
[i
-1])
757 path
.AddLineToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
759 m_graphicContext
->DrawPath( path
, fillStyle
);
762 void wxGCDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
764 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRectangle - invalid DC") );
766 if ( !m_logicalFunctionSupported
)
769 // CMB: draw nothing if transformed w or h is 0
770 if (w
== 0 || h
== 0)
773 if ( m_graphicContext
->ShouldOffset() )
775 // if we are offsetting the entire rectangle is moved 0.5, so the
776 // border line gets off by 1
780 m_graphicContext
->DrawRectangle(x
,y
,w
,h
);
783 void wxGCDCImpl::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
784 wxCoord w
, wxCoord h
,
787 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRoundedRectangle - invalid DC") );
789 if ( !m_logicalFunctionSupported
)
793 radius
= - radius
* ((w
< h
) ? w
: h
);
795 // CMB: draw nothing if transformed w or h is 0
796 if (w
== 0 || h
== 0)
799 if ( m_graphicContext
->ShouldOffset() )
801 // if we are offsetting the entire rectangle is moved 0.5, so the
802 // border line gets off by 1
806 m_graphicContext
->DrawRoundedRectangle( x
,y
,w
,h
,radius
);
809 void wxGCDCImpl::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
811 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipse - invalid DC") );
813 if ( !m_logicalFunctionSupported
)
816 if ( m_graphicContext
->ShouldOffset() )
818 // if we are offsetting the entire rectangle is moved 0.5, so the
819 // border line gets off by 1
823 m_graphicContext
->DrawEllipse(x
,y
,w
,h
);
826 bool wxGCDCImpl::CanDrawBitmap() const
831 bool wxGCDCImpl::DoBlit(
832 wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
833 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
834 wxRasterOperationMode logical_func
, bool useMask
,
835 wxCoord xsrcMask
, wxCoord ysrcMask
)
837 return DoStretchBlit( xdest
, ydest
, width
, height
,
838 source
, xsrc
, ysrc
, width
, height
, logical_func
, useMask
,
842 bool wxGCDCImpl::DoStretchBlit(
843 wxCoord xdest
, wxCoord ydest
, wxCoord dstWidth
, wxCoord dstHeight
,
844 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, wxCoord srcWidth
, wxCoord srcHeight
,
845 wxRasterOperationMode logical_func
, bool useMask
,
846 wxCoord xsrcMask
, wxCoord ysrcMask
)
848 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid DC") );
849 wxCHECK_MSG( source
->IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid source DC") );
851 if ( logical_func
== wxNO_OP
)
854 wxCompositionMode mode
= TranslateRasterOp(logical_func
);
855 if ( mode
== wxCOMPOSITION_INVALID
)
857 wxFAIL_MSG( wxT("Blitting is not supported with this logical operation.") );
861 wxRect
subrect(source
->LogicalToDeviceX(xsrc
),
862 source
->LogicalToDeviceY(ysrc
),
863 source
->LogicalToDeviceXRel(srcWidth
),
864 source
->LogicalToDeviceYRel(srcHeight
));
865 const wxRect subrectOrig
= subrect
;
866 // clip the subrect down to the size of the source DC
868 source
->GetSize(&clip
.width
, &clip
.height
);
869 subrect
.Intersect(clip
);
870 if (subrect
.width
== 0)
875 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
876 if (m_graphicContext
->SetCompositionMode(mode
))
878 wxAntialiasMode formerAa
= m_graphicContext
->GetAntialiasMode();
879 if (mode
== wxCOMPOSITION_XOR
)
881 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
884 if (xsrcMask
== -1 && ysrcMask
== -1)
890 wxBitmap blit
= source
->GetAsBitmap( &subrect
);
894 if ( !useMask
&& blit
.GetMask() )
900 double h
= dstHeight
;
901 // adjust dest rect if source rect is clipped
902 if (subrect
.width
!= subrectOrig
.width
|| subrect
.height
!= subrectOrig
.height
)
904 x
+= (subrect
.x
- subrectOrig
.x
) / double(subrectOrig
.width
) * dstWidth
;
905 y
+= (subrect
.y
- subrectOrig
.y
) / double(subrectOrig
.height
) * dstHeight
;
906 w
*= double(subrect
.width
) / subrectOrig
.width
;
907 h
*= double(subrect
.height
) / subrectOrig
.height
;
909 m_graphicContext
->DrawBitmap(blit
, x
, y
, w
, h
);
913 wxFAIL_MSG( wxT("Cannot Blit. Unable to get contents of DC as bitmap.") );
917 if (mode
== wxCOMPOSITION_XOR
)
919 m_graphicContext
->SetAntialiasMode(formerAa
);
923 m_graphicContext
->SetCompositionMode(formerMode
);
928 void wxGCDCImpl::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
931 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRotatedText - invalid DC") );
935 if ( !m_logicalFunctionSupported
)
938 if ( m_backgroundMode
== wxTRANSPARENT
)
939 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
));
941 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
), m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
944 void wxGCDCImpl::DoDrawText(const wxString
& str
, wxCoord x
, wxCoord y
)
946 // For compatibility with other ports (notably wxGTK) and because it's
947 // genuinely useful, we allow passing multiline strings to DrawText().
948 // However there is no native OSX function to draw them directly so we
949 // instead reuse the generic DrawLabel() method to render them. Of course,
950 // DrawLabel() itself will call back to us but with single line strings
951 // only so there won't be any infinite recursion here.
952 if ( str
.find('\n') != wxString::npos
)
954 GetOwner()->DrawLabel(str
, wxRect(x
, y
, 0, 0));
958 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawText - invalid DC") );
963 if ( !m_logicalFunctionSupported
)
966 if ( m_backgroundMode
== wxTRANSPARENT
)
967 m_graphicContext
->DrawText( str
, x
,y
);
969 m_graphicContext
->DrawText( str
, x
,y
, m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
972 bool wxGCDCImpl::CanGetTextExtent() const
974 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::CanGetTextExtent - invalid DC") );
979 void wxGCDCImpl::DoGetTextExtent( const wxString
&str
, wxCoord
*width
, wxCoord
*height
,
980 wxCoord
*descent
, wxCoord
*externalLeading
,
981 const wxFont
*theFont
) const
983 wxCHECK_RET( m_graphicContext
, wxT("wxGCDC(cg)::DoGetTextExtent - invalid DC") );
987 m_graphicContext
->SetFont( *theFont
, m_textForegroundColour
);
990 wxDouble h
, d
, e
, w
;
992 m_graphicContext
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
995 *height
= (wxCoord
)(h
+0.5);
997 *descent
= (wxCoord
)(d
+0.5);
998 if ( externalLeading
)
999 *externalLeading
= (wxCoord
)(e
+0.5);
1001 *width
= (wxCoord
)(w
+0.5);
1005 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
1009 bool wxGCDCImpl::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
1011 wxCHECK_MSG( m_graphicContext
, false, wxT("wxGCDC(cg)::DoGetPartialTextExtents - invalid DC") );
1013 widths
.Add(0,text
.Length());
1014 if ( text
.IsEmpty() )
1017 wxArrayDouble widthsD
;
1019 m_graphicContext
->GetPartialTextExtents( text
, widthsD
);
1020 for ( size_t i
= 0; i
< widths
.GetCount(); ++i
)
1021 widths
[i
] = (wxCoord
)(widthsD
[i
] + 0.5);
1026 wxCoord
wxGCDCImpl::GetCharWidth(void) const
1029 DoGetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1034 wxCoord
wxGCDCImpl::GetCharHeight(void) const
1037 DoGetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1042 void wxGCDCImpl::Clear(void)
1044 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::Clear - invalid DC") );
1045 // TODO better implementation / incorporate size info into wxGCDC or context
1046 m_graphicContext
->SetBrush( m_backgroundBrush
);
1047 wxPen p
= *wxTRANSPARENT_PEN
;
1048 m_graphicContext
->SetPen( p
);
1049 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
1050 m_graphicContext
->SetCompositionMode(wxCOMPOSITION_SOURCE
);
1051 DoDrawRectangle( 0, 0, 32000 , 32000 );
1052 m_graphicContext
->SetCompositionMode(formerMode
);
1053 m_graphicContext
->SetPen( m_pen
);
1054 m_graphicContext
->SetBrush( m_brush
);
1057 void wxGCDCImpl::DoGetSize(int *width
, int *height
) const
1059 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoGetSize - invalid DC") );
1061 m_graphicContext
->GetSize( &w
, &h
);
1063 *height
= (int) (h
+0.5);
1065 *width
= (int) (w
+0.5);
1068 void wxGCDCImpl::DoGradientFillLinear(const wxRect
& rect
,
1069 const wxColour
& initialColour
,
1070 const wxColour
& destColour
,
1071 wxDirection nDirection
)
1078 start
= rect
.GetRightBottom();
1080 end
= rect
.GetLeftBottom();
1083 start
= rect
.GetLeftBottom();
1084 end
= rect
.GetRightBottom();
1088 start
= rect
.GetLeftBottom();
1090 end
= rect
.GetLeftTop();
1093 start
= rect
.GetLeftTop();
1094 end
= rect
.GetLeftBottom();
1101 if (rect
.width
== 0 || rect
.height
== 0)
1104 m_graphicContext
->SetBrush( m_graphicContext
->CreateLinearGradientBrush(
1105 start
.x
,start
.y
,end
.x
,end
.y
, initialColour
, destColour
));
1106 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1107 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1108 m_graphicContext
->SetPen(m_pen
);
1109 m_graphicContext
->SetBrush(m_brush
);
1112 void wxGCDCImpl::DoGradientFillConcentric(const wxRect
& rect
,
1113 const wxColour
& initialColour
,
1114 const wxColour
& destColour
,
1115 const wxPoint
& circleCenter
)
1118 wxInt32 cx
= rect
.GetWidth() / 2;
1119 wxInt32 cy
= rect
.GetHeight() / 2;
1126 // make sure the background is filled (todo move into specific platform implementation ?)
1127 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1128 m_graphicContext
->SetBrush( wxBrush( destColour
) );
1129 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1131 m_graphicContext
->SetBrush( m_graphicContext
->CreateRadialGradientBrush(
1132 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1133 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1134 nRadius
,initialColour
,destColour
));
1136 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1137 m_graphicContext
->SetPen(m_pen
);
1138 m_graphicContext
->SetBrush(m_brush
);
1141 void wxGCDCImpl::DoDrawCheckMark(wxCoord x
, wxCoord y
,
1142 wxCoord width
, wxCoord height
)
1144 wxDCImpl::DoDrawCheckMark(x
,y
,width
,height
);
1148 wxRect
wxGCDCImpl::MSWApplyGDIPlusTransform(const wxRect
& r
) const
1150 wxGraphicsContext
* const gc
= GetGraphicsContext();
1151 wxCHECK_MSG( gc
, r
, wxT("Invalid wxGCDC") );
1155 gc
->GetTransform().TransformPoint(&x
, &y
);
1164 #endif // wxUSE_GRAPHICS_CONTEXT