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"
18 #if wxUSE_GRAPHICS_CONTEXT
20 #include "wx/graphics.h"
27 #include "wx/bitmap.h"
29 #include "wx/dcclient.h"
30 #include "wx/dcmemory.h"
31 #include "wx/dcprint.h"
34 #include "wx/private/graphics.h"
35 #include "wx/rawbmp.h"
36 #include "wx/vector.h"
40 //-----------------------------------------------------------------------------
41 // device context implementation
43 // more and more of the dc functionality should be implemented by calling
44 // the appropricate wxCairoContext, but we will have to do that step by step
45 // also coordinate conversions should be moved to native matrix ops
46 //-----------------------------------------------------------------------------
48 // we always stock two context states, one at entry, to be able to preserve the
49 // state we were called with, the other one after changing to HI Graphics orientation
50 // (this one is used for getting back clippings etc)
52 //-----------------------------------------------------------------------------
53 // wxGraphicsPath implementation
54 //-----------------------------------------------------------------------------
56 // TODO remove this dependency (gdiplus needs the macros)
59 #define max(a,b) (((a) > (b)) ? (a) : (b))
63 #define min(a,b) (((a) < (b)) ? (a) : (b))
68 #include <cairo-win32.h>
73 #include "wx/fontutil.h"
74 #include "wx/gtk/dc.h"
78 #include <cairo-win32.h>
82 #include "wx/osx/private.h"
83 #include <cairo-quartz.h>
84 #include <cairo-atsui.h>
87 class WXDLLIMPEXP_CORE wxCairoPathData
: public wxGraphicsPathData
90 wxCairoPathData(wxGraphicsRenderer
* renderer
, cairo_t
* path
= NULL
);
93 virtual wxGraphicsObjectRefData
*Clone() const;
96 // These are the path primitives from which everything else can be constructed
99 // begins a new subpath at (x,y)
100 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
102 // adds a straight line from the current point to (x,y)
103 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
105 // adds a cubic Bezier curve from the current point, using two control points and an end point
106 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
109 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
110 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
112 // gets the last point of the current path, (0,0) if not yet set
113 virtual void GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const;
116 virtual void AddPath( const wxGraphicsPathData
* path
);
118 // closes the current sub-path
119 virtual void CloseSubpath();
122 // These are convenience functions which - if not available natively will be assembled
123 // using the primitives from above
128 // appends a rectangle as a new closed subpath
129 virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ;
130 // appends an ellipsis as a new closed subpath fitting the passed rectangle
131 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
133 // 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)
134 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
137 // returns the native path
138 virtual void * GetNativePath() const ;
140 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
141 virtual void UnGetNativePath(void *p
) const;
143 // transforms each point of this path by the matrix
144 virtual void Transform( const wxGraphicsMatrixData
* matrix
) ;
146 // gets the bounding box enclosing all points (possibly including control points)
147 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const;
149 virtual bool Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
) const;
152 cairo_t
* m_pathContext
;
155 class WXDLLIMPEXP_CORE wxCairoMatrixData
: public wxGraphicsMatrixData
158 wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
= NULL
) ;
159 virtual ~wxCairoMatrixData() ;
161 virtual wxGraphicsObjectRefData
*Clone() const ;
163 // concatenates the matrix
164 virtual void Concat( const wxGraphicsMatrixData
*t
);
166 // sets the matrix to the respective values
167 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
168 wxDouble tx
=0.0, wxDouble ty
=0.0);
170 // gets the component valuess of the matrix
171 virtual void Get(wxDouble
* a
=NULL
, wxDouble
* b
=NULL
, wxDouble
* c
=NULL
,
172 wxDouble
* d
=NULL
, wxDouble
* tx
=NULL
, wxDouble
* ty
=NULL
) const;
174 // makes this the inverse matrix
175 virtual void Invert();
177 // returns true if the elements of the transformation matrix are equal ?
178 virtual bool IsEqual( const wxGraphicsMatrixData
* t
) const ;
180 // return true if this is the identity matrix
181 virtual bool IsIdentity() const;
187 // add the translation to this matrix
188 virtual void Translate( wxDouble dx
, wxDouble dy
);
190 // add the scale to this matrix
191 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
193 // add the rotation to this matrix (radians)
194 virtual void Rotate( wxDouble angle
);
197 // apply the transforms
200 // applies that matrix to the point
201 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
) const;
203 // applies the matrix except for translations
204 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const;
206 // returns the native representation
207 virtual void * GetNativeMatrix() const;
209 cairo_matrix_t m_matrix
;
212 class WXDLLIMPEXP_CORE wxCairoPenData
: public wxGraphicsObjectRefData
215 wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
220 virtual void Apply( wxGraphicsContext
* context
);
221 virtual wxDouble
GetWidth() { return m_width
; }
231 cairo_line_cap_t m_cap
;
232 cairo_line_join_t m_join
;
235 const double *m_lengths
;
236 double *m_userLengths
;
240 wxDECLARE_NO_COPY_CLASS(wxCairoPenData
);
243 class WXDLLIMPEXP_CORE wxCairoBrushData
: public wxGraphicsObjectRefData
246 wxCairoBrushData( wxGraphicsRenderer
* renderer
);
247 wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
248 ~wxCairoBrushData ();
250 virtual void Apply( wxGraphicsContext
* context
);
252 void CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
253 wxDouble x2
, wxDouble y2
,
254 const wxGraphicsGradientStops
& stops
);
255 void CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
256 wxDouble xc
, wxDouble yc
, wxDouble radius
,
257 const wxGraphicsGradientStops
& stops
);
262 // common part of Create{Linear,Radial}GradientBrush()
263 void AddGradientStops(const wxGraphicsGradientStops
& stops
);
271 cairo_pattern_t
* m_brushPattern
;
274 class wxCairoFontData
: public wxGraphicsObjectRefData
277 wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
, const wxColour
& col
);
280 virtual void Apply( wxGraphicsContext
* context
);
282 const PangoFontDescription
* GetFont() const { return m_font
; }
283 bool GetUnderlined() const { return m_underlined
; }
293 cairo_font_face_t
*m_font
;
294 #elif defined(__WXGTK__)
295 PangoFontDescription
* m_font
;
297 wxCharBuffer m_fontName
;
298 cairo_font_slant_t m_slant
;
299 cairo_font_weight_t m_weight
;
302 wxCairoContext( wxGraphicsRenderer
* renderer
, HDC context
);
306 class wxCairoBitmapData
: public wxGraphicsObjectRefData
309 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
);
310 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
);
311 ~wxCairoBitmapData();
313 virtual cairo_surface_t
* GetCairoSurface() { return m_surface
; }
314 virtual cairo_pattern_t
* GetCairoPattern() { return m_pattern
; }
315 virtual wxSize
GetSize() { return wxSize(m_width
, m_height
); }
317 cairo_surface_t
* m_surface
;
318 cairo_pattern_t
* m_pattern
;
321 unsigned char* m_buffer
;
324 class WXDLLIMPEXP_CORE wxCairoContext
: public wxGraphicsContext
327 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
);
328 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
);
329 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
);
331 wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
);
333 wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
);
334 wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
);
336 virtual ~wxCairoContext();
338 virtual bool ShouldOffset() const
341 if ( !m_pen
.IsNull() )
343 penwidth
= (int)((wxCairoPenData
*)m_pen
.GetRefData())->GetWidth();
347 return ( penwidth
% 2 ) == 1;
350 virtual void Clip( const wxRegion
®ion
);
352 cairo_surface_t
* m_mswSurface
;
355 // clips drawings to the rect
356 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
358 // resets the clipping to original extent
359 virtual void ResetClip();
361 virtual void * GetNativeContext();
363 virtual bool SetAntialiasMode(wxAntialiasMode antialias
);
365 virtual bool SetCompositionMode(wxCompositionMode op
);
367 virtual void BeginLayer(wxDouble opacity
);
369 virtual void EndLayer();
371 virtual void StrokePath( const wxGraphicsPath
& p
);
372 virtual void FillPath( const wxGraphicsPath
& p
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
);
374 virtual void Translate( wxDouble dx
, wxDouble dy
);
375 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
376 virtual void Rotate( wxDouble angle
);
378 // concatenates this transform with the current transform of this context
379 virtual void ConcatTransform( const wxGraphicsMatrix
& matrix
);
381 // sets the transform of this context
382 virtual void SetTransform( const wxGraphicsMatrix
& matrix
);
384 // gets the matrix of this context
385 virtual wxGraphicsMatrix
GetTransform() const;
387 virtual void DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
388 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
389 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
390 virtual void PushState();
391 virtual void PopState();
393 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
394 wxDouble
*descent
, wxDouble
*externalLeading
) const;
395 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
398 virtual void DoDrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
401 void Init(cairo_t
*context
);
405 wxVector
<float> m_layerOpacities
;
407 wxDECLARE_NO_COPY_CLASS(wxCairoContext
);
410 //-----------------------------------------------------------------------------
411 // wxCairoPenData implementation
412 //-----------------------------------------------------------------------------
414 wxCairoPenData::~wxCairoPenData()
416 delete[] m_userLengths
;
419 void wxCairoPenData::Init()
422 m_userLengths
= NULL
;
427 wxCairoPenData::wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
428 : wxGraphicsObjectRefData(renderer
)
432 m_width
= m_pen
.GetWidth();
436 m_red
= m_pen
.GetColour().Red()/255.0;
437 m_green
= m_pen
.GetColour().Green()/255.0;
438 m_blue
= m_pen
.GetColour().Blue()/255.0;
439 m_alpha
= m_pen
.GetColour().Alpha()/255.0;
441 switch ( m_pen
.GetCap() )
444 m_cap
= CAIRO_LINE_CAP_ROUND
;
447 case wxCAP_PROJECTING
:
448 m_cap
= CAIRO_LINE_CAP_SQUARE
;
452 m_cap
= CAIRO_LINE_CAP_BUTT
;
456 m_cap
= CAIRO_LINE_CAP_BUTT
;
460 switch ( m_pen
.GetJoin() )
463 m_join
= CAIRO_LINE_JOIN_BEVEL
;
467 m_join
= CAIRO_LINE_JOIN_MITER
;
471 m_join
= CAIRO_LINE_JOIN_ROUND
;
475 m_join
= CAIRO_LINE_JOIN_MITER
;
479 const double dashUnit
= m_width
< 1.0 ? 1.0 : m_width
;
480 const double dotted
[] =
482 dashUnit
, dashUnit
+ 2.0
484 static const double short_dashed
[] =
488 static const double dashed
[] =
492 static const double dotted_dashed
[] =
494 9.0 , 6.0 , 3.0 , 3.0
497 switch ( m_pen
.GetStyle() )
499 case wxPENSTYLE_SOLID
:
502 case wxPENSTYLE_DOT
:
503 m_count
= WXSIZEOF(dotted
);
504 m_userLengths
= new double[ m_count
] ;
505 memcpy( m_userLengths
, dotted
, sizeof(dotted
) );
506 m_lengths
= m_userLengths
;
509 case wxPENSTYLE_LONG_DASH
:
511 m_count
= WXSIZEOF(dashed
);
514 case wxPENSTYLE_SHORT_DASH
:
515 m_lengths
= short_dashed
;
516 m_count
= WXSIZEOF(short_dashed
);
519 case wxPENSTYLE_DOT_DASH
:
520 m_lengths
= dotted_dashed
;
521 m_count
= WXSIZEOF(dotted_dashed
);
524 case wxPENSTYLE_USER_DASH
:
527 m_count
= m_pen
.GetDashes( &wxdashes
) ;
528 if ((wxdashes
!= NULL
) && (m_count
> 0))
530 m_userLengths
= new double[m_count
] ;
531 for ( int i
= 0 ; i
< m_count
; ++i
)
533 m_userLengths
[i
] = wxdashes
[i
] * dashUnit
;
535 if ( i
% 2 == 1 && m_userLengths
[i
] < dashUnit
+ 2.0 )
536 m_userLengths
[i
] = dashUnit
+ 2.0 ;
537 else if ( i
% 2 == 0 && m_userLengths
[i
] < dashUnit
)
538 m_userLengths
[i
] = dashUnit
;
541 m_lengths
= m_userLengths
;
544 case wxPENSTYLE_STIPPLE
:
547 wxBitmap* bmp = pen.GetStipple();
548 if ( bmp && bmp->Ok() )
550 wxDELETE( m_penImage );
551 wxDELETE( m_penBrush );
552 m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
553 m_penBrush = new TextureBrush(m_penImage);
554 m_pen->SetBrush( m_penBrush );
560 if ( m_pen
.GetStyle() >= wxPENSTYLE_FIRST_HATCH
561 && m_pen
.GetStyle() <= wxPENSTYLE_LAST_HATCH
)
564 wxDELETE( m_penBrush );
565 HatchStyle style = HatchStyleHorizontal;
566 switch( pen.GetStyle() )
568 case wxPENSTYLE_BDIAGONAL_HATCH :
569 style = HatchStyleBackwardDiagonal;
571 case wxPENSTYLE_CROSSDIAG_HATCH :
572 style = HatchStyleDiagonalCross;
574 case wxPENSTYLE_FDIAGONAL_HATCH :
575 style = HatchStyleForwardDiagonal;
577 case wxPENSTYLE_CROSS_HATCH :
578 style = HatchStyleCross;
580 case wxPENSTYLE_HORIZONTAL_HATCH :
581 style = HatchStyleHorizontal;
583 case wxPENSTYLE_VERTICAL_HATCH :
584 style = HatchStyleVertical;
588 m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() ,
589 pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent );
590 m_pen->SetBrush( m_penBrush )
597 void wxCairoPenData::Apply( wxGraphicsContext
* context
)
599 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
600 cairo_set_line_width(ctext
,m_width
);
601 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
602 cairo_set_line_cap(ctext
,m_cap
);
603 cairo_set_line_join(ctext
,m_join
);
604 cairo_set_dash(ctext
,(double*)m_lengths
,m_count
,0.0);
607 //-----------------------------------------------------------------------------
608 // wxCairoBrushData implementation
609 //-----------------------------------------------------------------------------
611 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
)
612 : wxGraphicsObjectRefData( renderer
)
617 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
)
618 : wxGraphicsObjectRefData(renderer
)
622 m_red
= brush
.GetColour().Red()/255.0;
623 m_green
= brush
.GetColour().Green()/255.0;
624 m_blue
= brush
.GetColour().Blue()/255.0;
625 m_alpha
= brush
.GetColour().Alpha()/255.0;
627 if ( brush.GetStyle() == wxBRUSHSTYLE_SOLID)
629 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
630 brush.GetColour().Green() , brush.GetColour().Blue() ) );
632 else if ( brush.IsHatch() )
634 HatchStyle style = HatchStyleHorizontal;
635 switch( brush.GetStyle() )
637 case wxBRUSHSTYLE_BDIAGONAL_HATCH :
638 style = HatchStyleBackwardDiagonal;
640 case wxBRUSHSTYLE_CROSSDIAG_HATCH :
641 style = HatchStyleDiagonalCross;
643 case wxBRUSHSTYLE_FDIAGONAL_HATCH :
644 style = HatchStyleForwardDiagonal;
646 case wxBRUSHSTYLE_CROSS_HATCH :
647 style = HatchStyleCross;
649 case wxBRUSHSTYLE_HORIZONTAL_HATCH :
650 style = HatchStyleHorizontal;
652 case wxBRUSHSTYLE_VERTICAL_HATCH :
653 style = HatchStyleVertical;
657 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
658 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
662 wxBitmap* bmp = brush.GetStipple();
663 if ( bmp && bmp->Ok() )
665 wxDELETE( m_brushImage );
666 m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
667 m_brush = new TextureBrush(m_brushImage);
673 wxCairoBrushData::~wxCairoBrushData ()
676 cairo_pattern_destroy(m_brushPattern
);
679 void wxCairoBrushData::Apply( wxGraphicsContext
* context
)
681 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
682 if ( m_brushPattern
)
684 cairo_set_source(ctext
,m_brushPattern
);
688 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
692 void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops
& stops
)
694 // loop over all the stops, they include the beginning and ending ones
695 const unsigned numStops
= stops
.GetCount();
696 for ( unsigned n
= 0; n
< numStops
; n
++ )
698 const wxGraphicsGradientStop stop
= stops
.Item(n
);
700 const wxColour col
= stop
.GetColour();
702 cairo_pattern_add_color_stop_rgba
713 wxASSERT_MSG(cairo_pattern_status(m_brushPattern
) == CAIRO_STATUS_SUCCESS
,
714 wxT("Couldn't create cairo pattern"));
718 wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
719 wxDouble x2
, wxDouble y2
,
720 const wxGraphicsGradientStops
& stops
)
722 m_brushPattern
= cairo_pattern_create_linear(x1
,y1
,x2
,y2
);
724 AddGradientStops(stops
);
728 wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
729 wxDouble xc
, wxDouble yc
,
731 const wxGraphicsGradientStops
& stops
)
733 m_brushPattern
= cairo_pattern_create_radial(xo
,yo
,0.0,xc
,yc
,radius
);
735 AddGradientStops(stops
);
738 void wxCairoBrushData::Init()
740 m_brushPattern
= NULL
;
743 //-----------------------------------------------------------------------------
744 // wxCairoFontData implementation
745 //-----------------------------------------------------------------------------
747 wxCairoFontData::wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
,
748 const wxColour
& col
) : wxGraphicsObjectRefData(renderer
)
750 m_red
= col
.Red()/255.0;
751 m_green
= col
.Green()/255.0;
752 m_blue
= col
.Blue()/255.0;
753 m_alpha
= col
.Alpha()/255.0;
754 m_size
= font
.GetPointSize();
755 m_underlined
= font
.GetUnderlined();
758 m_font
= cairo_quartz_font_face_create_for_cgfont( font
.OSXGetCGFont() );
759 #elif defined(__WXGTK__)
760 m_font
= pango_font_description_copy( font
.GetNativeFontInfo()->description
);
762 m_fontName
= font
.GetFaceName().mb_str(wxConvUTF8
);
763 m_slant
= font
.GetStyle() == wxFONTSTYLE_ITALIC
? CAIRO_FONT_SLANT_ITALIC
:CAIRO_FONT_SLANT_NORMAL
;
764 m_weight
= font
.GetWeight() == wxFONTWEIGHT_BOLD
? CAIRO_FONT_WEIGHT_BOLD
:CAIRO_FONT_WEIGHT_NORMAL
;
768 wxCairoFontData::~wxCairoFontData()
771 cairo_font_face_destroy( m_font
);
772 #elif defined(__WXGTK__)
773 pango_font_description_free( m_font
);
778 void wxCairoFontData::Apply( wxGraphicsContext
* context
)
780 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
781 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
783 // the rest is done using Pango layouts
784 #elif defined(__WXMAC__)
785 cairo_set_font_face(ctext
, m_font
);
786 cairo_set_font_size(ctext
, m_size
);
788 cairo_select_font_face(ctext
, m_fontName
, m_slant
, m_weights
);
789 cairo_set_font_size(ctext
, m_size
);
793 //-----------------------------------------------------------------------------
794 // wxCairoPathData implementation
795 //-----------------------------------------------------------------------------
797 wxCairoPathData::wxCairoPathData( wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
)
798 : wxGraphicsPathData(renderer
)
802 m_pathContext
= pathcontext
;
806 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
807 m_pathContext
= cairo_create(surface
);
808 cairo_surface_destroy (surface
);
812 wxCairoPathData::~wxCairoPathData()
814 cairo_destroy(m_pathContext
);
817 wxGraphicsObjectRefData
*wxCairoPathData::Clone() const
819 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
820 cairo_t
* pathcontext
= cairo_create(surface
);
821 cairo_surface_destroy (surface
);
823 cairo_path_t
* path
= cairo_copy_path(m_pathContext
);
824 cairo_append_path(pathcontext
, path
);
825 cairo_path_destroy(path
);
826 return new wxCairoPathData( GetRenderer() ,pathcontext
);
830 void* wxCairoPathData::GetNativePath() const
832 return cairo_copy_path(m_pathContext
) ;
835 void wxCairoPathData::UnGetNativePath(void *p
) const
837 cairo_path_destroy((cairo_path_t
*)p
);
844 void wxCairoPathData::MoveToPoint( wxDouble x
, wxDouble y
)
846 cairo_move_to(m_pathContext
,x
,y
);
849 void wxCairoPathData::AddLineToPoint( wxDouble x
, wxDouble y
)
851 cairo_line_to(m_pathContext
,x
,y
);
854 void wxCairoPathData::AddPath( const wxGraphicsPathData
* path
)
856 cairo_path_t
* p
= (cairo_path_t
*)path
->GetNativePath();
857 cairo_append_path(m_pathContext
, p
);
861 void wxCairoPathData::CloseSubpath()
863 cairo_close_path(m_pathContext
);
866 void wxCairoPathData::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
868 cairo_curve_to(m_pathContext
,cx1
,cy1
,cx2
,cy2
,x
,y
);
871 // gets the last point of the current path, (0,0) if not yet set
872 void wxCairoPathData::GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const
875 cairo_get_current_point(m_pathContext
,&dx
,&dy
);
882 void wxCairoPathData::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
884 // as clockwise means positive in our system (y pointing downwards)
885 // TODO make this interpretation dependent of the
887 if ( clockwise
||(endAngle
-startAngle
)>=2*M_PI
)
888 cairo_arc(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
890 cairo_arc_negative(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
893 // transforms each point of this path by the matrix
894 void wxCairoPathData::Transform( const wxGraphicsMatrixData
* matrix
)
896 // as we don't have a true path object, we have to apply the inverse
897 // matrix to the context
898 cairo_matrix_t m
= *((cairo_matrix_t
*) matrix
->GetNativeMatrix());
899 cairo_matrix_invert( &m
);
900 cairo_transform(m_pathContext
,&m
);
903 // gets the bounding box enclosing all points (possibly including control points)
904 void wxCairoPathData::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const
908 cairo_stroke_extents( m_pathContext
, &x1
, &y1
, &x2
, &y2
);
932 bool wxCairoPathData::Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
) const
934 cairo_set_fill_rule(m_pathContext
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
935 return cairo_in_fill( m_pathContext
, x
, y
) != 0;
938 //-----------------------------------------------------------------------------
939 // wxCairoMatrixData implementation
940 //-----------------------------------------------------------------------------
942 wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
)
943 : wxGraphicsMatrixData(renderer
)
949 wxCairoMatrixData::~wxCairoMatrixData()
954 wxGraphicsObjectRefData
*wxCairoMatrixData::Clone() const
956 return new wxCairoMatrixData(GetRenderer(),&m_matrix
);
959 // concatenates the matrix
960 void wxCairoMatrixData::Concat( const wxGraphicsMatrixData
*t
)
962 cairo_matrix_multiply( &m_matrix
, &m_matrix
, (cairo_matrix_t
*) t
->GetNativeMatrix());
965 // sets the matrix to the respective values
966 void wxCairoMatrixData::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
967 wxDouble tx
, wxDouble ty
)
969 cairo_matrix_init( &m_matrix
, a
, b
, c
, d
, tx
, ty
);
972 // gets the component valuess of the matrix
973 void wxCairoMatrixData::Get(wxDouble
* a
, wxDouble
* b
, wxDouble
* c
,
974 wxDouble
* d
, wxDouble
* tx
, wxDouble
* ty
) const
976 if (a
) *a
= m_matrix
.xx
;
977 if (b
) *b
= m_matrix
.yx
;
978 if (c
) *c
= m_matrix
.xy
;
979 if (d
) *d
= m_matrix
.yy
;
980 if (tx
) *tx
= m_matrix
.x0
;
981 if (ty
) *ty
= m_matrix
.y0
;
984 // makes this the inverse matrix
985 void wxCairoMatrixData::Invert()
987 cairo_matrix_invert( &m_matrix
);
990 // returns true if the elements of the transformation matrix are equal ?
991 bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData
* t
) const
993 const cairo_matrix_t
* tm
= (cairo_matrix_t
*) t
->GetNativeMatrix();
995 m_matrix
.xx
== tm
->xx
&&
996 m_matrix
.yx
== tm
->yx
&&
997 m_matrix
.xy
== tm
->xy
&&
998 m_matrix
.yy
== tm
->yy
&&
999 m_matrix
.x0
== tm
->x0
&&
1000 m_matrix
.y0
== tm
->y0
) ;
1003 // return true if this is the identity matrix
1004 bool wxCairoMatrixData::IsIdentity() const
1006 return ( m_matrix
.xx
== 1 && m_matrix
.yy
== 1 &&
1007 m_matrix
.yx
== 0 && m_matrix
.xy
== 0 && m_matrix
.x0
== 0 && m_matrix
.y0
== 0);
1014 // add the translation to this matrix
1015 void wxCairoMatrixData::Translate( wxDouble dx
, wxDouble dy
)
1017 cairo_matrix_translate( &m_matrix
, dx
, dy
) ;
1020 // add the scale to this matrix
1021 void wxCairoMatrixData::Scale( wxDouble xScale
, wxDouble yScale
)
1023 cairo_matrix_scale( &m_matrix
, xScale
, yScale
) ;
1026 // add the rotation to this matrix (radians)
1027 void wxCairoMatrixData::Rotate( wxDouble angle
)
1029 cairo_matrix_rotate( &m_matrix
, angle
) ;
1033 // apply the transforms
1036 // applies that matrix to the point
1037 void wxCairoMatrixData::TransformPoint( wxDouble
*x
, wxDouble
*y
) const
1039 double lx
= *x
, ly
= *y
;
1040 cairo_matrix_transform_point( &m_matrix
, &lx
, &ly
);
1045 // applies the matrix except for translations
1046 void wxCairoMatrixData::TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const
1048 double lx
= *dx
, ly
= *dy
;
1049 cairo_matrix_transform_distance( &m_matrix
, &lx
, &ly
);
1054 // returns the native representation
1055 void * wxCairoMatrixData::GetNativeMatrix() const
1057 return (void*) &m_matrix
;
1060 // wxCairoBitmap implementation
1061 //-----------------------------------------------------------------------------
1063 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
) :
1064 wxGraphicsObjectRefData( renderer
)
1067 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1070 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
) : wxGraphicsObjectRefData( renderer
)
1072 wxCHECK_RET( bmp
.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap"));
1074 int bw
= m_width
= bmp
.GetWidth();
1075 int bh
= m_height
= bmp
.GetHeight();
1076 wxBitmap bmpSource
= bmp
; // we need a non-const instance
1077 m_buffer
= new unsigned char[bw
*bh
*4];
1078 wxUint32
* data
= (wxUint32
*)m_buffer
;
1080 // Create a surface object and copy the bitmap pixel data to it. if the
1081 // image has alpha (or a mask represented as alpha) then we'll use a
1082 // different format and iterator than if it doesn't...
1083 if (bmpSource
.HasAlpha() || bmpSource
.GetMask())
1085 m_surface
= cairo_image_surface_create_for_data(
1086 m_buffer
, CAIRO_FORMAT_ARGB32
, bw
, bh
, bw
*4);
1087 wxAlphaPixelData
pixData(bmpSource
, wxPoint(0,0), wxSize(bw
, bh
));
1088 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1090 wxAlphaPixelData::Iterator
p(pixData
);
1091 for (int y
=0; y
<bh
; y
++)
1093 wxAlphaPixelData::Iterator rowStart
= p
;
1094 for (int x
=0; x
<bw
; x
++)
1096 // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity,
1097 // with alpha in the upper 8 bits, then red, then green, then
1098 // blue. The 32-bit quantities are stored native-endian.
1099 // Pre-multiplied alpha is used.
1100 unsigned char alpha
= p
.Alpha();
1104 *data
= ( alpha
<< 24
1105 | (p
.Red() * alpha
/255) << 16
1106 | (p
.Green() * alpha
/255) << 8
1107 | (p
.Blue() * alpha
/255) );
1112 p
.OffsetY(pixData
, 1);
1117 m_surface
= cairo_image_surface_create_for_data(
1118 m_buffer
, CAIRO_FORMAT_RGB24
, bw
, bh
, bw
*4);
1119 wxNativePixelData
pixData(bmpSource
, wxPoint(0,0), wxSize(bw
, bh
));
1120 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1122 wxNativePixelData::Iterator
p(pixData
);
1123 for (int y
=0; y
<bh
; y
++)
1125 wxNativePixelData::Iterator rowStart
= p
;
1126 for (int x
=0; x
<bw
; x
++)
1128 // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with
1129 // the upper 8 bits unused. Red, Green, and Blue are stored in
1130 // the remaining 24 bits in that order. The 32-bit quantities
1131 // are stored native-endian.
1132 *data
= ( p
.Red() << 16 | p
.Green() << 8 | p
.Blue() );
1137 p
.OffsetY(pixData
, 1);
1140 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1143 wxCairoBitmapData::~wxCairoBitmapData()
1146 cairo_pattern_destroy(m_pattern
);
1149 cairo_surface_destroy(m_surface
);
1156 //-----------------------------------------------------------------------------
1157 // wxCairoContext implementation
1158 //-----------------------------------------------------------------------------
1160 class wxCairoOffsetHelper
1163 wxCairoOffsetHelper( cairo_t
* ctx
, bool offset
)
1168 cairo_translate( m_ctx
, 0.5, 0.5 );
1170 ~wxCairoOffsetHelper( )
1173 cairo_translate( m_ctx
, -0.5, -0.5 );
1180 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
)
1181 : wxGraphicsContext(renderer
)
1184 const wxDCImpl
*impl
= dc
.GetImpl();
1185 Init( (cairo_t
*) impl
->GetCairoContext() );
1187 wxPoint org
= dc
.GetDeviceOrigin();
1188 cairo_translate( m_context
, org
.x
, org
.y
);
1191 dc
.GetUserScale( &sx
, &sy
);
1192 cairo_scale( m_context
, sx
, sy
);
1194 org
= dc
.GetLogicalOrigin();
1195 cairo_translate( m_context
, -org
.x
, -org
.y
);
1199 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
)
1200 : wxGraphicsContext(renderer
)
1203 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1204 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1207 wxGraphicsMatrix matrix
= CreateMatrix();
1209 wxPoint org
= dc
.GetDeviceOrigin();
1210 matrix
.Translate( org
.x
, org
.y
);
1212 org
= dc
.GetLogicalOrigin();
1213 matrix
.Translate( -org
.x
, -org
.y
);
1216 dc
.GetUserScale( &sx
, &sy
);
1217 matrix
.Scale( sx
, sy
);
1219 ConcatTransform( matrix
);
1225 dc
.GetSize( &width
, &height
);
1226 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1227 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1228 Init( cairo_create( surface
) );
1229 cairo_surface_destroy( surface
);
1233 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
)
1234 : wxGraphicsContext(renderer
)
1237 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1238 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1241 wxGraphicsMatrix matrix
= CreateMatrix();
1243 wxPoint org
= dc
.GetDeviceOrigin();
1244 matrix
.Translate( org
.x
, org
.y
);
1246 org
= dc
.GetLogicalOrigin();
1247 matrix
.Translate( -org
.x
, -org
.y
);
1250 dc
.GetUserScale( &sx
, &sy
);
1251 matrix
.Scale( sx
, sy
);
1253 ConcatTransform( matrix
);
1259 dc
.GetSize( &width
, &height
);
1260 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1261 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1262 Init( cairo_create( surface
) );
1263 cairo_surface_destroy( surface
);
1268 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
)
1269 : wxGraphicsContext(renderer
)
1271 Init( gdk_cairo_create( drawable
) );
1276 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, HDC handle
)
1277 : wxGraphicsContext(renderer
)
1279 m_mswSurface
= cairo_win32_surface_create(handle
);
1280 m_context
= cairo_create(m_mswSurface
);
1287 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
)
1288 : wxGraphicsContext(renderer
)
1293 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
)
1294 : wxGraphicsContext(renderer
)
1297 // something along these lines (copied from dcclient)
1299 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1300 // code should still be able to create wxClientDCs for them, so we will
1301 // use the parent window here then.
1302 if (window
->m_wxwindow
== NULL
)
1304 window
= window
->GetParent();
1307 wxASSERT_MSG( window
->m_wxwindow
, wxT("wxCairoContext needs a widget") );
1309 Init(gdk_cairo_create(window
->GTKGetDrawingWindow()));
1313 wxCairoContext::~wxCairoContext()
1319 m_mswSurface
= cairo_win32_surface_create((HDC
)window
->GetHandle());
1320 m_context
= cairo_create(m_mswSurface
);
1323 cairo_destroy(m_context
);
1327 cairo_surface_destroy(m_mswSurface
);
1331 void wxCairoContext::Init(cairo_t
*context
)
1333 m_context
= context
;
1339 void wxCairoContext::Clip( const wxRegion
& region
)
1341 // Create a path with all the rectangles in the region
1342 wxGraphicsPath path
= GetRenderer()->CreatePath();
1343 wxRegionIterator
ri(region
);
1346 path
.AddRectangle(ri
.GetX(), ri
.GetY(), ri
.GetW(), ri
.GetH());
1350 // Put it in the context
1351 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1352 cairo_append_path(m_context
, cp
);
1354 // clip to that path
1355 cairo_clip(m_context
);
1356 path
.UnGetNativePath(cp
);
1359 void wxCairoContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1361 // Create a path with this rectangle
1362 wxGraphicsPath path
= GetRenderer()->CreatePath();
1363 path
.AddRectangle(x
,y
,w
,h
);
1365 // Put it in the context
1366 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1367 cairo_append_path(m_context
, cp
);
1369 // clip to that path
1370 cairo_clip(m_context
);
1371 path
.UnGetNativePath(cp
);
1374 void wxCairoContext::ResetClip()
1376 cairo_reset_clip(m_context
);
1380 void wxCairoContext::StrokePath( const wxGraphicsPath
& path
)
1382 if ( !m_pen
.IsNull() )
1384 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1385 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1386 cairo_append_path(m_context
,cp
);
1387 ((wxCairoPenData
*)m_pen
.GetRefData())->Apply(this);
1388 cairo_stroke(m_context
);
1389 path
.UnGetNativePath(cp
);
1393 void wxCairoContext::FillPath( const wxGraphicsPath
& path
, wxPolygonFillMode fillStyle
)
1395 if ( !m_brush
.IsNull() )
1397 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1398 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1399 cairo_append_path(m_context
,cp
);
1400 ((wxCairoBrushData
*)m_brush
.GetRefData())->Apply(this);
1401 cairo_set_fill_rule(m_context
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1402 cairo_fill(m_context
);
1403 path
.UnGetNativePath(cp
);
1407 void wxCairoContext::Rotate( wxDouble angle
)
1409 cairo_rotate(m_context
,angle
);
1412 void wxCairoContext::Translate( wxDouble dx
, wxDouble dy
)
1414 cairo_translate(m_context
,dx
,dy
);
1417 void wxCairoContext::Scale( wxDouble xScale
, wxDouble yScale
)
1419 cairo_scale(m_context
,xScale
,yScale
);
1422 // concatenates this transform with the current transform of this context
1423 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix
& matrix
)
1425 cairo_transform(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1428 // sets the transform of this context
1429 void wxCairoContext::SetTransform( const wxGraphicsMatrix
& matrix
)
1431 cairo_set_matrix(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1434 // gets the matrix of this context
1435 wxGraphicsMatrix
wxCairoContext::GetTransform() const
1437 wxGraphicsMatrix matrix
= CreateMatrix();
1438 cairo_get_matrix(m_context
,(cairo_matrix_t
*) matrix
.GetNativeMatrix());
1444 void wxCairoContext::PushState()
1446 cairo_save(m_context
);
1449 void wxCairoContext::PopState()
1451 cairo_restore(m_context
);
1454 void wxCairoContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1456 wxGraphicsBitmap bitmap
= GetRenderer()->CreateBitmap(bmp
);
1457 DrawBitmap(bitmap
, x
, y
, w
, h
);
1461 void wxCairoContext::DrawBitmap(const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1465 // In case we're scaling the image by using a width and height different
1466 // than the bitmap's size create a pattern transformation on the surface and
1467 // draw the transformed pattern.
1468 wxCairoBitmapData
* data
= static_cast<wxCairoBitmapData
*>(bmp
.GetRefData());
1469 cairo_pattern_t
* pattern
= data
->GetCairoPattern();
1470 wxSize size
= data
->GetSize();
1472 wxDouble scaleX
= w
/ size
.GetWidth();
1473 wxDouble scaleY
= h
/ size
.GetHeight();
1475 // prepare to draw the image
1476 cairo_translate(m_context
, x
, y
);
1477 cairo_scale(m_context
, scaleX
, scaleY
);
1478 cairo_set_source(m_context
, pattern
);
1479 // use the original size here since the context is scaled already...
1480 cairo_rectangle(m_context
, 0, 0, size
.GetWidth(), size
.GetHeight());
1481 // fill the rectangle using the pattern
1482 cairo_fill(m_context
);
1487 void wxCairoContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1489 // An icon is a bitmap on wxGTK, so do this the easy way. When we want to
1490 // start using the Cairo backend on other platforms then we may need to
1491 // fiddle with this...
1492 DrawBitmap(icon
, x
, y
, w
, h
);
1496 void wxCairoContext::DoDrawText(const wxString
& str
, wxDouble x
, wxDouble y
)
1498 wxCHECK_RET( !m_font
.IsNull(),
1499 wxT("wxCairoContext::DrawText - no valid font set") );
1504 const wxCharBuffer data
= str
.utf8_str();
1508 ((wxCairoFontData
*)m_font
.GetRefData())->Apply(this);
1511 size_t datalen
= strlen(data
);
1513 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
1514 wxCairoFontData
* font_data
= (wxCairoFontData
*) m_font
.GetRefData();
1515 pango_layout_set_font_description( layout
, font_data
->GetFont());
1516 pango_layout_set_text(layout
, data
, datalen
);
1518 if (font_data
->GetUnderlined())
1520 PangoAttrList
*attrs
= pango_attr_list_new();
1521 PangoAttribute
*attr
= pango_attr_underline_new(PANGO_UNDERLINE_SINGLE
);
1522 pango_attr_list_insert(attrs
, attr
);
1523 pango_layout_set_attributes(layout
, attrs
);
1524 pango_attr_list_unref(attrs
);
1527 cairo_move_to(m_context
, x
, y
);
1528 pango_cairo_show_layout (m_context
, layout
);
1530 g_object_unref (layout
);
1532 // Cairo's x,y for drawing text is at the baseline, so we need to adjust
1533 // the position we move to by the ascent.
1534 cairo_font_extents_t fe
;
1535 cairo_font_extents(m_context
, &fe
);
1536 cairo_move_to(m_context
, x
, y
+fe
.ascent
);
1538 cairo_show_text(m_context
, data
);
1542 void wxCairoContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
1543 wxDouble
*descent
, wxDouble
*externalLeading
) const
1545 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") );
1553 if ( externalLeading
)
1554 *externalLeading
= 0;
1562 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
1563 pango_layout_set_font_description( layout
, ((wxCairoFontData
*)m_font
.GetRefData())->GetFont());
1564 const wxCharBuffer data
= str
.utf8_str();
1569 pango_layout_set_text( layout
, data
, strlen(data
) );
1570 pango_layout_get_pixel_size (layout
, &w
, &h
);
1577 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
1578 int baseline
= pango_layout_iter_get_baseline(iter
);
1579 pango_layout_iter_free(iter
);
1580 *descent
= h
- PANGO_PIXELS(baseline
);
1582 g_object_unref (layout
);
1584 ((wxCairoFontData
*)m_font
.GetRefData())->Apply((wxCairoContext
*)this);
1588 const wxWX2MBbuf
buf(str
.mb_str(wxConvUTF8
));
1589 cairo_text_extents_t te
;
1590 cairo_text_extents(m_context
, buf
, &te
);
1594 if (height
|| descent
|| externalLeading
)
1596 cairo_font_extents_t fe
;
1597 cairo_font_extents(m_context
, &fe
);
1599 // some backends have negative descents
1601 if ( fe
.descent
< 0 )
1602 fe
.descent
= -fe
.descent
;
1604 if ( fe
.height
< (fe
.ascent
+ fe
.descent
) )
1606 // some backends are broken re height ... (eg currently ATSUI)
1607 fe
.height
= fe
.ascent
+ fe
.descent
;
1611 *height
= fe
.height
;
1613 *descent
= fe
.descent
;
1614 if ( externalLeading
)
1615 *externalLeading
= wxMax(0, fe
.height
- (fe
.ascent
+ fe
.descent
));
1620 void wxCairoContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
1623 widths
.Add(0, text
.length());
1625 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") );
1633 void * wxCairoContext::GetNativeContext()
1638 bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias
)
1640 if (m_antialias
== antialias
)
1643 m_antialias
= antialias
;
1645 cairo_antialias_t antialiasMode
;
1648 case wxANTIALIAS_DEFAULT
:
1649 antialiasMode
= CAIRO_ANTIALIAS_DEFAULT
;
1651 case wxANTIALIAS_NONE
:
1652 antialiasMode
= CAIRO_ANTIALIAS_NONE
;
1657 cairo_set_antialias(m_context
, antialiasMode
);
1661 bool wxCairoContext::SetCompositionMode(wxCompositionMode op
)
1663 if ( m_composition
== op
)
1667 cairo_operator_t cop
;
1670 case wxCOMPOSITION_CLEAR
:
1671 cop
= CAIRO_OPERATOR_CLEAR
;
1673 case wxCOMPOSITION_SOURCE
:
1674 cop
= CAIRO_OPERATOR_SOURCE
;
1676 case wxCOMPOSITION_OVER
:
1677 cop
= CAIRO_OPERATOR_OVER
;
1679 case wxCOMPOSITION_IN
:
1680 cop
= CAIRO_OPERATOR_IN
;
1682 case wxCOMPOSITION_OUT
:
1683 cop
= CAIRO_OPERATOR_OUT
;
1685 case wxCOMPOSITION_ATOP
:
1686 cop
= CAIRO_OPERATOR_ATOP
;
1688 case wxCOMPOSITION_DEST
:
1689 cop
= CAIRO_OPERATOR_DEST
;
1691 case wxCOMPOSITION_DEST_OVER
:
1692 cop
= CAIRO_OPERATOR_DEST_OVER
;
1694 case wxCOMPOSITION_DEST_IN
:
1695 cop
= CAIRO_OPERATOR_DEST_IN
;
1697 case wxCOMPOSITION_DEST_OUT
:
1698 cop
= CAIRO_OPERATOR_DEST_OUT
;
1700 case wxCOMPOSITION_DEST_ATOP
:
1701 cop
= CAIRO_OPERATOR_DEST_ATOP
;
1703 case wxCOMPOSITION_XOR
:
1704 cop
= CAIRO_OPERATOR_XOR
;
1706 case wxCOMPOSITION_ADD
:
1707 cop
= CAIRO_OPERATOR_ADD
;
1712 cairo_set_operator(m_context
, cop
);
1716 void wxCairoContext::BeginLayer(wxDouble opacity
)
1718 m_layerOpacities
.push_back(opacity
);
1719 cairo_push_group(m_context
);
1722 void wxCairoContext::EndLayer()
1724 float opacity
= m_layerOpacities
.back();
1725 m_layerOpacities
.pop_back();
1726 cairo_pop_group_to_source(m_context
);
1727 cairo_paint_with_alpha(m_context
,opacity
);
1730 //-----------------------------------------------------------------------------
1731 // wxCairoRenderer declaration
1732 //-----------------------------------------------------------------------------
1734 class WXDLLIMPEXP_CORE wxCairoRenderer
: public wxGraphicsRenderer
1737 wxCairoRenderer() {}
1739 virtual ~wxCairoRenderer() {}
1743 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
1744 virtual wxGraphicsContext
* CreateContext( const wxMemoryDC
& dc
);
1745 virtual wxGraphicsContext
* CreateContext( const wxPrinterDC
& dc
);
1747 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
1749 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
1751 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
1753 virtual wxGraphicsContext
* CreateMeasuringContext();
1757 virtual wxGraphicsPath
CreatePath();
1761 virtual wxGraphicsMatrix
CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
1762 wxDouble tx
=0.0, wxDouble ty
=0.0);
1765 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) ;
1767 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) ;
1769 virtual wxGraphicsBrush
1770 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
1771 wxDouble x2
, wxDouble y2
,
1772 const wxGraphicsGradientStops
& stops
);
1774 virtual wxGraphicsBrush
1775 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
1776 wxDouble xc
, wxDouble yc
,
1778 const wxGraphicsGradientStops
& stops
);
1781 virtual wxGraphicsFont
CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) ;
1783 // create a native bitmap representation
1784 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
);
1786 // create a graphics bitmap from a native bitmap
1787 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
);
1789 // create a subimage from a native image representation
1790 virtual wxGraphicsBitmap
CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
1793 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer
)
1796 //-----------------------------------------------------------------------------
1797 // wxCairoRenderer implementation
1798 //-----------------------------------------------------------------------------
1800 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer
,wxGraphicsRenderer
)
1802 static wxCairoRenderer gs_cairoGraphicsRenderer
;
1803 // temporary hack to allow creating a cairo context on any platform
1804 extern wxGraphicsRenderer
* gCairoRenderer
;
1805 wxGraphicsRenderer
* gCairoRenderer
= &gs_cairoGraphicsRenderer
;
1807 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxWindowDC
& dc
)
1809 return new wxCairoContext(this,dc
);
1812 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxMemoryDC
& dc
)
1814 return new wxCairoContext(this,dc
);
1817 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxPrinterDC
& dc
)
1820 const wxDCImpl
*impl
= dc
.GetImpl();
1821 cairo_t
* context
= (cairo_t
*) impl
->GetCairoContext();
1823 return new wxCairoContext(this,dc
);
1829 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeContext( void * context
)
1832 return new wxCairoContext(this,(HDC
)context
);
1835 return new wxCairoContext(this,(cairo_t
*)context
);
1840 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeWindow( void * window
)
1843 return new wxCairoContext(this,(GdkDrawable
*)window
);
1849 wxGraphicsContext
* wxCairoRenderer::CreateMeasuringContext()
1852 return CreateContextFromNativeWindow(gdk_get_default_root_window());
1858 wxGraphicsContext
* wxCairoRenderer::CreateContext( wxWindow
* window
)
1860 return new wxCairoContext(this, window
);
1865 wxGraphicsPath
wxCairoRenderer::CreatePath()
1867 wxGraphicsPath path
;
1868 path
.SetRefData( new wxCairoPathData(this) );
1875 wxGraphicsMatrix
wxCairoRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1876 wxDouble tx
, wxDouble ty
)
1880 wxCairoMatrixData
* data
= new wxCairoMatrixData( this );
1881 data
->Set( a
,b
,c
,d
,tx
,ty
) ;
1886 wxGraphicsPen
wxCairoRenderer::CreatePen(const wxPen
& pen
)
1888 if ( !pen
.Ok() || pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
1889 return wxNullGraphicsPen
;
1893 p
.SetRefData(new wxCairoPenData( this, pen
));
1898 wxGraphicsBrush
wxCairoRenderer::CreateBrush(const wxBrush
& brush
)
1900 if ( !brush
.Ok() || brush
.GetStyle() == wxBRUSHSTYLE_TRANSPARENT
)
1901 return wxNullGraphicsBrush
;
1905 p
.SetRefData(new wxCairoBrushData( this, brush
));
1911 wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
1912 wxDouble x2
, wxDouble y2
,
1913 const wxGraphicsGradientStops
& stops
)
1916 wxCairoBrushData
* d
= new wxCairoBrushData( this );
1917 d
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, stops
);
1923 wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
1924 wxDouble xc
, wxDouble yc
, wxDouble r
,
1925 const wxGraphicsGradientStops
& stops
)
1928 wxCairoBrushData
* d
= new wxCairoBrushData( this );
1929 d
->CreateRadialGradientBrush(xo
, yo
, xc
, yc
, r
, stops
);
1935 wxGraphicsFont
wxCairoRenderer::CreateFont( const wxFont
&font
, const wxColour
&col
)
1940 p
.SetRefData(new wxCairoFontData( this , font
, col
));
1944 return wxNullGraphicsFont
;
1947 wxGraphicsBitmap
wxCairoRenderer::CreateBitmap( const wxBitmap
& bmp
)
1952 p
.SetRefData(new wxCairoBitmapData( this , bmp
));
1956 return wxNullGraphicsBitmap
;
1959 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap
)
1961 if ( bitmap
!= NULL
)
1964 p
.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t
*) bitmap
));
1968 return wxNullGraphicsBitmap
;
1972 wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap
& WXUNUSED(bitmap
),
1973 wxDouble
WXUNUSED(x
),
1974 wxDouble
WXUNUSED(y
),
1975 wxDouble
WXUNUSED(w
),
1976 wxDouble
WXUNUSED(h
))
1978 wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented.");
1979 return wxNullGraphicsBitmap
;
1982 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
1984 return &gs_cairoGraphicsRenderer
;
1987 #else // !wxUSE_CAIRO
1989 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
1994 #endif // wxUSE_CAIRO/!wxUSE_CAIRO
1996 // MSW and OS X have their own native default renderers, but the other ports
1997 // use Cairo by default
1998 #if !(defined(__WXMSW__) || defined(__WXOSX__))
1999 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
2001 return GetCairoRenderer();
2003 #endif // !(__WXMSW__ || __WXOSX__)
2005 #endif // wxUSE_GRAPHICS_CONTEXT