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 #include <limits.h> // for INT_MAX
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
47 static const double RAD2DEG
= 180.0 / M_PI
;
49 //-----------------------------------------------------------------------------
51 //-----------------------------------------------------------------------------
53 static inline double DegToRad(double deg
)
55 return (deg
* M_PI
) / 180.0;
58 static wxCompositionMode
TranslateRasterOp(wxRasterOperationMode function
)
63 // since we are supporting alpha, _OVER is closer to the intention than _SOURCE
64 // since the latter would overwrite even when alpha is not set to opaque
65 return wxCOMPOSITION_OVER
;
67 case wxOR
: // src OR dst
68 return wxCOMPOSITION_ADD
;
71 return wxCOMPOSITION_DEST
; // ignore the source
74 return wxCOMPOSITION_CLEAR
;// clear dst
76 case wxXOR
: // src XOR dst
77 return wxCOMPOSITION_XOR
;
79 case wxAND
: // src AND dst
80 case wxAND_INVERT
: // (NOT src) AND dst
81 case wxAND_REVERSE
:// src AND (NOT dst)
82 case wxEQUIV
: // (NOT src) XOR dst
83 case wxINVERT
: // NOT dst
84 case wxNAND
: // (NOT src) OR (NOT dst)
85 case wxNOR
: // (NOT src) AND (NOT dst)
86 case wxOR_INVERT
: // (NOT src) OR dst
87 case wxOR_REVERSE
: // src OR (NOT dst)
89 case wxSRC_INVERT
: // NOT src
93 return wxCOMPOSITION_INVALID
;
96 //-----------------------------------------------------------------------------
98 //-----------------------------------------------------------------------------
100 IMPLEMENT_DYNAMIC_CLASS(wxGCDC
, wxDC
)
102 wxGCDC::wxGCDC(const wxWindowDC
& dc
) :
103 wxDC( new wxGCDCImpl( this, dc
) )
107 wxGCDC::wxGCDC( const wxMemoryDC
& dc
) :
108 wxDC( new wxGCDCImpl( this, dc
) )
112 #if wxUSE_PRINTING_ARCHITECTURE
113 wxGCDC::wxGCDC( const wxPrinterDC
& dc
) :
114 wxDC( new wxGCDCImpl( this, dc
) )
119 #if defined(__WXMSW__) && wxUSE_ENH_METAFILE
120 wxGCDC::wxGCDC(const wxEnhMetaFileDC
& dc
)
121 : wxDC(new wxGCDCImpl(this, dc
))
126 wxGCDC::wxGCDC(wxGraphicsContext
* context
) :
127 wxDC( new wxGCDCImpl( this ) )
129 SetGraphicsContext(context
);
133 wxDC( new wxGCDCImpl( this ) )
141 wxGraphicsContext
* wxGCDC::GetGraphicsContext() const
143 if (!m_pimpl
) return NULL
;
144 wxGCDCImpl
*gc_impl
= (wxGCDCImpl
*) m_pimpl
;
145 return gc_impl
->GetGraphicsContext();
148 void wxGCDC::SetGraphicsContext( wxGraphicsContext
* ctx
)
150 if (!m_pimpl
) return;
151 wxGCDCImpl
*gc_impl
= (wxGCDCImpl
*) m_pimpl
;
152 gc_impl
->SetGraphicsContext( ctx
);
155 IMPLEMENT_ABSTRACT_CLASS(wxGCDCImpl
, wxDCImpl
)
157 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
) :
160 Init(wxGraphicsContext::Create());
163 void wxGCDCImpl::SetGraphicsContext( wxGraphicsContext
* ctx
)
165 delete m_graphicContext
;
166 m_graphicContext
= ctx
;
167 if ( m_graphicContext
)
169 m_matrixOriginal
= m_graphicContext
->GetTransform();
171 // apply the stored transformations to the passed in context
172 ComputeScaleAndOrigin();
173 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
174 m_graphicContext
->SetPen( m_pen
);
175 m_graphicContext
->SetBrush( m_brush
);
179 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxWindowDC
& dc
) :
182 Init(wxGraphicsContext::Create(dc
));
183 m_window
= dc
.GetWindow();
186 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxMemoryDC
& dc
) :
189 Init(wxGraphicsContext::Create(dc
));
192 #if wxUSE_PRINTING_ARCHITECTURE
193 wxGCDCImpl::wxGCDCImpl( wxDC
*owner
, const wxPrinterDC
& dc
) :
196 Init(wxGraphicsContext::Create(dc
));
200 #if defined(__WXMSW__) && wxUSE_ENH_METAFILE
201 wxGCDCImpl::wxGCDCImpl(wxDC
*owner
, const wxEnhMetaFileDC
& dc
)
204 Init(wxGraphicsContext::Create(dc
));
208 void wxGCDCImpl::Init(wxGraphicsContext
* ctx
)
212 m_mm_to_pix_x
= mm2pt
;
213 m_mm_to_pix_y
= mm2pt
;
215 m_pen
= *wxBLACK_PEN
;
216 m_font
= *wxNORMAL_FONT
;
217 m_brush
= *wxWHITE_BRUSH
;
219 m_graphicContext
= NULL
;
221 SetGraphicsContext(ctx
);
223 m_logicalFunctionSupported
= true;
226 wxGCDCImpl::~wxGCDCImpl()
228 delete m_graphicContext
;
231 void wxGCDCImpl::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
234 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid DC") );
235 wxCHECK_RET( bmp
.IsOk(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid bitmap") );
237 int w
= bmp
.GetWidth();
238 int h
= bmp
.GetHeight();
239 if ( bmp
.GetDepth() == 1 )
241 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
242 m_graphicContext
->SetBrush( wxBrush( m_textBackgroundColour
, wxSOLID
) );
243 m_graphicContext
->DrawRectangle( x
, y
, w
, h
);
244 m_graphicContext
->SetBrush( wxBrush( m_textForegroundColour
, wxSOLID
) );
245 m_graphicContext
->DrawBitmap( bmp
, x
, y
, w
, h
);
246 m_graphicContext
->SetBrush( m_graphicContext
->CreateBrush(m_brush
));
247 m_graphicContext
->SetPen( m_graphicContext
->CreatePen(m_pen
));
249 else // not a monochrome bitmap, handle it normally
251 // make a copy in case we need to remove its mask, if we don't modify
252 // it the copy is cheap as bitmaps are reference-counted
253 wxBitmap
bmpCopy(bmp
);
254 if ( !useMask
&& bmp
.GetMask() )
255 bmpCopy
.SetMask(NULL
);
257 m_graphicContext
->DrawBitmap( bmpCopy
, x
, y
, w
, h
);
261 void wxGCDCImpl::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
263 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid DC") );
264 wxCHECK_RET( icon
.IsOk(), wxT("wxGCDC(cg)::DoDrawIcon - invalid icon") );
266 wxCoord w
= icon
.GetWidth();
267 wxCoord h
= icon
.GetHeight();
269 m_graphicContext
->DrawIcon( icon
, x
, y
, w
, h
);
272 bool wxGCDCImpl::StartDoc( const wxString
& WXUNUSED(message
) )
277 void wxGCDCImpl::EndDoc()
281 void wxGCDCImpl::StartPage()
285 void wxGCDCImpl::EndPage()
289 void wxGCDCImpl::Flush()
291 m_graphicContext
->Flush();
294 void wxGCDCImpl::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
296 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetClippingRegion - invalid DC") );
298 m_graphicContext
->Clip( x
, y
, w
, h
);
301 m_clipX1
= wxMax( m_clipX1
, x
);
302 m_clipY1
= wxMax( m_clipY1
, y
);
303 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
304 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
317 void wxGCDCImpl::DoSetDeviceClippingRegion( const wxRegion
®ion
)
319 // region is in device coordinates
320 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoSetDeviceClippingRegion - invalid DC") );
324 //DestroyClippingRegion();
328 wxRegion
logRegion( region
);
331 logRegion
.Offset( DeviceToLogicalX(0), DeviceToLogicalY(0) );
332 logRegion
.GetBox( x
, y
, w
, h
);
334 m_graphicContext
->Clip( logRegion
);
337 m_clipX1
= wxMax( m_clipX1
, x
);
338 m_clipY1
= wxMax( m_clipY1
, y
);
339 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
340 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
353 void wxGCDCImpl::DestroyClippingRegion()
355 m_graphicContext
->ResetClip();
356 // currently the clip eg of a window extends to the area between the scrollbars
357 // so we must explicitly make sure it only covers the area we want it to draw
359 GetOwner()->GetSize( &width
, &height
) ;
360 m_graphicContext
->Clip( DeviceToLogicalX(0) , DeviceToLogicalY(0) , DeviceToLogicalXRel(width
), DeviceToLogicalYRel(height
) );
362 m_graphicContext
->SetPen( m_pen
);
363 m_graphicContext
->SetBrush( m_brush
);
368 void wxGCDCImpl::DoGetSizeMM( int* width
, int* height
) const
372 GetOwner()->GetSize( &w
, &h
);
374 *width
= long( double(w
) / (m_scaleX
* m_mm_to_pix_x
) );
376 *height
= long( double(h
) / (m_scaleY
* m_mm_to_pix_y
) );
379 void wxGCDCImpl::SetTextForeground( const wxColour
&col
)
381 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextForeground - invalid DC") );
383 // don't set m_textForegroundColour to an invalid colour as we'd crash
384 // later then (we use m_textForegroundColour.GetColor() without checking
388 m_textForegroundColour
= col
;
389 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
393 void wxGCDCImpl::SetTextBackground( const wxColour
&col
)
395 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::SetTextBackground - invalid DC") );
397 m_textBackgroundColour
= col
;
400 wxSize
wxGCDCImpl::GetPPI() const
402 return wxSize(72, 72);
405 int wxGCDCImpl::GetDepth() const
410 void wxGCDCImpl::ComputeScaleAndOrigin()
412 wxDCImpl::ComputeScaleAndOrigin();
414 if ( m_graphicContext
)
416 m_matrixCurrent
= m_graphicContext
->CreateMatrix();
418 // the logical origin sets the origin to have new coordinates
419 m_matrixCurrent
.Translate( m_deviceOriginX
- m_logicalOriginX
* m_signX
* m_scaleX
,
420 m_deviceOriginY
-m_logicalOriginY
* m_signY
* m_scaleY
);
422 m_matrixCurrent
.Scale( m_scaleX
* m_signX
, m_scaleY
* m_signY
);
424 m_graphicContext
->SetTransform( m_matrixOriginal
);
425 m_graphicContext
->ConcatTransform( m_matrixCurrent
);
429 void wxGCDCImpl::SetPalette( const wxPalette
& WXUNUSED(palette
) )
434 void wxGCDCImpl::SetBackgroundMode( int mode
)
436 m_backgroundMode
= mode
;
439 void wxGCDCImpl::SetFont( const wxFont
&font
)
442 if ( m_graphicContext
)
444 m_graphicContext
->SetFont(font
, m_textForegroundColour
);
448 void wxGCDCImpl::SetPen( const wxPen
&pen
)
451 if ( m_graphicContext
)
453 m_graphicContext
->SetPen( m_pen
);
457 void wxGCDCImpl::SetBrush( const wxBrush
&brush
)
460 if ( m_graphicContext
)
462 m_graphicContext
->SetBrush( m_brush
);
466 void wxGCDCImpl::SetBackground( const wxBrush
&brush
)
468 m_backgroundBrush
= brush
;
469 if (!m_backgroundBrush
.IsOk())
473 void wxGCDCImpl::SetLogicalFunction( wxRasterOperationMode function
)
475 m_logicalFunction
= function
;
477 wxCompositionMode mode
= TranslateRasterOp( function
);
478 m_logicalFunctionSupported
= mode
!= wxCOMPOSITION_INVALID
;
479 if (m_logicalFunctionSupported
)
480 m_logicalFunctionSupported
= m_graphicContext
->SetCompositionMode(mode
);
482 if ( function
== wxXOR
)
483 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
485 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_DEFAULT
);
488 bool wxGCDCImpl::DoFloodFill(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
489 const wxColour
& WXUNUSED(col
),
490 wxFloodFillStyle
WXUNUSED(style
))
495 bool wxGCDCImpl::DoGetPixel( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxColour
*WXUNUSED(col
) ) const
497 // wxCHECK_MSG( 0 , false, wxT("wxGCDC(cg)::DoGetPixel - not implemented") );
501 void wxGCDCImpl::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
503 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
505 if ( !m_logicalFunctionSupported
)
508 m_graphicContext
->StrokeLine(x1
,y1
,x2
,y2
);
510 CalcBoundingBox(x1
, y1
);
511 CalcBoundingBox(x2
, y2
);
514 void wxGCDCImpl::DoCrossHair( wxCoord x
, wxCoord y
)
516 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
518 if ( !m_logicalFunctionSupported
)
523 GetOwner()->GetSize( &w
, &h
);
525 m_graphicContext
->StrokeLine(0,y
,w
,y
);
526 m_graphicContext
->StrokeLine(x
,0,x
,h
);
528 CalcBoundingBox(0, 0);
529 CalcBoundingBox(0+w
, 0+h
);
532 void wxGCDCImpl::DoDrawArc( wxCoord x1
, wxCoord y1
,
533 wxCoord x2
, wxCoord y2
,
534 wxCoord xc
, wxCoord yc
)
536 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
538 if ( !m_logicalFunctionSupported
)
543 double radius
= sqrt((double)(dx
* dx
+ dy
* dy
));
544 wxCoord rad
= (wxCoord
)radius
;
546 if (x1
== x2
&& y1
== y2
)
551 else if (radius
== 0.0)
557 sa
= (x1
- xc
== 0) ?
558 (y1
- yc
< 0) ? 90.0 : -90.0 :
559 -atan2(double(y1
- yc
), double(x1
- xc
)) * RAD2DEG
;
560 ea
= (x2
- xc
== 0) ?
561 (y2
- yc
< 0) ? 90.0 : -90.0 :
562 -atan2(double(y2
- yc
), double(x2
- xc
)) * RAD2DEG
;
565 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
567 wxGraphicsPath path
= m_graphicContext
->CreatePath();
568 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
569 path
.MoveToPoint( xc
, yc
);
570 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
571 // get clockwise angles
572 path
.AddArc( xc
, yc
, rad
, DegToRad(-sa
) , DegToRad(-ea
), false );
573 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
574 path
.AddLineToPoint( xc
, yc
);
575 m_graphicContext
->DrawPath(path
);
578 void wxGCDCImpl::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
579 double sa
, double ea
)
581 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipticArc - invalid DC") );
583 if ( !m_logicalFunctionSupported
)
586 m_graphicContext
->PushState();
587 m_graphicContext
->Translate(x
+w
/2.0,y
+h
/2.0);
588 wxDouble factor
= ((wxDouble
) w
) / h
;
589 m_graphicContext
->Scale( factor
, 1.0);
591 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
592 // get clockwise angles
593 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
595 wxGraphicsPath path
= m_graphicContext
->CreatePath();
596 path
.MoveToPoint( 0, 0 );
597 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
598 path
.AddLineToPoint( 0, 0 );
599 m_graphicContext
->FillPath( path
);
601 path
= m_graphicContext
->CreatePath();
602 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
603 m_graphicContext
->StrokePath( path
);
607 wxGraphicsPath path
= m_graphicContext
->CreatePath();
608 path
.AddArc( 0, 0, h
/2.0 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
609 m_graphicContext
->DrawPath( path
);
612 m_graphicContext
->PopState();
615 void wxGCDCImpl::DoDrawPoint( wxCoord x
, wxCoord y
)
617 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPoint - invalid DC") );
619 DoDrawLine( x
, y
, x
+ 1 , y
+ 1 );
622 void wxGCDCImpl::DoDrawLines(int n
, wxPoint points
[],
623 wxCoord xoffset
, wxCoord yoffset
)
625 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawLines - invalid DC") );
627 if ( !m_logicalFunctionSupported
)
630 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
];
631 for( int i
= 0; i
< n
; ++i
)
633 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
634 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
637 m_graphicContext
->StrokeLines( n
, pointsD
);
642 void wxGCDCImpl::DoDrawSpline(const wxPointList
*points
)
644 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawSpline - invalid DC") );
646 if ( !m_logicalFunctionSupported
)
649 wxGraphicsPath path
= m_graphicContext
->CreatePath();
651 wxPointList::compatibility_iterator node
= points
->GetFirst();
656 wxPoint
*p
= node
->GetData();
661 node
= node
->GetNext();
666 wxCoord cx1
= ( x1
+ x2
) / 2;
667 wxCoord cy1
= ( y1
+ y2
) / 2;
669 path
.MoveToPoint( x1
, y1
);
670 path
.AddLineToPoint( cx1
, cy1
);
671 #if !wxUSE_STD_CONTAINERS
673 while ((node
= node
->GetNext()) != NULL
)
676 while ((node
= node
->GetNext()))
677 #endif // !wxUSE_STD_CONTAINERS
685 wxCoord cx4
= (x1
+ x2
) / 2;
686 wxCoord cy4
= (y1
+ y2
) / 2;
688 path
.AddQuadCurveToPoint(x1
, y1
,cx4
, cy4
);
694 path
.AddLineToPoint( x2
, y2
);
696 m_graphicContext
->StrokePath( path
);
698 #endif // wxUSE_SPLINES
700 void wxGCDCImpl::DoDrawPolygon( int n
, wxPoint points
[],
701 wxCoord xoffset
, wxCoord yoffset
,
702 wxPolygonFillMode fillStyle
)
704 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawPolygon - invalid DC") );
706 if ( n
<= 0 || (m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
) )
708 if ( !m_logicalFunctionSupported
)
711 bool closeIt
= false;
712 if (points
[n
-1] != points
[0])
715 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
+(closeIt
?1:0)];
716 for( int i
= 0; i
< n
; ++i
)
718 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
719 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
722 pointsD
[n
] = pointsD
[0];
724 m_graphicContext
->DrawLines( n
+(closeIt
?1:0) , pointsD
, fillStyle
);
728 void wxGCDCImpl::DoDrawPolyPolygon(int n
,
733 wxPolygonFillMode fillStyle
)
736 wxGraphicsPath path
= m_graphicContext
->CreatePath();
739 for ( int j
= 0; j
< n
; ++j
)
741 wxPoint start
= points
[i
];
742 path
.MoveToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
745 for ( int k
= 1; k
< l
; ++k
)
747 path
.AddLineToPoint( points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
751 if ( start
!= points
[i
-1])
752 path
.AddLineToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
754 m_graphicContext
->DrawPath( path
, fillStyle
);
757 void wxGCDCImpl::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
759 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRectangle - invalid DC") );
761 if ( !m_logicalFunctionSupported
)
764 // CMB: draw nothing if transformed w or h is 0
765 if (w
== 0 || h
== 0)
768 if ( m_graphicContext
->ShouldOffset() )
770 // if we are offsetting the entire rectangle is moved 0.5, so the
771 // border line gets off by 1
775 m_graphicContext
->DrawRectangle(x
,y
,w
,h
);
778 void wxGCDCImpl::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
779 wxCoord w
, wxCoord h
,
782 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRoundedRectangle - invalid DC") );
784 if ( !m_logicalFunctionSupported
)
788 radius
= - radius
* ((w
< h
) ? w
: h
);
790 // CMB: draw nothing if transformed w or h is 0
791 if (w
== 0 || h
== 0)
794 if ( m_graphicContext
->ShouldOffset() )
796 // if we are offsetting the entire rectangle is moved 0.5, so the
797 // border line gets off by 1
801 m_graphicContext
->DrawRoundedRectangle( x
,y
,w
,h
,radius
);
804 void wxGCDCImpl::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
806 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawEllipse - invalid DC") );
808 if ( !m_logicalFunctionSupported
)
811 if ( m_graphicContext
->ShouldOffset() )
813 // if we are offsetting the entire rectangle is moved 0.5, so the
814 // border line gets off by 1
818 m_graphicContext
->DrawEllipse(x
,y
,w
,h
);
821 bool wxGCDCImpl::CanDrawBitmap() const
826 bool wxGCDCImpl::DoBlit(
827 wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
828 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
829 wxRasterOperationMode logical_func
, bool useMask
,
830 wxCoord xsrcMask
, wxCoord ysrcMask
)
832 return DoStretchBlit( xdest
, ydest
, width
, height
,
833 source
, xsrc
, ysrc
, width
, height
, logical_func
, useMask
,
837 bool wxGCDCImpl::DoStretchBlit(
838 wxCoord xdest
, wxCoord ydest
, wxCoord dstWidth
, wxCoord dstHeight
,
839 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, wxCoord srcWidth
, wxCoord srcHeight
,
840 wxRasterOperationMode logical_func
, bool useMask
,
841 wxCoord xsrcMask
, wxCoord ysrcMask
)
843 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid DC") );
844 wxCHECK_MSG( source
->IsOk(), false, wxT("wxGCDC(cg)::DoStretchBlit - invalid source DC") );
846 if ( logical_func
== wxNO_OP
)
849 wxCompositionMode mode
= TranslateRasterOp(logical_func
);
850 if ( mode
== wxCOMPOSITION_INVALID
)
852 wxFAIL_MSG( wxT("Blitting is not supported with this logical operation.") );
856 wxRect
subrect(source
->LogicalToDeviceX(xsrc
),
857 source
->LogicalToDeviceY(ysrc
),
858 source
->LogicalToDeviceXRel(srcWidth
),
859 source
->LogicalToDeviceYRel(srcHeight
));
860 const wxRect subrectOrig
= subrect
;
861 // clip the subrect down to the size of the source DC
863 source
->GetSize(&clip
.width
, &clip
.height
);
864 subrect
.Intersect(clip
);
865 if (subrect
.width
== 0)
870 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
871 if (m_graphicContext
->SetCompositionMode(mode
))
873 wxAntialiasMode formerAa
= m_graphicContext
->GetAntialiasMode();
874 if (mode
== wxCOMPOSITION_XOR
)
876 m_graphicContext
->SetAntialiasMode(wxANTIALIAS_NONE
);
879 if (xsrcMask
== -1 && ysrcMask
== -1)
885 wxBitmap blit
= source
->GetAsBitmap( &subrect
);
889 if ( !useMask
&& blit
.GetMask() )
895 double h
= dstHeight
;
896 // adjust dest rect if source rect is clipped
897 if (subrect
.width
!= subrectOrig
.width
|| subrect
.height
!= subrectOrig
.height
)
899 x
+= (subrect
.x
- subrectOrig
.x
) / double(subrectOrig
.width
) * dstWidth
;
900 y
+= (subrect
.y
- subrectOrig
.y
) / double(subrectOrig
.height
) * dstHeight
;
901 w
*= double(subrect
.width
) / subrectOrig
.width
;
902 h
*= double(subrect
.height
) / subrectOrig
.height
;
904 m_graphicContext
->DrawBitmap(blit
, x
, y
, w
, h
);
908 wxFAIL_MSG( wxT("Cannot Blit. Unable to get contents of DC as bitmap.") );
912 if (mode
== wxCOMPOSITION_XOR
)
914 m_graphicContext
->SetAntialiasMode(formerAa
);
918 m_graphicContext
->SetCompositionMode(formerMode
);
923 void wxGCDCImpl::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
926 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawRotatedText - invalid DC") );
930 if ( !m_logicalFunctionSupported
)
933 if ( m_backgroundMode
== wxTRANSPARENT
)
934 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
));
936 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
), m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
939 void wxGCDCImpl::DoDrawText(const wxString
& str
, wxCoord x
, wxCoord y
)
941 // For compatibility with other ports (notably wxGTK) and because it's
942 // genuinely useful, we allow passing multiline strings to DrawText().
943 // However there is no native OSX function to draw them directly so we
944 // instead reuse the generic DrawLabel() method to render them. Of course,
945 // DrawLabel() itself will call back to us but with single line strings
946 // only so there won't be any infinite recursion here.
947 if ( str
.find('\n') != wxString::npos
)
949 GetOwner()->DrawLabel(str
, wxRect(x
, y
, 0, 0));
953 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoDrawText - invalid DC") );
958 if ( !m_logicalFunctionSupported
)
961 if ( m_backgroundMode
== wxTRANSPARENT
)
962 m_graphicContext
->DrawText( str
, x
,y
);
964 m_graphicContext
->DrawText( str
, x
,y
, m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
967 bool wxGCDCImpl::CanGetTextExtent() const
969 wxCHECK_MSG( IsOk(), false, wxT("wxGCDC(cg)::CanGetTextExtent - invalid DC") );
974 void wxGCDCImpl::DoGetTextExtent( const wxString
&str
, wxCoord
*width
, wxCoord
*height
,
975 wxCoord
*descent
, wxCoord
*externalLeading
,
976 const wxFont
*theFont
) const
978 wxCHECK_RET( m_graphicContext
, wxT("wxGCDC(cg)::DoGetTextExtent - invalid DC") );
982 m_graphicContext
->SetFont( *theFont
, m_textForegroundColour
);
985 wxDouble h
, d
, e
, w
;
987 m_graphicContext
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
990 *height
= (wxCoord
)(h
+0.5);
992 *descent
= (wxCoord
)(d
+0.5);
993 if ( externalLeading
)
994 *externalLeading
= (wxCoord
)(e
+0.5);
996 *width
= (wxCoord
)(w
+0.5);
1000 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
1004 bool wxGCDCImpl::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
1006 wxCHECK_MSG( m_graphicContext
, false, wxT("wxGCDC(cg)::DoGetPartialTextExtents - invalid DC") );
1008 widths
.Add(0,text
.Length());
1009 if ( text
.IsEmpty() )
1012 wxArrayDouble widthsD
;
1014 m_graphicContext
->GetPartialTextExtents( text
, widthsD
);
1015 for ( size_t i
= 0; i
< widths
.GetCount(); ++i
)
1016 widths
[i
] = (wxCoord
)(widthsD
[i
] + 0.5);
1021 wxCoord
wxGCDCImpl::GetCharWidth(void) const
1024 DoGetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1029 wxCoord
wxGCDCImpl::GetCharHeight(void) const
1032 DoGetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1037 void wxGCDCImpl::Clear(void)
1039 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::Clear - invalid DC") );
1040 // TODO better implementation / incorporate size info into wxGCDC or context
1041 m_graphicContext
->SetBrush( m_backgroundBrush
);
1042 wxPen p
= *wxTRANSPARENT_PEN
;
1043 m_graphicContext
->SetPen( p
);
1044 wxCompositionMode formerMode
= m_graphicContext
->GetCompositionMode();
1045 m_graphicContext
->SetCompositionMode(wxCOMPOSITION_SOURCE
);
1046 DoDrawRectangle( 0, 0, INT_MAX
, INT_MAX
);
1047 m_graphicContext
->SetCompositionMode(formerMode
);
1048 m_graphicContext
->SetPen( m_pen
);
1049 m_graphicContext
->SetBrush( m_brush
);
1052 void wxGCDCImpl::DoGetSize(int *width
, int *height
) const
1054 wxCHECK_RET( IsOk(), wxT("wxGCDC(cg)::DoGetSize - invalid DC") );
1056 m_graphicContext
->GetSize( &w
, &h
);
1058 *height
= (int) (h
+0.5);
1060 *width
= (int) (w
+0.5);
1063 void wxGCDCImpl::DoGradientFillLinear(const wxRect
& rect
,
1064 const wxColour
& initialColour
,
1065 const wxColour
& destColour
,
1066 wxDirection nDirection
)
1073 start
= rect
.GetRightBottom();
1075 end
= rect
.GetLeftBottom();
1078 start
= rect
.GetLeftBottom();
1079 end
= rect
.GetRightBottom();
1083 start
= rect
.GetLeftBottom();
1085 end
= rect
.GetLeftTop();
1088 start
= rect
.GetLeftTop();
1089 end
= rect
.GetLeftBottom();
1096 if (rect
.width
== 0 || rect
.height
== 0)
1099 m_graphicContext
->SetBrush( m_graphicContext
->CreateLinearGradientBrush(
1100 start
.x
,start
.y
,end
.x
,end
.y
, initialColour
, destColour
));
1101 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1102 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1103 m_graphicContext
->SetPen(m_pen
);
1104 m_graphicContext
->SetBrush(m_brush
);
1107 void wxGCDCImpl::DoGradientFillConcentric(const wxRect
& rect
,
1108 const wxColour
& initialColour
,
1109 const wxColour
& destColour
,
1110 const wxPoint
& circleCenter
)
1113 wxInt32 cx
= rect
.GetWidth() / 2;
1114 wxInt32 cy
= rect
.GetHeight() / 2;
1121 // make sure the background is filled (todo move into specific platform implementation ?)
1122 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
1123 m_graphicContext
->SetBrush( wxBrush( destColour
) );
1124 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1126 m_graphicContext
->SetBrush( m_graphicContext
->CreateRadialGradientBrush(
1127 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1128 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
1129 nRadius
,initialColour
,destColour
));
1131 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
1132 m_graphicContext
->SetPen(m_pen
);
1133 m_graphicContext
->SetBrush(m_brush
);
1136 void wxGCDCImpl::DoDrawCheckMark(wxCoord x
, wxCoord y
,
1137 wxCoord width
, wxCoord height
)
1139 wxDCImpl::DoDrawCheckMark(x
,y
,width
,height
);
1143 wxRect
wxGCDCImpl::MSWApplyGDIPlusTransform(const wxRect
& r
) const
1145 wxGraphicsContext
* const gc
= GetGraphicsContext();
1146 wxCHECK_MSG( gc
, r
, wxT("Invalid wxGCDC") );
1150 gc
->GetTransform().TransformPoint(&x
, &y
);
1159 #endif // wxUSE_GRAPHICS_CONTEXT