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
) :
158 Init(wxGraphicsContext::Create());
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
) :
180 Init(wxGraphicsContext::Create(dc
));
181 m_window
= dc
.GetWindow();
184 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxMemoryDC
& dc
) :
187 Init(wxGraphicsContext::Create(dc
));
190 #if wxUSE_PRINTING_ARCHITECTURE
191 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxPrinterDC
& dc
) :
194 Init(wxGraphicsContext::Create(dc
));
198 #if defined(__WXMSW__) && wxUSE_ENH_METAFILE
199 wxGCDCImpl::wxGCDCImpl(wxDC
*owner
, const wxEnhMetaFileDC
& dc
)
202 Init(wxGraphicsContext::Create(dc
));
206 wxGCDCImpl::wxGCDCImpl(wxDC
* owner
, int)
209 // derived class will set a context
213 void wxGCDCImpl::Init(wxGraphicsContext
* ctx
)
217 m_mm_to_pix_x
= mm2pt
;
218 m_mm_to_pix_y
= mm2pt
;
220 m_pen
= *wxBLACK_PEN
;
221 m_font
= *wxNORMAL_FONT
;
222 m_brush
= *wxWHITE_BRUSH
;
224 m_graphicContext
= NULL
;
226 SetGraphicsContext(ctx
);
228 m_logicalFunctionSupported
= true;
231 wxGCDCImpl::~wxGCDCImpl()
233 delete m_graphicContext
;
236 void wxGCDCImpl::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
239 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid DC") );
240 wxCHECK_RET( bmp
.IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid bitmap") );
242 int w
= bmp
.GetWidth();
243 int h
= bmp
.GetHeight();
244 if ( bmp
.GetDepth() == 1 )
246 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
247 m_graphicContext
->SetBrush( wxBrush( m_textBackgroundColour
, wxSOLID
) );
248 m_graphicContext
->DrawRectangle( x
, y
, w
, h
);
249 m_graphicContext
->SetBrush( wxBrush( m_textForegroundColour
, wxSOLID
) );
250 m_graphicContext
->DrawBitmap( bmp
, x
, y
, w
, h
);
251 m_graphicContext
->SetBrush( m_graphicContext
->CreateBrush(m_brush
));
252 m_graphicContext
->SetPen( m_graphicContext
->CreatePen(m_pen
));
254 else // not a monochrome bitmap, handle it normally
256 // make a copy in case we need to remove its mask, if we don't modify
257 // it the copy is cheap as bitmaps are reference-counted
258 wxBitmap
bmpCopy(bmp
);
259 if ( !useMask
&& bmp
.GetMask() )
260 bmpCopy
.SetMask(NULL
);
262 m_graphicContext
->DrawBitmap( bmpCopy
, x
, y
, w
, h
);
266 void wxGCDCImpl::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
268 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid DC") );
269 wxCHECK_RET( icon
.IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid icon") );
271 wxCoord w
= icon
.GetWidth();
272 wxCoord h
= icon
.GetHeight();
274 m_graphicContext
->DrawIcon( icon
, x
, y
, w
, h
);
277 bool wxGCDCImpl::StartDoc( const wxString
& WXUNUSED(message
) )
282 void wxGCDCImpl::EndDoc()
286 void wxGCDCImpl::StartPage()
290 void wxGCDCImpl::EndPage()
294 void wxGCDCImpl::Flush()
296 m_graphicContext
->Flush();
299 void wxGCDCImpl::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
301 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetClippingRegion - invalid DC") );
303 m_graphicContext
->Clip( x
, y
, w
, h
);
306 m_clipX1
= wxMax( m_clipX1
, x
);
307 m_clipY1
= wxMax( m_clipY1
, y
);
308 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
309 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
322 void wxGCDCImpl::DoSetDeviceClippingRegion( const wxRegion
®ion
)
324 // region is in device coordinates
325 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetDeviceClippingRegion - invalid DC") );
329 //DestroyClippingRegion();
333 wxRegion
logRegion( region
);
336 logRegion
.Offset( DeviceToLogicalX(0), DeviceToLogicalY(0) );
337 logRegion
.GetBox( x
, y
, w
, h
);
339 m_graphicContext
->Clip( logRegion
);
342 m_clipX1
= wxMax( m_clipX1
, x
);
343 m_clipY1
= wxMax( m_clipY1
, y
);
344 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
345 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
358 void wxGCDCImpl::DestroyClippingRegion()
360 m_graphicContext
->ResetClip();
361 // currently the clip eg of a window extends to the area between the scrollbars
362 // so we must explicitly make sure it only covers the area we want it to draw
364 GetOwner()->GetSize( &width
, &height
) ;
365 m_graphicContext
->Clip( DeviceToLogicalX(0) , DeviceToLogicalY(0) , DeviceToLogicalXRel(width
), DeviceToLogicalYRel(height
) );
367 m_graphicContext
->SetPen( m_pen
);
368 m_graphicContext
->SetBrush( m_brush
);
373 void wxGCDCImpl::DoGetSizeMM( int* width
, int* height
) const
377 GetOwner()->GetSize( &w
, &h
);
379 *width
= long( double(w
) / (m_scaleX
* m_mm_to_pix_x
) );
381 *height
= long( double(h
) / (m_scaleY
* m_mm_to_pix_y
) );
384 void wxGCDCImpl::SetTextForeground( const wxColour
&col
)
386 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextForeground - invalid DC") );
388 // don't set m_textForegroundColour to an invalid colour as we'd crash
389 // later then (we use m_textForegroundColour.GetColor() without checking
393 m_textForegroundColour
= col
;
394 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
398 void wxGCDCImpl::SetTextBackground( const wxColour
&col
)
400 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextBackground - invalid DC") );
402 m_textBackgroundColour
= col
;
405 wxSize
wxGCDCImpl::GetPPI() const
407 return wxSize(72, 72);
410 int wxGCDCImpl::GetDepth() const
415 void wxGCDCImpl::ComputeScaleAndOrigin()
417 wxDCImpl::ComputeScaleAndOrigin();
419 if ( m_graphicContext
)
421 m_matrixCurrent
= m_graphicContext
->CreateMatrix();
423 // the logical origin sets the origin to have new coordinates
424 m_matrixCurrent
.Translate( m_deviceOriginX
- m_logicalOriginX
* m_signX
* m_scaleX
,
425 m_deviceOriginY
-m_logicalOriginY
* m_signY
* m_scaleY
);
427 m_matrixCurrent
.Scale( m_scaleX
* m_signX
, m_scaleY
* m_signY
);
429 m_graphicContext
->SetTransform( m_matrixOriginal
);
430 m_graphicContext
->ConcatTransform( m_matrixCurrent
);
434 void* wxGCDCImpl::GetHandle() const
437 wxGraphicsContext
* gc
= GetGraphicsContext();
439 cgctx
= gc
->GetNativeContext();
444 void wxGCDCImpl::SetPalette( const wxPalette
& WXUNUSED(palette
) )
449 void wxGCDCImpl::SetBackgroundMode( int mode
)
451 m_backgroundMode
= mode
;
454 void wxGCDCImpl::SetFont( const wxFont
&font
)
457 if ( m_graphicContext
)
459 m_graphicContext
->SetFont(font
, m_textForegroundColour
);
463 void wxGCDCImpl::SetPen( const wxPen
&pen
)
466 if ( m_graphicContext
)
468 m_graphicContext
->SetPen( m_pen
);
472 void wxGCDCImpl::SetBrush( const wxBrush
&brush
)
475 if ( m_graphicContext
)
477 m_graphicContext
->SetBrush( m_brush
);
481 void wxGCDCImpl::SetBackground( const wxBrush
&brush
)
483 m_backgroundBrush
= brush
;
484 if (!m_backgroundBrush
.IsOk())
488 void wxGCDCImpl::SetLogicalFunction( wxRasterOperationMode function
)
490 m_logicalFunction
= function
;
492 wxCompositionMode mode
= TranslateRasterOp( function
);
493 m_logicalFunctionSupported
= mode
!= wxCOMPOSITION_INVALID
;
494 if (m_logicalFunctionSupported
)
495 m_logicalFunctionSupported
= m_graphicContext
->SetCompositionMode(mode
);
497 if ( function
== wxXOR
)
498 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
500 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_DEFAULT
);
503 bool wxGCDCImpl::DoFloodFill(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
504 const wxColour
& WXUNUSED(col
),
505 wxFloodFillStyle
WXUNUSED(style
))
510 bool wxGCDCImpl::DoGetPixel( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxColour
*WXUNUSED(col
) ) const
512 // wxCHECK_MSG( 0 , false, wxT("wxGCDC(cg)::DoGetPixel - not implemented") );
516 void wxGCDCImpl::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
518 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
520 if ( !m_logicalFunctionSupported
)
523 m_graphicContext
->StrokeLine(x1
,y1
,x2
,y2
);
525 CalcBoundingBox(x1
, y1
);
526 CalcBoundingBox(x2
, y2
);
529 void wxGCDCImpl::DoCrossHair( wxCoord x
, wxCoord y
)
531 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
533 if ( !m_logicalFunctionSupported
)
538 GetOwner()->GetSize( &w
, &h
);
540 m_graphicContext
->StrokeLine(0,y
,w
,y
);
541 m_graphicContext
->StrokeLine(x
,0,x
,h
);
543 CalcBoundingBox(0, 0);
544 CalcBoundingBox(0+w
, 0+h
);
547 void wxGCDCImpl::DoDrawArc( wxCoord x1
, wxCoord y1
,
548 wxCoord x2
, wxCoord y2
,
549 wxCoord xc
, wxCoord yc
)
551 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
553 if ( !m_logicalFunctionSupported
)
558 double radius
= sqrt((double)(dx
* dx
+ dy
* dy
));
559 wxCoord rad
= (wxCoord
)radius
;
561 if (x1
== x2
&& y1
== y2
)
566 else if (radius
== 0.0)
572 sa
= (x1
- xc
== 0) ?
573 (y1
- yc
< 0) ? 90.0 : -90.0 :
574 -atan2(double(y1
- yc
), double(x1
- xc
)) * RAD2DEG
;
575 ea
= (x2
- xc
== 0) ?
576 (y2
- yc
< 0) ? 90.0 : -90.0 :
577 -atan2(double(y2
- yc
), double(x2
- xc
)) * RAD2DEG
;
580 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
582 wxGraphicsPath path
= m_graphicContext
->CreatePath();
583 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
584 path
.MoveToPoint( xc
, yc
);
585 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
586 // get clockwise angles
587 path
.AddArc( xc
, yc
, rad
, DegToRad(-sa
) , DegToRad(-ea
), false );
588 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
589 path
.AddLineToPoint( xc
, yc
);
590 m_graphicContext
->DrawPath(path
);
593 void wxGCDCImpl::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
594 double sa
, double ea
)
596 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipticArc - invalid DC") );
598 if ( !m_logicalFunctionSupported
)
601 m_graphicContext
->PushState();
602 m_graphicContext
->Translate(x
+w
/2.0,y
+h
/2.0);
603 wxDouble factor
= ((wxDouble
) w
) / h
;
604 m_graphicContext
->Scale( factor
, 1.0);
606 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
607 // get clockwise angles
608 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
610 wxGraphicsPath path
= m_graphicContext
->CreatePath();
611 path
.MoveToPoint( 0, 0 );
612 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
613 path
.AddLineToPoint( 0, 0 );
614 m_graphicContext
->FillPath( path
);
616 path
= m_graphicContext
->CreatePath();
617 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
618 m_graphicContext
->StrokePath( path
);
622 wxGraphicsPath path
= m_graphicContext
->CreatePath();
623 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
624 m_graphicContext
->DrawPath( path
);
627 m_graphicContext
->PopState();
630 void wxGCDCImpl::DoDrawPoint( wxCoord x
, wxCoord y
)
632 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPoint - invalid DC") );
634 DoDrawLine( x
, y
, x
+ 1 , y
+ 1 );
637 void wxGCDCImpl::DoDrawLines(int n
, wxPoint points
[],
638 wxCoord xoffset
, wxCoord yoffset
)
640 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLines - invalid DC") );
642 if ( !m_logicalFunctionSupported
)
645 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
];
646 for( int i
= 0; i
< n
; ++i
)
648 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
649 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
652 m_graphicContext
->StrokeLines( n
, pointsD
);
657 void wxGCDCImpl::DoDrawSpline(const wxPointList
*points
)
659 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawSpline - invalid DC") );
661 if ( !m_logicalFunctionSupported
)
664 wxGraphicsPath path
= m_graphicContext
->CreatePath();
666 wxPointList::compatibility_iterator node
= points
->GetFirst();
671 wxPoint
*p
= node
->GetData();
676 node
= node
->GetNext();
681 wxCoord cx1
= ( x1
+ x2
) / 2;
682 wxCoord cy1
= ( y1
+ y2
) / 2;
684 path
.MoveToPoint( x1
, y1
);
685 path
.AddLineToPoint( cx1
, cy1
);
686 #if !wxUSE_STD_CONTAINERS
688 while ((node
= node
->GetNext()) != NULL
)
691 while ((node
= node
->GetNext()))
692 #endif // !wxUSE_STD_CONTAINERS
700 wxCoord cx4
= (x1
+ x2
) / 2;
701 wxCoord cy4
= (y1
+ y2
) / 2;
703 path
.AddQuadCurveToPoint(x1
, y1
,cx4
, cy4
);
709 path
.AddLineToPoint( x2
, y2
);
711 m_graphicContext
->StrokePath( path
);
713 #endif // wxUSE_SPLINES
715 void wxGCDCImpl::DoDrawPolygon( int n
, wxPoint points
[],
716 wxCoord xoffset
, wxCoord yoffset
,
717 wxPolygonFillMode fillStyle
)
719 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPolygon - invalid DC") );
721 if ( n
<= 0 || (m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
) )
723 if ( !m_logicalFunctionSupported
)
726 bool closeIt
= false;
727 if (points
[n
-1] != points
[0])
730 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
+(closeIt
?1:0)];
731 for( int i
= 0; i
< n
; ++i
)
733 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
734 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
737 pointsD
[n
] = pointsD
[0];
739 m_graphicContext
->DrawLines( n
+(closeIt
?1:0) , pointsD
, fillStyle
);
743 void wxGCDCImpl::DoDrawPolyPolygon(int n
,
748 wxPolygonFillMode fillStyle
)
751 wxGraphicsPath path
= m_graphicContext
->CreatePath();
754 for ( int j
= 0; j
< n
; ++j
)
756 wxPoint start
= points
[i
];
757 path
.MoveToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
760 for ( int k
= 1; k
< l
; ++k
)
762 path
.AddLineToPoint( points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
766 if ( start
!= points
[i
-1])
767 path
.AddLineToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
769 m_graphicContext
->DrawPath( path
, fillStyle
);
772 void wxGCDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
774 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRectangle - invalid DC") );
776 if ( !m_logicalFunctionSupported
)
779 // CMB: draw nothing if transformed w or h is 0
780 if (w
== 0 || h
== 0)
783 if ( m_graphicContext
->ShouldOffset() )
785 // if we are offsetting the entire rectangle is moved 0.5, so the
786 // border line gets off by 1
790 m_graphicContext
->DrawRectangle(x
,y
,w
,h
);
793 void wxGCDCImpl::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
794 wxCoord w
, wxCoord h
,
797 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRoundedRectangle - invalid DC") );
799 if ( !m_logicalFunctionSupported
)
803 radius
= - radius
* ((w
< h
) ? w
: h
);
805 // CMB: draw nothing if transformed w or h is 0
806 if (w
== 0 || h
== 0)
809 if ( m_graphicContext
->ShouldOffset() )
811 // if we are offsetting the entire rectangle is moved 0.5, so the
812 // border line gets off by 1
816 m_graphicContext
->DrawRoundedRectangle( x
,y
,w
,h
,radius
);
819 void wxGCDCImpl::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
821 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipse - invalid DC") );
823 if ( !m_logicalFunctionSupported
)
826 if ( m_graphicContext
->ShouldOffset() )
828 // if we are offsetting the entire rectangle is moved 0.5, so the
829 // border line gets off by 1
833 m_graphicContext
->DrawEllipse(x
,y
,w
,h
);
836 bool wxGCDCImpl::CanDrawBitmap() const
841 bool wxGCDCImpl::DoBlit(
842 wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
843 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
844 wxRasterOperationMode logical_func
, bool useMask
,
845 wxCoord xsrcMask
, wxCoord ysrcMask
)
847 return DoStretchBlit( xdest
, ydest
, width
, height
,
848 source
, xsrc
, ysrc
, width
, height
, logical_func
, useMask
,
852 bool wxGCDCImpl::DoStretchBlit(
853 wxCoord xdest
, wxCoord ydest
, wxCoord dstWidth
, wxCoord dstHeight
,
854 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, wxCoord srcWidth
, wxCoord srcHeight
,
855 wxRasterOperationMode logical_func
, bool useMask
,
856 wxCoord xsrcMask
, wxCoord ysrcMask
)
858 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid DC") );
859 wxCHECK_MSG( source
->IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid source DC") );
861 if ( logical_func
== wxNO_OP
)
864 wxCompositionMode mode
= TranslateRasterOp(logical_func
);
865 if ( mode
== wxCOMPOSITION_INVALID
)
867 wxFAIL_MSG( wxT("Blitting is not supported with this logical operation.") );
871 wxRect
subrect(source
->LogicalToDeviceX(xsrc
),
872 source
->LogicalToDeviceY(ysrc
),
873 source
->LogicalToDeviceXRel(srcWidth
),
874 source
->LogicalToDeviceYRel(srcHeight
));
875 const wxRect subrectOrig
= subrect
;
876 // clip the subrect down to the size of the source DC
878 source
->GetSize(&clip
.width
, &clip
.height
);
879 subrect
.Intersect(clip
);
880 if (subrect
.width
== 0)
885 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
886 if (m_graphicContext
->SetCompositionMode(mode
))
888 wxAntialiasMode formerAa
= m_graphicContext
->GetAntialiasMode();
889 if (mode
== wxCOMPOSITION_XOR
)
891 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
894 if (xsrcMask
== -1 && ysrcMask
== -1)
900 wxBitmap blit
= source
->GetAsBitmap( &subrect
);
904 if ( !useMask
&& blit
.GetMask() )
910 double h
= dstHeight
;
911 // adjust dest rect if source rect is clipped
912 if (subrect
.width
!= subrectOrig
.width
|| subrect
.height
!= subrectOrig
.height
)
914 x
+= (subrect
.x
- subrectOrig
.x
) / double(subrectOrig
.width
) * dstWidth
;
915 y
+= (subrect
.y
- subrectOrig
.y
) / double(subrectOrig
.height
) * dstHeight
;
916 w
*= double(subrect
.width
) / subrectOrig
.width
;
917 h
*= double(subrect
.height
) / subrectOrig
.height
;
919 m_graphicContext
->DrawBitmap(blit
, x
, y
, w
, h
);
923 wxFAIL_MSG( wxT("Cannot Blit. Unable to get contents of DC as bitmap.") );
927 if (mode
== wxCOMPOSITION_XOR
)
929 m_graphicContext
->SetAntialiasMode(formerAa
);
933 m_graphicContext
->SetCompositionMode(formerMode
);
938 void wxGCDCImpl::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
941 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRotatedText - invalid DC") );
945 if ( !m_logicalFunctionSupported
)
948 if ( m_backgroundMode
== wxTRANSPARENT
)
949 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
));
951 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
), m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
954 void wxGCDCImpl::DoDrawText(const wxString
& str
, wxCoord x
, wxCoord y
)
956 // For compatibility with other ports (notably wxGTK) and because it's
957 // genuinely useful, we allow passing multiline strings to DrawText().
958 // However there is no native OSX function to draw them directly so we
959 // instead reuse the generic DrawLabel() method to render them. Of course,
960 // DrawLabel() itself will call back to us but with single line strings
961 // only so there won't be any infinite recursion here.
962 if ( str
.find('\n') != wxString::npos
)
964 GetOwner()->DrawLabel(str
, wxRect(x
, y
, 0, 0));
968 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawText - invalid DC") );
973 if ( !m_logicalFunctionSupported
)
976 if ( m_backgroundMode
== wxTRANSPARENT
)
977 m_graphicContext
->DrawText( str
, x
,y
);
979 m_graphicContext
->DrawText( str
, x
,y
, m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
982 bool wxGCDCImpl::CanGetTextExtent() const
984 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::CanGetTextExtent - invalid DC") );
989 void wxGCDCImpl::DoGetTextExtent( const wxString
&str
, wxCoord
*width
, wxCoord
*height
,
990 wxCoord
*descent
, wxCoord
*externalLeading
,
991 const wxFont
*theFont
) const
993 wxCHECK_RET( m_graphicContext
, wxT("wxGCDC(cg)::DoGetTextExtent - invalid DC") );
997 m_graphicContext
->SetFont( *theFont
, m_textForegroundColour
);
1000 wxDouble h
, d
, e
, w
;
1002 m_graphicContext
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1005 *height
= (wxCoord
)(h
+0.5);
1007 *descent
= (wxCoord
)(d
+0.5);
1008 if ( externalLeading
)
1009 *externalLeading
= (wxCoord
)(e
+0.5);
1011 *width
= (wxCoord
)(w
+0.5);
1015 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
1019 bool wxGCDCImpl::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
1021 wxCHECK_MSG( m_graphicContext
, false, wxT("wxGCDC(cg)::DoGetPartialTextExtents - invalid DC") );
1023 widths
.Add(0,text
.Length());
1024 if ( text
.IsEmpty() )
1027 wxArrayDouble widthsD
;
1029 m_graphicContext
->GetPartialTextExtents( text
, widthsD
);
1030 for ( size_t i
= 0; i
< widths
.GetCount(); ++i
)
1031 widths
[i
] = (wxCoord
)(widthsD
[i
] + 0.5);
1036 wxCoord
wxGCDCImpl::GetCharWidth(void) const
1039 DoGetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1044 wxCoord
wxGCDCImpl::GetCharHeight(void) const
1047 DoGetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1052 void wxGCDCImpl::Clear(void)
1054 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::Clear - invalid DC") );
1055 // TODO better implementation / incorporate size info into wxGCDC or context
1056 m_graphicContext
->SetBrush( m_backgroundBrush
);
1057 wxPen p
= *wxTRANSPARENT_PEN
;
1058 m_graphicContext
->SetPen( p
);
1059 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
1060 m_graphicContext
->SetCompositionMode(wxCOMPOSITION_SOURCE
);
1061 // maximum positive coordinate Cairo can handle is 2^23 - 1
1063 DeviceToLogicalX(0), DeviceToLogicalY(0),
1064 DeviceToLogicalXRel(0x007fffff), DeviceToLogicalYRel(0x007fffff));
1065 m_graphicContext
->SetCompositionMode(formerMode
);
1066 m_graphicContext
->SetPen( m_pen
);
1067 m_graphicContext
->SetBrush( m_brush
);
1070 void wxGCDCImpl::DoGetSize(int *width
, int *height
) const
1072 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoGetSize - invalid DC") );
1074 m_graphicContext
->GetSize( &w
, &h
);
1076 *height
= (int) (h
+0.5);
1078 *width
= (int) (w
+0.5);
1081 void wxGCDCImpl::DoGradientFillLinear(const wxRect
& rect
,
1082 const wxColour
& initialColour
,
1083 const wxColour
& destColour
,
1084 wxDirection nDirection
)
1091 start
= rect
.GetRightBottom();
1093 end
= rect
.GetLeftBottom();
1096 start
= rect
.GetLeftBottom();
1097 end
= rect
.GetRightBottom();
1101 start
= rect
.GetLeftBottom();
1103 end
= rect
.GetLeftTop();
1106 start
= rect
.GetLeftTop();
1107 end
= rect
.GetLeftBottom();
1114 if (rect
.width
== 0 || rect
.height
== 0)
1117 m_graphicContext
->SetBrush( m_graphicContext
->CreateLinearGradientBrush(
1118 start
.x
,start
.y
,end
.x
,end
.y
, initialColour
, destColour
));
1119 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1120 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1121 m_graphicContext
->SetPen(m_pen
);
1122 m_graphicContext
->SetBrush(m_brush
);
1125 void wxGCDCImpl::DoGradientFillConcentric(const wxRect
& rect
,
1126 const wxColour
& initialColour
,
1127 const wxColour
& destColour
,
1128 const wxPoint
& circleCenter
)
1131 wxInt32 cx
= rect
.GetWidth() / 2;
1132 wxInt32 cy
= rect
.GetHeight() / 2;
1139 // make sure the background is filled (todo move into specific platform implementation ?)
1140 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1141 m_graphicContext
->SetBrush( wxBrush( destColour
) );
1142 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1144 m_graphicContext
->SetBrush( m_graphicContext
->CreateRadialGradientBrush(
1145 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1146 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1147 nRadius
,initialColour
,destColour
));
1149 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1150 m_graphicContext
->SetPen(m_pen
);
1151 m_graphicContext
->SetBrush(m_brush
);
1154 void wxGCDCImpl::DoDrawCheckMark(wxCoord x
, wxCoord y
,
1155 wxCoord width
, wxCoord height
)
1157 wxDCImpl::DoDrawCheckMark(x
,y
,width
,height
);
1161 wxRect
wxGCDCImpl::MSWApplyGDIPlusTransform(const wxRect
& r
) const
1163 wxGraphicsContext
* const gc
= GetGraphicsContext();
1164 wxCHECK_MSG( gc
, r
, wxT("Invalid wxGCDC") );
1168 gc
->GetTransform().TransformPoint(&x
, &y
);
1177 #endif // wxUSE_GRAPHICS_CONTEXT