1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/graphicc.cpp
3 // Purpose: cairo device context class
4 // Author: Stefan Csomor
8 // Copyright: (c) 2006 Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
22 #include "wx/window.h"
25 #include "wx/dialog.h"
27 #include "wx/bitmap.h"
28 #include "wx/dcmemory.h"
31 #include "wx/dcprint.h"
32 #include "wx/module.h"
35 #include "wx/graphics.h"
37 #if wxUSE_GRAPHICS_CONTEXT
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
47 const double RAD2DEG
= 180.0 / M_PI
;
49 //-----------------------------------------------------------------------------
51 //-----------------------------------------------------------------------------
53 static inline double dmin(double a
, double b
)
57 static inline double dmax(double a
, double b
)
62 static inline double DegToRad(double deg
)
64 return (deg
* M_PI
) / 180.0;
66 static inline double RadToDeg(double deg
)
68 return (deg
* 180.0) / M_PI
;
71 //-----------------------------------------------------------------------------
72 // device context implementation
74 // more and more of the dc functionality should be implemented by calling
75 // the appropricate wxCairoContext, but we will have to do that step by step
76 // also coordinate conversions should be moved to native matrix ops
77 //-----------------------------------------------------------------------------
79 // we always stock two context states, one at entry, to be able to preserve the
80 // state we were called with, the other one after changing to HI Graphics orientation
81 // (this one is used for getting back clippings etc)
83 //-----------------------------------------------------------------------------
84 // wxGraphicsPath implementation
85 //-----------------------------------------------------------------------------
87 // TODO remove this dependency (gdiplus needs the macros)
90 #define max(a,b) (((a) > (b)) ? (a) : (b))
94 #define min(a,b) (((a) < (b)) ? (a) : (b))
102 class WXDLLIMPEXP_CORE wxCairoPath
: public wxGraphicsPath
106 wxCairoPath(wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
= NULL
);
109 virtual wxGraphicsPath
*Clone() const;
112 // These are the path primitives from which everything else can be constructed
115 // begins a new subpath at (x,y)
116 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
118 // adds a straight line from the current point to (x,y)
119 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
121 // adds a cubic Bezier curve from the current point, using two control points and an end point
122 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
125 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
126 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
128 // gets the last point of the current path, (0,0) if not yet set
129 virtual void GetCurrentPoint( wxDouble
& x
, wxDouble
&y
) ;
132 virtual void AddPath( const wxGraphicsPath
* path
);
134 // closes the current sub-path
135 virtual void CloseSubpath();
138 // These are convenience functions which - if not available natively will be assembled
139 // using the primitives from above
144 // appends a rectangle as a new closed subpath
145 virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ;
146 // appends an ellipsis as a new closed subpath fitting the passed rectangle
147 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
149 // draws a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2), also a straight line from (current) to (x1,y1)
150 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
153 // returns the native path
154 virtual void * GetNativePath() const ;
156 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
157 virtual void UnGetNativePath(void *p
) ;
159 // transforms each point of this path by the matrix
160 virtual void Transform( wxGraphicsMatrix
* matrix
) ;
162 // gets the bounding box enclosing all points (possibly including control points)
163 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) ;
165 virtual bool Contains( wxDouble x
, wxDouble y
, int fillStyle
= wxWINDING_RULE
) ;
168 cairo_t
* m_pathContext
;
169 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoPath
)
172 class WXDLLIMPEXP_CORE wxCairoMatrix
: public wxGraphicsMatrix
177 wxCairoMatrix(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
= NULL
) ;
178 virtual ~wxCairoMatrix() ;
180 virtual wxGraphicsMatrix
*Clone() const ;
182 // concatenates the matrix
183 virtual void Concat( const wxGraphicsMatrix
*t
);
185 // copies the passed in matrix
186 virtual void Copy( const wxGraphicsMatrix
*t
);
188 // sets the matrix to the respective values
189 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
190 wxDouble tx
=0.0, wxDouble ty
=0.0);
192 // makes this the inverse matrix
193 virtual void Invert();
195 // returns true if the elements of the transformation matrix are equal ?
196 virtual bool IsEqual( const wxGraphicsMatrix
* t
) const ;
198 // return true if this is the identity matrix
199 virtual bool IsIdentity();
205 // add the translation to this matrix
206 virtual void Translate( wxDouble dx
, wxDouble dy
);
208 // add the scale to this matrix
209 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
211 // add the rotation to this matrix (radians)
212 virtual void Rotate( wxDouble angle
);
215 // apply the transforms
218 // applies that matrix to the point
219 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
);
221 // applies the matrix except for translations
222 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
);
224 // returns the native representation
225 virtual void * GetNativeMatrix() const;
227 cairo_matrix_t m_matrix
;
229 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoMatrix
)
232 class WXDLLIMPEXP_CORE wxCairoPen
: public wxGraphicsPen
236 wxCairoPen( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
241 virtual void Apply( wxGraphicsContext
* context
);
242 virtual wxDouble
GetWidth() { return m_width
; }
252 cairo_line_cap_t m_cap
;
253 cairo_line_join_t m_join
;
256 const double *m_lengths
;
257 double *m_userLengths
;
260 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoPen
)
263 class WXDLLIMPEXP_CORE wxCairoBrush
: public wxGraphicsBrush
267 wxCairoBrush( wxGraphicsRenderer
* renderer
);
268 wxCairoBrush( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
271 virtual void Apply( wxGraphicsContext
* context
);
272 void CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
273 const wxColour
&c1
, const wxColour
&c2
);
274 void CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
275 const wxColour
&oColor
, const wxColour
&cColor
);
286 cairo_pattern_t
* m_brushPattern
;
288 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoBrush
)
291 class wxCairoFont
: public wxGraphicsFont
295 wxCairoFont( wxGraphicsRenderer
* renderer
, const wxFont
&font
, const wxColour
& col
);
298 virtual void Apply( wxGraphicsContext
* context
);
300 wxCharBuffer m_fontName
;
302 cairo_font_slant_t m_slant
;
303 cairo_font_weight_t m_weight
;
308 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoFont
)
311 class WXDLLIMPEXP_CORE wxCairoContext
: public wxGraphicsContext
313 DECLARE_NO_COPY_CLASS(wxCairoContext
)
316 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
);
318 wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
);
320 wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
);
321 wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
);
323 virtual ~wxCairoContext();
325 virtual void Clip( const wxRegion
®ion
);
327 // clips drawings to the rect
328 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
330 // resets the clipping to original extent
331 virtual void ResetClip();
333 virtual void * GetNativeContext();
335 virtual void StrokePath( const wxGraphicsPath
*p
);
336 virtual void FillPath( const wxGraphicsPath
*p
, int fillStyle
= wxWINDING_RULE
);
338 virtual void Translate( wxDouble dx
, wxDouble dy
);
339 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
340 virtual void Rotate( wxDouble angle
);
342 // concatenates this transform with the current transform of this context
343 virtual void ConcatTransform( const wxGraphicsMatrix
* matrix
);
345 // sets the transform of this context
346 virtual void SetTransform( const wxGraphicsMatrix
* matrix
);
348 // gets the matrix of this context
349 virtual void GetTransform( wxGraphicsMatrix
* matrix
);
351 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
352 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
353 virtual void PushState();
354 virtual void PopState();
356 virtual void DrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
357 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
358 wxDouble
*descent
, wxDouble
*externalLeading
) const;
359 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
365 //-----------------------------------------------------------------------------
366 // wxCairoPen implementation
367 //-----------------------------------------------------------------------------
369 IMPLEMENT_DYNAMIC_CLASS(wxCairoPen
,wxGraphicsPen
)
371 wxCairoPen::wxCairoPen() : wxGraphicsPen(NULL
)
373 wxLogDebug(wxT("Illegal Constructor called"));
376 wxCairoPen::~wxCairoPen()
378 delete[] m_userLengths
;
381 void wxCairoPen::Init()
384 m_userLengths
= NULL
;
389 wxCairoPen::wxCairoPen( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
390 : wxGraphicsPen(renderer
)
393 m_width
= pen
.GetWidth();
397 m_red
= m_pen
.GetColour().Red()/255.0;
398 m_green
= m_pen
.GetColour().Green()/255.0;
399 m_blue
= m_pen
.GetColour().Blue()/255.0;
400 m_alpha
= m_pen
.GetColour().Alpha()/255.0;
402 switch ( m_pen
.GetCap() )
405 m_cap
= CAIRO_LINE_CAP_ROUND
;
408 case wxCAP_PROJECTING
:
409 m_cap
= CAIRO_LINE_CAP_SQUARE
;
413 m_cap
= CAIRO_LINE_CAP_BUTT
;
417 m_cap
= CAIRO_LINE_CAP_BUTT
;
421 switch ( m_pen
.GetJoin() )
424 m_join
= CAIRO_LINE_JOIN_BEVEL
;
428 m_join
= CAIRO_LINE_JOIN_MITER
;
432 m_join
= CAIRO_LINE_JOIN_ROUND
;
436 m_join
= CAIRO_LINE_JOIN_MITER
;
440 const double dashUnit
= m_width
< 1.0 ? 1.0 : m_width
;
441 const double dotted
[] =
443 dashUnit
, dashUnit
+ 2.0
445 static const double short_dashed
[] =
449 static const double dashed
[] =
453 static const double dotted_dashed
[] =
455 9.0 , 6.0 , 3.0 , 3.0
458 switch ( m_pen
.GetStyle() )
464 m_count
= WXSIZEOF(dotted
);
465 m_userLengths
= new double[ m_count
] ;
466 memcpy( m_userLengths
, dotted
, sizeof(dotted
) );
467 m_lengths
= m_userLengths
;
472 m_count
= WXSIZEOF(dashed
);
477 m_count
= WXSIZEOF(short_dashed
);
482 m_count
= WXSIZEOF(dotted_dashed
);
488 m_count
= m_pen
.GetDashes( &wxdashes
) ;
489 if ((wxdashes
!= NULL
) && (m_count
> 0))
491 m_userLengths
= new double[m_count
] ;
492 for ( int i
= 0 ; i
< m_count
; ++i
)
494 m_userLengths
[i
] = wxdashes
[i
] * dashUnit
;
496 if ( i
% 2 == 1 && m_userLengths
[i
] < dashUnit
+ 2.0 )
497 m_userLengths
[i
] = dashUnit
+ 2.0 ;
498 else if ( i
% 2 == 0 && m_userLengths
[i
] < dashUnit
)
499 m_userLengths
[i
] = dashUnit
;
502 m_lengths
= m_userLengths
;
508 wxBitmap* bmp = pen.GetStipple();
509 if ( bmp && bmp->Ok() )
511 wxDELETE( m_penImage );
512 wxDELETE( m_penBrush );
513 m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
514 m_penBrush = new TextureBrush(m_penImage);
515 m_pen->SetBrush( m_penBrush );
521 if ( m_pen
.GetStyle() >= wxFIRST_HATCH
&& m_pen
.GetStyle() <= wxLAST_HATCH
)
524 wxDELETE( m_penBrush );
525 HatchStyle style = HatchStyleHorizontal;
526 switch( pen.GetStyle() )
528 case wxBDIAGONAL_HATCH :
529 style = HatchStyleBackwardDiagonal;
531 case wxCROSSDIAG_HATCH :
532 style = HatchStyleDiagonalCross;
534 case wxFDIAGONAL_HATCH :
535 style = HatchStyleForwardDiagonal;
538 style = HatchStyleCross;
540 case wxHORIZONTAL_HATCH :
541 style = HatchStyleHorizontal;
543 case wxVERTICAL_HATCH :
544 style = HatchStyleVertical;
548 m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() ,
549 pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent );
550 m_pen->SetBrush( m_penBrush )
557 void wxCairoPen::Apply( wxGraphicsContext
* context
)
559 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
560 cairo_set_line_width(ctext
,m_width
);
561 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
562 cairo_set_line_cap(ctext
,m_cap
);
563 cairo_set_line_join(ctext
,m_join
);
564 cairo_set_dash(ctext
,(double*)m_lengths
,m_count
,0.0);
567 //-----------------------------------------------------------------------------
568 // wxCairoBrush implementation
569 //-----------------------------------------------------------------------------
571 IMPLEMENT_DYNAMIC_CLASS(wxCairoBrush
,wxGraphicsBrush
)
573 wxCairoBrush::wxCairoBrush() : wxGraphicsBrush( NULL
)
575 wxLogDebug(wxT("Illegal Constructor called"));
578 wxCairoBrush::wxCairoBrush( wxGraphicsRenderer
* renderer
) : wxGraphicsBrush( renderer
)
583 wxCairoBrush::wxCairoBrush( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
)
584 : wxGraphicsBrush(renderer
)
586 m_red
= brush
.GetColour().Red()/255.0;
587 m_green
= brush
.GetColour().Green()/255.0;
588 m_blue
= brush
.GetColour().Blue()/255.0;
589 m_alpha
= brush
.GetColour().Alpha()/255.0;
591 if ( brush.GetStyle() == wxSOLID)
593 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
594 brush.GetColour().Green() , brush.GetColour().Blue() ) );
596 else if ( brush.IsHatch() )
598 HatchStyle style = HatchStyleHorizontal;
599 switch( brush.GetStyle() )
601 case wxBDIAGONAL_HATCH :
602 style = HatchStyleBackwardDiagonal;
604 case wxCROSSDIAG_HATCH :
605 style = HatchStyleDiagonalCross;
607 case wxFDIAGONAL_HATCH :
608 style = HatchStyleForwardDiagonal;
611 style = HatchStyleCross;
613 case wxHORIZONTAL_HATCH :
614 style = HatchStyleHorizontal;
616 case wxVERTICAL_HATCH :
617 style = HatchStyleVertical;
621 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
622 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
626 wxBitmap* bmp = brush.GetStipple();
627 if ( bmp && bmp->Ok() )
629 wxDELETE( m_brushImage );
630 m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
631 m_brush = new TextureBrush(m_brushImage);
637 wxCairoBrush::~wxCairoBrush ()
640 cairo_pattern_destroy(m_brushPattern
);
643 void wxCairoBrush::Apply( wxGraphicsContext
* context
)
645 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
646 if ( m_brushPattern
)
648 cairo_set_source(ctext
,m_brushPattern
);
652 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
656 void wxCairoBrush::CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
657 const wxColour
&c1
, const wxColour
&c2
)
659 m_brushPattern
= cairo_pattern_create_linear(x1
,y1
,x2
,y2
);
660 cairo_pattern_add_color_stop_rgba(m_brushPattern
,0.0,c1
.Red()/255.0,
661 c1
.Green()/255.0, c1
.Blue()/255.0,c1
.Alpha()/255.0);
662 cairo_pattern_add_color_stop_rgba(m_brushPattern
,1.0,c2
.Red()/255.0,
663 c2
.Green()/255.0, c2
.Blue()/255.0,c2
.Alpha()/255.0);
664 wxASSERT_MSG(cairo_pattern_status(m_brushPattern
) == CAIRO_STATUS_SUCCESS
, wxT("Couldn't create cairo pattern"));
667 void wxCairoBrush::CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
668 const wxColour
&oColor
, const wxColour
&cColor
)
670 m_brushPattern
= cairo_pattern_create_radial(xo
,yo
,0.0,xc
,yc
,radius
);
671 cairo_pattern_add_color_stop_rgba(m_brushPattern
,0.0,oColor
.Red()/255.0,
672 oColor
.Green()/255.0, oColor
.Blue()/255.0,oColor
.Alpha()/255.0);
673 cairo_pattern_add_color_stop_rgba(m_brushPattern
,1.0,cColor
.Red()/255.0,
674 cColor
.Green()/255.0, cColor
.Blue()/255.0,cColor
.Alpha()/255.0);
675 wxASSERT_MSG(cairo_pattern_status(m_brushPattern
) == CAIRO_STATUS_SUCCESS
, wxT("Couldn't create cairo pattern"));
678 void wxCairoBrush::Init()
680 m_brushPattern
= NULL
;
683 //-----------------------------------------------------------------------------
684 // wxCairoFont implementation
685 //-----------------------------------------------------------------------------
687 wxCairoFont::wxCairoFont() : wxGraphicsFont(NULL
)
689 wxLogDebug(wxT("Illegal Constructor called"));
692 wxCairoFont::wxCairoFont( wxGraphicsRenderer
* renderer
, const wxFont
&font
,
693 const wxColour
& col
) : wxGraphicsFont(renderer
)
695 m_red
= col
.Red()/255.0;
696 m_green
= col
.Green()/255.0;
697 m_blue
= col
.Blue()/255.0;
698 m_alpha
= col
.Alpha()/255.0;
700 m_size
= font
.GetPointSize();
701 m_fontName
= font
.GetFaceName().mb_str(wxConvUTF8
);
702 m_slant
= font
.GetStyle() == wxFONTSTYLE_ITALIC
? CAIRO_FONT_SLANT_ITALIC
:CAIRO_FONT_SLANT_NORMAL
;
703 m_weight
= font
.GetWeight() == wxFONTWEIGHT_BOLD
? CAIRO_FONT_WEIGHT_BOLD
:CAIRO_FONT_WEIGHT_NORMAL
;
706 wxCairoFont::~wxCairoFont()
710 void wxCairoFont::Apply( wxGraphicsContext
* context
)
712 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
713 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
714 cairo_select_font_face(ctext
,m_fontName
,m_slant
,m_weight
);
715 cairo_set_font_size(ctext
,m_size
);
720 //-----------------------------------------------------------------------------
721 // wxCairoPath implementation
722 //-----------------------------------------------------------------------------
724 wxCairoPath::wxCairoPath() : wxGraphicsPath(NULL
)
726 wxLogDebug(wxT("Illegal Constructor called"));
729 wxCairoPath::wxCairoPath( wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
)
730 : wxGraphicsPath(renderer
)
734 m_pathContext
= pathcontext
;
738 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
739 m_pathContext
= cairo_create(surface
);
740 cairo_surface_destroy (surface
);
744 wxCairoPath::~wxCairoPath()
746 cairo_destroy(m_pathContext
);
749 wxGraphicsPath
*wxCairoPath::Clone() const
751 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
752 cairo_t
* pathcontext
= cairo_create(surface
);
753 cairo_surface_destroy (surface
);
755 cairo_path_t
* path
= cairo_copy_path(m_pathContext
);
756 cairo_append_path(pathcontext
, path
);
757 cairo_path_destroy(path
);
758 return new wxCairoPath( GetRenderer() ,pathcontext
);
762 void* wxCairoPath::GetNativePath() const
764 return cairo_copy_path(m_pathContext
) ;
767 void wxCairoPath::UnGetNativePath(void *p
)
769 cairo_path_destroy((cairo_path_t
*)p
);
776 void wxCairoPath::MoveToPoint( wxDouble x
, wxDouble y
)
778 cairo_move_to(m_pathContext
,x
,y
);
781 void wxCairoPath::AddLineToPoint( wxDouble x
, wxDouble y
)
783 cairo_line_to(m_pathContext
,x
,y
);
786 void wxCairoPath::CloseSubpath()
788 cairo_close_path(m_pathContext
);
791 void wxCairoPath::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
793 cairo_curve_to(m_pathContext
,cx1
,cy1
,cx2
,cy2
,x
,y
);
796 // gets the last point of the current path, (0,0) if not yet set
797 void wxCairoPath::GetCurrentPoint( wxDouble
& x
, wxDouble
&y
)
800 cairo_get_current_point(m_pathContext
,&dx
,&dy
);
805 void wxCairoPath::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
807 // as clockwise means positive in our system (y pointing downwards)
808 // TODO make this interpretation dependent of the
810 if ( clockwise
||(endAngle
-startAngle
)>=2*M_PI
)
811 cairo_arc(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
813 cairo_arc_negative(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
816 // transforms each point of this path by the matrix
817 void wxCairoPath::Transform( wxGraphicsMatrix
* matrix
)
819 // as we don't have a true path object, we have to apply the inverse
820 // matrix to the context
821 cairo_matrix_t m
= *((cairo_matrix_t
*) matrix
->GetNativeMatrix());
822 cairo_matrix_invert( &m
);
823 cairo_transform(m_pathContext
,&m
);
826 // gets the bounding box enclosing all points (possibly including control points)
827 void wxCairoPath::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
)
831 cairo_stroke_extents( m_pathContext
, &x1
, &y1
, &x2
, &y2
);
855 bool wxCairoPath::Contains( wxDouble x
, wxDouble y
, int fillStyle
)
857 return cairo_in_stroke( m_pathContext
, x
, y
) != NULL
;
860 //-----------------------------------------------------------------------------
861 // wxCairoMatrix implementation
862 //-----------------------------------------------------------------------------
864 IMPLEMENT_DYNAMIC_CLASS(wxCairoMatrix
,wxGraphicsMatrix
)
866 wxCairoMatrix::wxCairoMatrix() : wxGraphicsMatrix(NULL
)
868 wxLogDebug(wxT("Illegal Constructor called"));
871 wxCairoMatrix::wxCairoMatrix(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
)
872 : wxGraphicsMatrix(renderer
)
878 wxCairoMatrix::~wxCairoMatrix()
883 wxGraphicsMatrix
*wxCairoMatrix::Clone() const
885 return new wxCairoMatrix(GetRenderer(),&m_matrix
);
888 // concatenates the matrix
889 void wxCairoMatrix::Concat( const wxGraphicsMatrix
*t
)
891 cairo_matrix_multiply( &m_matrix
, &m_matrix
, (cairo_matrix_t
*) t
->GetNativeMatrix());
894 // copies the passed in matrix
895 void wxCairoMatrix::Copy( const wxGraphicsMatrix
*t
)
897 m_matrix
= *((cairo_matrix_t
*) t
->GetNativeMatrix());
900 // sets the matrix to the respective values
901 void wxCairoMatrix::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
902 wxDouble tx
, wxDouble ty
)
904 cairo_matrix_init( &m_matrix
, a
, b
, c
, d
, tx
, ty
);
907 // makes this the inverse matrix
908 void wxCairoMatrix::Invert()
910 cairo_matrix_invert( &m_matrix
);
913 // returns true if the elements of the transformation matrix are equal ?
914 bool wxCairoMatrix::IsEqual( const wxGraphicsMatrix
* t
) const
916 const cairo_matrix_t
* tm
= (cairo_matrix_t
*) t
->GetNativeMatrix();
918 m_matrix
.xx
== tm
->xx
&&
919 m_matrix
.yx
== tm
->yx
&&
920 m_matrix
.xy
== tm
->xy
&&
921 m_matrix
.yy
== tm
->yy
&&
922 m_matrix
.x0
== tm
->x0
&&
923 m_matrix
.y0
== tm
->y0
) ;
926 // return true if this is the identity matrix
927 bool wxCairoMatrix::IsIdentity()
929 return ( m_matrix
.xx
== 1 && m_matrix
.yy
== 1 &&
930 m_matrix
.yx
== 0 && m_matrix
.xy
== 0 && m_matrix
.x0
== 0 && m_matrix
.y0
== 0);
937 // add the translation to this matrix
938 void wxCairoMatrix::Translate( wxDouble dx
, wxDouble dy
)
940 cairo_matrix_translate( &m_matrix
, dx
, dy
) ;
943 // add the scale to this matrix
944 void wxCairoMatrix::Scale( wxDouble xScale
, wxDouble yScale
)
946 cairo_matrix_scale( &m_matrix
, xScale
, yScale
) ;
949 // add the rotation to this matrix (radians)
950 void wxCairoMatrix::Rotate( wxDouble angle
)
952 cairo_matrix_rotate( &m_matrix
, angle
) ;
956 // apply the transforms
959 // applies that matrix to the point
960 void wxCairoMatrix::TransformPoint( wxDouble
*x
, wxDouble
*y
)
962 double lx
= *x
, ly
= *y
;
963 cairo_matrix_transform_point( &m_matrix
, &lx
, &ly
);
968 // applies the matrix except for translations
969 void wxCairoMatrix::TransformDistance( wxDouble
*dx
, wxDouble
*dy
)
971 double lx
= *dx
, ly
= *dy
;
972 cairo_matrix_transform_distance( &m_matrix
, &lx
, &ly
);
977 // returns the native representation
978 void * wxCairoMatrix::GetNativeMatrix() const
980 return (void*) &m_matrix
;
983 //-----------------------------------------------------------------------------
984 // wxCairoContext implementation
985 //-----------------------------------------------------------------------------
987 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
)
988 : wxGraphicsContext(renderer
)
991 m_context
= gdk_cairo_create( dc
.m_window
) ;
998 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
)
999 : wxGraphicsContext(renderer
)
1001 m_context
= gdk_cairo_create( drawable
) ;
1007 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
)
1008 : wxGraphicsContext(renderer
)
1010 m_context
= context
;
1015 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
)
1016 : wxGraphicsContext(renderer
)
1019 // something along these lines (copied from dcclient)
1021 GtkWidget
*widget
= window
->m_wxwindow
;
1023 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1024 // code should still be able to create wxClientDCs for them, so we will
1025 // use the parent window here then.
1028 window
= window
->GetParent();
1029 widget
= window
->m_wxwindow
;
1032 wxASSERT_MSG( widget
, wxT("wxCairoContext needs a widget") );
1034 GtkPizza
*pizza
= GTK_PIZZA( widget
);
1035 GdkDrawable
* drawable
= pizza
->bin_window
;
1036 m_context
= gdk_cairo_create( drawable
) ;
1042 wxCairoContext::~wxCairoContext()
1052 cairo_destroy(m_context
);
1057 void wxCairoContext::Clip( const wxRegion
& WXUNUSED(region
) )
1062 void wxCairoContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1067 void wxCairoContext::ResetClip()
1073 void wxCairoContext::StrokePath( const wxGraphicsPath
*path
)
1077 cairo_path_t
* cp
= (cairo_path_t
*) path
->GetNativePath() ;
1078 cairo_append_path(m_context
,cp
);
1080 cairo_stroke(m_context
);
1081 wxConstCast(path
, wxGraphicsPath
)->UnGetNativePath(cp
);
1085 void wxCairoContext::FillPath( const wxGraphicsPath
*path
, int fillStyle
)
1089 cairo_path_t
* cp
= (cairo_path_t
*) path
->GetNativePath() ;
1090 cairo_append_path(m_context
,cp
);
1091 m_brush
->Apply(this);
1092 cairo_set_fill_rule(m_context
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1093 cairo_fill(m_context
);
1094 wxConstCast(path
, wxGraphicsPath
)->UnGetNativePath(cp
);
1098 void wxCairoContext::Rotate( wxDouble angle
)
1100 cairo_rotate(m_context
,angle
);
1103 void wxCairoContext::Translate( wxDouble dx
, wxDouble dy
)
1105 cairo_translate(m_context
,dx
,dy
);
1108 void wxCairoContext::Scale( wxDouble xScale
, wxDouble yScale
)
1110 cairo_scale(m_context
,xScale
,yScale
);
1113 // concatenates this transform with the current transform of this context
1114 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix
* matrix
)
1116 cairo_transform(m_context
,(const cairo_matrix_t
*) matrix
->GetNativeMatrix());
1119 // sets the transform of this context
1120 void wxCairoContext::SetTransform( const wxGraphicsMatrix
* matrix
)
1122 cairo_set_matrix(m_context
,(const cairo_matrix_t
*) matrix
->GetNativeMatrix());
1125 // gets the matrix of this context
1126 void wxCairoContext::GetTransform( wxGraphicsMatrix
* matrix
)
1128 cairo_get_matrix(m_context
,(cairo_matrix_t
*) matrix
->GetNativeMatrix());
1133 void wxCairoContext::PushState()
1135 cairo_save(m_context
);
1138 void wxCairoContext::PopState()
1140 cairo_restore(m_context
);
1143 void wxCairoContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1146 Bitmap* image = Bitmap::FromHBITMAP((HBITMAP)bmp.GetHBITMAP(),(HPALETTE)bmp.GetPalette()->GetHPALETTE());
1147 m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ;
1152 void wxCairoContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1155 Bitmap* image = Bitmap::FromHICON((HICON)icon.GetHICON());
1156 m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ;
1162 void wxCairoContext::DrawText( const wxString
&str
, wxDouble x
, wxDouble y
)
1164 if ( m_font
== NULL
|| str
.IsEmpty())
1166 cairo_move_to(m_context
,x
,y
);
1167 const wxWX2MBbuf
buf(str
.mb_str(wxConvUTF8
));
1168 m_font
->Apply(this);
1169 cairo_show_text(m_context
,buf
);
1172 void wxCairoContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
1173 wxDouble
*descent
, wxDouble
*externalLeading
) const
1178 void wxCairoContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
1181 widths
.Add(0, text
.length());
1189 void * wxCairoContext::GetNativeContext()
1194 //-----------------------------------------------------------------------------
1195 // wxCairoRenderer declaration
1196 //-----------------------------------------------------------------------------
1198 class WXDLLIMPEXP_CORE wxCairoRenderer
: public wxGraphicsRenderer
1201 wxCairoRenderer() {}
1203 virtual ~wxCairoRenderer() {}
1207 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
1209 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
1211 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
1213 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
1217 virtual wxGraphicsPath
* CreatePath();
1221 virtual wxGraphicsMatrix
* CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
1222 wxDouble tx
=0.0, wxDouble ty
=0.0);
1225 virtual wxGraphicsPen
* CreatePen(const wxPen
& pen
) ;
1227 virtual wxGraphicsBrush
* CreateBrush(const wxBrush
& brush
) ;
1229 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
1230 virtual wxGraphicsBrush
* CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
1231 const wxColour
&c1
, const wxColour
&c2
) ;
1233 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)
1234 // with radius r and color cColor
1235 virtual wxGraphicsBrush
* CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
1236 const wxColour
&oColor
, const wxColour
&cColor
) ;
1239 virtual wxGraphicsFont
* CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) ;
1242 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer
)
1245 //-----------------------------------------------------------------------------
1246 // wxCairoRenderer implementation
1247 //-----------------------------------------------------------------------------
1249 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer
,wxGraphicsRenderer
)
1251 static wxCairoRenderer gs_cairoGraphicsRenderer
;
1254 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
1256 return &gs_cairoGraphicsRenderer
;
1260 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxWindowDC
& dc
)
1262 return new wxCairoContext(this,dc
);
1265 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeContext( void * context
)
1267 return new wxCairoContext(this,(cairo_t
*)context
);
1271 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeWindow( void * window
)
1274 return new wxCairoContext(this,(GdkDrawable
)window
);
1280 wxGraphicsContext
* wxCairoRenderer::CreateContext( wxWindow
* window
)
1282 return new wxCairoContext(this, window
);
1287 wxGraphicsPath
* wxCairoRenderer::CreatePath()
1289 return new wxCairoPath( this );
1295 wxGraphicsMatrix
* wxCairoRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1296 wxDouble tx
, wxDouble ty
)
1299 wxCairoMatrix
* m
= new wxCairoMatrix( this );
1300 m
->Set( a
,b
,c
,d
,tx
,ty
) ;
1304 wxGraphicsPen
* wxCairoRenderer::CreatePen(const wxPen
& pen
)
1306 if ( !pen
.Ok() || pen
.GetStyle() == wxTRANSPARENT
)
1309 return new wxCairoPen( this, pen
);
1312 wxGraphicsBrush
* wxCairoRenderer::CreateBrush(const wxBrush
& brush
)
1314 if ( !brush
.Ok() || brush
.GetStyle() == wxTRANSPARENT
)
1317 return new wxCairoBrush( this, brush
);
1320 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
1321 wxGraphicsBrush
* wxCairoRenderer::CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
1322 const wxColour
&c1
, const wxColour
&c2
)
1324 wxCairoBrush
* brush
= new wxCairoBrush(this);
1325 brush
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, c1
, c2
);
1329 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)
1330 // with radius r and color cColor
1331 wxGraphicsBrush
* wxCairoRenderer::CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
1332 const wxColour
&oColor
, const wxColour
&cColor
)
1334 wxCairoBrush
* brush
= new wxCairoBrush(this);
1335 brush
->CreateRadialGradientBrush(xo
,yo
,xc
,yc
,radius
,oColor
,cColor
);
1340 wxGraphicsFont
* wxCairoRenderer::CreateFont( const wxFont
&font
, const wxColour
&col
)
1343 return new wxCairoFont( this , font
, col
);
1348 #endif // wxUSE_GRAPHICS_CONTEXT