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"
24 // keep cairo.h from defining dllimport as we're defining the symbols inside
25 // the wx dll in order to load them dynamically.
31 #include "wx/bitmap.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
35 #include "wx/dcprint.h"
37 #include "wx/window.h"
41 #include "wx/private/graphics.h"
42 #include "wx/rawbmp.h"
43 #include "wx/vector.h"
47 //-----------------------------------------------------------------------------
48 // device context implementation
50 // more and more of the dc functionality should be implemented by calling
51 // the appropricate wxCairoContext, but we will have to do that step by step
52 // also coordinate conversions should be moved to native matrix ops
53 //-----------------------------------------------------------------------------
55 // we always stock two context states, one at entry, to be able to preserve the
56 // state we were called with, the other one after changing to HI Graphics orientation
57 // (this one is used for getting back clippings etc)
59 //-----------------------------------------------------------------------------
60 // wxGraphicsPath implementation
61 //-----------------------------------------------------------------------------
63 // TODO remove this dependency (gdiplus needs the macros)
66 #define max(a,b) (((a) > (b)) ? (a) : (b))
70 #define min(a,b) (((a) < (b)) ? (a) : (b))
75 #include <cairo-win32.h>
80 #include "wx/fontutil.h"
81 #include "wx/gtk/dc.h"
85 #include <cairo-win32.h>
89 #include "wx/osx/private.h"
90 #include <cairo-quartz.h>
91 #include <cairo-atsui.h>
94 class WXDLLIMPEXP_CORE wxCairoPathData
: public wxGraphicsPathData
97 wxCairoPathData(wxGraphicsRenderer
* renderer
, cairo_t
* path
= NULL
);
100 virtual wxGraphicsObjectRefData
*Clone() const;
103 // These are the path primitives from which everything else can be constructed
106 // begins a new subpath at (x,y)
107 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
109 // adds a straight line from the current point to (x,y)
110 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
112 // adds a cubic Bezier curve from the current point, using two control points and an end point
113 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
116 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
117 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
119 // gets the last point of the current path, (0,0) if not yet set
120 virtual void GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const;
123 virtual void AddPath( const wxGraphicsPathData
* path
);
125 // closes the current sub-path
126 virtual void CloseSubpath();
129 // These are convenience functions which - if not available natively will be assembled
130 // using the primitives from above
135 // appends a rectangle as a new closed subpath
136 virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ;
137 // appends an ellipsis as a new closed subpath fitting the passed rectangle
138 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
140 // 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)
141 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
144 // returns the native path
145 virtual void * GetNativePath() const ;
147 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
148 virtual void UnGetNativePath(void *p
) const;
150 // transforms each point of this path by the matrix
151 virtual void Transform( const wxGraphicsMatrixData
* matrix
) ;
153 // gets the bounding box enclosing all points (possibly including control points)
154 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const;
156 virtual bool Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
) const;
159 cairo_t
* m_pathContext
;
162 class WXDLLIMPEXP_CORE wxCairoMatrixData
: public wxGraphicsMatrixData
165 wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
= NULL
) ;
166 virtual ~wxCairoMatrixData() ;
168 virtual wxGraphicsObjectRefData
*Clone() const ;
170 // concatenates the matrix
171 virtual void Concat( const wxGraphicsMatrixData
*t
);
173 // sets the matrix to the respective values
174 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
175 wxDouble tx
=0.0, wxDouble ty
=0.0);
177 // gets the component valuess of the matrix
178 virtual void Get(wxDouble
* a
=NULL
, wxDouble
* b
=NULL
, wxDouble
* c
=NULL
,
179 wxDouble
* d
=NULL
, wxDouble
* tx
=NULL
, wxDouble
* ty
=NULL
) const;
181 // makes this the inverse matrix
182 virtual void Invert();
184 // returns true if the elements of the transformation matrix are equal ?
185 virtual bool IsEqual( const wxGraphicsMatrixData
* t
) const ;
187 // return true if this is the identity matrix
188 virtual bool IsIdentity() const;
194 // add the translation to this matrix
195 virtual void Translate( wxDouble dx
, wxDouble dy
);
197 // add the scale to this matrix
198 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
200 // add the rotation to this matrix (radians)
201 virtual void Rotate( wxDouble angle
);
204 // apply the transforms
207 // applies that matrix to the point
208 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
) const;
210 // applies the matrix except for translations
211 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const;
213 // returns the native representation
214 virtual void * GetNativeMatrix() const;
216 cairo_matrix_t m_matrix
;
219 class WXDLLIMPEXP_CORE wxCairoPenData
: public wxGraphicsObjectRefData
222 wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
227 virtual void Apply( wxGraphicsContext
* context
);
228 virtual wxDouble
GetWidth() { return m_width
; }
238 cairo_line_cap_t m_cap
;
239 cairo_line_join_t m_join
;
242 const double *m_lengths
;
243 double *m_userLengths
;
247 wxDECLARE_NO_COPY_CLASS(wxCairoPenData
);
250 class WXDLLIMPEXP_CORE wxCairoBrushData
: public wxGraphicsObjectRefData
253 wxCairoBrushData( wxGraphicsRenderer
* renderer
);
254 wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
255 ~wxCairoBrushData ();
257 virtual void Apply( wxGraphicsContext
* context
);
259 void CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
260 wxDouble x2
, wxDouble y2
,
261 const wxGraphicsGradientStops
& stops
);
262 void CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
263 wxDouble xc
, wxDouble yc
, wxDouble radius
,
264 const wxGraphicsGradientStops
& stops
);
269 // common part of Create{Linear,Radial}GradientBrush()
270 void AddGradientStops(const wxGraphicsGradientStops
& stops
);
278 cairo_pattern_t
* m_brushPattern
;
281 class wxCairoFontData
: public wxGraphicsObjectRefData
284 wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
, const wxColour
& col
);
285 wxCairoFontData(wxGraphicsRenderer
* renderer
,
287 const wxString
& facename
,
289 const wxColour
& col
);
292 virtual bool Apply( wxGraphicsContext
* context
);
294 const PangoFontDescription
* GetFont() const { return m_font
; }
295 bool GetUnderlined() const { return m_underlined
; }
298 void InitColour(const wxColour
& col
);
299 void InitFontComponents(const wxString
& facename
,
300 cairo_font_slant_t slant
,
301 cairo_font_weight_t weight
);
309 cairo_font_face_t
*m_font
;
310 #elif defined(__WXGTK__)
311 PangoFontDescription
* m_font
;
315 // These members are used when the font is created from its face name and
316 // flags (and not from wxFont) and also even when creating it from wxFont
317 // on the platforms not covered above.
319 // Notice that we can't use cairo_font_face_t instead of storing those,
320 // even though it would be simpler and need less #ifdefs, because
321 // cairo_toy_font_face_create() that we'd need to create it is only
322 // available in Cairo 1.8 and we require just 1.2 currently. If we do drop
323 // support for < 1.8 versions in the future it would be definitely better
324 // to use cairo_toy_font_face_create() instead.
325 wxCharBuffer m_fontName
;
326 cairo_font_slant_t m_slant
;
327 cairo_font_weight_t m_weight
;
330 class wxCairoBitmapData
: public wxGraphicsObjectRefData
333 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
);
335 wxCairoBitmapData(wxGraphicsRenderer
* renderer
, const wxImage
& image
);
336 #endif // wxUSE_IMAGE
337 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
);
338 ~wxCairoBitmapData();
340 virtual cairo_surface_t
* GetCairoSurface() { return m_surface
; }
341 virtual cairo_pattern_t
* GetCairoPattern() { return m_pattern
; }
342 virtual wxSize
GetSize() { return wxSize(m_width
, m_height
); }
345 wxImage
ConvertToImage() const;
346 #endif // wxUSE_IMAGE
349 // Allocate m_buffer for the bitmap of the given size in the given format.
351 // Returns the stride used for the buffer.
352 int InitBuffer(int width
, int height
, cairo_format_t format
);
354 // Really create the surface using the buffer (which was supposed to be
355 // filled since InitBuffer() call).
356 void InitSurface(cairo_format_t format
, int stride
);
359 cairo_surface_t
* m_surface
;
360 cairo_pattern_t
* m_pattern
;
363 unsigned char* m_buffer
;
366 class WXDLLIMPEXP_CORE wxCairoContext
: public wxGraphicsContext
369 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
);
370 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
);
371 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
);
373 wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
);
376 wxCairoContext( wxGraphicsRenderer
* renderer
, HDC context
);
378 wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
);
379 wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
);
381 // If this ctor is used, Init() must be called by the derived class later.
382 wxCairoContext( wxGraphicsRenderer
* renderer
);
384 virtual ~wxCairoContext();
386 virtual bool ShouldOffset() const
388 if ( !m_enableOffset
)
392 if ( !m_pen
.IsNull() )
394 penwidth
= (int)((wxCairoPenData
*)m_pen
.GetRefData())->GetWidth();
398 return ( penwidth
% 2 ) == 1;
401 virtual void Clip( const wxRegion
®ion
);
403 cairo_surface_t
* m_mswSurface
;
406 // clips drawings to the rect
407 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
409 // resets the clipping to original extent
410 virtual void ResetClip();
412 virtual void * GetNativeContext();
414 virtual bool SetAntialiasMode(wxAntialiasMode antialias
);
416 virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation
);
418 virtual bool SetCompositionMode(wxCompositionMode op
);
420 virtual void BeginLayer(wxDouble opacity
);
422 virtual void EndLayer();
424 virtual void StrokePath( const wxGraphicsPath
& p
);
425 virtual void FillPath( const wxGraphicsPath
& p
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
);
427 virtual void Translate( wxDouble dx
, wxDouble dy
);
428 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
429 virtual void Rotate( wxDouble angle
);
431 // concatenates this transform with the current transform of this context
432 virtual void ConcatTransform( const wxGraphicsMatrix
& matrix
);
434 // sets the transform of this context
435 virtual void SetTransform( const wxGraphicsMatrix
& matrix
);
437 // gets the matrix of this context
438 virtual wxGraphicsMatrix
GetTransform() const;
440 virtual void DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
441 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
442 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
443 virtual void PushState();
444 virtual void PopState();
446 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
447 wxDouble
*descent
, wxDouble
*externalLeading
) const;
448 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
451 virtual void DoDrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
453 void Init(cairo_t
*context
);
458 wxVector
<float> m_layerOpacities
;
460 wxDECLARE_NO_COPY_CLASS(wxCairoContext
);
464 // ----------------------------------------------------------------------------
465 // wxCairoImageContext: context associated with a wxImage.
466 // ----------------------------------------------------------------------------
468 class wxCairoImageContext
: public wxCairoContext
471 wxCairoImageContext(wxGraphicsRenderer
* renderer
, wxImage
& image
) :
472 wxCairoContext(renderer
),
474 m_data(renderer
, image
)
476 Init(cairo_create(m_data
.GetCairoSurface()));
479 virtual ~wxCairoImageContext()
481 m_image
= m_data
.ConvertToImage();
486 wxCairoBitmapData m_data
;
488 wxDECLARE_NO_COPY_CLASS(wxCairoImageContext
);
490 #endif // wxUSE_IMAGE
492 //-----------------------------------------------------------------------------
493 // wxCairoPenData implementation
494 //-----------------------------------------------------------------------------
496 wxCairoPenData::~wxCairoPenData()
498 delete[] m_userLengths
;
501 void wxCairoPenData::Init()
504 m_userLengths
= NULL
;
509 wxCairoPenData::wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
510 : wxGraphicsObjectRefData(renderer
)
514 m_width
= m_pen
.GetWidth();
518 m_red
= m_pen
.GetColour().Red()/255.0;
519 m_green
= m_pen
.GetColour().Green()/255.0;
520 m_blue
= m_pen
.GetColour().Blue()/255.0;
521 m_alpha
= m_pen
.GetColour().Alpha()/255.0;
523 switch ( m_pen
.GetCap() )
526 m_cap
= CAIRO_LINE_CAP_ROUND
;
529 case wxCAP_PROJECTING
:
530 m_cap
= CAIRO_LINE_CAP_SQUARE
;
534 m_cap
= CAIRO_LINE_CAP_BUTT
;
538 m_cap
= CAIRO_LINE_CAP_BUTT
;
542 switch ( m_pen
.GetJoin() )
545 m_join
= CAIRO_LINE_JOIN_BEVEL
;
549 m_join
= CAIRO_LINE_JOIN_MITER
;
553 m_join
= CAIRO_LINE_JOIN_ROUND
;
557 m_join
= CAIRO_LINE_JOIN_MITER
;
561 const double dashUnit
= m_width
< 1.0 ? 1.0 : m_width
;
562 const double dotted
[] =
564 dashUnit
, dashUnit
+ 2.0
566 static const double short_dashed
[] =
570 static const double dashed
[] =
574 static const double dotted_dashed
[] =
576 9.0 , 6.0 , 3.0 , 3.0
579 switch ( m_pen
.GetStyle() )
581 case wxPENSTYLE_SOLID
:
584 case wxPENSTYLE_DOT
:
585 m_count
= WXSIZEOF(dotted
);
586 m_userLengths
= new double[ m_count
] ;
587 memcpy( m_userLengths
, dotted
, sizeof(dotted
) );
588 m_lengths
= m_userLengths
;
591 case wxPENSTYLE_LONG_DASH
:
593 m_count
= WXSIZEOF(dashed
);
596 case wxPENSTYLE_SHORT_DASH
:
597 m_lengths
= short_dashed
;
598 m_count
= WXSIZEOF(short_dashed
);
601 case wxPENSTYLE_DOT_DASH
:
602 m_lengths
= dotted_dashed
;
603 m_count
= WXSIZEOF(dotted_dashed
);
606 case wxPENSTYLE_USER_DASH
:
609 m_count
= m_pen
.GetDashes( &wxdashes
) ;
610 if ((wxdashes
!= NULL
) && (m_count
> 0))
612 m_userLengths
= new double[m_count
] ;
613 for ( int i
= 0 ; i
< m_count
; ++i
)
615 m_userLengths
[i
] = wxdashes
[i
] * dashUnit
;
617 if ( i
% 2 == 1 && m_userLengths
[i
] < dashUnit
+ 2.0 )
618 m_userLengths
[i
] = dashUnit
+ 2.0 ;
619 else if ( i
% 2 == 0 && m_userLengths
[i
] < dashUnit
)
620 m_userLengths
[i
] = dashUnit
;
623 m_lengths
= m_userLengths
;
626 case wxPENSTYLE_STIPPLE
:
629 wxBitmap* bmp = pen.GetStipple();
630 if ( bmp && bmp->IsOk() )
632 wxDELETE( m_penImage );
633 wxDELETE( m_penBrush );
634 m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
635 m_penBrush = new TextureBrush(m_penImage);
636 m_pen->SetBrush( m_penBrush );
642 if ( m_pen
.GetStyle() >= wxPENSTYLE_FIRST_HATCH
643 && m_pen
.GetStyle() <= wxPENSTYLE_LAST_HATCH
)
646 wxDELETE( m_penBrush );
647 HatchStyle style = HatchStyleHorizontal;
648 switch( pen.GetStyle() )
650 case wxPENSTYLE_BDIAGONAL_HATCH :
651 style = HatchStyleBackwardDiagonal;
653 case wxPENSTYLE_CROSSDIAG_HATCH :
654 style = HatchStyleDiagonalCross;
656 case wxPENSTYLE_FDIAGONAL_HATCH :
657 style = HatchStyleForwardDiagonal;
659 case wxPENSTYLE_CROSS_HATCH :
660 style = HatchStyleCross;
662 case wxPENSTYLE_HORIZONTAL_HATCH :
663 style = HatchStyleHorizontal;
665 case wxPENSTYLE_VERTICAL_HATCH :
666 style = HatchStyleVertical;
670 m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() ,
671 pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent );
672 m_pen->SetBrush( m_penBrush )
679 void wxCairoPenData::Apply( wxGraphicsContext
* context
)
681 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
682 cairo_set_line_width(ctext
,m_width
);
683 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
684 cairo_set_line_cap(ctext
,m_cap
);
685 cairo_set_line_join(ctext
,m_join
);
686 cairo_set_dash(ctext
,(double*)m_lengths
,m_count
,0.0);
689 //-----------------------------------------------------------------------------
690 // wxCairoBrushData implementation
691 //-----------------------------------------------------------------------------
693 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
)
694 : wxGraphicsObjectRefData( renderer
)
699 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
)
700 : wxGraphicsObjectRefData(renderer
)
704 m_red
= brush
.GetColour().Red()/255.0;
705 m_green
= brush
.GetColour().Green()/255.0;
706 m_blue
= brush
.GetColour().Blue()/255.0;
707 m_alpha
= brush
.GetColour().Alpha()/255.0;
709 if ( brush.GetStyle() == wxBRUSHSTYLE_SOLID)
711 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
712 brush.GetColour().Green() , brush.GetColour().Blue() ) );
714 else if ( brush.IsHatch() )
716 HatchStyle style = HatchStyleHorizontal;
717 switch( brush.GetStyle() )
719 case wxBRUSHSTYLE_BDIAGONAL_HATCH :
720 style = HatchStyleBackwardDiagonal;
722 case wxBRUSHSTYLE_CROSSDIAG_HATCH :
723 style = HatchStyleDiagonalCross;
725 case wxBRUSHSTYLE_FDIAGONAL_HATCH :
726 style = HatchStyleForwardDiagonal;
728 case wxBRUSHSTYLE_CROSS_HATCH :
729 style = HatchStyleCross;
731 case wxBRUSHSTYLE_HORIZONTAL_HATCH :
732 style = HatchStyleHorizontal;
734 case wxBRUSHSTYLE_VERTICAL_HATCH :
735 style = HatchStyleVertical;
739 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
740 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
744 wxBitmap* bmp = brush.GetStipple();
745 if ( bmp && bmp->IsOk() )
747 wxDELETE( m_brushImage );
748 m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
749 m_brush = new TextureBrush(m_brushImage);
755 wxCairoBrushData::~wxCairoBrushData ()
758 cairo_pattern_destroy(m_brushPattern
);
761 void wxCairoBrushData::Apply( wxGraphicsContext
* context
)
763 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
764 if ( m_brushPattern
)
766 cairo_set_source(ctext
,m_brushPattern
);
770 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
774 void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops
& stops
)
776 // loop over all the stops, they include the beginning and ending ones
777 const unsigned numStops
= stops
.GetCount();
778 for ( unsigned n
= 0; n
< numStops
; n
++ )
780 const wxGraphicsGradientStop stop
= stops
.Item(n
);
782 const wxColour col
= stop
.GetColour();
784 cairo_pattern_add_color_stop_rgba
795 wxASSERT_MSG(cairo_pattern_status(m_brushPattern
) == CAIRO_STATUS_SUCCESS
,
796 wxT("Couldn't create cairo pattern"));
800 wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
801 wxDouble x2
, wxDouble y2
,
802 const wxGraphicsGradientStops
& stops
)
804 m_brushPattern
= cairo_pattern_create_linear(x1
,y1
,x2
,y2
);
806 AddGradientStops(stops
);
810 wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
811 wxDouble xc
, wxDouble yc
,
813 const wxGraphicsGradientStops
& stops
)
815 m_brushPattern
= cairo_pattern_create_radial(xo
,yo
,0.0,xc
,yc
,radius
);
817 AddGradientStops(stops
);
820 void wxCairoBrushData::Init()
822 m_brushPattern
= NULL
;
825 //-----------------------------------------------------------------------------
826 // wxCairoFontData implementation
827 //-----------------------------------------------------------------------------
829 void wxCairoFontData::InitColour(const wxColour
& col
)
831 m_red
= col
.Red()/255.0;
832 m_green
= col
.Green()/255.0;
833 m_blue
= col
.Blue()/255.0;
834 m_alpha
= col
.Alpha()/255.0;
838 wxCairoFontData::InitFontComponents(const wxString
& facename
,
839 cairo_font_slant_t slant
,
840 cairo_font_weight_t weight
)
842 m_fontName
= facename
.mb_str(wxConvUTF8
);
847 wxCairoFontData::wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
,
848 const wxColour
& col
) : wxGraphicsObjectRefData(renderer
)
852 m_size
= font
.GetPointSize();
855 m_font
= cairo_quartz_font_face_create_for_cgfont( font
.OSXGetCGFont() );
856 #elif defined(__WXGTK__)
857 m_font
= pango_font_description_copy( font
.GetNativeFontInfo()->description
);
858 m_underlined
= font
.GetUnderlined();
863 font
.GetStyle() == wxFONTSTYLE_ITALIC
? CAIRO_FONT_SLANT_ITALIC
864 : CAIRO_FONT_SLANT_NORMAL
,
865 font
.GetWeight() == wxFONTWEIGHT_BOLD
? CAIRO_FONT_WEIGHT_BOLD
866 : CAIRO_FONT_WEIGHT_NORMAL
871 wxCairoFontData::wxCairoFontData(wxGraphicsRenderer
* renderer
,
873 const wxString
& facename
,
875 const wxColour
& col
) :
876 wxGraphicsObjectRefData(renderer
)
880 // Resolution for Cairo image surfaces is 72 DPI meaning that the sizes in
881 // points and pixels are identical, so we can just pass the size in pixels
882 // directly to cairo_set_font_size().
883 m_size
= sizeInPixels
;
885 #if defined(__WXGTK__) || defined(__WXMAC__)
889 // There is no need to set m_underlined under wxGTK in this case, it can
890 // only be used if m_font != NULL.
895 flags
& wxFONTFLAG_ITALIC
? CAIRO_FONT_SLANT_ITALIC
896 : CAIRO_FONT_SLANT_NORMAL
,
897 flags
& wxFONTFLAG_BOLD
? CAIRO_FONT_WEIGHT_BOLD
898 : CAIRO_FONT_WEIGHT_NORMAL
902 wxCairoFontData::~wxCairoFontData()
906 cairo_font_face_destroy( m_font
);
907 #elif defined(__WXGTK__)
909 pango_font_description_free( m_font
);
914 bool wxCairoFontData::Apply( wxGraphicsContext
* context
)
916 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
917 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
921 // Nothing to do, the caller uses Pango layout functions to do
925 #elif defined(__WXMAC__)
928 cairo_set_font_face(ctext
, m_font
);
929 cairo_set_font_size(ctext
, m_size
);
934 // If we get here, we must be on a platform without native font support or
935 // we're using toy Cairo API even under wxGTK/wxMac.
936 cairo_select_font_face(ctext
, m_fontName
, m_slant
, m_weight
);
937 cairo_set_font_size(ctext
, m_size
);
939 // Indicate that we don't use native fonts for the platforms which care
940 // about this (currently only wxGTK).
944 //-----------------------------------------------------------------------------
945 // wxCairoPathData implementation
946 //-----------------------------------------------------------------------------
948 wxCairoPathData::wxCairoPathData( wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
)
949 : wxGraphicsPathData(renderer
)
953 m_pathContext
= pathcontext
;
957 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
958 m_pathContext
= cairo_create(surface
);
959 cairo_surface_destroy (surface
);
963 wxCairoPathData::~wxCairoPathData()
965 cairo_destroy(m_pathContext
);
968 wxGraphicsObjectRefData
*wxCairoPathData::Clone() const
970 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
971 cairo_t
* pathcontext
= cairo_create(surface
);
972 cairo_surface_destroy (surface
);
974 cairo_path_t
* path
= cairo_copy_path(m_pathContext
);
975 cairo_append_path(pathcontext
, path
);
976 cairo_path_destroy(path
);
977 return new wxCairoPathData( GetRenderer() ,pathcontext
);
981 void* wxCairoPathData::GetNativePath() const
983 return cairo_copy_path(m_pathContext
) ;
986 void wxCairoPathData::UnGetNativePath(void *p
) const
988 cairo_path_destroy((cairo_path_t
*)p
);
995 void wxCairoPathData::MoveToPoint( wxDouble x
, wxDouble y
)
997 cairo_move_to(m_pathContext
,x
,y
);
1000 void wxCairoPathData::AddLineToPoint( wxDouble x
, wxDouble y
)
1002 cairo_line_to(m_pathContext
,x
,y
);
1005 void wxCairoPathData::AddPath( const wxGraphicsPathData
* path
)
1007 cairo_path_t
* p
= (cairo_path_t
*)path
->GetNativePath();
1008 cairo_append_path(m_pathContext
, p
);
1012 void wxCairoPathData::CloseSubpath()
1014 cairo_close_path(m_pathContext
);
1017 void wxCairoPathData::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
1019 cairo_curve_to(m_pathContext
,cx1
,cy1
,cx2
,cy2
,x
,y
);
1022 // gets the last point of the current path, (0,0) if not yet set
1023 void wxCairoPathData::GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const
1026 cairo_get_current_point(m_pathContext
,&dx
,&dy
);
1033 void wxCairoPathData::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
1035 // as clockwise means positive in our system (y pointing downwards)
1036 // TODO make this interpretation dependent of the
1037 // real device trans
1038 if ( clockwise
||(endAngle
-startAngle
)>=2*M_PI
)
1039 cairo_arc(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1041 cairo_arc_negative(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1044 // transforms each point of this path by the matrix
1045 void wxCairoPathData::Transform( const wxGraphicsMatrixData
* matrix
)
1047 // as we don't have a true path object, we have to apply the inverse
1048 // matrix to the context
1049 cairo_matrix_t m
= *((cairo_matrix_t
*) matrix
->GetNativeMatrix());
1050 cairo_matrix_invert( &m
);
1051 cairo_transform(m_pathContext
,&m
);
1054 // gets the bounding box enclosing all points (possibly including control points)
1055 void wxCairoPathData::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const
1059 cairo_stroke_extents( m_pathContext
, &x1
, &y1
, &x2
, &y2
);
1083 bool wxCairoPathData::Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
) const
1085 cairo_set_fill_rule(m_pathContext
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1086 return cairo_in_fill( m_pathContext
, x
, y
) != 0;
1089 //-----------------------------------------------------------------------------
1090 // wxCairoMatrixData implementation
1091 //-----------------------------------------------------------------------------
1093 wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
)
1094 : wxGraphicsMatrixData(renderer
)
1100 wxCairoMatrixData::~wxCairoMatrixData()
1105 wxGraphicsObjectRefData
*wxCairoMatrixData::Clone() const
1107 return new wxCairoMatrixData(GetRenderer(),&m_matrix
);
1110 // concatenates the matrix
1111 void wxCairoMatrixData::Concat( const wxGraphicsMatrixData
*t
)
1113 cairo_matrix_multiply( &m_matrix
, &m_matrix
, (cairo_matrix_t
*) t
->GetNativeMatrix());
1116 // sets the matrix to the respective values
1117 void wxCairoMatrixData::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1118 wxDouble tx
, wxDouble ty
)
1120 cairo_matrix_init( &m_matrix
, a
, b
, c
, d
, tx
, ty
);
1123 // gets the component valuess of the matrix
1124 void wxCairoMatrixData::Get(wxDouble
* a
, wxDouble
* b
, wxDouble
* c
,
1125 wxDouble
* d
, wxDouble
* tx
, wxDouble
* ty
) const
1127 if (a
) *a
= m_matrix
.xx
;
1128 if (b
) *b
= m_matrix
.yx
;
1129 if (c
) *c
= m_matrix
.xy
;
1130 if (d
) *d
= m_matrix
.yy
;
1131 if (tx
) *tx
= m_matrix
.x0
;
1132 if (ty
) *ty
= m_matrix
.y0
;
1135 // makes this the inverse matrix
1136 void wxCairoMatrixData::Invert()
1138 cairo_matrix_invert( &m_matrix
);
1141 // returns true if the elements of the transformation matrix are equal ?
1142 bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData
* t
) const
1144 const cairo_matrix_t
* tm
= (cairo_matrix_t
*) t
->GetNativeMatrix();
1146 m_matrix
.xx
== tm
->xx
&&
1147 m_matrix
.yx
== tm
->yx
&&
1148 m_matrix
.xy
== tm
->xy
&&
1149 m_matrix
.yy
== tm
->yy
&&
1150 m_matrix
.x0
== tm
->x0
&&
1151 m_matrix
.y0
== tm
->y0
) ;
1154 // return true if this is the identity matrix
1155 bool wxCairoMatrixData::IsIdentity() const
1157 return ( m_matrix
.xx
== 1 && m_matrix
.yy
== 1 &&
1158 m_matrix
.yx
== 0 && m_matrix
.xy
== 0 && m_matrix
.x0
== 0 && m_matrix
.y0
== 0);
1165 // add the translation to this matrix
1166 void wxCairoMatrixData::Translate( wxDouble dx
, wxDouble dy
)
1168 cairo_matrix_translate( &m_matrix
, dx
, dy
) ;
1171 // add the scale to this matrix
1172 void wxCairoMatrixData::Scale( wxDouble xScale
, wxDouble yScale
)
1174 cairo_matrix_scale( &m_matrix
, xScale
, yScale
) ;
1177 // add the rotation to this matrix (radians)
1178 void wxCairoMatrixData::Rotate( wxDouble angle
)
1180 cairo_matrix_rotate( &m_matrix
, angle
) ;
1184 // apply the transforms
1187 // applies that matrix to the point
1188 void wxCairoMatrixData::TransformPoint( wxDouble
*x
, wxDouble
*y
) const
1190 double lx
= *x
, ly
= *y
;
1191 cairo_matrix_transform_point( &m_matrix
, &lx
, &ly
);
1196 // applies the matrix except for translations
1197 void wxCairoMatrixData::TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const
1199 double lx
= *dx
, ly
= *dy
;
1200 cairo_matrix_transform_distance( &m_matrix
, &lx
, &ly
);
1205 // returns the native representation
1206 void * wxCairoMatrixData::GetNativeMatrix() const
1208 return (void*) &m_matrix
;
1211 // ----------------------------------------------------------------------------
1212 // wxCairoBitmap implementation
1213 // ----------------------------------------------------------------------------
1215 int wxCairoBitmapData::InitBuffer(int width
, int height
, cairo_format_t format
)
1217 wxUnusedVar(format
); // Only really unused with Cairo < 1.6.
1219 // Determine the stride: use cairo_format_stride_for_width() if available
1220 // but fall back to 4*width for the earlier versions as this is what that
1221 // function always returns, even in latest Cairo, anyhow.
1223 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 6, 0)
1224 if ( cairo_version() >= CAIRO_VERSION_ENCODE(1, 6, 0) )
1226 stride
= cairo_format_stride_for_width(format
, width
);
1228 // All our code would totally break if stride were not a multiple of 4
1229 // so ensure this is the case.
1232 wxFAIL_MSG("Unexpected Cairo image surface stride.");
1234 stride
+= 4 - stride
% 4;
1243 m_buffer
= new unsigned char[height
*stride
];
1248 void wxCairoBitmapData::InitSurface(cairo_format_t format
, int stride
)
1250 m_surface
= cairo_image_surface_create_for_data(
1251 m_buffer
, format
, m_width
, m_height
, stride
);
1252 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1255 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
) :
1256 wxGraphicsObjectRefData( renderer
)
1259 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1262 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
) : wxGraphicsObjectRefData( renderer
)
1264 wxCHECK_RET( bmp
.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap"));
1266 #ifdef wxHAS_RAW_BITMAP
1267 // Create a surface object and copy the bitmap pixel data to it. if the
1268 // image has alpha (or a mask represented as alpha) then we'll use a
1269 // different format and iterator than if it doesn't...
1270 const cairo_format_t bufferFormat
= bmp
.GetDepth() == 32
1274 ? CAIRO_FORMAT_ARGB32
1275 : CAIRO_FORMAT_RGB24
;
1277 int stride
= InitBuffer(bmp
.GetWidth(), bmp
.GetHeight(), bufferFormat
);
1279 wxBitmap bmpSource
= bmp
; // we need a non-const instance
1280 wxUint32
* data
= (wxUint32
*)m_buffer
;
1282 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1284 // use the bitmap's alpha
1286 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1287 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1289 wxAlphaPixelData::Iterator
p(pixData
);
1290 for (int y
=0; y
<m_height
; y
++)
1292 wxAlphaPixelData::Iterator rowStart
= p
;
1293 wxUint32
* const rowStartDst
= data
;
1294 for (int x
=0; x
<m_width
; x
++)
1296 // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity,
1297 // with alpha in the upper 8 bits, then red, then green, then
1298 // blue. The 32-bit quantities are stored native-endian.
1299 // Pre-multiplied alpha is used.
1300 unsigned char alpha
= p
.Alpha();
1304 *data
= ( alpha
<< 24
1305 | (p
.Red() * alpha
/255) << 16
1306 | (p
.Green() * alpha
/255) << 8
1307 | (p
.Blue() * alpha
/255) );
1312 data
= rowStartDst
+ stride
/ 4;
1314 p
.OffsetY(pixData
, 1);
1320 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1321 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1323 wxNativePixelData::Iterator
p(pixData
);
1324 for (int y
=0; y
<m_height
; y
++)
1326 wxNativePixelData::Iterator rowStart
= p
;
1327 wxUint32
* const rowStartDst
= data
;
1328 for (int x
=0; x
<m_width
; x
++)
1330 // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with
1331 // the upper 8 bits unused. Red, Green, and Blue are stored in
1332 // the remaining 24 bits in that order. The 32-bit quantities
1333 // are stored native-endian.
1334 *data
= ( p
.Red() << 16 | p
.Green() << 8 | p
.Blue() );
1339 data
= rowStartDst
+ stride
/ 4;
1341 p
.OffsetY(pixData
, 1);
1345 // if there is a mask, set the alpha bytes in the target buffer to
1346 // fully transparent or fully opaque
1347 if (bmpSource
.GetMask())
1349 wxBitmap bmpMask
= bmpSource
.GetMaskBitmap();
1350 bufferFormat
= CAIRO_FORMAT_ARGB32
;
1351 data
= (wxUint32
*)m_buffer
;
1353 pixData(bmpMask
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1354 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to mask data."));
1356 wxNativePixelData::Iterator
p(pixData
);
1357 for (int y
=0; y
<m_height
; y
++)
1359 wxNativePixelData::Iterator rowStart
= p
;
1360 wxUint32
* const rowStartDst
= data
;
1361 for (int x
=0; x
<m_width
; x
++)
1363 if (p
.Red()+p
.Green()+p
.Blue() == 0)
1366 *data
= (wxALPHA_OPAQUE
<< 24) | (*data
& 0x00FFFFFF);
1371 data
= rowStartDst
+ stride
/ 4;
1373 p
.OffsetY(pixData
, 1);
1378 InitSurface(bufferFormat
, stride
);
1379 #endif // wxHAS_RAW_BITMAP
1384 // Helper functions for dealing with alpha pre-multiplication.
1388 inline unsigned char Premultiply(unsigned char alpha
, unsigned char data
)
1390 return alpha
? (data
* alpha
)/0xff : data
;
1393 inline unsigned char Unpremultiply(unsigned char alpha
, unsigned char data
)
1395 return alpha
? (data
* 0xff)/alpha
: data
;
1398 } // anonymous namespace
1400 wxCairoBitmapData::wxCairoBitmapData(wxGraphicsRenderer
* renderer
,
1401 const wxImage
& image
)
1402 : wxGraphicsObjectRefData(renderer
)
1404 const cairo_format_t bufferFormat
= image
.HasAlpha()
1405 ? CAIRO_FORMAT_ARGB32
1406 : CAIRO_FORMAT_RGB24
;
1408 int stride
= InitBuffer(image
.GetWidth(), image
.GetHeight(), bufferFormat
);
1410 // Copy wxImage data into the buffer. Notice that we work with wxUint32
1411 // values and not bytes becase Cairo always works with buffers in native
1413 wxUint32
* dst
= reinterpret_cast<wxUint32
*>(m_buffer
);
1414 const unsigned char* src
= image
.GetData();
1416 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1418 const unsigned char* alpha
= image
.GetAlpha();
1420 for ( int y
= 0; y
< m_height
; y
++ )
1422 wxUint32
* const rowStartDst
= dst
;
1424 for ( int x
= 0; x
< m_width
; x
++ )
1426 const unsigned char a
= *alpha
++;
1429 Premultiply(a
, src
[0]) << 16 |
1430 Premultiply(a
, src
[1]) << 8 |
1431 Premultiply(a
, src
[2]);
1435 dst
= rowStartDst
+ stride
/ 4;
1440 for ( int y
= 0; y
< m_height
; y
++ )
1442 wxUint32
* const rowStartDst
= dst
;
1444 for ( int x
= 0; x
< m_width
; x
++ )
1446 *dst
++ = src
[0] << 16 |
1452 dst
= rowStartDst
+ stride
/ 4;
1456 InitSurface(bufferFormat
, stride
);
1459 wxImage
wxCairoBitmapData::ConvertToImage() const
1461 wxImage
image(m_width
, m_height
, false /* don't clear */);
1463 // Get the surface type and format.
1464 wxCHECK_MSG( cairo_surface_get_type(m_surface
) == CAIRO_SURFACE_TYPE_IMAGE
,
1466 wxS("Can't convert non-image surface to image.") );
1468 switch ( cairo_image_surface_get_format(m_surface
) )
1470 case CAIRO_FORMAT_ARGB32
:
1474 case CAIRO_FORMAT_RGB24
:
1475 // Nothing to do, we don't use alpha by default.
1478 case CAIRO_FORMAT_A8
:
1479 case CAIRO_FORMAT_A1
:
1480 wxFAIL_MSG(wxS("Unsupported Cairo image surface type."));
1484 wxFAIL_MSG(wxS("Unknown Cairo image surface type."));
1488 // Prepare for copying data.
1489 const wxUint32
* src
= (wxUint32
*)cairo_image_surface_get_data(m_surface
);
1490 wxCHECK_MSG( src
, wxNullImage
, wxS("Failed to get Cairo surface data.") );
1492 int stride
= cairo_image_surface_get_stride(m_surface
);
1493 wxCHECK_MSG( stride
> 0, wxNullImage
,
1494 wxS("Failed to get Cairo surface stride.") );
1496 // As we work with wxUint32 pointers and not char ones, we need to adjust
1497 // the stride accordingly. This should be lossless as the stride must be a
1498 // multiple of pixel size.
1499 wxASSERT_MSG( !(stride
% sizeof(wxUint32
)), wxS("Unexpected stride.") );
1500 stride
/= sizeof(wxUint32
);
1502 unsigned char* dst
= image
.GetData();
1503 unsigned char *alpha
= image
.GetAlpha();
1506 // We need to also copy alpha and undo the pre-multiplication as Cairo
1507 // stores pre-multiplied values in this format while wxImage does not.
1508 for ( int y
= 0; y
< m_height
; y
++ )
1510 const wxUint32
* const rowStart
= src
;
1511 for ( int x
= 0; x
< m_width
; x
++ )
1513 const wxUint32 argb
= *src
++;
1515 *alpha
++ = (argb
& 0xff000000) >> 24;
1517 // Copy the RGB data undoing the pre-multiplication.
1518 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x00ff0000) >> 16);
1519 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x0000ff00) >> 8);
1520 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x000000ff));
1523 src
= rowStart
+ stride
;
1528 // Things are pretty simple in this case, just copy RGB bytes.
1529 for ( int y
= 0; y
< m_height
; y
++ )
1531 const wxUint32
* const rowStart
= src
;
1532 for ( int x
= 0; x
< m_width
; x
++ )
1534 const wxUint32 argb
= *src
++;
1536 *dst
++ = (argb
& 0x00ff0000) >> 16;
1537 *dst
++ = (argb
& 0x0000ff00) >> 8;
1538 *dst
++ = (argb
& 0x000000ff);
1541 src
= rowStart
+ stride
;
1548 #endif // wxUSE_IMAGE
1550 wxCairoBitmapData::~wxCairoBitmapData()
1553 cairo_pattern_destroy(m_pattern
);
1556 cairo_surface_destroy(m_surface
);
1561 // ----------------------------------------------------------------------------
1562 // wxGraphicsBitmap implementation
1563 // ----------------------------------------------------------------------------
1567 wxImage
wxGraphicsBitmap::ConvertToImage() const
1569 const wxCairoBitmapData
* const
1570 data
= static_cast<wxCairoBitmapData
*>(GetGraphicsData());
1572 return data
? data
->ConvertToImage() : wxNullImage
;
1575 #endif // wxUSE_IMAGE
1577 //-----------------------------------------------------------------------------
1578 // wxCairoContext implementation
1579 //-----------------------------------------------------------------------------
1581 class wxCairoOffsetHelper
1584 wxCairoOffsetHelper( cairo_t
* ctx
, bool offset
)
1589 cairo_translate( m_ctx
, 0.5, 0.5 );
1591 ~wxCairoOffsetHelper( )
1594 cairo_translate( m_ctx
, -0.5, -0.5 );
1601 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
)
1602 : wxGraphicsContext(renderer
)
1605 // wxMSW contexts always use MM_ANISOTROPIC, which messes up
1606 // text rendering when printing using Cairo. Switch it to MM_TEXT
1607 // map mode to avoid this problem.
1608 HDC hdc
= (HDC
)dc
.GetHDC();
1609 ::SetMapMode(hdc
, MM_TEXT
);
1610 m_mswSurface
= cairo_win32_printing_surface_create(hdc
);
1611 Init( cairo_create(m_mswSurface
) );
1615 const wxDCImpl
*impl
= dc
.GetImpl();
1616 Init( (cairo_t
*) impl
->GetCairoContext() );
1618 wxSize sz
= dc
.GetSize();
1622 wxPoint org
= dc
.GetDeviceOrigin();
1623 cairo_translate( m_context
, org
.x
, org
.y
);
1626 dc
.GetUserScale( &sx
, &sy
);
1628 // TODO: Determine if these fixes are needed on other platforms too.
1629 // On MSW, without this the printer context will not respect wxDC SetMapMode calls.
1630 // For example, using dc.SetMapMode(wxMM_POINTS) can let us share printer and screen
1634 dc
.GetLogicalScale( &lsx
, &lsy
);
1638 cairo_scale( m_context
, sx
, sy
);
1640 org
= dc
.GetLogicalOrigin();
1641 cairo_translate( m_context
, -org
.x
, -org
.y
);
1644 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
)
1645 : wxGraphicsContext(renderer
)
1648 dc
.GetSize( &width
, &height
);
1652 m_enableOffset
= true;
1655 m_mswSurface
= cairo_win32_surface_create((HDC
)dc
.GetHDC());
1656 Init( cairo_create(m_mswSurface
) );
1660 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1661 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1664 wxGraphicsMatrix matrix
= CreateMatrix();
1666 wxPoint org
= dc
.GetDeviceOrigin();
1667 matrix
.Translate( org
.x
, org
.y
);
1669 org
= dc
.GetLogicalOrigin();
1670 matrix
.Translate( -org
.x
, -org
.y
);
1673 dc
.GetUserScale( &sx
, &sy
);
1674 matrix
.Scale( sx
, sy
);
1676 ConcatTransform( matrix
);
1681 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1682 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1683 Init( cairo_create( surface
) );
1684 cairo_surface_destroy( surface
);
1688 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
)
1689 : wxGraphicsContext(renderer
)
1692 dc
.GetSize( &width
, &height
);
1696 m_enableOffset
= true;
1699 m_mswSurface
= cairo_win32_surface_create((HDC
)dc
.GetHDC());
1700 Init( cairo_create(m_mswSurface
) );
1704 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1705 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1708 wxGraphicsMatrix matrix
= CreateMatrix();
1710 wxPoint org
= dc
.GetDeviceOrigin();
1711 matrix
.Translate( org
.x
, org
.y
);
1713 org
= dc
.GetLogicalOrigin();
1714 matrix
.Translate( -org
.x
, -org
.y
);
1717 dc
.GetUserScale( &sx
, &sy
);
1718 matrix
.Scale( sx
, sy
);
1720 ConcatTransform( matrix
);
1725 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1726 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1727 Init( cairo_create( surface
) );
1728 cairo_surface_destroy( surface
);
1733 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
)
1734 : wxGraphicsContext(renderer
)
1736 Init( gdk_cairo_create( drawable
) );
1739 gdk_drawable_get_size( drawable
, &width
, &height
);
1746 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, HDC handle
)
1747 : wxGraphicsContext(renderer
)
1749 m_mswSurface
= cairo_win32_surface_create(handle
);
1750 Init( cairo_create(m_mswSurface
) );
1757 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
)
1758 : wxGraphicsContext(renderer
)
1765 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
)
1766 : wxGraphicsContext(renderer
)
1768 m_enableOffset
= true;
1770 // something along these lines (copied from dcclient)
1772 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1773 // code should still be able to create wxClientDCs for them, so we will
1774 // use the parent window here then.
1775 if (window
->m_wxwindow
== NULL
)
1777 window
= window
->GetParent();
1780 wxASSERT_MSG( window
->m_wxwindow
, wxT("wxCairoContext needs a widget") );
1782 Init(gdk_cairo_create(window
->GTKGetDrawingWindow()));
1784 wxSize sz
= window
->GetSize();
1790 m_mswSurface
= cairo_win32_surface_create((HDC
)window
->GetHandle());
1791 Init(cairo_create(m_mswSurface
));
1796 wxCairoContext::wxCairoContext(wxGraphicsRenderer
* renderer
) :
1797 wxGraphicsContext(renderer
)
1802 wxCairoContext::~wxCairoContext()
1808 cairo_destroy(m_context
);
1812 cairo_surface_destroy(m_mswSurface
);
1816 void wxCairoContext::Init(cairo_t
*context
)
1818 m_context
= context
;
1824 void wxCairoContext::Clip( const wxRegion
& region
)
1826 // Create a path with all the rectangles in the region
1827 wxGraphicsPath path
= GetRenderer()->CreatePath();
1828 wxRegionIterator
ri(region
);
1831 path
.AddRectangle(ri
.GetX(), ri
.GetY(), ri
.GetW(), ri
.GetH());
1835 // Put it in the context
1836 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1837 cairo_append_path(m_context
, cp
);
1839 // clip to that path
1840 cairo_clip(m_context
);
1841 path
.UnGetNativePath(cp
);
1844 void wxCairoContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1846 // Create a path with this rectangle
1847 wxGraphicsPath path
= GetRenderer()->CreatePath();
1848 path
.AddRectangle(x
,y
,w
,h
);
1850 // Put it in the context
1851 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1852 cairo_append_path(m_context
, cp
);
1854 // clip to that path
1855 cairo_clip(m_context
);
1856 path
.UnGetNativePath(cp
);
1859 void wxCairoContext::ResetClip()
1861 cairo_reset_clip(m_context
);
1865 void wxCairoContext::StrokePath( const wxGraphicsPath
& path
)
1867 if ( !m_pen
.IsNull() )
1869 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1870 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1871 cairo_append_path(m_context
,cp
);
1872 ((wxCairoPenData
*)m_pen
.GetRefData())->Apply(this);
1873 cairo_stroke(m_context
);
1874 path
.UnGetNativePath(cp
);
1878 void wxCairoContext::FillPath( const wxGraphicsPath
& path
, wxPolygonFillMode fillStyle
)
1880 if ( !m_brush
.IsNull() )
1882 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1883 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1884 cairo_append_path(m_context
,cp
);
1885 ((wxCairoBrushData
*)m_brush
.GetRefData())->Apply(this);
1886 cairo_set_fill_rule(m_context
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1887 cairo_fill(m_context
);
1888 path
.UnGetNativePath(cp
);
1892 void wxCairoContext::Rotate( wxDouble angle
)
1894 cairo_rotate(m_context
,angle
);
1897 void wxCairoContext::Translate( wxDouble dx
, wxDouble dy
)
1899 cairo_translate(m_context
,dx
,dy
);
1902 void wxCairoContext::Scale( wxDouble xScale
, wxDouble yScale
)
1904 cairo_scale(m_context
,xScale
,yScale
);
1907 // concatenates this transform with the current transform of this context
1908 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix
& matrix
)
1910 cairo_transform(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1913 // sets the transform of this context
1914 void wxCairoContext::SetTransform( const wxGraphicsMatrix
& matrix
)
1916 cairo_set_matrix(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1919 // gets the matrix of this context
1920 wxGraphicsMatrix
wxCairoContext::GetTransform() const
1922 wxGraphicsMatrix matrix
= CreateMatrix();
1923 cairo_get_matrix(m_context
,(cairo_matrix_t
*) matrix
.GetNativeMatrix());
1929 void wxCairoContext::PushState()
1931 cairo_save(m_context
);
1934 void wxCairoContext::PopState()
1936 cairo_restore(m_context
);
1939 void wxCairoContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1941 wxGraphicsBitmap bitmap
= GetRenderer()->CreateBitmap(bmp
);
1942 DrawBitmap(bitmap
, x
, y
, w
, h
);
1946 void wxCairoContext::DrawBitmap(const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1950 // In case we're scaling the image by using a width and height different
1951 // than the bitmap's size create a pattern transformation on the surface and
1952 // draw the transformed pattern.
1953 wxCairoBitmapData
* data
= static_cast<wxCairoBitmapData
*>(bmp
.GetRefData());
1954 cairo_pattern_t
* pattern
= data
->GetCairoPattern();
1955 wxSize size
= data
->GetSize();
1957 wxDouble scaleX
= w
/ size
.GetWidth();
1958 wxDouble scaleY
= h
/ size
.GetHeight();
1960 // prepare to draw the image
1961 cairo_translate(m_context
, x
, y
);
1962 cairo_scale(m_context
, scaleX
, scaleY
);
1963 cairo_set_source(m_context
, pattern
);
1964 // use the original size here since the context is scaled already...
1965 cairo_rectangle(m_context
, 0, 0, size
.GetWidth(), size
.GetHeight());
1966 // fill the rectangle using the pattern
1967 cairo_fill(m_context
);
1972 void wxCairoContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1974 // An icon is a bitmap on wxGTK, so do this the easy way. When we want to
1975 // start using the Cairo backend on other platforms then we may need to
1976 // fiddle with this...
1977 DrawBitmap(icon
, x
, y
, w
, h
);
1981 void wxCairoContext::DoDrawText(const wxString
& str
, wxDouble x
, wxDouble y
)
1983 wxCHECK_RET( !m_font
.IsNull(),
1984 wxT("wxCairoContext::DrawText - no valid font set") );
1989 const wxCharBuffer data
= str
.utf8_str();
1993 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply(this) )
1996 size_t datalen
= strlen(data
);
1998 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
1999 wxCairoFontData
* font_data
= (wxCairoFontData
*) m_font
.GetRefData();
2000 pango_layout_set_font_description( layout
, font_data
->GetFont());
2001 pango_layout_set_text(layout
, data
, datalen
);
2003 if (font_data
->GetUnderlined())
2005 PangoAttrList
*attrs
= pango_attr_list_new();
2006 PangoAttribute
*attr
= pango_attr_underline_new(PANGO_UNDERLINE_SINGLE
);
2007 pango_attr_list_insert(attrs
, attr
);
2008 pango_layout_set_attributes(layout
, attrs
);
2009 pango_attr_list_unref(attrs
);
2012 cairo_move_to(m_context
, x
, y
);
2013 pango_cairo_show_layout (m_context
, layout
);
2015 g_object_unref (layout
);
2017 // Don't use Cairo text API, we already did everything.
2022 // Cairo's x,y for drawing text is at the baseline, so we need to adjust
2023 // the position we move to by the ascent.
2024 cairo_font_extents_t fe
;
2025 cairo_font_extents(m_context
, &fe
);
2026 cairo_move_to(m_context
, x
, y
+fe
.ascent
);
2028 cairo_show_text(m_context
, data
);
2031 void wxCairoContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
2032 wxDouble
*descent
, wxDouble
*externalLeading
) const
2034 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") );
2042 if ( externalLeading
)
2043 *externalLeading
= 0;
2048 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply((wxCairoContext
*)this) )
2053 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
2054 pango_layout_set_font_description( layout
, ((wxCairoFontData
*)m_font
.GetRefData())->GetFont());
2055 const wxCharBuffer data
= str
.utf8_str();
2060 pango_layout_set_text( layout
, data
, strlen(data
) );
2061 pango_layout_get_pixel_size (layout
, &w
, &h
);
2068 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
2069 int baseline
= pango_layout_iter_get_baseline(iter
);
2070 pango_layout_iter_free(iter
);
2071 *descent
= h
- PANGO_PIXELS(baseline
);
2073 g_object_unref (layout
);
2080 const wxWX2MBbuf
buf(str
.mb_str(wxConvUTF8
));
2081 cairo_text_extents_t te
;
2082 cairo_text_extents(m_context
, buf
, &te
);
2086 if (height
|| descent
|| externalLeading
)
2088 cairo_font_extents_t fe
;
2089 cairo_font_extents(m_context
, &fe
);
2091 // some backends have negative descents
2093 if ( fe
.descent
< 0 )
2094 fe
.descent
= -fe
.descent
;
2096 if ( fe
.height
< (fe
.ascent
+ fe
.descent
) )
2098 // some backends are broken re height ... (eg currently ATSUI)
2099 fe
.height
= fe
.ascent
+ fe
.descent
;
2103 *height
= fe
.height
;
2105 *descent
= fe
.descent
;
2106 if ( externalLeading
)
2107 *externalLeading
= wxMax(0, fe
.height
- (fe
.ascent
+ fe
.descent
));
2111 void wxCairoContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
2114 widths
.Add(0, text
.length());
2116 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") );
2124 void * wxCairoContext::GetNativeContext()
2129 bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias
)
2131 if (m_antialias
== antialias
)
2134 m_antialias
= antialias
;
2136 cairo_antialias_t antialiasMode
;
2139 case wxANTIALIAS_DEFAULT
:
2140 antialiasMode
= CAIRO_ANTIALIAS_DEFAULT
;
2142 case wxANTIALIAS_NONE
:
2143 antialiasMode
= CAIRO_ANTIALIAS_NONE
;
2148 cairo_set_antialias(m_context
, antialiasMode
);
2152 bool wxCairoContext::SetInterpolationQuality(wxInterpolationQuality
WXUNUSED(interpolation
))
2158 bool wxCairoContext::SetCompositionMode(wxCompositionMode op
)
2160 if ( m_composition
== op
)
2164 cairo_operator_t cop
;
2167 case wxCOMPOSITION_CLEAR
:
2168 cop
= CAIRO_OPERATOR_CLEAR
;
2170 case wxCOMPOSITION_SOURCE
:
2171 cop
= CAIRO_OPERATOR_SOURCE
;
2173 case wxCOMPOSITION_OVER
:
2174 cop
= CAIRO_OPERATOR_OVER
;
2176 case wxCOMPOSITION_IN
:
2177 cop
= CAIRO_OPERATOR_IN
;
2179 case wxCOMPOSITION_OUT
:
2180 cop
= CAIRO_OPERATOR_OUT
;
2182 case wxCOMPOSITION_ATOP
:
2183 cop
= CAIRO_OPERATOR_ATOP
;
2185 case wxCOMPOSITION_DEST
:
2186 cop
= CAIRO_OPERATOR_DEST
;
2188 case wxCOMPOSITION_DEST_OVER
:
2189 cop
= CAIRO_OPERATOR_DEST_OVER
;
2191 case wxCOMPOSITION_DEST_IN
:
2192 cop
= CAIRO_OPERATOR_DEST_IN
;
2194 case wxCOMPOSITION_DEST_OUT
:
2195 cop
= CAIRO_OPERATOR_DEST_OUT
;
2197 case wxCOMPOSITION_DEST_ATOP
:
2198 cop
= CAIRO_OPERATOR_DEST_ATOP
;
2200 case wxCOMPOSITION_XOR
:
2201 cop
= CAIRO_OPERATOR_XOR
;
2203 case wxCOMPOSITION_ADD
:
2204 cop
= CAIRO_OPERATOR_ADD
;
2209 cairo_set_operator(m_context
, cop
);
2213 void wxCairoContext::BeginLayer(wxDouble opacity
)
2215 m_layerOpacities
.push_back(opacity
);
2216 cairo_push_group(m_context
);
2219 void wxCairoContext::EndLayer()
2221 float opacity
= m_layerOpacities
.back();
2222 m_layerOpacities
.pop_back();
2223 cairo_pop_group_to_source(m_context
);
2224 cairo_paint_with_alpha(m_context
,opacity
);
2227 //-----------------------------------------------------------------------------
2228 // wxCairoRenderer declaration
2229 //-----------------------------------------------------------------------------
2231 class WXDLLIMPEXP_CORE wxCairoRenderer
: public wxGraphicsRenderer
2234 wxCairoRenderer() {}
2236 virtual ~wxCairoRenderer() {}
2240 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
2241 virtual wxGraphicsContext
* CreateContext( const wxMemoryDC
& dc
);
2242 virtual wxGraphicsContext
* CreateContext( const wxPrinterDC
& dc
);
2244 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
2246 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
2248 virtual wxGraphicsContext
* CreateContextFromImage(wxImage
& image
);
2249 #endif // wxUSE_IMAGE
2251 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
2253 virtual wxGraphicsContext
* CreateMeasuringContext();
2255 #if wxUSE_ENH_METAFILE
2256 virtual wxGraphicsContext
* CreateContext( const wxEnhMetaFileDC
& dc
);
2261 virtual wxGraphicsPath
CreatePath();
2265 virtual wxGraphicsMatrix
CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
2266 wxDouble tx
=0.0, wxDouble ty
=0.0);
2269 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) ;
2271 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) ;
2273 virtual wxGraphicsBrush
2274 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2275 wxDouble x2
, wxDouble y2
,
2276 const wxGraphicsGradientStops
& stops
);
2278 virtual wxGraphicsBrush
2279 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2280 wxDouble xc
, wxDouble yc
,
2282 const wxGraphicsGradientStops
& stops
);
2285 virtual wxGraphicsFont
CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) ;
2286 virtual wxGraphicsFont
CreateFont(double sizeInPixels
,
2287 const wxString
& facename
,
2288 int flags
= wxFONTFLAG_DEFAULT
,
2289 const wxColour
& col
= *wxBLACK
);
2291 // create a native bitmap representation
2292 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
);
2294 virtual wxGraphicsBitmap
CreateBitmapFromImage(const wxImage
& image
);
2295 #endif // wxUSE_IMAGE
2297 // create a graphics bitmap from a native bitmap
2298 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
);
2300 // create a subimage from a native image representation
2301 virtual wxGraphicsBitmap
CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
2304 bool EnsureIsLoaded();
2307 friend class wxCairoModule
;
2310 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer
)
2313 //-----------------------------------------------------------------------------
2314 // wxCairoRenderer implementation
2315 //-----------------------------------------------------------------------------
2317 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer
,wxGraphicsRenderer
)
2319 static wxCairoRenderer gs_cairoGraphicsRenderer
;
2320 // temporary hack to allow creating a cairo context on any platform
2321 extern wxGraphicsRenderer
* gCairoRenderer
;
2322 wxGraphicsRenderer
* gCairoRenderer
= &gs_cairoGraphicsRenderer
;
2324 bool wxCairoRenderer::EnsureIsLoaded()
2328 return wxCairoInit();
2334 void wxCairoRenderer::Load()
2339 void wxCairoRenderer::Unload()
2344 // call EnsureIsLoaded() and return returnOnFail value if it fails
2345 #define ENSURE_LOADED_OR_RETURN(returnOnFail) \
2346 if ( !EnsureIsLoaded() ) \
2347 return (returnOnFail)
2349 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxWindowDC
& dc
)
2351 ENSURE_LOADED_OR_RETURN(NULL
);
2352 return new wxCairoContext(this,dc
);
2355 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxMemoryDC
& dc
)
2357 ENSURE_LOADED_OR_RETURN(NULL
);
2358 return new wxCairoContext(this,dc
);
2361 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxPrinterDC
& dc
)
2363 ENSURE_LOADED_OR_RETURN(NULL
);
2365 const wxDCImpl
*impl
= dc
.GetImpl();
2366 cairo_t
* context
= (cairo_t
*) impl
->GetCairoContext();
2368 return new wxCairoContext(this,dc
);
2371 return new wxCairoContext(this,dc
);
2375 #if wxUSE_ENH_METAFILE
2376 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxEnhMetaFileDC
& WXUNUSED(dc
) )
2378 ENSURE_LOADED_OR_RETURN(NULL
);
2384 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeContext( void * context
)
2386 ENSURE_LOADED_OR_RETURN(NULL
);
2388 return new wxCairoContext(this,(HDC
)context
);
2390 return new wxCairoContext(this,(cairo_t
*)context
);
2395 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeWindow( void * window
)
2397 ENSURE_LOADED_OR_RETURN(NULL
);
2399 return new wxCairoContext(this,(GdkDrawable
*)window
);
2401 wxUnusedVar(window
);
2407 wxGraphicsContext
* wxCairoRenderer::CreateContextFromImage(wxImage
& image
)
2409 return new wxCairoImageContext(this, image
);
2411 #endif // wxUSE_IMAGE
2413 wxGraphicsContext
* wxCairoRenderer::CreateMeasuringContext()
2415 ENSURE_LOADED_OR_RETURN(NULL
);
2417 return CreateContextFromNativeWindow(gdk_get_default_root_window());
2423 wxGraphicsContext
* wxCairoRenderer::CreateContext( wxWindow
* window
)
2425 ENSURE_LOADED_OR_RETURN(NULL
);
2426 return new wxCairoContext(this, window
);
2431 wxGraphicsPath
wxCairoRenderer::CreatePath()
2433 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath
);
2434 wxGraphicsPath path
;
2435 path
.SetRefData( new wxCairoPathData(this) );
2442 wxGraphicsMatrix
wxCairoRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
2443 wxDouble tx
, wxDouble ty
)
2446 ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix
);
2448 wxCairoMatrixData
* data
= new wxCairoMatrixData( this );
2449 data
->Set( a
,b
,c
,d
,tx
,ty
) ;
2454 wxGraphicsPen
wxCairoRenderer::CreatePen(const wxPen
& pen
)
2456 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen
);
2457 if ( !pen
.IsOk() || pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
2458 return wxNullGraphicsPen
;
2462 p
.SetRefData(new wxCairoPenData( this, pen
));
2467 wxGraphicsBrush
wxCairoRenderer::CreateBrush(const wxBrush
& brush
)
2469 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2470 if ( !brush
.IsOk() || brush
.GetStyle() == wxBRUSHSTYLE_TRANSPARENT
)
2471 return wxNullGraphicsBrush
;
2475 p
.SetRefData(new wxCairoBrushData( this, brush
));
2481 wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2482 wxDouble x2
, wxDouble y2
,
2483 const wxGraphicsGradientStops
& stops
)
2485 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2487 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2488 d
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, stops
);
2494 wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2495 wxDouble xc
, wxDouble yc
, wxDouble r
,
2496 const wxGraphicsGradientStops
& stops
)
2498 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2500 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2501 d
->CreateRadialGradientBrush(xo
, yo
, xc
, yc
, r
, stops
);
2506 wxGraphicsFont
wxCairoRenderer::CreateFont( const wxFont
&font
, const wxColour
&col
)
2508 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2512 p
.SetRefData(new wxCairoFontData( this , font
, col
));
2516 return wxNullGraphicsFont
;
2520 wxCairoRenderer::CreateFont(double sizeInPixels
,
2521 const wxString
& facename
,
2523 const wxColour
& col
)
2525 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2527 wxGraphicsFont font
;
2528 font
.SetRefData(new wxCairoFontData(this, sizeInPixels
, facename
, flags
, col
));
2532 wxGraphicsBitmap
wxCairoRenderer::CreateBitmap( const wxBitmap
& bmp
)
2534 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2538 p
.SetRefData(new wxCairoBitmapData( this , bmp
));
2542 return wxNullGraphicsBitmap
;
2547 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromImage(const wxImage
& image
)
2549 wxGraphicsBitmap bmp
;
2551 ENSURE_LOADED_OR_RETURN(bmp
);
2555 bmp
.SetRefData(new wxCairoBitmapData(this, image
));
2561 #endif // wxUSE_IMAGE
2563 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap
)
2565 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2566 if ( bitmap
!= NULL
)
2569 p
.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t
*) bitmap
));
2573 return wxNullGraphicsBitmap
;
2577 wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap
& WXUNUSED(bitmap
),
2578 wxDouble
WXUNUSED(x
),
2579 wxDouble
WXUNUSED(y
),
2580 wxDouble
WXUNUSED(w
),
2581 wxDouble
WXUNUSED(h
))
2583 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2584 wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented.");
2585 return wxNullGraphicsBitmap
;
2588 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2590 return &gs_cairoGraphicsRenderer
;
2593 #else // !wxUSE_CAIRO
2595 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2600 #endif // wxUSE_CAIRO/!wxUSE_CAIRO
2602 // MSW and OS X have their own native default renderers, but the other ports
2603 // use Cairo by default
2604 #if !(defined(__WXMSW__) || defined(__WXOSX__))
2605 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
2607 return GetCairoRenderer();
2609 #endif // !(__WXMSW__ || __WXOSX__)
2611 #endif // wxUSE_GRAPHICS_CONTEXT