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>
74 // Notice that the order is important: cairo-win32.h includes windows.h which
75 // pollutes the global name space with macros so include our own header which
76 // #undefines them after it.
77 #include "wx/msw/private.h"
82 #include "wx/fontutil.h"
84 #include "wx/gtk/dc.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 // Common base class for pens and brushes.
220 class wxCairoPenBrushBaseData
: public wxGraphicsObjectRefData
223 wxCairoPenBrushBaseData(wxGraphicsRenderer
* renderer
,
226 virtual ~wxCairoPenBrushBaseData();
228 virtual void Apply( wxGraphicsContext
* context
);
231 // Call this to use the given bitmap as stipple. Bitmap must be non-null
233 void InitStipple(wxBitmap
* bmp
);
235 // Call this to use the given hatch style. Hatch style must be valid.
236 void InitHatch(wxHatchStyle hatchStyle
);
244 cairo_pattern_t
* m_pattern
;
245 class wxCairoBitmapData
* m_bmpdata
;
248 // Called once to allocate m_pattern if needed.
249 void InitHatchPattern(cairo_t
* ctext
);
251 wxHatchStyle m_hatchStyle
;
253 wxDECLARE_NO_COPY_CLASS(wxCairoPenBrushBaseData
);
256 class WXDLLIMPEXP_CORE wxCairoPenData
: public wxCairoPenBrushBaseData
259 wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
264 virtual void Apply( wxGraphicsContext
* context
);
265 virtual wxDouble
GetWidth() { return m_width
; }
270 cairo_line_cap_t m_cap
;
271 cairo_line_join_t m_join
;
274 const double *m_lengths
;
275 double *m_userLengths
;
277 wxDECLARE_NO_COPY_CLASS(wxCairoPenData
);
280 class WXDLLIMPEXP_CORE wxCairoBrushData
: public wxCairoPenBrushBaseData
283 wxCairoBrushData( wxGraphicsRenderer
* renderer
);
284 wxCairoBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
286 void CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
287 wxDouble x2
, wxDouble y2
,
288 const wxGraphicsGradientStops
& stops
);
289 void CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
290 wxDouble xc
, wxDouble yc
, wxDouble radius
,
291 const wxGraphicsGradientStops
& stops
);
296 // common part of Create{Linear,Radial}GradientBrush()
297 void AddGradientStops(const wxGraphicsGradientStops
& stops
);
300 class wxCairoFontData
: public wxGraphicsObjectRefData
303 wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
, const wxColour
& col
);
304 wxCairoFontData(wxGraphicsRenderer
* renderer
,
306 const wxString
& facename
,
308 const wxColour
& col
);
311 virtual bool Apply( wxGraphicsContext
* context
);
313 const wxFont
& GetFont() const { return m_wxfont
; }
316 void InitColour(const wxColour
& col
);
317 void InitFontComponents(const wxString
& facename
,
318 cairo_font_slant_t slant
,
319 cairo_font_weight_t weight
);
327 cairo_font_face_t
*m_font
;
328 #elif defined(__WXGTK__)
332 // These members are used when the font is created from its face name and
333 // flags (and not from wxFont) and also even when creating it from wxFont
334 // on the platforms not covered above.
336 // Notice that we can't use cairo_font_face_t instead of storing those,
337 // even though it would be simpler and need less #ifdefs, because
338 // cairo_toy_font_face_create() that we'd need to create it is only
339 // available in Cairo 1.8 and we require just 1.2 currently. If we do drop
340 // support for < 1.8 versions in the future it would be definitely better
341 // to use cairo_toy_font_face_create() instead.
342 wxCharBuffer m_fontName
;
343 cairo_font_slant_t m_slant
;
344 cairo_font_weight_t m_weight
;
347 class wxCairoBitmapData
: public wxGraphicsBitmapData
350 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
);
352 wxCairoBitmapData(wxGraphicsRenderer
* renderer
, const wxImage
& image
);
353 #endif // wxUSE_IMAGE
354 wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
);
355 ~wxCairoBitmapData();
357 virtual cairo_surface_t
* GetCairoSurface() { return m_surface
; }
358 virtual cairo_pattern_t
* GetCairoPattern() { return m_pattern
; }
359 virtual void* GetNativeBitmap() const { return m_surface
; }
360 virtual wxSize
GetSize() { return wxSize(m_width
, m_height
); }
363 wxImage
ConvertToImage() const;
364 #endif // wxUSE_IMAGE
367 // Allocate m_buffer for the bitmap of the given size in the given format.
369 // Returns the stride used for the buffer.
370 int InitBuffer(int width
, int height
, cairo_format_t format
);
372 // Really create the surface using the buffer (which was supposed to be
373 // filled since InitBuffer() call).
374 void InitSurface(cairo_format_t format
, int stride
);
377 cairo_surface_t
* m_surface
;
378 cairo_pattern_t
* m_pattern
;
381 unsigned char* m_buffer
;
384 class WXDLLIMPEXP_CORE wxCairoContext
: public wxGraphicsContext
387 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
);
388 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
);
389 wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
);
391 wxCairoContext( wxGraphicsRenderer
* renderer
, GdkWindow
*window
);
394 wxCairoContext( wxGraphicsRenderer
* renderer
, HDC context
);
396 wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
);
397 wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
);
399 // If this ctor is used, Init() must be called by the derived class later.
400 wxCairoContext( wxGraphicsRenderer
* renderer
);
402 virtual ~wxCairoContext();
404 virtual bool ShouldOffset() const
406 if ( !m_enableOffset
)
410 if ( !m_pen
.IsNull() )
412 penwidth
= (int)((wxCairoPenData
*)m_pen
.GetRefData())->GetWidth();
416 return ( penwidth
% 2 ) == 1;
419 virtual void Clip( const wxRegion
®ion
);
421 cairo_surface_t
* m_mswSurface
;
422 WindowHDC m_mswWindowHDC
;
425 // clips drawings to the rect
426 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
428 // resets the clipping to original extent
429 virtual void ResetClip();
431 virtual void * GetNativeContext();
433 virtual bool SetAntialiasMode(wxAntialiasMode antialias
);
435 virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation
);
437 virtual bool SetCompositionMode(wxCompositionMode op
);
439 virtual void BeginLayer(wxDouble opacity
);
441 virtual void EndLayer();
443 virtual void StrokePath( const wxGraphicsPath
& p
);
444 virtual void FillPath( const wxGraphicsPath
& p
, wxPolygonFillMode fillStyle
= wxWINDING_RULE
);
446 virtual void Translate( wxDouble dx
, wxDouble dy
);
447 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
448 virtual void Rotate( wxDouble angle
);
450 // concatenates this transform with the current transform of this context
451 virtual void ConcatTransform( const wxGraphicsMatrix
& matrix
);
453 // sets the transform of this context
454 virtual void SetTransform( const wxGraphicsMatrix
& matrix
);
456 // gets the matrix of this context
457 virtual wxGraphicsMatrix
GetTransform() const;
459 virtual void DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
460 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
461 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
462 virtual void PushState();
463 virtual void PopState();
465 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
466 wxDouble
*descent
, wxDouble
*externalLeading
) const;
467 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
470 virtual void DoDrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
472 void Init(cairo_t
*context
);
477 wxVector
<float> m_layerOpacities
;
479 wxDECLARE_NO_COPY_CLASS(wxCairoContext
);
483 // ----------------------------------------------------------------------------
484 // wxCairoImageContext: context associated with a wxImage.
485 // ----------------------------------------------------------------------------
487 class wxCairoImageContext
: public wxCairoContext
490 wxCairoImageContext(wxGraphicsRenderer
* renderer
, wxImage
& image
) :
491 wxCairoContext(renderer
),
493 m_data(renderer
, image
)
495 Init(cairo_create(m_data
.GetCairoSurface()));
498 virtual ~wxCairoImageContext()
500 m_image
= m_data
.ConvertToImage();
505 wxCairoBitmapData m_data
;
507 wxDECLARE_NO_COPY_CLASS(wxCairoImageContext
);
509 #endif // wxUSE_IMAGE
511 // ----------------------------------------------------------------------------
512 // wxCairoPenBrushBaseData implementation
513 //-----------------------------------------------------------------------------
515 wxCairoPenBrushBaseData::wxCairoPenBrushBaseData(wxGraphicsRenderer
* renderer
,
518 : wxGraphicsObjectRefData(renderer
)
520 m_hatchStyle
= wxHATCHSTYLE_INVALID
;
531 else // non-transparent
533 m_red
= col
.Red()/255.0;
534 m_green
= col
.Green()/255.0;
535 m_blue
= col
.Blue()/255.0;
536 m_alpha
= col
.Alpha()/255.0;
540 wxCairoPenBrushBaseData::~wxCairoPenBrushBaseData()
544 // Deleting the bitmap data also deletes the pattern referenced by
545 // m_pattern, so set it to NULL to avoid deleting it twice.
550 cairo_pattern_destroy(m_pattern
);
553 void wxCairoPenBrushBaseData::InitHatchPattern(cairo_t
* ctext
)
555 cairo_surface_t
* const
556 surface
= cairo_surface_create_similar(
557 cairo_get_target(ctext
), CAIRO_CONTENT_COLOR_ALPHA
, 10, 10
560 cairo_t
* const cr
= cairo_create(surface
);
561 cairo_set_line_cap(cr
, CAIRO_LINE_CAP_SQUARE
);
562 cairo_set_line_width(cr
, 1);
563 cairo_set_line_join(cr
,CAIRO_LINE_JOIN_MITER
);
565 switch ( m_hatchStyle
)
567 case wxHATCHSTYLE_CROSS
:
568 cairo_move_to(cr
, 5, 0);
569 cairo_line_to(cr
, 5, 10);
570 cairo_move_to(cr
, 0, 5);
571 cairo_line_to(cr
, 10, 5);
574 case wxHATCHSTYLE_BDIAGONAL
:
575 cairo_move_to(cr
, 0, 10);
576 cairo_line_to(cr
, 10, 0);
579 case wxHATCHSTYLE_FDIAGONAL
:
580 cairo_move_to(cr
, 0, 0);
581 cairo_line_to(cr
, 10, 10);
584 case wxHATCHSTYLE_CROSSDIAG
:
585 cairo_move_to(cr
, 0, 0);
586 cairo_line_to(cr
, 10, 10);
587 cairo_move_to(cr
, 10, 0);
588 cairo_line_to(cr
, 0, 10);
591 case wxHATCHSTYLE_HORIZONTAL
:
592 cairo_move_to(cr
, 0, 5);
593 cairo_line_to(cr
, 10, 5);
596 case wxHATCHSTYLE_VERTICAL
:
597 cairo_move_to(cr
, 5, 0);
598 cairo_line_to(cr
, 5, 10);
602 wxFAIL_MSG(wxS("Invalid hatch pattern style."));
605 cairo_set_source_rgba(cr
, m_red
, m_green
, m_blue
, m_alpha
);
610 m_pattern
= cairo_pattern_create_for_surface(surface
);
611 cairo_surface_destroy(surface
);
612 cairo_pattern_set_extend(m_pattern
, CAIRO_EXTEND_REPEAT
);
615 void wxCairoPenBrushBaseData::InitStipple(wxBitmap
* bmp
)
617 wxCHECK_RET( bmp
&& bmp
->IsOk(), wxS("Invalid stippled bitmap") );
619 m_bmpdata
= new wxCairoBitmapData(GetRenderer(), *bmp
);
620 m_pattern
= m_bmpdata
->GetCairoPattern();
621 cairo_pattern_set_extend(m_pattern
, CAIRO_EXTEND_REPEAT
);
624 void wxCairoPenBrushBaseData::InitHatch(wxHatchStyle hatchStyle
)
626 // We can't create m_pattern right now as we don't have the Cairo context
627 // needed for it, so just remember that we need to do it.
628 m_hatchStyle
= hatchStyle
;
631 void wxCairoPenBrushBaseData::Apply( wxGraphicsContext
* context
)
633 cairo_t
* const ctext
= (cairo_t
*) context
->GetNativeContext();
635 if ( m_hatchStyle
!= wxHATCHSTYLE_INVALID
&& !m_pattern
)
636 InitHatchPattern(ctext
);
639 cairo_set_source(ctext
, m_pattern
);
641 cairo_set_source_rgba(ctext
, m_red
, m_green
, m_blue
, m_alpha
);
644 //-----------------------------------------------------------------------------
645 // wxCairoPenData implementation
646 //-----------------------------------------------------------------------------
648 wxCairoPenData::~wxCairoPenData()
650 delete[] m_userLengths
;
653 void wxCairoPenData::Init()
656 m_userLengths
= NULL
;
661 wxCairoPenData::wxCairoPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
662 : wxCairoPenBrushBaseData(renderer
, pen
.GetColour(), pen
.IsTransparent())
665 m_width
= pen
.GetWidth();
669 switch ( pen
.GetCap() )
672 m_cap
= CAIRO_LINE_CAP_ROUND
;
675 case wxCAP_PROJECTING
:
676 m_cap
= CAIRO_LINE_CAP_SQUARE
;
680 m_cap
= CAIRO_LINE_CAP_BUTT
;
684 m_cap
= CAIRO_LINE_CAP_BUTT
;
688 switch ( pen
.GetJoin() )
691 m_join
= CAIRO_LINE_JOIN_BEVEL
;
695 m_join
= CAIRO_LINE_JOIN_MITER
;
699 m_join
= CAIRO_LINE_JOIN_ROUND
;
703 m_join
= CAIRO_LINE_JOIN_MITER
;
707 const double dashUnit
= m_width
< 1.0 ? 1.0 : m_width
;
708 const double dotted
[] =
710 dashUnit
, dashUnit
+ 2.0
712 static const double short_dashed
[] =
716 static const double dashed
[] =
720 static const double dotted_dashed
[] =
722 9.0 , 6.0 , 3.0 , 3.0
725 switch ( pen
.GetStyle() )
727 case wxPENSTYLE_SOLID
:
730 case wxPENSTYLE_DOT
:
731 m_count
= WXSIZEOF(dotted
);
732 m_userLengths
= new double[ m_count
] ;
733 memcpy( m_userLengths
, dotted
, sizeof(dotted
) );
734 m_lengths
= m_userLengths
;
737 case wxPENSTYLE_LONG_DASH
:
739 m_count
= WXSIZEOF(dashed
);
742 case wxPENSTYLE_SHORT_DASH
:
743 m_lengths
= short_dashed
;
744 m_count
= WXSIZEOF(short_dashed
);
747 case wxPENSTYLE_DOT_DASH
:
748 m_lengths
= dotted_dashed
;
749 m_count
= WXSIZEOF(dotted_dashed
);
752 case wxPENSTYLE_USER_DASH
:
755 m_count
= pen
.GetDashes( &wxdashes
) ;
756 if ((wxdashes
!= NULL
) && (m_count
> 0))
758 m_userLengths
= new double[m_count
] ;
759 for ( int i
= 0 ; i
< m_count
; ++i
)
761 m_userLengths
[i
] = wxdashes
[i
] * dashUnit
;
763 if ( i
% 2 == 1 && m_userLengths
[i
] < dashUnit
+ 2.0 )
764 m_userLengths
[i
] = dashUnit
+ 2.0 ;
765 else if ( i
% 2 == 0 && m_userLengths
[i
] < dashUnit
)
766 m_userLengths
[i
] = dashUnit
;
769 m_lengths
= m_userLengths
;
773 case wxPENSTYLE_STIPPLE
:
774 case wxPENSTYLE_STIPPLE_MASK
:
775 case wxPENSTYLE_STIPPLE_MASK_OPAQUE
:
776 InitStipple(pen
.GetStipple());
780 if ( pen
.GetStyle() >= wxPENSTYLE_FIRST_HATCH
781 && pen
.GetStyle() <= wxPENSTYLE_LAST_HATCH
)
783 InitHatch(static_cast<wxHatchStyle
>(pen
.GetStyle()));
789 void wxCairoPenData::Apply( wxGraphicsContext
* context
)
791 wxCairoPenBrushBaseData::Apply(context
);
793 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
794 cairo_set_line_width(ctext
,m_width
);
795 cairo_set_line_cap(ctext
,m_cap
);
796 cairo_set_line_join(ctext
,m_join
);
797 cairo_set_dash(ctext
,(double*)m_lengths
,m_count
,0.0);
800 //-----------------------------------------------------------------------------
801 // wxCairoBrushData implementation
802 //-----------------------------------------------------------------------------
804 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
)
805 : wxCairoPenBrushBaseData(renderer
, wxColour(), true /* transparent */)
810 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer
* renderer
,
811 const wxBrush
&brush
)
812 : wxCairoPenBrushBaseData(renderer
, brush
.GetColour(), brush
.IsTransparent())
816 switch ( brush
.GetStyle() )
818 case wxBRUSHSTYLE_STIPPLE
:
819 case wxBRUSHSTYLE_STIPPLE_MASK
:
820 case wxBRUSHSTYLE_STIPPLE_MASK_OPAQUE
:
821 InitStipple(brush
.GetStipple());
825 if ( brush
.IsHatch() )
826 InitHatch(static_cast<wxHatchStyle
>(brush
.GetStyle()));
831 void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops
& stops
)
833 // loop over all the stops, they include the beginning and ending ones
834 const unsigned numStops
= stops
.GetCount();
835 for ( unsigned n
= 0; n
< numStops
; n
++ )
837 const wxGraphicsGradientStop stop
= stops
.Item(n
);
839 const wxColour col
= stop
.GetColour();
841 cairo_pattern_add_color_stop_rgba
852 wxASSERT_MSG(cairo_pattern_status(m_pattern
) == CAIRO_STATUS_SUCCESS
,
853 wxT("Couldn't create cairo pattern"));
857 wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
858 wxDouble x2
, wxDouble y2
,
859 const wxGraphicsGradientStops
& stops
)
861 m_pattern
= cairo_pattern_create_linear(x1
,y1
,x2
,y2
);
863 AddGradientStops(stops
);
867 wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
868 wxDouble xc
, wxDouble yc
,
870 const wxGraphicsGradientStops
& stops
)
872 m_pattern
= cairo_pattern_create_radial(xo
,yo
,0.0,xc
,yc
,radius
);
874 AddGradientStops(stops
);
877 void wxCairoBrushData::Init()
883 //-----------------------------------------------------------------------------
884 // wxCairoFontData implementation
885 //-----------------------------------------------------------------------------
887 void wxCairoFontData::InitColour(const wxColour
& col
)
889 m_red
= col
.Red()/255.0;
890 m_green
= col
.Green()/255.0;
891 m_blue
= col
.Blue()/255.0;
892 m_alpha
= col
.Alpha()/255.0;
896 wxCairoFontData::InitFontComponents(const wxString
& facename
,
897 cairo_font_slant_t slant
,
898 cairo_font_weight_t weight
)
900 m_fontName
= facename
.mb_str(wxConvUTF8
);
905 wxCairoFontData::wxCairoFontData( wxGraphicsRenderer
* renderer
, const wxFont
&font
,
906 const wxColour
& col
)
907 : wxGraphicsObjectRefData(renderer
)
914 m_size
= font
.GetPointSize();
917 m_font
= cairo_quartz_font_face_create_for_cgfont( font
.OSXGetCGFont() );
918 #elif defined(__WXGTK__)
923 font
.GetStyle() == wxFONTSTYLE_ITALIC
? CAIRO_FONT_SLANT_ITALIC
924 : CAIRO_FONT_SLANT_NORMAL
,
925 font
.GetWeight() == wxFONTWEIGHT_BOLD
? CAIRO_FONT_WEIGHT_BOLD
926 : CAIRO_FONT_WEIGHT_NORMAL
931 wxCairoFontData::wxCairoFontData(wxGraphicsRenderer
* renderer
,
933 const wxString
& facename
,
935 const wxColour
& col
) :
936 wxGraphicsObjectRefData(renderer
)
940 // Resolution for Cairo image surfaces is 72 DPI meaning that the sizes in
941 // points and pixels are identical, so we can just pass the size in pixels
942 // directly to cairo_set_font_size().
943 m_size
= sizeInPixels
;
945 #if defined(__WXMAC__)
949 // There is no need to set m_underlined under wxGTK in this case, it can
950 // only be used if m_font != NULL.
955 flags
& wxFONTFLAG_ITALIC
? CAIRO_FONT_SLANT_ITALIC
956 : CAIRO_FONT_SLANT_NORMAL
,
957 flags
& wxFONTFLAG_BOLD
? CAIRO_FONT_WEIGHT_BOLD
958 : CAIRO_FONT_WEIGHT_NORMAL
962 wxCairoFontData::~wxCairoFontData()
966 cairo_font_face_destroy( m_font
);
970 bool wxCairoFontData::Apply( wxGraphicsContext
* context
)
972 cairo_t
* ctext
= (cairo_t
*) context
->GetNativeContext();
973 cairo_set_source_rgba(ctext
,m_red
,m_green
, m_blue
,m_alpha
);
977 // Nothing to do, the caller uses Pango layout functions to do
981 #elif defined(__WXMAC__)
984 cairo_set_font_face(ctext
, m_font
);
985 cairo_set_font_size(ctext
, m_size
);
990 // If we get here, we must be on a platform without native font support or
991 // we're using toy Cairo API even under wxGTK/wxMac.
992 cairo_select_font_face(ctext
, m_fontName
, m_slant
, m_weight
);
993 cairo_set_font_size(ctext
, m_size
);
995 // Indicate that we don't use native fonts for the platforms which care
996 // about this (currently only wxGTK).
1000 //-----------------------------------------------------------------------------
1001 // wxCairoPathData implementation
1002 //-----------------------------------------------------------------------------
1004 wxCairoPathData::wxCairoPathData( wxGraphicsRenderer
* renderer
, cairo_t
* pathcontext
)
1005 : wxGraphicsPathData(renderer
)
1009 m_pathContext
= pathcontext
;
1013 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
1014 m_pathContext
= cairo_create(surface
);
1015 cairo_surface_destroy (surface
);
1019 wxCairoPathData::~wxCairoPathData()
1021 cairo_destroy(m_pathContext
);
1024 wxGraphicsObjectRefData
*wxCairoPathData::Clone() const
1026 cairo_surface_t
* surface
= cairo_image_surface_create(CAIRO_FORMAT_ARGB32
,1,1);
1027 cairo_t
* pathcontext
= cairo_create(surface
);
1028 cairo_surface_destroy (surface
);
1030 cairo_path_t
* path
= cairo_copy_path(m_pathContext
);
1031 cairo_append_path(pathcontext
, path
);
1032 cairo_path_destroy(path
);
1033 return new wxCairoPathData( GetRenderer() ,pathcontext
);
1037 void* wxCairoPathData::GetNativePath() const
1039 return cairo_copy_path(m_pathContext
) ;
1042 void wxCairoPathData::UnGetNativePath(void *p
) const
1044 cairo_path_destroy((cairo_path_t
*)p
);
1051 void wxCairoPathData::MoveToPoint( wxDouble x
, wxDouble y
)
1053 cairo_move_to(m_pathContext
,x
,y
);
1056 void wxCairoPathData::AddLineToPoint( wxDouble x
, wxDouble y
)
1058 cairo_line_to(m_pathContext
,x
,y
);
1061 void wxCairoPathData::AddPath( const wxGraphicsPathData
* path
)
1063 cairo_path_t
* p
= (cairo_path_t
*)path
->GetNativePath();
1064 cairo_append_path(m_pathContext
, p
);
1068 void wxCairoPathData::CloseSubpath()
1070 cairo_close_path(m_pathContext
);
1073 void wxCairoPathData::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
1075 cairo_curve_to(m_pathContext
,cx1
,cy1
,cx2
,cy2
,x
,y
);
1078 // gets the last point of the current path, (0,0) if not yet set
1079 void wxCairoPathData::GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const
1082 cairo_get_current_point(m_pathContext
,&dx
,&dy
);
1089 void wxCairoPathData::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
1091 // as clockwise means positive in our system (y pointing downwards)
1092 // TODO make this interpretation dependent of the
1093 // real device trans
1094 if ( clockwise
||(endAngle
-startAngle
)>=2*M_PI
)
1095 cairo_arc(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1097 cairo_arc_negative(m_pathContext
,x
,y
,r
,startAngle
,endAngle
);
1100 // transforms each point of this path by the matrix
1101 void wxCairoPathData::Transform( const wxGraphicsMatrixData
* matrix
)
1103 // as we don't have a true path object, we have to apply the inverse
1104 // matrix to the context
1105 cairo_matrix_t m
= *((cairo_matrix_t
*) matrix
->GetNativeMatrix());
1106 cairo_matrix_invert( &m
);
1107 cairo_transform(m_pathContext
,&m
);
1110 // gets the bounding box enclosing all points (possibly including control points)
1111 void wxCairoPathData::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const
1115 cairo_stroke_extents( m_pathContext
, &x1
, &y1
, &x2
, &y2
);
1139 bool wxCairoPathData::Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
) const
1141 cairo_set_fill_rule(m_pathContext
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1142 return cairo_in_fill( m_pathContext
, x
, y
) != 0;
1145 //-----------------------------------------------------------------------------
1146 // wxCairoMatrixData implementation
1147 //-----------------------------------------------------------------------------
1149 wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer
* renderer
, const cairo_matrix_t
* matrix
)
1150 : wxGraphicsMatrixData(renderer
)
1156 wxCairoMatrixData::~wxCairoMatrixData()
1161 wxGraphicsObjectRefData
*wxCairoMatrixData::Clone() const
1163 return new wxCairoMatrixData(GetRenderer(),&m_matrix
);
1166 // concatenates the matrix
1167 void wxCairoMatrixData::Concat( const wxGraphicsMatrixData
*t
)
1169 cairo_matrix_multiply( &m_matrix
, &m_matrix
, (cairo_matrix_t
*) t
->GetNativeMatrix());
1172 // sets the matrix to the respective values
1173 void wxCairoMatrixData::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1174 wxDouble tx
, wxDouble ty
)
1176 cairo_matrix_init( &m_matrix
, a
, b
, c
, d
, tx
, ty
);
1179 // gets the component valuess of the matrix
1180 void wxCairoMatrixData::Get(wxDouble
* a
, wxDouble
* b
, wxDouble
* c
,
1181 wxDouble
* d
, wxDouble
* tx
, wxDouble
* ty
) const
1183 if (a
) *a
= m_matrix
.xx
;
1184 if (b
) *b
= m_matrix
.yx
;
1185 if (c
) *c
= m_matrix
.xy
;
1186 if (d
) *d
= m_matrix
.yy
;
1187 if (tx
) *tx
= m_matrix
.x0
;
1188 if (ty
) *ty
= m_matrix
.y0
;
1191 // makes this the inverse matrix
1192 void wxCairoMatrixData::Invert()
1194 cairo_matrix_invert( &m_matrix
);
1197 // returns true if the elements of the transformation matrix are equal ?
1198 bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData
* t
) const
1200 const cairo_matrix_t
* tm
= (cairo_matrix_t
*) t
->GetNativeMatrix();
1202 m_matrix
.xx
== tm
->xx
&&
1203 m_matrix
.yx
== tm
->yx
&&
1204 m_matrix
.xy
== tm
->xy
&&
1205 m_matrix
.yy
== tm
->yy
&&
1206 m_matrix
.x0
== tm
->x0
&&
1207 m_matrix
.y0
== tm
->y0
) ;
1210 // return true if this is the identity matrix
1211 bool wxCairoMatrixData::IsIdentity() const
1213 return ( m_matrix
.xx
== 1 && m_matrix
.yy
== 1 &&
1214 m_matrix
.yx
== 0 && m_matrix
.xy
== 0 && m_matrix
.x0
== 0 && m_matrix
.y0
== 0);
1221 // add the translation to this matrix
1222 void wxCairoMatrixData::Translate( wxDouble dx
, wxDouble dy
)
1224 cairo_matrix_translate( &m_matrix
, dx
, dy
) ;
1227 // add the scale to this matrix
1228 void wxCairoMatrixData::Scale( wxDouble xScale
, wxDouble yScale
)
1230 cairo_matrix_scale( &m_matrix
, xScale
, yScale
) ;
1233 // add the rotation to this matrix (radians)
1234 void wxCairoMatrixData::Rotate( wxDouble angle
)
1236 cairo_matrix_rotate( &m_matrix
, angle
) ;
1240 // apply the transforms
1243 // applies that matrix to the point
1244 void wxCairoMatrixData::TransformPoint( wxDouble
*x
, wxDouble
*y
) const
1246 double lx
= *x
, ly
= *y
;
1247 cairo_matrix_transform_point( &m_matrix
, &lx
, &ly
);
1252 // applies the matrix except for translations
1253 void wxCairoMatrixData::TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const
1255 double lx
= *dx
, ly
= *dy
;
1256 cairo_matrix_transform_distance( &m_matrix
, &lx
, &ly
);
1261 // returns the native representation
1262 void * wxCairoMatrixData::GetNativeMatrix() const
1264 return (void*) &m_matrix
;
1267 // ----------------------------------------------------------------------------
1268 // wxCairoBitmap implementation
1269 // ----------------------------------------------------------------------------
1271 int wxCairoBitmapData::InitBuffer(int width
, int height
, cairo_format_t format
)
1273 wxUnusedVar(format
); // Only really unused with Cairo < 1.6.
1275 // Determine the stride: use cairo_format_stride_for_width() if available
1276 // but fall back to 4*width for the earlier versions as this is what that
1277 // function always returns, even in latest Cairo, anyhow.
1279 #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 6, 0)
1280 if ( cairo_version() >= CAIRO_VERSION_ENCODE(1, 6, 0) )
1282 stride
= cairo_format_stride_for_width(format
, width
);
1284 // All our code would totally break if stride were not a multiple of 4
1285 // so ensure this is the case.
1288 wxFAIL_MSG("Unexpected Cairo image surface stride.");
1290 stride
+= 4 - stride
% 4;
1299 m_buffer
= new unsigned char[height
*stride
];
1304 void wxCairoBitmapData::InitSurface(cairo_format_t format
, int stride
)
1306 m_surface
= cairo_image_surface_create_for_data(
1307 m_buffer
, format
, m_width
, m_height
, stride
);
1308 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1311 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, cairo_surface_t
* bitmap
) :
1312 wxGraphicsBitmapData( renderer
)
1315 m_pattern
= cairo_pattern_create_for_surface(m_surface
);
1318 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
& bmp
) : wxGraphicsBitmapData( renderer
)
1320 wxCHECK_RET( bmp
.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap"));
1322 #ifdef wxHAS_RAW_BITMAP
1323 // Create a surface object and copy the bitmap pixel data to it. if the
1324 // image has alpha (or a mask represented as alpha) then we'll use a
1325 // different format and iterator than if it doesn't...
1326 cairo_format_t bufferFormat
= bmp
.GetDepth() == 32
1327 #if defined(__WXGTK__) && !defined(__WXGTK3__)
1330 ? CAIRO_FORMAT_ARGB32
1331 : CAIRO_FORMAT_RGB24
;
1333 int stride
= InitBuffer(bmp
.GetWidth(), bmp
.GetHeight(), bufferFormat
);
1335 wxBitmap bmpSource
= bmp
; // we need a non-const instance
1336 wxUint32
* data
= (wxUint32
*)m_buffer
;
1338 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1340 // use the bitmap's alpha
1342 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1343 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1345 wxAlphaPixelData::Iterator
p(pixData
);
1346 for (int y
=0; y
<m_height
; y
++)
1348 wxAlphaPixelData::Iterator rowStart
= p
;
1349 wxUint32
* const rowStartDst
= data
;
1350 for (int x
=0; x
<m_width
; x
++)
1352 // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity,
1353 // with alpha in the upper 8 bits, then red, then green, then
1354 // blue. The 32-bit quantities are stored native-endian.
1355 // Pre-multiplied alpha is used.
1356 unsigned char alpha
= p
.Alpha();
1360 *data
= ( alpha
<< 24
1361 | (p
.Red() * alpha
/255) << 16
1362 | (p
.Green() * alpha
/255) << 8
1363 | (p
.Blue() * alpha
/255) );
1368 data
= rowStartDst
+ stride
/ 4;
1370 p
.OffsetY(pixData
, 1);
1376 pixData(bmpSource
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1377 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to bitmap data."));
1379 wxNativePixelData::Iterator
p(pixData
);
1380 for (int y
=0; y
<m_height
; y
++)
1382 wxNativePixelData::Iterator rowStart
= p
;
1383 wxUint32
* const rowStartDst
= data
;
1384 for (int x
=0; x
<m_width
; x
++)
1386 // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with
1387 // the upper 8 bits unused. Red, Green, and Blue are stored in
1388 // the remaining 24 bits in that order. The 32-bit quantities
1389 // are stored native-endian.
1390 *data
= ( p
.Red() << 16 | p
.Green() << 8 | p
.Blue() );
1395 data
= rowStartDst
+ stride
/ 4;
1397 p
.OffsetY(pixData
, 1);
1400 #if defined(__WXMSW__) || defined(__WXGTK3__)
1401 // if there is a mask, set the alpha bytes in the target buffer to
1402 // fully transparent or fully opaque
1403 if (bmpSource
.GetMask())
1405 wxBitmap bmpMask
= bmpSource
.GetMaskBitmap();
1406 bufferFormat
= CAIRO_FORMAT_ARGB32
;
1407 data
= (wxUint32
*)m_buffer
;
1409 pixData(bmpMask
, wxPoint(0, 0), wxSize(m_width
, m_height
));
1410 wxCHECK_RET( pixData
, wxT("Failed to gain raw access to mask data."));
1412 wxNativePixelData::Iterator
p(pixData
);
1413 for (int y
=0; y
<m_height
; y
++)
1415 wxNativePixelData::Iterator rowStart
= p
;
1416 wxUint32
* const rowStartDst
= data
;
1417 for (int x
=0; x
<m_width
; x
++)
1419 if (p
.Red()+p
.Green()+p
.Blue() == 0)
1422 *data
= (wxALPHA_OPAQUE
<< 24) | (*data
& 0x00FFFFFF);
1427 data
= rowStartDst
+ stride
/ 4;
1429 p
.OffsetY(pixData
, 1);
1434 InitSurface(bufferFormat
, stride
);
1435 #endif // wxHAS_RAW_BITMAP
1440 // Helper functions for dealing with alpha pre-multiplication.
1444 inline unsigned char Premultiply(unsigned char alpha
, unsigned char data
)
1446 return alpha
? (data
* alpha
)/0xff : data
;
1449 inline unsigned char Unpremultiply(unsigned char alpha
, unsigned char data
)
1451 return alpha
? (data
* 0xff)/alpha
: data
;
1454 } // anonymous namespace
1456 wxCairoBitmapData::wxCairoBitmapData(wxGraphicsRenderer
* renderer
,
1457 const wxImage
& image
)
1458 : wxGraphicsBitmapData(renderer
)
1460 const cairo_format_t bufferFormat
= image
.HasAlpha()
1461 ? CAIRO_FORMAT_ARGB32
1462 : CAIRO_FORMAT_RGB24
;
1464 int stride
= InitBuffer(image
.GetWidth(), image
.GetHeight(), bufferFormat
);
1466 // Copy wxImage data into the buffer. Notice that we work with wxUint32
1467 // values and not bytes becase Cairo always works with buffers in native
1469 wxUint32
* dst
= reinterpret_cast<wxUint32
*>(m_buffer
);
1470 const unsigned char* src
= image
.GetData();
1472 if ( bufferFormat
== CAIRO_FORMAT_ARGB32
)
1474 const unsigned char* alpha
= image
.GetAlpha();
1476 for ( int y
= 0; y
< m_height
; y
++ )
1478 wxUint32
* const rowStartDst
= dst
;
1480 for ( int x
= 0; x
< m_width
; x
++ )
1482 const unsigned char a
= *alpha
++;
1485 Premultiply(a
, src
[0]) << 16 |
1486 Premultiply(a
, src
[1]) << 8 |
1487 Premultiply(a
, src
[2]);
1491 dst
= rowStartDst
+ stride
/ 4;
1496 for ( int y
= 0; y
< m_height
; y
++ )
1498 wxUint32
* const rowStartDst
= dst
;
1500 for ( int x
= 0; x
< m_width
; x
++ )
1502 *dst
++ = src
[0] << 16 |
1508 dst
= rowStartDst
+ stride
/ 4;
1512 InitSurface(bufferFormat
, stride
);
1515 wxImage
wxCairoBitmapData::ConvertToImage() const
1517 wxImage
image(m_width
, m_height
, false /* don't clear */);
1519 // Get the surface type and format.
1520 wxCHECK_MSG( cairo_surface_get_type(m_surface
) == CAIRO_SURFACE_TYPE_IMAGE
,
1522 wxS("Can't convert non-image surface to image.") );
1524 switch ( cairo_image_surface_get_format(m_surface
) )
1526 case CAIRO_FORMAT_ARGB32
:
1530 case CAIRO_FORMAT_RGB24
:
1531 // Nothing to do, we don't use alpha by default.
1534 case CAIRO_FORMAT_A8
:
1535 case CAIRO_FORMAT_A1
:
1536 wxFAIL_MSG(wxS("Unsupported Cairo image surface type."));
1540 wxFAIL_MSG(wxS("Unknown Cairo image surface type."));
1544 // Prepare for copying data.
1545 const wxUint32
* src
= (wxUint32
*)cairo_image_surface_get_data(m_surface
);
1546 wxCHECK_MSG( src
, wxNullImage
, wxS("Failed to get Cairo surface data.") );
1548 int stride
= cairo_image_surface_get_stride(m_surface
);
1549 wxCHECK_MSG( stride
> 0, wxNullImage
,
1550 wxS("Failed to get Cairo surface stride.") );
1552 // As we work with wxUint32 pointers and not char ones, we need to adjust
1553 // the stride accordingly. This should be lossless as the stride must be a
1554 // multiple of pixel size.
1555 wxASSERT_MSG( !(stride
% sizeof(wxUint32
)), wxS("Unexpected stride.") );
1556 stride
/= sizeof(wxUint32
);
1558 unsigned char* dst
= image
.GetData();
1559 unsigned char *alpha
= image
.GetAlpha();
1562 // We need to also copy alpha and undo the pre-multiplication as Cairo
1563 // stores pre-multiplied values in this format while wxImage does not.
1564 for ( int y
= 0; y
< m_height
; y
++ )
1566 const wxUint32
* const rowStart
= src
;
1567 for ( int x
= 0; x
< m_width
; x
++ )
1569 const wxUint32 argb
= *src
++;
1571 *alpha
++ = (argb
& 0xff000000) >> 24;
1573 // Copy the RGB data undoing the pre-multiplication.
1574 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x00ff0000) >> 16);
1575 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x0000ff00) >> 8);
1576 *dst
++ = Unpremultiply(*alpha
, (argb
& 0x000000ff));
1579 src
= rowStart
+ stride
;
1584 // Things are pretty simple in this case, just copy RGB bytes.
1585 for ( int y
= 0; y
< m_height
; y
++ )
1587 const wxUint32
* const rowStart
= src
;
1588 for ( int x
= 0; x
< m_width
; x
++ )
1590 const wxUint32 argb
= *src
++;
1592 *dst
++ = (argb
& 0x00ff0000) >> 16;
1593 *dst
++ = (argb
& 0x0000ff00) >> 8;
1594 *dst
++ = (argb
& 0x000000ff);
1597 src
= rowStart
+ stride
;
1604 #endif // wxUSE_IMAGE
1606 wxCairoBitmapData::~wxCairoBitmapData()
1609 cairo_pattern_destroy(m_pattern
);
1612 cairo_surface_destroy(m_surface
);
1617 //-----------------------------------------------------------------------------
1618 // wxCairoContext implementation
1619 //-----------------------------------------------------------------------------
1621 class wxCairoOffsetHelper
1624 wxCairoOffsetHelper( cairo_t
* ctx
, bool offset
)
1629 cairo_translate( m_ctx
, 0.5, 0.5 );
1631 ~wxCairoOffsetHelper( )
1634 cairo_translate( m_ctx
, -0.5, -0.5 );
1641 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxPrinterDC
& dc
)
1642 : wxGraphicsContext(renderer
)
1645 // wxMSW contexts always use MM_ANISOTROPIC, which messes up
1646 // text rendering when printing using Cairo. Switch it to MM_TEXT
1647 // map mode to avoid this problem.
1648 HDC hdc
= (HDC
)dc
.GetHDC();
1649 ::SetMapMode(hdc
, MM_TEXT
);
1650 m_mswSurface
= cairo_win32_printing_surface_create(hdc
);
1651 Init( cairo_create(m_mswSurface
) );
1655 const wxDCImpl
*impl
= dc
.GetImpl();
1656 Init( (cairo_t
*) impl
->GetCairoContext() );
1658 wxSize sz
= dc
.GetSize();
1662 wxPoint org
= dc
.GetDeviceOrigin();
1663 cairo_translate( m_context
, org
.x
, org
.y
);
1666 dc
.GetUserScale( &sx
, &sy
);
1668 // TODO: Determine if these fixes are needed on other platforms too.
1669 // On MSW, without this the printer context will not respect wxDC SetMapMode calls.
1670 // For example, using dc.SetMapMode(wxMM_POINTS) can let us share printer and screen
1674 dc
.GetLogicalScale( &lsx
, &lsy
);
1678 cairo_scale( m_context
, sx
, sy
);
1680 org
= dc
.GetLogicalOrigin();
1681 cairo_translate( m_context
, -org
.x
, -org
.y
);
1684 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxWindowDC
& dc
)
1685 : wxGraphicsContext(renderer
)
1688 dc
.GetSize( &width
, &height
);
1692 m_enableOffset
= true;
1695 m_mswSurface
= cairo_win32_surface_create((HDC
)dc
.GetHDC());
1696 Init( cairo_create(m_mswSurface
) );
1700 cairo_t
* cr
= static_cast<cairo_t
*>(dc
.GetImpl()->GetCairoContext());
1703 #elif defined __WXGTK20__
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
);
1732 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, const wxMemoryDC
& dc
)
1733 : wxGraphicsContext(renderer
)
1736 dc
.GetSize( &width
, &height
);
1740 m_enableOffset
= true;
1744 HDC hdc
= (HDC
)dc
.GetHDC();
1746 HBITMAP bitmap
= (HBITMAP
)GetCurrentObject(hdc
, OBJ_BITMAP
);
1749 bool hasBitmap
= false;
1751 // cairo_win32_surface_create creates a 24-bit bitmap,
1752 // so if we have alpha, we need to create a 32-bit surface instead.
1753 if (!GetObject(bitmap
, sizeof(info
), &info
) || info
.bmBitsPixel
< 32)
1754 m_mswSurface
= cairo_win32_surface_create(hdc
);
1757 m_mswSurface
= cairo_image_surface_create_for_data((unsigned char*)info
.bmBits
,
1758 CAIRO_FORMAT_ARGB32
,
1764 Init( cairo_create(m_mswSurface
) );
1765 // If we've created a image surface, we need to flip the Y axis so that
1766 // all drawing will appear right side up.
1768 cairo_matrix_t matrix
;
1769 cairo_matrix_init(&matrix
, 1.0, 0.0, 0.0, -1.0, 0.0, height
);
1770 cairo_set_matrix(m_context
, &matrix
);
1775 cairo_t
* cr
= static_cast<cairo_t
*>(dc
.GetImpl()->GetCairoContext());
1778 #elif defined __WXGTK20__
1779 wxGTKDCImpl
*impldc
= (wxGTKDCImpl
*) dc
.GetImpl();
1780 Init( gdk_cairo_create( impldc
->GetGDKWindow() ) );
1783 wxGraphicsMatrix matrix
= CreateMatrix();
1785 wxPoint org
= dc
.GetDeviceOrigin();
1786 matrix
.Translate( org
.x
, org
.y
);
1788 org
= dc
.GetLogicalOrigin();
1789 matrix
.Translate( -org
.x
, -org
.y
);
1792 dc
.GetUserScale( &sx
, &sy
);
1793 matrix
.Scale( sx
, sy
);
1795 ConcatTransform( matrix
);
1800 CGContextRef cgcontext
= (CGContextRef
)dc
.GetWindow()->MacGetCGContextRef();
1801 cairo_surface_t
* surface
= cairo_quartz_surface_create_for_cg_context(cgcontext
, width
, height
);
1802 Init( cairo_create( surface
) );
1803 cairo_surface_destroy( surface
);
1808 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, GdkWindow
*window
)
1809 : wxGraphicsContext(renderer
)
1811 Init( gdk_cairo_create( window
) );
1814 m_width
= gdk_window_get_width(window
);
1815 m_height
= gdk_window_get_height(window
);
1818 gdk_drawable_get_size(window
, &width
, &height
);
1826 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, HDC handle
)
1827 : wxGraphicsContext(renderer
)
1829 m_mswSurface
= cairo_win32_surface_create(handle
);
1830 Init( cairo_create(m_mswSurface
) );
1837 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, cairo_t
*context
)
1838 : wxGraphicsContext(renderer
)
1845 wxCairoContext::wxCairoContext( wxGraphicsRenderer
* renderer
, wxWindow
*window
)
1846 : wxGraphicsContext(renderer
)
1848 , m_mswWindowHDC(GetHwndOf(window
))
1851 m_enableOffset
= true;
1853 // something along these lines (copied from dcclient)
1855 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1856 // code should still be able to create wxClientDCs for them, so we will
1857 // use the parent window here then.
1858 if (window
->m_wxwindow
== NULL
)
1860 window
= window
->GetParent();
1863 wxASSERT_MSG( window
->m_wxwindow
, wxT("wxCairoContext needs a widget") );
1865 Init(gdk_cairo_create(window
->GTKGetDrawingWindow()));
1867 wxSize sz
= window
->GetSize();
1873 m_mswSurface
= cairo_win32_surface_create((HDC
)m_mswWindowHDC
);
1874 Init(cairo_create(m_mswSurface
));
1879 wxCairoContext::wxCairoContext(wxGraphicsRenderer
* renderer
) :
1880 wxGraphicsContext(renderer
)
1885 wxCairoContext::~wxCairoContext()
1891 cairo_destroy(m_context
);
1895 cairo_surface_destroy(m_mswSurface
);
1899 void wxCairoContext::Init(cairo_t
*context
)
1901 m_context
= context
;
1907 void wxCairoContext::Clip( const wxRegion
& region
)
1909 // Create a path with all the rectangles in the region
1910 wxGraphicsPath path
= GetRenderer()->CreatePath();
1911 wxRegionIterator
ri(region
);
1914 path
.AddRectangle(ri
.GetX(), ri
.GetY(), ri
.GetW(), ri
.GetH());
1918 // Put it in the context
1919 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1920 cairo_append_path(m_context
, cp
);
1922 // clip to that path
1923 cairo_clip(m_context
);
1924 path
.UnGetNativePath(cp
);
1927 void wxCairoContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1929 // Create a path with this rectangle
1930 wxGraphicsPath path
= GetRenderer()->CreatePath();
1931 path
.AddRectangle(x
,y
,w
,h
);
1933 // Put it in the context
1934 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1935 cairo_append_path(m_context
, cp
);
1937 // clip to that path
1938 cairo_clip(m_context
);
1939 path
.UnGetNativePath(cp
);
1942 void wxCairoContext::ResetClip()
1944 cairo_reset_clip(m_context
);
1948 void wxCairoContext::StrokePath( const wxGraphicsPath
& path
)
1950 if ( !m_pen
.IsNull() )
1952 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1953 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1954 cairo_append_path(m_context
,cp
);
1955 ((wxCairoPenData
*)m_pen
.GetRefData())->Apply(this);
1956 cairo_stroke(m_context
);
1957 path
.UnGetNativePath(cp
);
1961 void wxCairoContext::FillPath( const wxGraphicsPath
& path
, wxPolygonFillMode fillStyle
)
1963 if ( !m_brush
.IsNull() )
1965 wxCairoOffsetHelper
helper( m_context
, ShouldOffset() ) ;
1966 cairo_path_t
* cp
= (cairo_path_t
*) path
.GetNativePath() ;
1967 cairo_append_path(m_context
,cp
);
1968 ((wxCairoBrushData
*)m_brush
.GetRefData())->Apply(this);
1969 cairo_set_fill_rule(m_context
,fillStyle
==wxODDEVEN_RULE
? CAIRO_FILL_RULE_EVEN_ODD
: CAIRO_FILL_RULE_WINDING
);
1970 cairo_fill(m_context
);
1971 path
.UnGetNativePath(cp
);
1975 void wxCairoContext::Rotate( wxDouble angle
)
1977 cairo_rotate(m_context
,angle
);
1980 void wxCairoContext::Translate( wxDouble dx
, wxDouble dy
)
1982 cairo_translate(m_context
,dx
,dy
);
1985 void wxCairoContext::Scale( wxDouble xScale
, wxDouble yScale
)
1987 cairo_scale(m_context
,xScale
,yScale
);
1990 // concatenates this transform with the current transform of this context
1991 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix
& matrix
)
1993 cairo_transform(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
1996 // sets the transform of this context
1997 void wxCairoContext::SetTransform( const wxGraphicsMatrix
& matrix
)
1999 cairo_set_matrix(m_context
,(const cairo_matrix_t
*) matrix
.GetNativeMatrix());
2002 // gets the matrix of this context
2003 wxGraphicsMatrix
wxCairoContext::GetTransform() const
2005 wxGraphicsMatrix matrix
= CreateMatrix();
2006 cairo_get_matrix(m_context
,(cairo_matrix_t
*) matrix
.GetNativeMatrix());
2012 void wxCairoContext::PushState()
2014 cairo_save(m_context
);
2017 void wxCairoContext::PopState()
2019 cairo_restore(m_context
);
2022 void wxCairoContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
2024 wxGraphicsBitmap bitmap
= GetRenderer()->CreateBitmap(bmp
);
2025 DrawBitmap(bitmap
, x
, y
, w
, h
);
2029 void wxCairoContext::DrawBitmap(const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
2033 // In case we're scaling the image by using a width and height different
2034 // than the bitmap's size create a pattern transformation on the surface and
2035 // draw the transformed pattern.
2036 wxCairoBitmapData
* data
= static_cast<wxCairoBitmapData
*>(bmp
.GetRefData());
2037 cairo_pattern_t
* pattern
= data
->GetCairoPattern();
2038 wxSize size
= data
->GetSize();
2040 wxDouble scaleX
= w
/ size
.GetWidth();
2041 wxDouble scaleY
= h
/ size
.GetHeight();
2043 // prepare to draw the image
2044 cairo_translate(m_context
, x
, y
);
2045 cairo_scale(m_context
, scaleX
, scaleY
);
2046 cairo_set_source(m_context
, pattern
);
2047 // use the original size here since the context is scaled already...
2048 cairo_rectangle(m_context
, 0, 0, size
.GetWidth(), size
.GetHeight());
2049 // fill the rectangle using the pattern
2050 cairo_fill(m_context
);
2055 void wxCairoContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
2057 // An icon is a bitmap on wxGTK, so do this the easy way. When we want to
2058 // start using the Cairo backend on other platforms then we may need to
2059 // fiddle with this...
2060 DrawBitmap(icon
, x
, y
, w
, h
);
2064 void wxCairoContext::DoDrawText(const wxString
& str
, wxDouble x
, wxDouble y
)
2066 wxCHECK_RET( !m_font
.IsNull(),
2067 wxT("wxCairoContext::DrawText - no valid font set") );
2072 const wxCharBuffer data
= str
.utf8_str();
2076 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply(this) )
2079 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
2080 const wxFont
& font
= static_cast<wxCairoFontData
*>(m_font
.GetRefData())->GetFont();
2081 pango_layout_set_font_description(layout
, font
.GetNativeFontInfo()->description
);
2082 pango_layout_set_text(layout
, data
, data
.length());
2083 font
.GTKSetPangoAttrs(layout
);
2085 cairo_move_to(m_context
, x
, y
);
2086 pango_cairo_show_layout (m_context
, layout
);
2088 g_object_unref (layout
);
2090 // Don't use Cairo text API, we already did everything.
2095 // Cairo's x,y for drawing text is at the baseline, so we need to adjust
2096 // the position we move to by the ascent.
2097 cairo_font_extents_t fe
;
2098 cairo_font_extents(m_context
, &fe
);
2099 cairo_move_to(m_context
, x
, y
+fe
.ascent
);
2101 cairo_show_text(m_context
, data
);
2104 void wxCairoContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
2105 wxDouble
*descent
, wxDouble
*externalLeading
) const
2107 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") );
2115 if ( externalLeading
)
2116 *externalLeading
= 0;
2121 if ( ((wxCairoFontData
*)m_font
.GetRefData())->Apply((wxCairoContext
*)this) )
2126 PangoLayout
*layout
= pango_cairo_create_layout (m_context
);
2127 const wxFont
& font
= static_cast<wxCairoFontData
*>(m_font
.GetRefData())->GetFont();
2128 pango_layout_set_font_description(layout
, font
.GetNativeFontInfo()->description
);
2129 const wxCharBuffer data
= str
.utf8_str();
2134 pango_layout_set_text(layout
, data
, data
.length());
2135 pango_layout_get_pixel_size (layout
, &w
, &h
);
2142 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
2143 int baseline
= pango_layout_iter_get_baseline(iter
);
2144 pango_layout_iter_free(iter
);
2145 *descent
= h
- PANGO_PIXELS(baseline
);
2147 g_object_unref (layout
);
2154 const wxWX2MBbuf
buf(str
.mb_str(wxConvUTF8
));
2155 cairo_text_extents_t te
;
2156 cairo_text_extents(m_context
, buf
, &te
);
2160 if (height
|| descent
|| externalLeading
)
2162 cairo_font_extents_t fe
;
2163 cairo_font_extents(m_context
, &fe
);
2165 // some backends have negative descents
2167 if ( fe
.descent
< 0 )
2168 fe
.descent
= -fe
.descent
;
2170 if ( fe
.height
< (fe
.ascent
+ fe
.descent
) )
2172 // some backends are broken re height ... (eg currently ATSUI)
2173 fe
.height
= fe
.ascent
+ fe
.descent
;
2177 *height
= fe
.height
;
2179 *descent
= fe
.descent
;
2180 if ( externalLeading
)
2181 *externalLeading
= wxMax(0, fe
.height
- (fe
.ascent
+ fe
.descent
));
2185 void wxCairoContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
2188 wxCHECK_RET( !m_font
.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") );
2190 const wxCharBuffer data
= text
.utf8_str();
2194 PangoLayout
* layout
= pango_cairo_create_layout(m_context
);
2195 const wxFont
& font
= static_cast<wxCairoFontData
*>(m_font
.GetRefData())->GetFont();
2196 pango_layout_set_font_description(layout
, font
.GetNativeFontInfo()->description
);
2197 pango_layout_set_text(layout
, data
, data
.length());
2198 PangoLayoutIter
* iter
= pango_layout_get_iter(layout
);
2199 PangoRectangle rect
;
2201 pango_layout_iter_get_cluster_extents(iter
, NULL
, &rect
);
2203 widths
.Add(PANGO_PIXELS(w
));
2204 } while (pango_layout_iter_next_cluster(iter
));
2205 pango_layout_iter_free(iter
);
2206 g_object_unref(layout
);
2208 size_t i
= widths
.GetCount();
2209 const size_t len
= text
.length();
2211 widths
.Add(PANGO_PIXELS(w
));
2217 void * wxCairoContext::GetNativeContext()
2222 bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias
)
2224 if (m_antialias
== antialias
)
2227 m_antialias
= antialias
;
2229 cairo_antialias_t antialiasMode
;
2232 case wxANTIALIAS_DEFAULT
:
2233 antialiasMode
= CAIRO_ANTIALIAS_DEFAULT
;
2235 case wxANTIALIAS_NONE
:
2236 antialiasMode
= CAIRO_ANTIALIAS_NONE
;
2241 cairo_set_antialias(m_context
, antialiasMode
);
2245 bool wxCairoContext::SetInterpolationQuality(wxInterpolationQuality
WXUNUSED(interpolation
))
2251 bool wxCairoContext::SetCompositionMode(wxCompositionMode op
)
2253 if ( m_composition
== op
)
2257 cairo_operator_t cop
;
2260 case wxCOMPOSITION_CLEAR
:
2261 cop
= CAIRO_OPERATOR_CLEAR
;
2263 case wxCOMPOSITION_SOURCE
:
2264 cop
= CAIRO_OPERATOR_SOURCE
;
2266 case wxCOMPOSITION_OVER
:
2267 cop
= CAIRO_OPERATOR_OVER
;
2269 case wxCOMPOSITION_IN
:
2270 cop
= CAIRO_OPERATOR_IN
;
2272 case wxCOMPOSITION_OUT
:
2273 cop
= CAIRO_OPERATOR_OUT
;
2275 case wxCOMPOSITION_ATOP
:
2276 cop
= CAIRO_OPERATOR_ATOP
;
2278 case wxCOMPOSITION_DEST
:
2279 cop
= CAIRO_OPERATOR_DEST
;
2281 case wxCOMPOSITION_DEST_OVER
:
2282 cop
= CAIRO_OPERATOR_DEST_OVER
;
2284 case wxCOMPOSITION_DEST_IN
:
2285 cop
= CAIRO_OPERATOR_DEST_IN
;
2287 case wxCOMPOSITION_DEST_OUT
:
2288 cop
= CAIRO_OPERATOR_DEST_OUT
;
2290 case wxCOMPOSITION_DEST_ATOP
:
2291 cop
= CAIRO_OPERATOR_DEST_ATOP
;
2293 case wxCOMPOSITION_XOR
:
2294 cop
= CAIRO_OPERATOR_XOR
;
2296 case wxCOMPOSITION_ADD
:
2297 cop
= CAIRO_OPERATOR_ADD
;
2302 cairo_set_operator(m_context
, cop
);
2306 void wxCairoContext::BeginLayer(wxDouble opacity
)
2308 m_layerOpacities
.push_back(opacity
);
2309 cairo_push_group(m_context
);
2312 void wxCairoContext::EndLayer()
2314 float opacity
= m_layerOpacities
.back();
2315 m_layerOpacities
.pop_back();
2316 cairo_pop_group_to_source(m_context
);
2317 cairo_paint_with_alpha(m_context
,opacity
);
2320 //-----------------------------------------------------------------------------
2321 // wxCairoRenderer declaration
2322 //-----------------------------------------------------------------------------
2324 class WXDLLIMPEXP_CORE wxCairoRenderer
: public wxGraphicsRenderer
2327 wxCairoRenderer() {}
2329 virtual ~wxCairoRenderer() {}
2333 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
2334 virtual wxGraphicsContext
* CreateContext( const wxMemoryDC
& dc
);
2335 virtual wxGraphicsContext
* CreateContext( const wxPrinterDC
& dc
);
2337 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
2339 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
2341 virtual wxGraphicsContext
* CreateContextFromImage(wxImage
& image
);
2342 #endif // wxUSE_IMAGE
2344 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
2346 virtual wxGraphicsContext
* CreateMeasuringContext();
2348 #if wxUSE_ENH_METAFILE
2349 virtual wxGraphicsContext
* CreateContext( const wxEnhMetaFileDC
& dc
);
2354 virtual wxGraphicsPath
CreatePath();
2358 virtual wxGraphicsMatrix
CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
2359 wxDouble tx
=0.0, wxDouble ty
=0.0);
2362 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) ;
2364 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) ;
2366 virtual wxGraphicsBrush
2367 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2368 wxDouble x2
, wxDouble y2
,
2369 const wxGraphicsGradientStops
& stops
);
2371 virtual wxGraphicsBrush
2372 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2373 wxDouble xc
, wxDouble yc
,
2375 const wxGraphicsGradientStops
& stops
);
2378 virtual wxGraphicsFont
CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) ;
2379 virtual wxGraphicsFont
CreateFont(double sizeInPixels
,
2380 const wxString
& facename
,
2381 int flags
= wxFONTFLAG_DEFAULT
,
2382 const wxColour
& col
= *wxBLACK
);
2384 // create a native bitmap representation
2385 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
);
2387 virtual wxGraphicsBitmap
CreateBitmapFromImage(const wxImage
& image
);
2388 virtual wxImage
CreateImageFromBitmap(const wxGraphicsBitmap
& bmp
);
2389 #endif // wxUSE_IMAGE
2391 // create a graphics bitmap from a native bitmap
2392 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
);
2394 // create a subimage from a native image representation
2395 virtual wxGraphicsBitmap
CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
2398 bool EnsureIsLoaded();
2401 friend class wxCairoModule
;
2404 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer
)
2407 //-----------------------------------------------------------------------------
2408 // wxCairoRenderer implementation
2409 //-----------------------------------------------------------------------------
2411 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer
,wxGraphicsRenderer
)
2413 static wxCairoRenderer gs_cairoGraphicsRenderer
;
2414 // temporary hack to allow creating a cairo context on any platform
2415 extern wxGraphicsRenderer
* gCairoRenderer
;
2416 wxGraphicsRenderer
* gCairoRenderer
= &gs_cairoGraphicsRenderer
;
2418 bool wxCairoRenderer::EnsureIsLoaded()
2422 return wxCairoInit();
2428 void wxCairoRenderer::Load()
2433 void wxCairoRenderer::Unload()
2438 // call EnsureIsLoaded() and return returnOnFail value if it fails
2439 #define ENSURE_LOADED_OR_RETURN(returnOnFail) \
2440 if ( !EnsureIsLoaded() ) \
2441 return (returnOnFail)
2443 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxWindowDC
& dc
)
2445 ENSURE_LOADED_OR_RETURN(NULL
);
2446 return new wxCairoContext(this,dc
);
2449 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxMemoryDC
& dc
)
2451 ENSURE_LOADED_OR_RETURN(NULL
);
2452 return new wxCairoContext(this,dc
);
2455 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxPrinterDC
& dc
)
2457 ENSURE_LOADED_OR_RETURN(NULL
);
2458 return new wxCairoContext(this, dc
);
2462 #if wxUSE_ENH_METAFILE
2463 wxGraphicsContext
* wxCairoRenderer::CreateContext( const wxEnhMetaFileDC
& WXUNUSED(dc
) )
2465 ENSURE_LOADED_OR_RETURN(NULL
);
2471 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeContext( void * context
)
2473 ENSURE_LOADED_OR_RETURN(NULL
);
2475 return new wxCairoContext(this,(HDC
)context
);
2477 return new wxCairoContext(this,(cairo_t
*)context
);
2482 wxGraphicsContext
* wxCairoRenderer::CreateContextFromNativeWindow( void * window
)
2484 ENSURE_LOADED_OR_RETURN(NULL
);
2486 return new wxCairoContext(this, static_cast<GdkWindow
*>(window
));
2488 wxUnusedVar(window
);
2494 wxGraphicsContext
* wxCairoRenderer::CreateContextFromImage(wxImage
& image
)
2496 return new wxCairoImageContext(this, image
);
2498 #endif // wxUSE_IMAGE
2500 wxGraphicsContext
* wxCairoRenderer::CreateMeasuringContext()
2502 ENSURE_LOADED_OR_RETURN(NULL
);
2504 return CreateContextFromNativeWindow(gdk_get_default_root_window());
2511 wxGraphicsContext
* wxCairoRenderer::CreateContext( wxWindow
* window
)
2513 ENSURE_LOADED_OR_RETURN(NULL
);
2514 return new wxCairoContext(this, window
);
2519 wxGraphicsPath
wxCairoRenderer::CreatePath()
2521 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath
);
2522 wxGraphicsPath path
;
2523 path
.SetRefData( new wxCairoPathData(this) );
2530 wxGraphicsMatrix
wxCairoRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
2531 wxDouble tx
, wxDouble ty
)
2534 ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix
);
2536 wxCairoMatrixData
* data
= new wxCairoMatrixData( this );
2537 data
->Set( a
,b
,c
,d
,tx
,ty
) ;
2542 wxGraphicsPen
wxCairoRenderer::CreatePen(const wxPen
& pen
)
2544 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen
);
2545 if ( !pen
.IsOk() || pen
.GetStyle() == wxPENSTYLE_TRANSPARENT
)
2546 return wxNullGraphicsPen
;
2550 p
.SetRefData(new wxCairoPenData( this, pen
));
2555 wxGraphicsBrush
wxCairoRenderer::CreateBrush(const wxBrush
& brush
)
2557 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2558 if ( !brush
.IsOk() || brush
.GetStyle() == wxBRUSHSTYLE_TRANSPARENT
)
2559 return wxNullGraphicsBrush
;
2563 p
.SetRefData(new wxCairoBrushData( this, brush
));
2569 wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2570 wxDouble x2
, wxDouble y2
,
2571 const wxGraphicsGradientStops
& stops
)
2573 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2575 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2576 d
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, stops
);
2582 wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2583 wxDouble xc
, wxDouble yc
, wxDouble r
,
2584 const wxGraphicsGradientStops
& stops
)
2586 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2588 wxCairoBrushData
* d
= new wxCairoBrushData( this );
2589 d
->CreateRadialGradientBrush(xo
, yo
, xc
, yc
, r
, stops
);
2594 wxGraphicsFont
wxCairoRenderer::CreateFont( const wxFont
&font
, const wxColour
&col
)
2596 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2600 p
.SetRefData(new wxCairoFontData( this , font
, col
));
2604 return wxNullGraphicsFont
;
2608 wxCairoRenderer::CreateFont(double sizeInPixels
,
2609 const wxString
& facename
,
2611 const wxColour
& col
)
2613 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2615 wxGraphicsFont font
;
2616 font
.SetRefData(new wxCairoFontData(this, sizeInPixels
, facename
, flags
, col
));
2620 wxGraphicsBitmap
wxCairoRenderer::CreateBitmap( const wxBitmap
& bmp
)
2622 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2626 p
.SetRefData(new wxCairoBitmapData( this , bmp
));
2630 return wxNullGraphicsBitmap
;
2635 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromImage(const wxImage
& image
)
2637 wxGraphicsBitmap bmp
;
2639 ENSURE_LOADED_OR_RETURN(bmp
);
2643 bmp
.SetRefData(new wxCairoBitmapData(this, image
));
2649 wxImage
wxCairoRenderer::CreateImageFromBitmap(const wxGraphicsBitmap
& bmp
)
2651 ENSURE_LOADED_OR_RETURN(wxNullImage
);
2653 const wxCairoBitmapData
* const
2654 data
= static_cast<wxCairoBitmapData
*>(bmp
.GetGraphicsData());
2656 return data
? data
->ConvertToImage() : wxNullImage
;
2659 #endif // wxUSE_IMAGE
2662 wxGraphicsBitmap
wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap
)
2664 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2665 if ( bitmap
!= NULL
)
2668 p
.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t
*) bitmap
));
2672 return wxNullGraphicsBitmap
;
2676 wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap
& WXUNUSED(bitmap
),
2677 wxDouble
WXUNUSED(x
),
2678 wxDouble
WXUNUSED(y
),
2679 wxDouble
WXUNUSED(w
),
2680 wxDouble
WXUNUSED(h
))
2682 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2683 wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented.");
2684 return wxNullGraphicsBitmap
;
2687 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2689 return &gs_cairoGraphicsRenderer
;
2692 #else // !wxUSE_CAIRO
2694 wxGraphicsRenderer
* wxGraphicsRenderer::GetCairoRenderer()
2699 #endif // wxUSE_CAIRO/!wxUSE_CAIRO
2701 // MSW and OS X have their own native default renderers, but the other ports
2702 // use Cairo by default
2703 #if !(defined(__WXMSW__) || defined(__WXOSX__))
2704 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
2706 return GetCairoRenderer();
2708 #endif // !(__WXMSW__ || __WXOSX__)
2710 #endif // wxUSE_GRAPHICS_CONTEXT