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"
36 #include "wx/window.h"
39 #include "wx/private/graphics.h"
40 #include "wx/rawbmp.h"
41 #include "wx/vector.h"
45 //-----------------------------------------------------------------------------
46 // device context implementation
48 // more and more of the dc functionality should be implemented by calling
49 // the appropricate wxCairoContext, but we will have to do that step by step
50 // also coordinate conversions should be moved to native matrix ops
51 //-----------------------------------------------------------------------------
53 // we always stock two context states, one at entry, to be able to preserve the
54 // state we were called with, the other one after changing to HI Graphics orientation
55 // (this one is used for getting back clippings etc)
57 //-----------------------------------------------------------------------------
58 // wxGraphicsPath implementation
59 //-----------------------------------------------------------------------------
61 // TODO remove this dependency (gdiplus needs the macros)
64 #define max(a,b) (((a) > (b)) ? (a) : (b))
68 #define min(a,b) (((a) < (b)) ? (a) : (b))
73 #include <cairo-win32.h>
78 #include "wx/fontutil.h"
79 #include "wx/gtk/dc.h"
83 #include <cairo-win32.h>
84 // We must do this as cairo-win32.h includes windows.h which pollutes the
85 // global name space with macros.
86 #include "wx/msw/winundef.h"
90 #include "wx/osx/private.h"
91 #include <cairo-quartz.h>
92 #include <cairo-atsui.h>
95 class WXDLLIMPEXP_CORE wxCairoPathData
: public wxGraphicsPathData
98 wxCairoPathData(wxGraphicsRenderer
* renderer
, cairo_t
* path
= NULL
);
101 virtual wxGraphicsObjectRefData
*Clone() const;
104 // These are the path primitives from which everything else can be constructed
107 // begins a new subpath at (x,y)
108 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
110 // adds a straight line from the current point to (x,y)
111 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
113 // adds a cubic Bezier curve from the current point, using two control points and an end point
114 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
117 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
118 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
120 // gets the last point of the current path, (0,0) if not yet set
121 virtual void GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const;
124 virtual void AddPath( const wxGraphicsPathData
* path
);
126 // closes the current sub-path
127 virtual void CloseSubpath();
130 // These are convenience functions which - if not available natively will be assembled
131 // using the primitives from above
136 // appends a rectangle as a new closed subpath
137 virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ;
138 // appends an ellipsis as a new closed subpath fitting the passed rectangle
139 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
141 // 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)
142 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
145 // returns the native path
146 virtual void * GetNativePath() const ;
148 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
149 virtual void UnGetNativePath(void *p
) const;
151 // transforms each point of this path by the matrix
152 virtual void Transform( const wxGraphicsMatrixData
* matrix
) ;
154 // gets the bounding box enclosing all points (possibly including control points)
155 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const;
157 virtual bool Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
) const;
160 cairo_t
* m_pathContext
;
163 class WXDLLIMPEXP_CORE wxCairoMatrixData
: public wxGraphicsMatrixData
166 wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
= NULL
) ;
167 virtual ~wxCairoMatrixData() ;
169 virtual wxGraphicsObjectRefData
*Clone() const ;
171 // concatenates the matrix
172 virtual void Concat( const wxGraphicsMatrixData
*t
);
174 // sets the matrix to the respective values
175 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
176 wxDouble tx
=0.0, wxDouble ty
=0.0);
178 // gets the component valuess of the matrix
179 virtual void Get(wxDouble
* a
=NULL
, wxDouble
* b
=NULL
, wxDouble
* c
=NULL
,
180 wxDouble
* d
=NULL
, wxDouble
* tx
=NULL
, wxDouble
* ty
=NULL
) const;
182 // makes this the inverse matrix
183 virtual void Invert();
185 // returns true if the elements of the transformation matrix are equal ?
186 virtual bool IsEqual( const wxGraphicsMatrixData
* t
) const ;
188 // return true if this is the identity matrix
189 virtual bool IsIdentity() const;
195 // add the translation to this matrix
196 virtual void Translate( wxDouble dx
, wxDouble dy
);
198 // add the scale to this matrix
199 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
201 // add the rotation to this matrix (radians)
202 virtual void Rotate( wxDouble angle
);
205 // apply the transforms
208 // applies that matrix to the point
209 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
) const;
211 // applies the matrix except for translations
212 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const;
214 // returns the native representation
215 virtual void * GetNativeMatrix() const;
217 cairo_matrix_t m_matrix
;
220 class WXDLLIMPEXP_CORE wxCairoPenData
: public wxGraphicsObjectRefData
223 wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
228 virtual void Apply( wxGraphicsContext
* context
);
229 virtual wxDouble
GetWidth() { return m_width
; }
239 cairo_line_cap_t m_cap
;
240 cairo_line_join_t m_join
;
243 const double *m_lengths
;
244 double *m_userLengths
;
248 wxDECLARE_NO_COPY_CLASS(wxCairoPenData
);
251 class WXDLLIMPEXP_CORE wxCairoBrushData
: public wxGraphicsObjectRefData
254 wxCairoBrushData( wxGraphicsRenderer
* renderer
);
255 wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
256 ~wxCairoBrushData ();
258 virtual void Apply( wxGraphicsContext
* context
);
260 void CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
261 wxDouble x2
, wxDouble y2
,
262 const wxGraphicsGradientStops
& stops
);
263 void CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
264 wxDouble xc
, wxDouble yc
, wxDouble radius
,
265 const wxGraphicsGradientStops
& stops
);
270 // common part of Create{Linear,Radial}GradientBrush()
271 void AddGradientStops(const wxGraphicsGradientStops
& stops
);
279 cairo_pattern_t
* m_brushPattern
;
282 class wxCairoFontData
: public wxGraphicsObjectRefData
285 wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
, const wxColour
& col
);
286 wxCairoFontData(wxGraphicsRenderer
* renderer
,
288 const wxString
& facename
,
290 const wxColour
& col
);
293 virtual bool Apply( wxGraphicsContext
* context
);
295 const wxFont
& GetFont() const { return m_wxfont
; }
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__)
314 // These members are used when the font is created from its face name and
315 // flags (and not from wxFont) and also even when creating it from wxFont
316 // on the platforms not covered above.
318 // Notice that we can't use cairo_font_face_t instead of storing those,
319 // even though it would be simpler and need less #ifdefs, because
320 // cairo_toy_font_face_create() that we'd need to create it is only
321 // available in Cairo 1.8 and we require just 1.2 currently. If we do drop
322 // support for < 1.8 versions in the future it would be definitely better
323 // to use cairo_toy_font_face_create() instead.
324 wxCharBuffer m_fontName
;
325 cairo_font_slant_t m_slant
;
326 cairo_font_weight_t m_weight
;
329 class wxCairoBitmapData
: public wxGraphicsObjectRefData
332 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
);
334 wxCairoBitmapData(wxGraphicsRenderer
* renderer
, const wxImage
& image
);
335 #endif // wxUSE_IMAGE
336 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
);
337 ~wxCairoBitmapData();
339 virtual cairo_surface_t
* GetCairoSurface() { return m_surface
; }
340 virtual cairo_pattern_t
* GetCairoPattern() { return m_pattern
; }
341 virtual wxSize
GetSize() { return wxSize(m_width
, m_height
); }
344 wxImage
ConvertToImage() const;
345 #endif // wxUSE_IMAGE
348 // Allocate m_buffer for the bitmap of the given size in the given format.
350 // Returns the stride used for the buffer.
351 int InitBuffer(int width
, int height
, cairo_format_t format
);
353 // Really create the surface using the buffer (which was supposed to be
354 // filled since InitBuffer() call).
355 void InitSurface(cairo_format_t format
, int stride
);
358 cairo_surface_t
* m_surface
;
359 cairo_pattern_t
* m_pattern
;
362 unsigned char* m_buffer
;
365 class WXDLLIMPEXP_CORE wxCairoContext
: public wxGraphicsContext
368 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
);
369 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
);
370 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
);
372 wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
);
375 wxCairoContext( wxGraphicsRenderer
* renderer
, HDC context
);
377 wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
);
378 wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
);
380 // If this ctor is used, Init() must be called by the derived class later.
381 wxCairoContext( wxGraphicsRenderer
* renderer
);
383 virtual ~wxCairoContext();
385 virtual bool ShouldOffset() const
387 if ( !m_enableOffset
)
391 if ( !m_pen
.IsNull() )
393 penwidth
= (int)((wxCairoPenData
*)m_pen
.GetRefData())->GetWidth();
397 return ( penwidth
% 2 ) == 1;
400 virtual void Clip( const wxRegion
®ion
);
402 cairo_surface_t
* m_mswSurface
;
405 // clips drawings to the rect
406 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
408 // resets the clipping to original extent
409 virtual void ResetClip();
411 virtual void * GetNativeContext();
413 virtual bool SetAntialiasMode(wxAntialiasMode antialias
);
415 virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation
);
417 virtual bool SetCompositionMode(wxCompositionMode op
);
419 virtual void BeginLayer(wxDouble opacity
);
421 virtual void EndLayer();
423 virtual void StrokePath( const wxGraphicsPath
& p
);
424 virtual void FillPath( const wxGraphicsPath
& p
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
);
426 virtual void Translate( wxDouble dx
, wxDouble dy
);
427 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
428 virtual void Rotate( wxDouble angle
);
430 // concatenates this transform with the current transform of this context
431 virtual void ConcatTransform( const wxGraphicsMatrix
& matrix
);
433 // sets the transform of this context
434 virtual void SetTransform( const wxGraphicsMatrix
& matrix
);
436 // gets the matrix of this context
437 virtual wxGraphicsMatrix
GetTransform() const;
439 virtual void DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
440 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
441 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
442 virtual void PushState();
443 virtual void PopState();
445 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
446 wxDouble
*descent
, wxDouble
*externalLeading
) const;
447 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
450 virtual void DoDrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
452 void Init(cairo_t
*context
);
457 wxVector
<float> m_layerOpacities
;
459 wxDECLARE_NO_COPY_CLASS(wxCairoContext
);
463 // ----------------------------------------------------------------------------
464 // wxCairoImageContext: context associated with a wxImage.
465 // ----------------------------------------------------------------------------
467 class wxCairoImageContext
: public wxCairoContext
470 wxCairoImageContext(wxGraphicsRenderer
* renderer
, wxImage
& image
) :
471 wxCairoContext(renderer
),
473 m_data(renderer
, image
)
475 Init(cairo_create(m_data
.GetCairoSurface()));
478 virtual ~wxCairoImageContext()
480 m_image
= m_data
.ConvertToImage();
485 wxCairoBitmapData m_data
;
487 wxDECLARE_NO_COPY_CLASS(wxCairoImageContext
);
489 #endif // wxUSE_IMAGE
491 //-----------------------------------------------------------------------------
492 // wxCairoPenData implementation
493 //-----------------------------------------------------------------------------
495 wxCairoPenData::~wxCairoPenData()
497 delete[] m_userLengths
;
500 void wxCairoPenData::Init()
503 m_userLengths
= NULL
;
508 wxCairoPenData::wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
509 : wxGraphicsObjectRefData(renderer
)
513 m_width
= m_pen
.GetWidth();
517 m_red
= m_pen
.GetColour().Red()/255.0;
518 m_green
= m_pen
.GetColour().Green()/255.0;
519 m_blue
= m_pen
.GetColour().Blue()/255.0;
520 m_alpha
= m_pen
.GetColour().Alpha()/255.0;
522 switch ( m_pen
.GetCap() )
525 m_cap
= CAIRO_LINE_CAP_ROUND
;
528 case wxCAP_PROJECTING
:
529 m_cap
= CAIRO_LINE_CAP_SQUARE
;
533 m_cap
= CAIRO_LINE_CAP_BUTT
;
537 m_cap
= CAIRO_LINE_CAP_BUTT
;
541 switch ( m_pen
.GetJoin() )
544 m_join
= CAIRO_LINE_JOIN_BEVEL
;
548 m_join
= CAIRO_LINE_JOIN_MITER
;
552 m_join
= CAIRO_LINE_JOIN_ROUND
;
556 m_join
= CAIRO_LINE_JOIN_MITER
;
560 const double dashUnit
= m_width
< 1.0 ? 1.0 : m_width
;
561 const double dotted
[] =
563 dashUnit
, dashUnit
+ 2.0
565 static const double short_dashed
[] =
569 static const double dashed
[] =
573 static const double dotted_dashed
[] =
575 9.0 , 6.0 , 3.0 , 3.0
578 switch ( m_pen
.GetStyle() )
580 case wxPENSTYLE_SOLID
:
583 case wxPENSTYLE_DOT
:
584 m_count
= WXSIZEOF(dotted
);
585 m_userLengths
= new double[ m_count
] ;
586 memcpy( m_userLengths
, dotted
, sizeof(dotted
) );
587 m_lengths
= m_userLengths
;
590 case wxPENSTYLE_LONG_DASH
:
592 m_count
= WXSIZEOF(dashed
);
595 case wxPENSTYLE_SHORT_DASH
:
596 m_lengths
= short_dashed
;
597 m_count
= WXSIZEOF(short_dashed
);
600 case wxPENSTYLE_DOT_DASH
:
601 m_lengths
= dotted_dashed
;
602 m_count
= WXSIZEOF(dotted_dashed
);
605 case wxPENSTYLE_USER_DASH
:
608 m_count
= m_pen
.GetDashes( &wxdashes
) ;
609 if ((wxdashes
!= NULL
) && (m_count
> 0))
611 m_userLengths
= new double[m_count
] ;
612 for ( int i
= 0 ; i
< m_count
; ++i
)
614 m_userLengths
[i
] = wxdashes
[i
] * dashUnit
;
616 if ( i
% 2 == 1 && m_userLengths
[i
] < dashUnit
+ 2.0 )
617 m_userLengths
[i
] = dashUnit
+ 2.0 ;
618 else if ( i
% 2 == 0 && m_userLengths
[i
] < dashUnit
)
619 m_userLengths
[i
] = dashUnit
;
622 m_lengths
= m_userLengths
;
625 case wxPENSTYLE_STIPPLE
:
628 wxBitmap* bmp = pen.GetStipple();
629 if ( bmp && bmp->IsOk() )
631 wxDELETE( m_penImage );
632 wxDELETE( m_penBrush );
633 m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
634 m_penBrush = new TextureBrush(m_penImage);
635 m_pen->SetBrush( m_penBrush );
641 if ( m_pen
.GetStyle() >= wxPENSTYLE_FIRST_HATCH
642 && m_pen
.GetStyle() <= wxPENSTYLE_LAST_HATCH
)
645 wxDELETE( m_penBrush );
646 HatchStyle style = HatchStyleHorizontal;
647 switch( pen.GetStyle() )
649 case wxPENSTYLE_BDIAGONAL_HATCH :
650 style = HatchStyleBackwardDiagonal;
652 case wxPENSTYLE_CROSSDIAG_HATCH :
653 style = HatchStyleDiagonalCross;
655 case wxPENSTYLE_FDIAGONAL_HATCH :
656 style = HatchStyleForwardDiagonal;
658 case wxPENSTYLE_CROSS_HATCH :
659 style = HatchStyleCross;
661 case wxPENSTYLE_HORIZONTAL_HATCH :
662 style = HatchStyleHorizontal;
664 case wxPENSTYLE_VERTICAL_HATCH :
665 style = HatchStyleVertical;
669 m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() ,
670 pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent );
671 m_pen->SetBrush( m_penBrush )
678 void wxCairoPenData::Apply( wxGraphicsContext
* context
)
680 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
681 cairo_set_line_width(ctext
,m_width
);
682 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
683 cairo_set_line_cap(ctext
,m_cap
);
684 cairo_set_line_join(ctext
,m_join
);
685 cairo_set_dash(ctext
,(double*)m_lengths
,m_count
,0.0);
688 //-----------------------------------------------------------------------------
689 // wxCairoBrushData implementation
690 //-----------------------------------------------------------------------------
692 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
)
693 : wxGraphicsObjectRefData( renderer
)
698 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
)
699 : wxGraphicsObjectRefData(renderer
)
703 m_red
= brush
.GetColour().Red()/255.0;
704 m_green
= brush
.GetColour().Green()/255.0;
705 m_blue
= brush
.GetColour().Blue()/255.0;
706 m_alpha
= brush
.GetColour().Alpha()/255.0;
708 if ( brush.GetStyle() == wxBRUSHSTYLE_SOLID)
710 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
711 brush.GetColour().Green() , brush.GetColour().Blue() ) );
713 else if ( brush.IsHatch() )
715 HatchStyle style = HatchStyleHorizontal;
716 switch( brush.GetStyle() )
718 case wxBRUSHSTYLE_BDIAGONAL_HATCH :
719 style = HatchStyleBackwardDiagonal;
721 case wxBRUSHSTYLE_CROSSDIAG_HATCH :
722 style = HatchStyleDiagonalCross;
724 case wxBRUSHSTYLE_FDIAGONAL_HATCH :
725 style = HatchStyleForwardDiagonal;
727 case wxBRUSHSTYLE_CROSS_HATCH :
728 style = HatchStyleCross;
730 case wxBRUSHSTYLE_HORIZONTAL_HATCH :
731 style = HatchStyleHorizontal;
733 case wxBRUSHSTYLE_VERTICAL_HATCH :
734 style = HatchStyleVertical;
738 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
739 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
743 wxBitmap* bmp = brush.GetStipple();
744 if ( bmp && bmp->IsOk() )
746 wxDELETE( m_brushImage );
747 m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
748 m_brush = new TextureBrush(m_brushImage);
754 wxCairoBrushData::~wxCairoBrushData ()
757 cairo_pattern_destroy(m_brushPattern
);
760 void wxCairoBrushData::Apply( wxGraphicsContext
* context
)
762 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
763 if ( m_brushPattern
)
765 cairo_set_source(ctext
,m_brushPattern
);
769 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
773 void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops
& stops
)
775 // loop over all the stops, they include the beginning and ending ones
776 const unsigned numStops
= stops
.GetCount();
777 for ( unsigned n
= 0; n
< numStops
; n
++ )
779 const wxGraphicsGradientStop stop
= stops
.Item(n
);
781 const wxColour col
= stop
.GetColour();
783 cairo_pattern_add_color_stop_rgba
794 wxASSERT_MSG(cairo_pattern_status(m_brushPattern
) == CAIRO_STATUS_SUCCESS
,
795 wxT("Couldn't create cairo pattern"));
799 wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
800 wxDouble x2
, wxDouble y2
,
801 const wxGraphicsGradientStops
& stops
)
803 m_brushPattern
= cairo_pattern_create_linear(x1
,y1
,x2
,y2
);
805 AddGradientStops(stops
);
809 wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
810 wxDouble xc
, wxDouble yc
,
812 const wxGraphicsGradientStops
& stops
)
814 m_brushPattern
= cairo_pattern_create_radial(xo
,yo
,0.0,xc
,yc
,radius
);
816 AddGradientStops(stops
);
819 void wxCairoBrushData::Init()
821 m_brushPattern
= NULL
;
824 //-----------------------------------------------------------------------------
825 // wxCairoFontData implementation
826 //-----------------------------------------------------------------------------
828 void wxCairoFontData::InitColour(const wxColour
& col
)
830 m_red
= col
.Red()/255.0;
831 m_green
= col
.Green()/255.0;
832 m_blue
= col
.Blue()/255.0;
833 m_alpha
= col
.Alpha()/255.0;
837 wxCairoFontData::InitFontComponents(const wxString
& facename
,
838 cairo_font_slant_t slant
,
839 cairo_font_weight_t weight
)
841 m_fontName
= facename
.mb_str(wxConvUTF8
);
846 wxCairoFontData::wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
,
847 const wxColour
& col
)
848 : wxGraphicsObjectRefData(renderer
)
855 m_size
= font
.GetPointSize();
858 m_font
= cairo_quartz_font_face_create_for_cgfont( font
.OSXGetCGFont() );
859 #elif defined(__WXGTK__)
864 font
.GetStyle() == wxFONTSTYLE_ITALIC
? CAIRO_FONT_SLANT_ITALIC
865 : CAIRO_FONT_SLANT_NORMAL
,
866 font
.GetWeight() == wxFONTWEIGHT_BOLD
? CAIRO_FONT_WEIGHT_BOLD
867 : CAIRO_FONT_WEIGHT_NORMAL
872 wxCairoFontData::wxCairoFontData(wxGraphicsRenderer
* renderer
,
874 const wxString
& facename
,
876 const wxColour
& col
) :
877 wxGraphicsObjectRefData(renderer
)
881 // Resolution for Cairo image surfaces is 72 DPI meaning that the sizes in
882 // points and pixels are identical, so we can just pass the size in pixels
883 // directly to cairo_set_font_size().
884 m_size
= sizeInPixels
;
886 #if defined(__WXMAC__)
890 // There is no need to set m_underlined under wxGTK in this case, it can
891 // only be used if m_font != NULL.
896 flags
& wxFONTFLAG_ITALIC
? CAIRO_FONT_SLANT_ITALIC
897 : CAIRO_FONT_SLANT_NORMAL
,
898 flags
& wxFONTFLAG_BOLD
? CAIRO_FONT_WEIGHT_BOLD
899 : CAIRO_FONT_WEIGHT_NORMAL
903 wxCairoFontData::~wxCairoFontData()
907 cairo_font_face_destroy( m_font
);
911 bool wxCairoFontData::Apply( wxGraphicsContext
* context
)
913 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
914 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
918 // Nothing to do, the caller uses Pango layout functions to do
922 #elif defined(__WXMAC__)
925 cairo_set_font_face(ctext
, m_font
);
926 cairo_set_font_size(ctext
, m_size
);
931 // If we get here, we must be on a platform without native font support or
932 // we're using toy Cairo API even under wxGTK/wxMac.
933 cairo_select_font_face(ctext
, m_fontName
, m_slant
, m_weight
);
934 cairo_set_font_size(ctext
, m_size
);
936 // Indicate that we don't use native fonts for the platforms which care
937 // about this (currently only wxGTK).
941 //-----------------------------------------------------------------------------
942 // wxCairoPathData implementation
943 //-----------------------------------------------------------------------------
945 wxCairoPathData::wxCairoPathData( wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
)
946 : wxGraphicsPathData(renderer
)
950 m_pathContext
= pathcontext
;
954 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
955 m_pathContext
= cairo_create(surface
);
956 cairo_surface_destroy (surface
);
960 wxCairoPathData::~wxCairoPathData()
962 cairo_destroy(m_pathContext
);
965 wxGraphicsObjectRefData
*wxCairoPathData::Clone() const
967 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
968 cairo_t
* pathcontext
= cairo_create(surface
);
969 cairo_surface_destroy (surface
);
971 cairo_path_t
* path
= cairo_copy_path(m_pathContext
);
972 cairo_append_path(pathcontext
, path
);
973 cairo_path_destroy(path
);
974 return new wxCairoPathData( GetRenderer() ,pathcontext
);
978 void* wxCairoPathData::GetNativePath() const
980 return cairo_copy_path(m_pathContext
) ;
983 void wxCairoPathData::UnGetNativePath(void *p
) const
985 cairo_path_destroy((cairo_path_t
*)p
);
992 void wxCairoPathData::MoveToPoint( wxDouble x
, wxDouble y
)
994 cairo_move_to(m_pathContext
,x
,y
);
997 void wxCairoPathData::AddLineToPoint( wxDouble x
, wxDouble y
)
999 cairo_line_to(m_pathContext
,x
,y
);
1002 void wxCairoPathData::AddPath( const wxGraphicsPathData
* path
)
1004 cairo_path_t
* p
= (cairo_path_t
*)path
->GetNativePath();
1005 cairo_append_path(m_pathContext
, p
);
1009 void wxCairoPathData::CloseSubpath()
1011 cairo_close_path(m_pathContext
);
1014 void wxCairoPathData::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
1016 cairo_curve_to(m_pathContext
,cx1
,cy1
,cx2
,cy2
,x
,y
);
1019 // gets the last point of the current path, (0,0) if not yet set
1020 void wxCairoPathData::GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const
1023 cairo_get_current_point(m_pathContext
,&dx
,&dy
);
1030 void wxCairoPathData::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
1032 // as clockwise means positive in our system (y pointing downwards)
1033 // TODO make this interpretation dependent of the
1034 // real device trans
1035 if ( clockwise
||(endAngle
-startAngle
)>=2*M_PI
)
1036 cairo_arc(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1038 cairo_arc_negative(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1041 // transforms each point of this path by the matrix
1042 void wxCairoPathData::Transform( const wxGraphicsMatrixData
* matrix
)
1044 // as we don't have a true path object, we have to apply the inverse
1045 // matrix to the context
1046 cairo_matrix_t m
= *((cairo_matrix_t
*) matrix
->GetNativeMatrix());
1047 cairo_matrix_invert( &m
);
1048 cairo_transform(m_pathContext
,&m
);
1051 // gets the bounding box enclosing all points (possibly including control points)
1052 void wxCairoPathData::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const
1056 cairo_stroke_extents( m_pathContext
, &x1
, &y1
, &x2
, &y2
);
1080 bool wxCairoPathData::Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
) const
1082 cairo_set_fill_rule(m_pathContext
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1083 return cairo_in_fill( m_pathContext
, x
, y
) != 0;
1086 //-----------------------------------------------------------------------------
1087 // wxCairoMatrixData implementation
1088 //-----------------------------------------------------------------------------
1090 wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
)
1091 : wxGraphicsMatrixData(renderer
)
1097 wxCairoMatrixData::~wxCairoMatrixData()
1102 wxGraphicsObjectRefData
*wxCairoMatrixData::Clone() const
1104 return new wxCairoMatrixData(GetRenderer(),&m_matrix
);
1107 // concatenates the matrix
1108 void wxCairoMatrixData::Concat( const wxGraphicsMatrixData
*t
)
1110 cairo_matrix_multiply( &m_matrix
, &m_matrix
, (cairo_matrix_t
*) t
->GetNativeMatrix());
1113 // sets the matrix to the respective values
1114 void wxCairoMatrixData::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1115 wxDouble tx
, wxDouble ty
)
1117 cairo_matrix_init( &m_matrix
, a
, b
, c
, d
, tx
, ty
);
1120 // gets the component valuess of the matrix
1121 void wxCairoMatrixData::Get(wxDouble
* a
, wxDouble
* b
, wxDouble
* c
,
1122 wxDouble
* d
, wxDouble
* tx
, wxDouble
* ty
) const
1124 if (a
) *a
= m_matrix
.xx
;
1125 if (b
) *b
= m_matrix
.yx
;
1126 if (c
) *c
= m_matrix
.xy
;
1127 if (d
) *d
= m_matrix
.yy
;
1128 if (tx
) *tx
= m_matrix
.x0
;
1129 if (ty
) *ty
= m_matrix
.y0
;
1132 // makes this the inverse matrix
1133 void wxCairoMatrixData::Invert()
1135 cairo_matrix_invert( &m_matrix
);
1138 // returns true if the elements of the transformation matrix are equal ?
1139 bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData
* t
) const
1141 const cairo_matrix_t
* tm
= (cairo_matrix_t
*) t
->GetNativeMatrix();
1143 m_matrix
.xx
== tm
->xx
&&
1144 m_matrix
.yx
== tm
->yx
&&
1145 m_matrix
.xy
== tm
->xy
&&
1146 m_matrix
.yy
== tm
->yy
&&
1147 m_matrix
.x0
== tm
->x0
&&
1148 m_matrix
.y0
== tm
->y0
) ;
1151 // return true if this is the identity matrix
1152 bool wxCairoMatrixData::IsIdentity() const
1154 return ( m_matrix
.xx
== 1 && m_matrix
.yy
== 1 &&
1155 m_matrix
.yx
== 0 && m_matrix
.xy
== 0 && m_matrix
.x0
== 0 && m_matrix
.y0
== 0);
1162 // add the translation to this matrix
1163 void wxCairoMatrixData::Translate( wxDouble dx
, wxDouble dy
)
1165 cairo_matrix_translate( &m_matrix
, dx
, dy
) ;
1168 // add the scale to this matrix
1169 void wxCairoMatrixData::Scale( wxDouble xScale
, wxDouble yScale
)
1171 cairo_matrix_scale( &m_matrix
, xScale
, yScale
) ;
1174 // add the rotation to this matrix (radians)
1175 void wxCairoMatrixData::Rotate( wxDouble angle
)
1177 cairo_matrix_rotate( &m_matrix
, angle
) ;
1181 // apply the transforms
1184 // applies that matrix to the point
1185 void wxCairoMatrixData::TransformPoint( wxDouble
*x
, wxDouble
*y
) const
1187 double lx
= *x
, ly
= *y
;
1188 cairo_matrix_transform_point( &m_matrix
, &lx
, &ly
);
1193 // applies the matrix except for translations
1194 void wxCairoMatrixData::TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const
1196 double lx
= *dx
, ly
= *dy
;
1197 cairo_matrix_transform_distance( &m_matrix
, &lx
, &ly
);
1202 // returns the native representation
1203 void * wxCairoMatrixData::GetNativeMatrix() const
1205 return (void*) &m_matrix
;
1208 // ----------------------------------------------------------------------------
1209 // wxCairoBitmap implementation
1210 // ----------------------------------------------------------------------------
1212 int wxCairoBitmapData::InitBuffer(int width
, int height
, cairo_format_t format
)
1214 wxUnusedVar(format
); // Only really unused with Cairo < 1.6.
1216 // Determine the stride: use cairo_format_stride_for_width() if available
1217 // but fall back to 4*width for the earlier versions as this is what that
1218 // function always returns, even in latest Cairo, anyhow.
1220 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 6, 0)
1221 if ( cairo_version() >= CAIRO_VERSION_ENCODE(1, 6, 0) )
1223 stride
= cairo_format_stride_for_width(format
, width
);
1225 // All our code would totally break if stride were not a multiple of 4
1226 // so ensure this is the case.
1229 wxFAIL_MSG("Unexpected Cairo image surface stride.");
1231 stride
+= 4 - stride
% 4;
1240 m_buffer
= new unsigned char[height
*stride
];
1245 void wxCairoBitmapData::InitSurface(cairo_format_t format
, int stride
)
1247 m_surface
= cairo_image_surface_create_for_data(
1248 m_buffer
, format
, m_width
, m_height
, stride
);
1249 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1252 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
) :
1253 wxGraphicsObjectRefData( renderer
)
1256 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1259 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
) : wxGraphicsObjectRefData( renderer
)
1261 wxCHECK_RET( bmp
.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap"));
1263 #ifdef wxHAS_RAW_BITMAP
1264 // Create a surface object and copy the bitmap pixel data to it. if the
1265 // image has alpha (or a mask represented as alpha) then we'll use a
1266 // different format and iterator than if it doesn't...
1267 cairo_format_t bufferFormat
= bmp
.GetDepth() == 32
1271 ? CAIRO_FORMAT_ARGB32
1272 : CAIRO_FORMAT_RGB24
;
1274 int stride
= InitBuffer(bmp
.GetWidth(), bmp
.GetHeight(), bufferFormat
);
1276 wxBitmap bmpSource
= bmp
; // we need a non-const instance
1277 wxUint32
* data
= (wxUint32
*)m_buffer
;
1279 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1281 // use the bitmap's alpha
1283 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1284 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1286 wxAlphaPixelData::Iterator
p(pixData
);
1287 for (int y
=0; y
<m_height
; y
++)
1289 wxAlphaPixelData::Iterator rowStart
= p
;
1290 wxUint32
* const rowStartDst
= data
;
1291 for (int x
=0; x
<m_width
; x
++)
1293 // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity,
1294 // with alpha in the upper 8 bits, then red, then green, then
1295 // blue. The 32-bit quantities are stored native-endian.
1296 // Pre-multiplied alpha is used.
1297 unsigned char alpha
= p
.Alpha();
1301 *data
= ( alpha
<< 24
1302 | (p
.Red() * alpha
/255) << 16
1303 | (p
.Green() * alpha
/255) << 8
1304 | (p
.Blue() * alpha
/255) );
1309 data
= rowStartDst
+ stride
/ 4;
1311 p
.OffsetY(pixData
, 1);
1317 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1318 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1320 wxNativePixelData::Iterator
p(pixData
);
1321 for (int y
=0; y
<m_height
; y
++)
1323 wxNativePixelData::Iterator rowStart
= p
;
1324 wxUint32
* const rowStartDst
= data
;
1325 for (int x
=0; x
<m_width
; x
++)
1327 // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with
1328 // the upper 8 bits unused. Red, Green, and Blue are stored in
1329 // the remaining 24 bits in that order. The 32-bit quantities
1330 // are stored native-endian.
1331 *data
= ( p
.Red() << 16 | p
.Green() << 8 | p
.Blue() );
1336 data
= rowStartDst
+ stride
/ 4;
1338 p
.OffsetY(pixData
, 1);
1342 // if there is a mask, set the alpha bytes in the target buffer to
1343 // fully transparent or fully opaque
1344 if (bmpSource
.GetMask())
1346 wxBitmap bmpMask
= bmpSource
.GetMaskBitmap();
1347 bufferFormat
= CAIRO_FORMAT_ARGB32
;
1348 data
= (wxUint32
*)m_buffer
;
1350 pixData(bmpMask
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1351 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to mask data."));
1353 wxNativePixelData::Iterator
p(pixData
);
1354 for (int y
=0; y
<m_height
; y
++)
1356 wxNativePixelData::Iterator rowStart
= p
;
1357 wxUint32
* const rowStartDst
= data
;
1358 for (int x
=0; x
<m_width
; x
++)
1360 if (p
.Red()+p
.Green()+p
.Blue() == 0)
1363 *data
= (wxALPHA_OPAQUE
<< 24) | (*data
& 0x00FFFFFF);
1368 data
= rowStartDst
+ stride
/ 4;
1370 p
.OffsetY(pixData
, 1);
1375 InitSurface(bufferFormat
, stride
);
1376 #endif // wxHAS_RAW_BITMAP
1381 // Helper functions for dealing with alpha pre-multiplication.
1385 inline unsigned char Premultiply(unsigned char alpha
, unsigned char data
)
1387 return alpha
? (data
* alpha
)/0xff : data
;
1390 inline unsigned char Unpremultiply(unsigned char alpha
, unsigned char data
)
1392 return alpha
? (data
* 0xff)/alpha
: data
;
1395 } // anonymous namespace
1397 wxCairoBitmapData::wxCairoBitmapData(wxGraphicsRenderer
* renderer
,
1398 const wxImage
& image
)
1399 : wxGraphicsObjectRefData(renderer
)
1401 const cairo_format_t bufferFormat
= image
.HasAlpha()
1402 ? CAIRO_FORMAT_ARGB32
1403 : CAIRO_FORMAT_RGB24
;
1405 int stride
= InitBuffer(image
.GetWidth(), image
.GetHeight(), bufferFormat
);
1407 // Copy wxImage data into the buffer. Notice that we work with wxUint32
1408 // values and not bytes becase Cairo always works with buffers in native
1410 wxUint32
* dst
= reinterpret_cast<wxUint32
*>(m_buffer
);
1411 const unsigned char* src
= image
.GetData();
1413 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1415 const unsigned char* alpha
= image
.GetAlpha();
1417 for ( int y
= 0; y
< m_height
; y
++ )
1419 wxUint32
* const rowStartDst
= dst
;
1421 for ( int x
= 0; x
< m_width
; x
++ )
1423 const unsigned char a
= *alpha
++;
1426 Premultiply(a
, src
[0]) << 16 |
1427 Premultiply(a
, src
[1]) << 8 |
1428 Premultiply(a
, src
[2]);
1432 dst
= rowStartDst
+ stride
/ 4;
1437 for ( int y
= 0; y
< m_height
; y
++ )
1439 wxUint32
* const rowStartDst
= dst
;
1441 for ( int x
= 0; x
< m_width
; x
++ )
1443 *dst
++ = src
[0] << 16 |
1449 dst
= rowStartDst
+ stride
/ 4;
1453 InitSurface(bufferFormat
, stride
);
1456 wxImage
wxCairoBitmapData::ConvertToImage() const
1458 wxImage
image(m_width
, m_height
, false /* don't clear */);
1460 // Get the surface type and format.
1461 wxCHECK_MSG( cairo_surface_get_type(m_surface
) == CAIRO_SURFACE_TYPE_IMAGE
,
1463 wxS("Can't convert non-image surface to image.") );
1465 switch ( cairo_image_surface_get_format(m_surface
) )
1467 case CAIRO_FORMAT_ARGB32
:
1471 case CAIRO_FORMAT_RGB24
:
1472 // Nothing to do, we don't use alpha by default.
1475 case CAIRO_FORMAT_A8
:
1476 case CAIRO_FORMAT_A1
:
1477 wxFAIL_MSG(wxS("Unsupported Cairo image surface type."));
1481 wxFAIL_MSG(wxS("Unknown Cairo image surface type."));
1485 // Prepare for copying data.
1486 const wxUint32
* src
= (wxUint32
*)cairo_image_surface_get_data(m_surface
);
1487 wxCHECK_MSG( src
, wxNullImage
, wxS("Failed to get Cairo surface data.") );
1489 int stride
= cairo_image_surface_get_stride(m_surface
);
1490 wxCHECK_MSG( stride
> 0, wxNullImage
,
1491 wxS("Failed to get Cairo surface stride.") );
1493 // As we work with wxUint32 pointers and not char ones, we need to adjust
1494 // the stride accordingly. This should be lossless as the stride must be a
1495 // multiple of pixel size.
1496 wxASSERT_MSG( !(stride
% sizeof(wxUint32
)), wxS("Unexpected stride.") );
1497 stride
/= sizeof(wxUint32
);
1499 unsigned char* dst
= image
.GetData();
1500 unsigned char *alpha
= image
.GetAlpha();
1503 // We need to also copy alpha and undo the pre-multiplication as Cairo
1504 // stores pre-multiplied values in this format while wxImage does not.
1505 for ( int y
= 0; y
< m_height
; y
++ )
1507 const wxUint32
* const rowStart
= src
;
1508 for ( int x
= 0; x
< m_width
; x
++ )
1510 const wxUint32 argb
= *src
++;
1512 *alpha
++ = (argb
& 0xff000000) >> 24;
1514 // Copy the RGB data undoing the pre-multiplication.
1515 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x00ff0000) >> 16);
1516 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x0000ff00) >> 8);
1517 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x000000ff));
1520 src
= rowStart
+ stride
;
1525 // Things are pretty simple in this case, just copy RGB bytes.
1526 for ( int y
= 0; y
< m_height
; y
++ )
1528 const wxUint32
* const rowStart
= src
;
1529 for ( int x
= 0; x
< m_width
; x
++ )
1531 const wxUint32 argb
= *src
++;
1533 *dst
++ = (argb
& 0x00ff0000) >> 16;
1534 *dst
++ = (argb
& 0x0000ff00) >> 8;
1535 *dst
++ = (argb
& 0x000000ff);
1538 src
= rowStart
+ stride
;
1545 #endif // wxUSE_IMAGE
1547 wxCairoBitmapData::~wxCairoBitmapData()
1550 cairo_pattern_destroy(m_pattern
);
1553 cairo_surface_destroy(m_surface
);
1558 //-----------------------------------------------------------------------------
1559 // wxCairoContext implementation
1560 //-----------------------------------------------------------------------------
1562 class wxCairoOffsetHelper
1565 wxCairoOffsetHelper( cairo_t
* ctx
, bool offset
)
1570 cairo_translate( m_ctx
, 0.5, 0.5 );
1572 ~wxCairoOffsetHelper( )
1575 cairo_translate( m_ctx
, -0.5, -0.5 );
1582 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
)
1583 : wxGraphicsContext(renderer
)
1586 // wxMSW contexts always use MM_ANISOTROPIC, which messes up
1587 // text rendering when printing using Cairo. Switch it to MM_TEXT
1588 // map mode to avoid this problem.
1589 HDC hdc
= (HDC
)dc
.GetHDC();
1590 ::SetMapMode(hdc
, MM_TEXT
);
1591 m_mswSurface
= cairo_win32_printing_surface_create(hdc
);
1592 Init( cairo_create(m_mswSurface
) );
1596 const wxDCImpl
*impl
= dc
.GetImpl();
1597 Init( (cairo_t
*) impl
->GetCairoContext() );
1599 wxSize sz
= dc
.GetSize();
1603 wxPoint org
= dc
.GetDeviceOrigin();
1604 cairo_translate( m_context
, org
.x
, org
.y
);
1607 dc
.GetUserScale( &sx
, &sy
);
1609 // TODO: Determine if these fixes are needed on other platforms too.
1610 // On MSW, without this the printer context will not respect wxDC SetMapMode calls.
1611 // For example, using dc.SetMapMode(wxMM_POINTS) can let us share printer and screen
1615 dc
.GetLogicalScale( &lsx
, &lsy
);
1619 cairo_scale( m_context
, sx
, sy
);
1621 org
= dc
.GetLogicalOrigin();
1622 cairo_translate( m_context
, -org
.x
, -org
.y
);
1625 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
)
1626 : wxGraphicsContext(renderer
)
1629 dc
.GetSize( &width
, &height
);
1633 m_enableOffset
= true;
1636 m_mswSurface
= cairo_win32_surface_create((HDC
)dc
.GetHDC());
1637 Init( cairo_create(m_mswSurface
) );
1641 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1642 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1645 wxGraphicsMatrix matrix
= CreateMatrix();
1647 wxPoint org
= dc
.GetDeviceOrigin();
1648 matrix
.Translate( org
.x
, org
.y
);
1650 org
= dc
.GetLogicalOrigin();
1651 matrix
.Translate( -org
.x
, -org
.y
);
1654 dc
.GetUserScale( &sx
, &sy
);
1655 matrix
.Scale( sx
, sy
);
1657 ConcatTransform( matrix
);
1662 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1663 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1664 Init( cairo_create( surface
) );
1665 cairo_surface_destroy( surface
);
1669 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
)
1670 : wxGraphicsContext(renderer
)
1673 dc
.GetSize( &width
, &height
);
1677 m_enableOffset
= true;
1680 m_mswSurface
= cairo_win32_surface_create((HDC
)dc
.GetHDC());
1681 Init( cairo_create(m_mswSurface
) );
1685 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1686 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1689 wxGraphicsMatrix matrix
= CreateMatrix();
1691 wxPoint org
= dc
.GetDeviceOrigin();
1692 matrix
.Translate( org
.x
, org
.y
);
1694 org
= dc
.GetLogicalOrigin();
1695 matrix
.Translate( -org
.x
, -org
.y
);
1698 dc
.GetUserScale( &sx
, &sy
);
1699 matrix
.Scale( sx
, sy
);
1701 ConcatTransform( matrix
);
1706 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1707 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1708 Init( cairo_create( surface
) );
1709 cairo_surface_destroy( surface
);
1714 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, GdkDrawable
*drawable
)
1715 : wxGraphicsContext(renderer
)
1717 Init( gdk_cairo_create( drawable
) );
1720 gdk_drawable_get_size( drawable
, &width
, &height
);
1727 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, HDC handle
)
1728 : wxGraphicsContext(renderer
)
1730 m_mswSurface
= cairo_win32_surface_create(handle
);
1731 Init( cairo_create(m_mswSurface
) );
1738 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
)
1739 : wxGraphicsContext(renderer
)
1746 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
)
1747 : wxGraphicsContext(renderer
)
1749 m_enableOffset
= true;
1751 // something along these lines (copied from dcclient)
1753 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1754 // code should still be able to create wxClientDCs for them, so we will
1755 // use the parent window here then.
1756 if (window
->m_wxwindow
== NULL
)
1758 window
= window
->GetParent();
1761 wxASSERT_MSG( window
->m_wxwindow
, wxT("wxCairoContext needs a widget") );
1763 Init(gdk_cairo_create(window
->GTKGetDrawingWindow()));
1765 wxSize sz
= window
->GetSize();
1771 m_mswSurface
= cairo_win32_surface_create((HDC
)window
->GetHandle());
1772 Init(cairo_create(m_mswSurface
));
1777 wxCairoContext::wxCairoContext(wxGraphicsRenderer
* renderer
) :
1778 wxGraphicsContext(renderer
)
1783 wxCairoContext::~wxCairoContext()
1789 cairo_destroy(m_context
);
1793 cairo_surface_destroy(m_mswSurface
);
1797 void wxCairoContext::Init(cairo_t
*context
)
1799 m_context
= context
;
1805 void wxCairoContext::Clip( const wxRegion
& region
)
1807 // Create a path with all the rectangles in the region
1808 wxGraphicsPath path
= GetRenderer()->CreatePath();
1809 wxRegionIterator
ri(region
);
1812 path
.AddRectangle(ri
.GetX(), ri
.GetY(), ri
.GetW(), ri
.GetH());
1816 // Put it in the context
1817 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1818 cairo_append_path(m_context
, cp
);
1820 // clip to that path
1821 cairo_clip(m_context
);
1822 path
.UnGetNativePath(cp
);
1825 void wxCairoContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1827 // Create a path with this rectangle
1828 wxGraphicsPath path
= GetRenderer()->CreatePath();
1829 path
.AddRectangle(x
,y
,w
,h
);
1831 // Put it in the context
1832 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1833 cairo_append_path(m_context
, cp
);
1835 // clip to that path
1836 cairo_clip(m_context
);
1837 path
.UnGetNativePath(cp
);
1840 void wxCairoContext::ResetClip()
1842 cairo_reset_clip(m_context
);
1846 void wxCairoContext::StrokePath( const wxGraphicsPath
& path
)
1848 if ( !m_pen
.IsNull() )
1850 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1851 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1852 cairo_append_path(m_context
,cp
);
1853 ((wxCairoPenData
*)m_pen
.GetRefData())->Apply(this);
1854 cairo_stroke(m_context
);
1855 path
.UnGetNativePath(cp
);
1859 void wxCairoContext::FillPath( const wxGraphicsPath
& path
, wxPolygonFillMode fillStyle
)
1861 if ( !m_brush
.IsNull() )
1863 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1864 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1865 cairo_append_path(m_context
,cp
);
1866 ((wxCairoBrushData
*)m_brush
.GetRefData())->Apply(this);
1867 cairo_set_fill_rule(m_context
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1868 cairo_fill(m_context
);
1869 path
.UnGetNativePath(cp
);
1873 void wxCairoContext::Rotate( wxDouble angle
)
1875 cairo_rotate(m_context
,angle
);
1878 void wxCairoContext::Translate( wxDouble dx
, wxDouble dy
)
1880 cairo_translate(m_context
,dx
,dy
);
1883 void wxCairoContext::Scale( wxDouble xScale
, wxDouble yScale
)
1885 cairo_scale(m_context
,xScale
,yScale
);
1888 // concatenates this transform with the current transform of this context
1889 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix
& matrix
)
1891 cairo_transform(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1894 // sets the transform of this context
1895 void wxCairoContext::SetTransform( const wxGraphicsMatrix
& matrix
)
1897 cairo_set_matrix(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1900 // gets the matrix of this context
1901 wxGraphicsMatrix
wxCairoContext::GetTransform() const
1903 wxGraphicsMatrix matrix
= CreateMatrix();
1904 cairo_get_matrix(m_context
,(cairo_matrix_t
*) matrix
.GetNativeMatrix());
1910 void wxCairoContext::PushState()
1912 cairo_save(m_context
);
1915 void wxCairoContext::PopState()
1917 cairo_restore(m_context
);
1920 void wxCairoContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1922 wxGraphicsBitmap bitmap
= GetRenderer()->CreateBitmap(bmp
);
1923 DrawBitmap(bitmap
, x
, y
, w
, h
);
1927 void wxCairoContext::DrawBitmap(const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1931 // In case we're scaling the image by using a width and height different
1932 // than the bitmap's size create a pattern transformation on the surface and
1933 // draw the transformed pattern.
1934 wxCairoBitmapData
* data
= static_cast<wxCairoBitmapData
*>(bmp
.GetRefData());
1935 cairo_pattern_t
* pattern
= data
->GetCairoPattern();
1936 wxSize size
= data
->GetSize();
1938 wxDouble scaleX
= w
/ size
.GetWidth();
1939 wxDouble scaleY
= h
/ size
.GetHeight();
1941 // prepare to draw the image
1942 cairo_translate(m_context
, x
, y
);
1943 cairo_scale(m_context
, scaleX
, scaleY
);
1944 cairo_set_source(m_context
, pattern
);
1945 // use the original size here since the context is scaled already...
1946 cairo_rectangle(m_context
, 0, 0, size
.GetWidth(), size
.GetHeight());
1947 // fill the rectangle using the pattern
1948 cairo_fill(m_context
);
1953 void wxCairoContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1955 // An icon is a bitmap on wxGTK, so do this the easy way. When we want to
1956 // start using the Cairo backend on other platforms then we may need to
1957 // fiddle with this...
1958 DrawBitmap(icon
, x
, y
, w
, h
);
1962 void wxCairoContext::DoDrawText(const wxString
& str
, wxDouble x
, wxDouble y
)
1964 wxCHECK_RET( !m_font
.IsNull(),
1965 wxT("wxCairoContext::DrawText - no valid font set") );
1970 const wxCharBuffer data
= str
.utf8_str();
1974 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply(this) )
1977 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
1978 const wxFont
& font
= static_cast<wxCairoFontData
*>(m_font
.GetRefData())->GetFont();
1979 pango_layout_set_font_description(layout
, font
.GetNativeFontInfo()->description
);
1980 pango_layout_set_text(layout
, data
, data
.length());
1981 font
.GTKSetPangoAttrs(layout
);
1983 cairo_move_to(m_context
, x
, y
);
1984 pango_cairo_show_layout (m_context
, layout
);
1986 g_object_unref (layout
);
1988 // Don't use Cairo text API, we already did everything.
1993 // Cairo's x,y for drawing text is at the baseline, so we need to adjust
1994 // the position we move to by the ascent.
1995 cairo_font_extents_t fe
;
1996 cairo_font_extents(m_context
, &fe
);
1997 cairo_move_to(m_context
, x
, y
+fe
.ascent
);
1999 cairo_show_text(m_context
, data
);
2002 void wxCairoContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
2003 wxDouble
*descent
, wxDouble
*externalLeading
) const
2005 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") );
2013 if ( externalLeading
)
2014 *externalLeading
= 0;
2019 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply((wxCairoContext
*)this) )
2024 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
2025 const wxFont
& font
= static_cast<wxCairoFontData
*>(m_font
.GetRefData())->GetFont();
2026 pango_layout_set_font_description(layout
, font
.GetNativeFontInfo()->description
);
2027 const wxCharBuffer data
= str
.utf8_str();
2032 pango_layout_set_text(layout
, data
, data
.length());
2033 pango_layout_get_pixel_size (layout
, &w
, &h
);
2040 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
2041 int baseline
= pango_layout_iter_get_baseline(iter
);
2042 pango_layout_iter_free(iter
);
2043 *descent
= h
- PANGO_PIXELS(baseline
);
2045 g_object_unref (layout
);
2052 const wxWX2MBbuf
buf(str
.mb_str(wxConvUTF8
));
2053 cairo_text_extents_t te
;
2054 cairo_text_extents(m_context
, buf
, &te
);
2058 if (height
|| descent
|| externalLeading
)
2060 cairo_font_extents_t fe
;
2061 cairo_font_extents(m_context
, &fe
);
2063 // some backends have negative descents
2065 if ( fe
.descent
< 0 )
2066 fe
.descent
= -fe
.descent
;
2068 if ( fe
.height
< (fe
.ascent
+ fe
.descent
) )
2070 // some backends are broken re height ... (eg currently ATSUI)
2071 fe
.height
= fe
.ascent
+ fe
.descent
;
2075 *height
= fe
.height
;
2077 *descent
= fe
.descent
;
2078 if ( externalLeading
)
2079 *externalLeading
= wxMax(0, fe
.height
- (fe
.ascent
+ fe
.descent
));
2083 void wxCairoContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
2086 widths
.Add(0, text
.length());
2088 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") );
2096 void * wxCairoContext::GetNativeContext()
2101 bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias
)
2103 if (m_antialias
== antialias
)
2106 m_antialias
= antialias
;
2108 cairo_antialias_t antialiasMode
;
2111 case wxANTIALIAS_DEFAULT
:
2112 antialiasMode
= CAIRO_ANTIALIAS_DEFAULT
;
2114 case wxANTIALIAS_NONE
:
2115 antialiasMode
= CAIRO_ANTIALIAS_NONE
;
2120 cairo_set_antialias(m_context
, antialiasMode
);
2124 bool wxCairoContext::SetInterpolationQuality(wxInterpolationQuality
WXUNUSED(interpolation
))
2130 bool wxCairoContext::SetCompositionMode(wxCompositionMode op
)
2132 if ( m_composition
== op
)
2136 cairo_operator_t cop
;
2139 case wxCOMPOSITION_CLEAR
:
2140 cop
= CAIRO_OPERATOR_CLEAR
;
2142 case wxCOMPOSITION_SOURCE
:
2143 cop
= CAIRO_OPERATOR_SOURCE
;
2145 case wxCOMPOSITION_OVER
:
2146 cop
= CAIRO_OPERATOR_OVER
;
2148 case wxCOMPOSITION_IN
:
2149 cop
= CAIRO_OPERATOR_IN
;
2151 case wxCOMPOSITION_OUT
:
2152 cop
= CAIRO_OPERATOR_OUT
;
2154 case wxCOMPOSITION_ATOP
:
2155 cop
= CAIRO_OPERATOR_ATOP
;
2157 case wxCOMPOSITION_DEST
:
2158 cop
= CAIRO_OPERATOR_DEST
;
2160 case wxCOMPOSITION_DEST_OVER
:
2161 cop
= CAIRO_OPERATOR_DEST_OVER
;
2163 case wxCOMPOSITION_DEST_IN
:
2164 cop
= CAIRO_OPERATOR_DEST_IN
;
2166 case wxCOMPOSITION_DEST_OUT
:
2167 cop
= CAIRO_OPERATOR_DEST_OUT
;
2169 case wxCOMPOSITION_DEST_ATOP
:
2170 cop
= CAIRO_OPERATOR_DEST_ATOP
;
2172 case wxCOMPOSITION_XOR
:
2173 cop
= CAIRO_OPERATOR_XOR
;
2175 case wxCOMPOSITION_ADD
:
2176 cop
= CAIRO_OPERATOR_ADD
;
2181 cairo_set_operator(m_context
, cop
);
2185 void wxCairoContext::BeginLayer(wxDouble opacity
)
2187 m_layerOpacities
.push_back(opacity
);
2188 cairo_push_group(m_context
);
2191 void wxCairoContext::EndLayer()
2193 float opacity
= m_layerOpacities
.back();
2194 m_layerOpacities
.pop_back();
2195 cairo_pop_group_to_source(m_context
);
2196 cairo_paint_with_alpha(m_context
,opacity
);
2199 //-----------------------------------------------------------------------------
2200 // wxCairoRenderer declaration
2201 //-----------------------------------------------------------------------------
2203 class WXDLLIMPEXP_CORE wxCairoRenderer
: public wxGraphicsRenderer
2206 wxCairoRenderer() {}
2208 virtual ~wxCairoRenderer() {}
2212 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
2213 virtual wxGraphicsContext
* CreateContext( const wxMemoryDC
& dc
);
2214 virtual wxGraphicsContext
* CreateContext( const wxPrinterDC
& dc
);
2216 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
2218 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
2220 virtual wxGraphicsContext
* CreateContextFromImage(wxImage
& image
);
2221 #endif // wxUSE_IMAGE
2223 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
2225 virtual wxGraphicsContext
* CreateMeasuringContext();
2227 #if wxUSE_ENH_METAFILE
2228 virtual wxGraphicsContext
* CreateContext( const wxEnhMetaFileDC
& dc
);
2233 virtual wxGraphicsPath
CreatePath();
2237 virtual wxGraphicsMatrix
CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
2238 wxDouble tx
=0.0, wxDouble ty
=0.0);
2241 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) ;
2243 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) ;
2245 virtual wxGraphicsBrush
2246 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2247 wxDouble x2
, wxDouble y2
,
2248 const wxGraphicsGradientStops
& stops
);
2250 virtual wxGraphicsBrush
2251 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2252 wxDouble xc
, wxDouble yc
,
2254 const wxGraphicsGradientStops
& stops
);
2257 virtual wxGraphicsFont
CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) ;
2258 virtual wxGraphicsFont
CreateFont(double sizeInPixels
,
2259 const wxString
& facename
,
2260 int flags
= wxFONTFLAG_DEFAULT
,
2261 const wxColour
& col
= *wxBLACK
);
2263 // create a native bitmap representation
2264 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
);
2266 virtual wxGraphicsBitmap
CreateBitmapFromImage(const wxImage
& image
);
2267 virtual wxImage
CreateImageFromBitmap(const wxGraphicsBitmap
& bmp
);
2268 #endif // wxUSE_IMAGE
2270 // create a graphics bitmap from a native bitmap
2271 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
);
2273 // create a subimage from a native image representation
2274 virtual wxGraphicsBitmap
CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
2277 bool EnsureIsLoaded();
2280 friend class wxCairoModule
;
2283 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer
)
2286 //-----------------------------------------------------------------------------
2287 // wxCairoRenderer implementation
2288 //-----------------------------------------------------------------------------
2290 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer
,wxGraphicsRenderer
)
2292 static wxCairoRenderer gs_cairoGraphicsRenderer
;
2293 // temporary hack to allow creating a cairo context on any platform
2294 extern wxGraphicsRenderer
* gCairoRenderer
;
2295 wxGraphicsRenderer
* gCairoRenderer
= &gs_cairoGraphicsRenderer
;
2297 bool wxCairoRenderer::EnsureIsLoaded()
2301 return wxCairoInit();
2307 void wxCairoRenderer::Load()
2312 void wxCairoRenderer::Unload()
2317 // call EnsureIsLoaded() and return returnOnFail value if it fails
2318 #define ENSURE_LOADED_OR_RETURN(returnOnFail) \
2319 if ( !EnsureIsLoaded() ) \
2320 return (returnOnFail)
2322 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxWindowDC
& dc
)
2324 ENSURE_LOADED_OR_RETURN(NULL
);
2325 return new wxCairoContext(this,dc
);
2328 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxMemoryDC
& dc
)
2330 ENSURE_LOADED_OR_RETURN(NULL
);
2331 return new wxCairoContext(this,dc
);
2334 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxPrinterDC
& dc
)
2336 ENSURE_LOADED_OR_RETURN(NULL
);
2337 return new wxCairoContext(this, dc
);
2341 #if wxUSE_ENH_METAFILE
2342 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxEnhMetaFileDC
& WXUNUSED(dc
) )
2344 ENSURE_LOADED_OR_RETURN(NULL
);
2350 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeContext( void * context
)
2352 ENSURE_LOADED_OR_RETURN(NULL
);
2354 return new wxCairoContext(this,(HDC
)context
);
2356 return new wxCairoContext(this,(cairo_t
*)context
);
2361 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeWindow( void * window
)
2363 ENSURE_LOADED_OR_RETURN(NULL
);
2365 return new wxCairoContext(this,(GdkDrawable
*)window
);
2367 wxUnusedVar(window
);
2373 wxGraphicsContext
* wxCairoRenderer::CreateContextFromImage(wxImage
& image
)
2375 return new wxCairoImageContext(this, image
);
2377 #endif // wxUSE_IMAGE
2379 wxGraphicsContext
* wxCairoRenderer::CreateMeasuringContext()
2381 ENSURE_LOADED_OR_RETURN(NULL
);
2383 return CreateContextFromNativeWindow(gdk_get_default_root_window());
2389 wxGraphicsContext
* wxCairoRenderer::CreateContext( wxWindow
* window
)
2391 ENSURE_LOADED_OR_RETURN(NULL
);
2392 return new wxCairoContext(this, window
);
2397 wxGraphicsPath
wxCairoRenderer::CreatePath()
2399 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath
);
2400 wxGraphicsPath path
;
2401 path
.SetRefData( new wxCairoPathData(this) );
2408 wxGraphicsMatrix
wxCairoRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
2409 wxDouble tx
, wxDouble ty
)
2412 ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix
);
2414 wxCairoMatrixData
* data
= new wxCairoMatrixData( this );
2415 data
->Set( a
,b
,c
,d
,tx
,ty
) ;
2420 wxGraphicsPen
wxCairoRenderer::CreatePen(const wxPen
& pen
)
2422 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen
);
2423 if ( !pen
.IsOk() || pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
2424 return wxNullGraphicsPen
;
2428 p
.SetRefData(new wxCairoPenData( this, pen
));
2433 wxGraphicsBrush
wxCairoRenderer::CreateBrush(const wxBrush
& brush
)
2435 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2436 if ( !brush
.IsOk() || brush
.GetStyle() == wxBRUSHSTYLE_TRANSPARENT
)
2437 return wxNullGraphicsBrush
;
2441 p
.SetRefData(new wxCairoBrushData( this, brush
));
2447 wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2448 wxDouble x2
, wxDouble y2
,
2449 const wxGraphicsGradientStops
& stops
)
2451 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2453 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2454 d
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, stops
);
2460 wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2461 wxDouble xc
, wxDouble yc
, wxDouble r
,
2462 const wxGraphicsGradientStops
& stops
)
2464 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2466 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2467 d
->CreateRadialGradientBrush(xo
, yo
, xc
, yc
, r
, stops
);
2472 wxGraphicsFont
wxCairoRenderer::CreateFont( const wxFont
&font
, const wxColour
&col
)
2474 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2478 p
.SetRefData(new wxCairoFontData( this , font
, col
));
2482 return wxNullGraphicsFont
;
2486 wxCairoRenderer::CreateFont(double sizeInPixels
,
2487 const wxString
& facename
,
2489 const wxColour
& col
)
2491 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2493 wxGraphicsFont font
;
2494 font
.SetRefData(new wxCairoFontData(this, sizeInPixels
, facename
, flags
, col
));
2498 wxGraphicsBitmap
wxCairoRenderer::CreateBitmap( const wxBitmap
& bmp
)
2500 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2504 p
.SetRefData(new wxCairoBitmapData( this , bmp
));
2508 return wxNullGraphicsBitmap
;
2513 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromImage(const wxImage
& image
)
2515 wxGraphicsBitmap bmp
;
2517 ENSURE_LOADED_OR_RETURN(bmp
);
2521 bmp
.SetRefData(new wxCairoBitmapData(this, image
));
2527 wxImage
wxCairoRenderer::CreateImageFromBitmap(const wxGraphicsBitmap
& bmp
)
2529 ENSURE_LOADED_OR_RETURN(wxNullImage
);
2531 const wxCairoBitmapData
* const
2532 data
= static_cast<wxCairoBitmapData
*>(bmp
.GetGraphicsData());
2534 return data
? data
->ConvertToImage() : wxNullImage
;
2537 #endif // wxUSE_IMAGE
2540 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap
)
2542 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2543 if ( bitmap
!= NULL
)
2546 p
.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t
*) bitmap
));
2550 return wxNullGraphicsBitmap
;
2554 wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap
& WXUNUSED(bitmap
),
2555 wxDouble
WXUNUSED(x
),
2556 wxDouble
WXUNUSED(y
),
2557 wxDouble
WXUNUSED(w
),
2558 wxDouble
WXUNUSED(h
))
2560 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2561 wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented.");
2562 return wxNullGraphicsBitmap
;
2565 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2567 return &gs_cairoGraphicsRenderer
;
2570 #else // !wxUSE_CAIRO
2572 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2577 #endif // wxUSE_CAIRO/!wxUSE_CAIRO
2579 // MSW and OS X have their own native default renderers, but the other ports
2580 // use Cairo by default
2581 #if !(defined(__WXMSW__) || defined(__WXOSX__))
2582 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
2584 return GetCairoRenderer();
2586 #endif // !(__WXMSW__ || __WXOSX__)
2588 #endif // wxUSE_GRAPHICS_CONTEXT