1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/graphcmn.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"
25 #include "wx/bitmap.h"
26 #include "wx/dcmemory.h"
27 #include "wx/region.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 static const double RAD2DEG
= 180.0 / M_PI
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 static inline double DegToRad(double deg
)
42 return (deg
* M_PI
) / 180.0;
45 //-----------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------
50 IMPLEMENT_DYNAMIC_CLASS(wxGCDC
, wxDCBase
)
52 IMPLEMENT_DYNAMIC_CLASS(wxGCDC
, wxDC
)
60 void wxGCDC::SetGraphicsContext( wxGraphicsContext
* ctx
)
62 delete m_graphicContext
;
63 m_graphicContext
= ctx
;
64 if ( m_graphicContext
)
66 m_matrixOriginal
= m_graphicContext
->GetTransform();
68 // apply the stored transformations to the passed in context
69 ComputeScaleAndOrigin();
70 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
71 m_graphicContext
->SetPen( m_pen
);
72 m_graphicContext
->SetBrush( m_brush
);
76 wxGCDC::wxGCDC(const wxWindowDC
& dc
)
79 SetGraphicsContext( wxGraphicsContext::Create(dc
) );
83 wxGCDC::wxGCDC(const wxMemoryDC
& dc
)
86 SetGraphicsContext( wxGraphicsContext::Create(dc
) );
94 m_mm_to_pix_x
= mm2pt
;
95 m_mm_to_pix_y
= mm2pt
;
98 m_font
= *wxNORMAL_FONT
;
99 m_brush
= *wxWHITE_BRUSH
;
101 m_graphicContext
= NULL
;
102 m_logicalFunctionSupported
= true;
108 delete m_graphicContext
;
111 void wxGCDC::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool WXUNUSED(useMask
) )
113 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid DC") );
114 wxCHECK_RET( bmp
.Ok(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid bitmap") );
116 if ( bmp
.GetDepth() == 1 )
118 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
119 m_graphicContext
->SetBrush( wxBrush( m_textBackgroundColour
, wxSOLID
) );
120 m_graphicContext
->DrawRectangle( x
, y
, bmp
.GetWidth() , bmp
.GetHeight() );
121 m_graphicContext
->SetBrush( wxBrush( m_textForegroundColour
, wxSOLID
) );
122 m_graphicContext
->DrawBitmap( bmp
, x
, y
, bmp
.GetWidth() , bmp
.GetHeight() );
123 m_graphicContext
->SetBrush( m_graphicContext
->CreateBrush(m_brush
));
124 m_graphicContext
->SetPen( m_graphicContext
->CreatePen(m_pen
));
127 m_graphicContext
->DrawBitmap( bmp
, x
, y
, bmp
.GetWidth() , bmp
.GetHeight() );
130 void wxGCDC::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
132 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawIcon - invalid DC") );
133 wxCHECK_RET( icon
.Ok(), wxT("wxGCDC(cg)::DoDrawIcon - invalid icon") );
135 wxCoord w
= icon
.GetWidth();
136 wxCoord h
= icon
.GetHeight();
138 m_graphicContext
->DrawIcon( icon
, x
, y
, w
, h
);
141 void wxGCDC::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
143 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoSetClippingRegion - invalid DC") );
145 m_graphicContext
->Clip( x
, y
, w
, h
);
148 m_clipX1
= wxMax( m_clipX1
, x
);
149 m_clipY1
= wxMax( m_clipY1
, y
);
150 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
151 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
164 void wxGCDC::DoSetClippingRegionAsRegion( const wxRegion
®ion
)
166 // region is in device coordinates
167 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoSetClippingRegionAsRegion - invalid DC") );
171 DestroyClippingRegion();
175 wxRegion
logRegion( region
);
178 logRegion
.Offset( DeviceToLogicalX(0), DeviceToLogicalY(0) );
179 logRegion
.GetBox( x
, y
, w
, h
);
181 m_graphicContext
->Clip( logRegion
);
184 m_clipX1
= wxMax( m_clipX1
, x
);
185 m_clipY1
= wxMax( m_clipY1
, y
);
186 m_clipX2
= wxMin( m_clipX2
, (x
+ w
) );
187 m_clipY2
= wxMin( m_clipY2
, (y
+ h
) );
200 void wxGCDC::DestroyClippingRegion()
202 m_graphicContext
->ResetClip();
203 // currently the clip eg of a window extends to the area between the scrollbars
204 // so we must explicitely make sure it only covers the area we want it to draw
206 GetSize( &width
, &height
) ;
207 m_graphicContext
->Clip( DeviceToLogicalX(0) , DeviceToLogicalY(0) , width
, height
);
209 m_graphicContext
->SetPen( m_pen
);
210 m_graphicContext
->SetBrush( m_brush
);
215 void wxGCDC::DoGetSizeMM( int* width
, int* height
) const
221 *width
= long( double(w
) / (m_scaleX
* m_mm_to_pix_x
) );
223 *height
= long( double(h
) / (m_scaleY
* m_mm_to_pix_y
) );
226 void wxGCDC::SetTextForeground( const wxColour
&col
)
228 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::SetTextForeground - invalid DC") );
230 if ( col
!= m_textForegroundColour
)
232 m_textForegroundColour
= col
;
233 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
237 void wxGCDC::SetTextBackground( const wxColour
&col
)
239 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::SetTextBackground - invalid DC") );
241 m_textBackgroundColour
= col
;
244 void wxGCDC::SetMapMode( int mode
)
249 SetLogicalScale( twips2mm
* m_mm_to_pix_x
, twips2mm
* m_mm_to_pix_y
);
253 SetLogicalScale( pt2mm
* m_mm_to_pix_x
, pt2mm
* m_mm_to_pix_y
);
257 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
261 SetLogicalScale( m_mm_to_pix_x
/ 10.0, m_mm_to_pix_y
/ 10.0 );
266 SetLogicalScale( 1.0, 1.0 );
270 ComputeScaleAndOrigin();
273 void wxGCDC::SetUserScale( double x
, double y
)
275 // allow negative ? -> no
279 ComputeScaleAndOrigin();
282 void wxGCDC::SetLogicalScale( double x
, double y
)
287 ComputeScaleAndOrigin();
290 void wxGCDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
292 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
293 m_logicalOriginY
= y
* m_signY
;
294 ComputeScaleAndOrigin();
297 void wxGCDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
301 ComputeScaleAndOrigin();
304 void wxGCDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
306 m_signX
= (xLeftRight
? 1 : -1);
307 m_signY
= (yBottomUp
? -1 : 1);
308 ComputeScaleAndOrigin();
311 wxSize
wxGCDC::GetPPI() const
313 return wxSize(72, 72);
316 int wxGCDC::GetDepth() const
321 void wxGCDC::ComputeScaleAndOrigin()
323 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
324 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
326 if ( m_graphicContext
)
328 m_matrixCurrent
= m_graphicContext
->CreateMatrix();
329 m_matrixCurrent
.Translate( m_deviceOriginX
, m_deviceOriginY
);
330 m_matrixCurrent
.Scale( m_scaleX
, m_scaleY
);
331 // the logical origin sets the origin to have new coordinates
332 m_matrixCurrent
.Translate( -m_logicalOriginX
, -m_logicalOriginY
);
334 m_graphicContext
->SetTransform( m_matrixOriginal
);
335 m_graphicContext
->ConcatTransform( m_matrixCurrent
);
339 void wxGCDC::SetPalette( const wxPalette
& WXUNUSED(palette
) )
344 void wxGCDC::SetBackgroundMode( int mode
)
346 m_backgroundMode
= mode
;
349 void wxGCDC::SetFont( const wxFont
&font
)
352 if ( m_graphicContext
)
356 f
.SetPointSize( /*LogicalToDeviceYRel*/(font
.GetPointSize()));
357 m_graphicContext
->SetFont( f
, m_textForegroundColour
);
361 void wxGCDC::SetPen( const wxPen
&pen
)
367 if ( m_graphicContext
)
369 m_graphicContext
->SetPen( m_pen
);
373 void wxGCDC::SetBrush( const wxBrush
&brush
)
375 if (m_brush
== brush
)
379 if ( m_graphicContext
)
381 m_graphicContext
->SetBrush( m_brush
);
385 void wxGCDC::SetBackground( const wxBrush
&brush
)
387 if (m_backgroundBrush
== brush
)
390 m_backgroundBrush
= brush
;
391 if (!m_backgroundBrush
.Ok())
395 void wxGCDC::SetLogicalFunction( int function
)
397 if (m_logicalFunction
== function
)
400 m_logicalFunction
= function
;
401 if ( m_graphicContext
->SetLogicalFunction( function
) )
402 m_logicalFunctionSupported
=true;
404 m_logicalFunctionSupported
=false;
407 bool wxGCDC::DoFloodFill(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
408 const wxColour
& WXUNUSED(col
), int WXUNUSED(style
))
413 bool wxGCDC::DoGetPixel( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxColour
*WXUNUSED(col
) ) const
415 // wxCHECK_MSG( 0 , false, wxT("wxGCDC(cg)::DoGetPixel - not implemented") );
419 void wxGCDC::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
421 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
423 if ( !m_logicalFunctionSupported
)
426 m_graphicContext
->StrokeLine(x1
,y1
,x2
,y2
);
428 CalcBoundingBox(x1
, y1
);
429 CalcBoundingBox(x2
, y2
);
432 void wxGCDC::DoCrossHair( wxCoord x
, wxCoord y
)
434 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
436 if ( !m_logicalFunctionSupported
)
443 m_graphicContext
->StrokeLine(0,y
,w
,y
);
444 m_graphicContext
->StrokeLine(x
,0,x
,h
);
446 CalcBoundingBox(0, 0);
447 CalcBoundingBox(0+w
, 0+h
);
450 void wxGCDC::DoDrawArc( wxCoord x1
, wxCoord y1
,
451 wxCoord x2
, wxCoord y2
,
452 wxCoord xc
, wxCoord yc
)
454 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
456 if ( !m_logicalFunctionSupported
)
461 double radius
= sqrt((double)(dx
* dx
+ dy
* dy
));
462 wxCoord rad
= (wxCoord
)radius
;
464 if (x1
== x2
&& y1
== y2
)
469 else if (radius
== 0.0)
475 sa
= (x1
- xc
== 0) ?
476 (y1
- yc
< 0) ? 90.0 : -90.0 :
477 -atan2(double(y1
- yc
), double(x1
- xc
)) * RAD2DEG
;
478 ea
= (x2
- xc
== 0) ?
479 (y2
- yc
< 0) ? 90.0 : -90.0 :
480 -atan2(double(y2
- yc
), double(x2
- xc
)) * RAD2DEG
;
483 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
485 wxGraphicsPath path
= m_graphicContext
->CreatePath();
486 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
487 path
.MoveToPoint( xc
, yc
);
488 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
489 // get clockwise angles
490 path
.AddArc( xc
, yc
, rad
, DegToRad(-sa
) , DegToRad(-ea
), false );
491 if ( fill
&& ((x1
!=x2
)||(y1
!=y2
)) )
492 path
.AddLineToPoint( xc
, yc
);
493 m_graphicContext
->DrawPath(path
);
496 void wxGCDC::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
497 double sa
, double ea
)
499 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawEllipticArc - invalid DC") );
501 if ( !m_logicalFunctionSupported
)
504 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
506 wxGraphicsPath path
= m_graphicContext
->CreatePath();
507 m_graphicContext
->PushState();
508 m_graphicContext
->Translate(x
+w
/2,y
+h
/2);
509 wxDouble factor
= ((wxDouble
) w
) / h
;
510 m_graphicContext
->Scale( factor
, 1.0);
511 if ( fill
&& (sa
!=ea
) )
512 path
.MoveToPoint(0,0);
513 // since these angles (ea,sa) are measured counter-clockwise, we invert them to
514 // get clockwise angles
515 path
.AddArc( 0, 0, h
/2 , DegToRad(-sa
) , DegToRad(-ea
), sa
> ea
);
516 if ( fill
&& (sa
!=ea
) )
517 path
.AddLineToPoint(0,0);
518 m_graphicContext
->DrawPath( path
);
519 m_graphicContext
->PopState();
522 void wxGCDC::DoDrawPoint( wxCoord x
, wxCoord y
)
524 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawPoint - invalid DC") );
526 DoDrawLine( x
, y
, x
+ 1 , y
+ 1 );
529 void wxGCDC::DoDrawLines(int n
, wxPoint points
[],
530 wxCoord xoffset
, wxCoord yoffset
)
532 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawLines - invalid DC") );
534 if ( !m_logicalFunctionSupported
)
537 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
];
538 for( int i
= 0; i
< n
; ++i
)
540 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
541 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
544 m_graphicContext
->StrokeLines( n
, pointsD
);
549 void wxGCDC::DoDrawSpline(wxList
*points
)
551 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawSpline - invalid DC") );
553 if ( !m_logicalFunctionSupported
)
556 wxGraphicsPath path
= m_graphicContext
->CreatePath();
558 wxList::compatibility_iterator node
= points
->GetFirst();
559 if (node
== wxList::compatibility_iterator())
563 wxPoint
*p
= (wxPoint
*)node
->GetData();
568 node
= node
->GetNext();
569 p
= (wxPoint
*)node
->GetData();
573 wxCoord cx1
= ( x1
+ x2
) / 2;
574 wxCoord cy1
= ( y1
+ y2
) / 2;
576 path
.MoveToPoint( x1
, y1
);
577 path
.AddLineToPoint( cx1
, cy1
);
580 while ((node
= node
->GetNext()) != NULL
)
583 while ((node
= node
->GetNext()))
587 p
= (wxPoint
*)node
->GetData();
592 wxCoord cx4
= (x1
+ x2
) / 2;
593 wxCoord cy4
= (y1
+ y2
) / 2;
595 path
.AddQuadCurveToPoint(x1
, y1
,cx4
, cy4
);
601 path
.AddLineToPoint( x2
, y2
);
603 m_graphicContext
->StrokePath( path
);
605 #endif // wxUSE_SPLINES
607 void wxGCDC::DoDrawPolygon( int n
, wxPoint points
[],
608 wxCoord xoffset
, wxCoord yoffset
,
611 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawPolygon - invalid DC") );
613 if ( n
<= 0 || (m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
) )
615 if ( !m_logicalFunctionSupported
)
618 bool closeIt
= false;
619 if (points
[n
-1] != points
[0])
622 wxPoint2DDouble
* pointsD
= new wxPoint2DDouble
[n
+(closeIt
?1:0)];
623 for( int i
= 0; i
< n
; ++i
)
625 pointsD
[i
].m_x
= points
[i
].x
+ xoffset
;
626 pointsD
[i
].m_y
= points
[i
].y
+ yoffset
;
629 pointsD
[n
] = pointsD
[0];
631 m_graphicContext
->DrawLines( n
+(closeIt
?1:0) , pointsD
, fillStyle
);
635 void wxGCDC::DoDrawPolyPolygon(int n
,
643 wxGraphicsPath path
= m_graphicContext
->CreatePath();
646 for ( int j
= 0; j
< n
; ++j
)
648 wxPoint start
= points
[i
];
649 path
.MoveToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
652 for ( int k
= 1; k
< l
; ++k
)
654 path
.AddLineToPoint( points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
658 if ( start
!= points
[i
-1])
659 path
.AddLineToPoint( start
.x
+ xoffset
, start
.y
+ yoffset
);
661 m_graphicContext
->DrawPath( path
, fillStyle
);
664 void wxGCDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
666 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRectangle - invalid DC") );
668 if ( !m_logicalFunctionSupported
)
671 // CMB: draw nothing if transformed w or h is 0
672 if (w
== 0 || h
== 0)
675 if ( m_graphicContext
->ShouldOffset() )
677 // if we are offsetting the entire rectangle is moved 0.5, so the
678 // border line gets off by 1
682 m_graphicContext
->DrawRectangle(x
,y
,w
,h
);
685 void wxGCDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
686 wxCoord w
, wxCoord h
,
689 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRoundedRectangle - invalid DC") );
691 if ( !m_logicalFunctionSupported
)
695 radius
= - radius
* ((w
< h
) ? w
: h
);
697 // CMB: draw nothing if transformed w or h is 0
698 if (w
== 0 || h
== 0)
701 m_graphicContext
->DrawRoundedRectangle( x
,y
,w
,h
,radius
);
704 void wxGCDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
706 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawEllipse - invalid DC") );
708 if ( !m_logicalFunctionSupported
)
711 m_graphicContext
->DrawEllipse(x
,y
,w
,h
);
714 bool wxGCDC::CanDrawBitmap() const
720 wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
721 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, int logical_func
, bool WXUNUSED(useMask
),
722 wxCoord xsrcMask
, wxCoord ysrcMask
)
724 wxCHECK_MSG( Ok(), false, wxT("wxGCDC(cg)::DoBlit - invalid DC") );
725 wxCHECK_MSG( source
->Ok(), false, wxT("wxGCDC(cg)::DoBlit - invalid source DC") );
727 if ( logical_func
== wxNO_OP
)
729 else if ( logical_func
!= wxCOPY
)
731 wxFAIL_MSG( wxT("Blitting is only supported with wxCOPY logical operation.") );
735 if (xsrcMask
== -1 && ysrcMask
== -1)
741 wxRect
subrect(source
->LogicalToDeviceX(xsrc
),
742 source
->LogicalToDeviceY(ysrc
),
743 source
->LogicalToDeviceXRel(width
),
744 source
->LogicalToDeviceYRel(height
));
746 // if needed clip the subrect down to the size of the source DC
748 source
->GetSize(&sw
, &sh
);
749 sw
= source
->LogicalToDeviceXRel(sw
);
750 sh
= source
->LogicalToDeviceYRel(sh
);
751 if (subrect
.x
+ subrect
.width
> sw
)
752 subrect
.width
= sw
- subrect
.x
;
753 if (subrect
.y
+ subrect
.height
> sh
)
754 subrect
.height
= sh
- subrect
.y
;
756 wxBitmap blit
= source
->GetAsBitmap( &subrect
);
760 m_graphicContext
->DrawBitmap( blit
, xdest
, ydest
,
761 wxMin(width
, blit
.GetWidth()),
762 wxMin(height
, blit
.GetHeight()));
766 wxFAIL_MSG( wxT("Cannot Blit. Unable to get contents of DC as bitmap.") );
773 void wxGCDC::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
776 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRotatedText - invalid DC") );
778 if ( str
.length() == 0 )
780 if ( !m_logicalFunctionSupported
)
783 if ( m_backgroundMode
== wxTRANSPARENT
)
784 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
));
786 m_graphicContext
->DrawText( str
, x
,y
, DegToRad(angle
), m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
789 void wxGCDC::DoDrawText(const wxString
& str
, wxCoord x
, wxCoord y
)
791 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRotatedText - invalid DC") );
793 if ( str
.length() == 0 )
796 if ( !m_logicalFunctionSupported
)
799 if ( m_backgroundMode
== wxTRANSPARENT
)
800 m_graphicContext
->DrawText( str
, x
,y
);
802 m_graphicContext
->DrawText( str
, x
,y
, m_graphicContext
->CreateBrush( wxBrush(m_textBackgroundColour
,wxSOLID
) ) );
805 bool wxGCDC::CanGetTextExtent() const
807 wxCHECK_MSG( Ok(), false, wxT("wxGCDC(cg)::CanGetTextExtent - invalid DC") );
812 void wxGCDC::DoGetTextExtent( const wxString
&str
, wxCoord
*width
, wxCoord
*height
,
813 wxCoord
*descent
, wxCoord
*externalLeading
,
814 wxFont
*theFont
) const
816 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoGetTextExtent - invalid DC") );
820 m_graphicContext
->SetFont( *theFont
, m_textForegroundColour
);
823 wxDouble h
, d
, e
, w
;
825 m_graphicContext
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
828 *height
= (wxCoord
)h
;
830 *descent
= (wxCoord
)d
;
831 if ( externalLeading
)
832 *externalLeading
= (wxCoord
)e
;
838 m_graphicContext
->SetFont( m_font
, m_textForegroundColour
);
842 bool wxGCDC::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
844 wxCHECK_MSG( Ok(), false, wxT("wxGCDC(cg)::DoGetPartialTextExtents - invalid DC") );
846 widths
.Add(0,text
.Length());
847 if ( text
.IsEmpty() )
850 wxArrayDouble widthsD
;
852 m_graphicContext
->GetPartialTextExtents( text
, widthsD
);
853 for ( size_t i
= 0; i
< widths
.GetCount(); ++i
)
854 widths
[i
] = (wxCoord
)(widthsD
[i
] + 0.5);
859 wxCoord
wxGCDC::GetCharWidth(void) const
862 DoGetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
867 wxCoord
wxGCDC::GetCharHeight(void) const
870 DoGetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
875 void wxGCDC::Clear(void)
877 wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::Clear - invalid DC") );
878 // TODO better implementation / incorporate size info into wxGCDC or context
879 m_graphicContext
->SetBrush( m_backgroundBrush
);
880 wxPen p
= *wxTRANSPARENT_PEN
;
881 m_graphicContext
->SetPen( p
);
882 DoDrawRectangle( 0, 0, 32000 , 32000 );
883 m_graphicContext
->SetPen( m_pen
);
884 m_graphicContext
->SetBrush( m_brush
);
887 void wxGCDC::DoGetSize(int *width
, int *height
) const
893 void wxGCDC::DoGradientFillLinear(const wxRect
& rect
,
894 const wxColour
& initialColour
,
895 const wxColour
& destColour
,
896 wxDirection nDirection
)
903 start
= rect
.GetRightBottom();
905 end
= rect
.GetLeftBottom();
908 start
= rect
.GetLeftBottom();
909 end
= rect
.GetRightBottom();
913 start
= rect
.GetLeftBottom();
915 end
= rect
.GetLeftTop();
918 start
= rect
.GetLeftTop();
919 end
= rect
.GetLeftBottom();
926 if (rect
.width
== 0 || rect
.height
== 0)
929 m_graphicContext
->SetBrush( m_graphicContext
->CreateLinearGradientBrush(
930 start
.x
,start
.y
,end
.x
,end
.y
, initialColour
, destColour
));
931 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
932 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
933 m_graphicContext
->SetPen(m_pen
);
936 void wxGCDC::DoGradientFillConcentric(const wxRect
& rect
,
937 const wxColour
& initialColour
,
938 const wxColour
& destColour
,
939 const wxPoint
& circleCenter
)
942 wxInt32 cx
= rect
.GetWidth() / 2;
943 wxInt32 cy
= rect
.GetHeight() / 2;
950 // make sure the background is filled (todo move into specific platform implementation ?)
951 m_graphicContext
->SetPen(*wxTRANSPARENT_PEN
);
952 m_graphicContext
->SetBrush( wxBrush( destColour
) );
953 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
955 m_graphicContext
->SetBrush( m_graphicContext
->CreateRadialGradientBrush(
956 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
957 rect
.x
+circleCenter
.x
,rect
.y
+circleCenter
.y
,
958 nRadius
,initialColour
,destColour
));
960 m_graphicContext
->DrawRectangle(rect
.x
,rect
.y
,rect
.width
,rect
.height
);
961 m_graphicContext
->SetPen(m_pen
);
964 void wxGCDC::DoDrawCheckMark(wxCoord x
, wxCoord y
,
965 wxCoord width
, wxCoord height
)
967 wxDCBase::DoDrawCheckMark(x
,y
,width
,height
);
970 #endif // wxUSE_GRAPHICS_CONTEXT