Merge in from trunk r68684 - r69046
[wxWidgets.git] / src / generic / graphicc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/graphicc.cpp
3 // Purpose: cairo device context class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 2006-10-03
7 // RCS-ID: $Id$
8 // Copyright: (c) 2006 Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/wxprec.h"
13
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17
18 #if wxUSE_GRAPHICS_CONTEXT
19
20 #include "wx/graphics.h"
21
22 #if wxUSE_CAIRO
23
24 // keep cairo.h from defining dllimport as we're defining the symbols inside
25 // the wx dll in order to load them dynamically.
26 #define cairo_public
27
28 #include "wx/cairo.h"
29
30 #ifndef WX_PRECOMP
31 #include "wx/bitmap.h"
32 #include "wx/icon.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
35 #include "wx/dcprint.h"
36 #ifdef __WXGTK__
37 #include "wx/window.h"
38 #endif
39 #endif
40
41 #include "wx/private/graphics.h"
42 #include "wx/rawbmp.h"
43 #include "wx/vector.h"
44
45 using namespace std;
46
47 //-----------------------------------------------------------------------------
48 // device context implementation
49 //
50 // more and more of the dc functionality should be implemented by calling
51 // the appropricate wxCairoContext, but we will have to do that step by step
52 // also coordinate conversions should be moved to native matrix ops
53 //-----------------------------------------------------------------------------
54
55 // we always stock two context states, one at entry, to be able to preserve the
56 // state we were called with, the other one after changing to HI Graphics orientation
57 // (this one is used for getting back clippings etc)
58
59 //-----------------------------------------------------------------------------
60 // wxGraphicsPath implementation
61 //-----------------------------------------------------------------------------
62
63 // TODO remove this dependency (gdiplus needs the macros)
64
65 #ifndef max
66 #define max(a,b) (((a) > (b)) ? (a) : (b))
67 #endif
68
69 #ifndef min
70 #define min(a,b) (((a) < (b)) ? (a) : (b))
71 #endif
72
73 #include <cairo.h>
74 #ifdef __WXMSW__
75 #include <cairo-win32.h>
76 #endif
77
78 #ifdef __WXGTK__
79 #include <gtk/gtk.h>
80 #include "wx/fontutil.h"
81 #include "wx/gtk/dc.h"
82 #endif
83
84 #ifdef __WXMSW__
85 #include <cairo-win32.h>
86 #endif
87
88 #ifdef __WXMAC__
89 #include "wx/osx/private.h"
90 #include <cairo-quartz.h>
91 #include <cairo-atsui.h>
92 #endif
93
94 class WXDLLIMPEXP_CORE wxCairoPathData : public wxGraphicsPathData
95 {
96 public :
97 wxCairoPathData(wxGraphicsRenderer* renderer, cairo_t* path = NULL);
98 ~wxCairoPathData();
99
100 virtual wxGraphicsObjectRefData *Clone() const;
101
102 //
103 // These are the path primitives from which everything else can be constructed
104 //
105
106 // begins a new subpath at (x,y)
107 virtual void MoveToPoint( wxDouble x, wxDouble y );
108
109 // adds a straight line from the current point to (x,y)
110 virtual void AddLineToPoint( wxDouble x, wxDouble y );
111
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 );
114
115
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 ) ;
118
119 // gets the last point of the current path, (0,0) if not yet set
120 virtual void GetCurrentPoint( wxDouble* x, wxDouble* y) const;
121
122 // adds another path
123 virtual void AddPath( const wxGraphicsPathData* path );
124
125 // closes the current sub-path
126 virtual void CloseSubpath();
127
128 //
129 // These are convenience functions which - if not available natively will be assembled
130 // using the primitives from above
131 //
132
133 /*
134
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 ) ;
139
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 ) ;
142 */
143
144 // returns the native path
145 virtual void * GetNativePath() const ;
146
147 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
148 virtual void UnGetNativePath(void *p) const;
149
150 // transforms each point of this path by the matrix
151 virtual void Transform( const wxGraphicsMatrixData* matrix ) ;
152
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;
155
156 virtual bool Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle = wxWINDING_RULE) const;
157
158 private :
159 cairo_t* m_pathContext;
160 };
161
162 class WXDLLIMPEXP_CORE wxCairoMatrixData : public wxGraphicsMatrixData
163 {
164 public :
165 wxCairoMatrixData(wxGraphicsRenderer* renderer, const cairo_matrix_t* matrix = NULL ) ;
166 virtual ~wxCairoMatrixData() ;
167
168 virtual wxGraphicsObjectRefData *Clone() const ;
169
170 // concatenates the matrix
171 virtual void Concat( const wxGraphicsMatrixData *t );
172
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);
176
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;
180
181 // makes this the inverse matrix
182 virtual void Invert();
183
184 // returns true if the elements of the transformation matrix are equal ?
185 virtual bool IsEqual( const wxGraphicsMatrixData* t) const ;
186
187 // return true if this is the identity matrix
188 virtual bool IsIdentity() const;
189
190 //
191 // transformation
192 //
193
194 // add the translation to this matrix
195 virtual void Translate( wxDouble dx , wxDouble dy );
196
197 // add the scale to this matrix
198 virtual void Scale( wxDouble xScale , wxDouble yScale );
199
200 // add the rotation to this matrix (radians)
201 virtual void Rotate( wxDouble angle );
202
203 //
204 // apply the transforms
205 //
206
207 // applies that matrix to the point
208 virtual void TransformPoint( wxDouble *x, wxDouble *y ) const;
209
210 // applies the matrix except for translations
211 virtual void TransformDistance( wxDouble *dx, wxDouble *dy ) const;
212
213 // returns the native representation
214 virtual void * GetNativeMatrix() const;
215 private:
216 cairo_matrix_t m_matrix ;
217 } ;
218
219 class WXDLLIMPEXP_CORE wxCairoPenData : public wxGraphicsObjectRefData
220 {
221 public:
222 wxCairoPenData( wxGraphicsRenderer* renderer, const wxPen &pen );
223 ~wxCairoPenData();
224
225 void Init();
226
227 virtual void Apply( wxGraphicsContext* context );
228 virtual wxDouble GetWidth() { return m_width; }
229
230 private :
231 double m_width;
232
233 double m_red;
234 double m_green;
235 double m_blue;
236 double m_alpha;
237
238 cairo_line_cap_t m_cap;
239 cairo_line_join_t m_join;
240
241 int m_count;
242 const double *m_lengths;
243 double *m_userLengths;
244
245 wxPen m_pen;
246
247 wxDECLARE_NO_COPY_CLASS(wxCairoPenData);
248 };
249
250 class WXDLLIMPEXP_CORE wxCairoBrushData : public wxGraphicsObjectRefData
251 {
252 public:
253 wxCairoBrushData( wxGraphicsRenderer* renderer );
254 wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush );
255 ~wxCairoBrushData ();
256
257 virtual void Apply( wxGraphicsContext* context );
258
259 void CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
260 wxDouble x2, wxDouble y2,
261 const wxGraphicsGradientStops& stops);
262 void CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
263 wxDouble xc, wxDouble yc, wxDouble radius,
264 const wxGraphicsGradientStops& stops);
265
266 protected:
267 virtual void Init();
268
269 // common part of Create{Linear,Radial}GradientBrush()
270 void AddGradientStops(const wxGraphicsGradientStops& stops);
271
272 private :
273 double m_red;
274 double m_green;
275 double m_blue;
276 double m_alpha;
277
278 cairo_pattern_t* m_brushPattern;
279 };
280
281 class wxCairoFontData : public wxGraphicsObjectRefData
282 {
283 public:
284 wxCairoFontData( wxGraphicsRenderer* renderer, const wxFont &font, const wxColour& col );
285 ~wxCairoFontData();
286
287 virtual void Apply( wxGraphicsContext* context );
288 #ifdef __WXGTK__
289 const PangoFontDescription* GetFont() const { return m_font; }
290 bool GetUnderlined() const { return m_underlined; }
291 #endif
292 private :
293 double m_size;
294 bool m_underlined;
295 double m_red;
296 double m_green;
297 double m_blue;
298 double m_alpha;
299 #ifdef __WXMAC__
300 cairo_font_face_t *m_font;
301 #elif defined(__WXGTK__)
302 PangoFontDescription* m_font;
303 #else
304 wxCharBuffer m_fontName;
305 cairo_font_slant_t m_slant;
306 cairo_font_weight_t m_weight;
307 #endif
308 };
309
310 class wxCairoBitmapData : public wxGraphicsObjectRefData
311 {
312 public:
313 wxCairoBitmapData( wxGraphicsRenderer* renderer, const wxBitmap& bmp );
314 wxCairoBitmapData( wxGraphicsRenderer* renderer, cairo_surface_t* bitmap );
315 ~wxCairoBitmapData();
316
317 virtual cairo_surface_t* GetCairoSurface() { return m_surface; }
318 virtual cairo_pattern_t* GetCairoPattern() { return m_pattern; }
319 virtual wxSize GetSize() { return wxSize(m_width, m_height); }
320 private :
321 cairo_surface_t* m_surface;
322 cairo_pattern_t* m_pattern;
323 int m_width;
324 int m_height;
325 unsigned char* m_buffer;
326 };
327
328 class WXDLLIMPEXP_CORE wxCairoContext : public wxGraphicsContext
329 {
330 public:
331 wxCairoContext( wxGraphicsRenderer* renderer, const wxWindowDC& dc );
332 wxCairoContext( wxGraphicsRenderer* renderer, const wxMemoryDC& dc );
333 wxCairoContext( wxGraphicsRenderer* renderer, const wxPrinterDC& dc );
334 #ifdef __WXGTK__
335 wxCairoContext( wxGraphicsRenderer* renderer, GdkDrawable *drawable );
336 #endif
337 #ifdef __WXMSW__
338 wxCairoContext( wxGraphicsRenderer* renderer, HDC context );
339 #endif
340 wxCairoContext( wxGraphicsRenderer* renderer, cairo_t *context );
341 wxCairoContext( wxGraphicsRenderer* renderer, wxWindow *window);
342 wxCairoContext();
343 virtual ~wxCairoContext();
344
345 virtual bool ShouldOffset() const
346 {
347 if ( !m_enableOffset )
348 return false;
349
350 int penwidth = 0 ;
351 if ( !m_pen.IsNull() )
352 {
353 penwidth = (int)((wxCairoPenData*)m_pen.GetRefData())->GetWidth();
354 if ( penwidth == 0 )
355 penwidth = 1;
356 }
357 return ( penwidth % 2 ) == 1;
358 }
359
360 virtual void Clip( const wxRegion &region );
361 #ifdef __WXMSW__
362 cairo_surface_t* m_mswSurface;
363 #endif
364
365 // clips drawings to the rect
366 virtual void Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h );
367
368 // resets the clipping to original extent
369 virtual void ResetClip();
370
371 virtual void * GetNativeContext();
372
373 virtual bool SetAntialiasMode(wxAntialiasMode antialias);
374
375 virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation);
376
377 virtual bool SetCompositionMode(wxCompositionMode op);
378
379 virtual void BeginLayer(wxDouble opacity);
380
381 virtual void EndLayer();
382
383 virtual void StrokePath( const wxGraphicsPath& p );
384 virtual void FillPath( const wxGraphicsPath& p , wxPolygonFillMode fillStyle = wxWINDING_RULE );
385
386 virtual void Translate( wxDouble dx , wxDouble dy );
387 virtual void Scale( wxDouble xScale , wxDouble yScale );
388 virtual void Rotate( wxDouble angle );
389
390 // concatenates this transform with the current transform of this context
391 virtual void ConcatTransform( const wxGraphicsMatrix& matrix );
392
393 // sets the transform of this context
394 virtual void SetTransform( const wxGraphicsMatrix& matrix );
395
396 // gets the matrix of this context
397 virtual wxGraphicsMatrix GetTransform() const;
398
399 virtual void DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
400 virtual void DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
401 virtual void DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
402 virtual void PushState();
403 virtual void PopState();
404
405 virtual void GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height,
406 wxDouble *descent, wxDouble *externalLeading ) const;
407 virtual void GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const;
408
409 protected:
410 virtual void DoDrawText( const wxString &str, wxDouble x, wxDouble y );
411
412 private:
413 void Init(cairo_t *context);
414
415 cairo_t* m_context;
416
417 wxVector<float> m_layerOpacities;
418
419 wxDECLARE_NO_COPY_CLASS(wxCairoContext);
420 };
421
422 //-----------------------------------------------------------------------------
423 // wxCairoPenData implementation
424 //-----------------------------------------------------------------------------
425
426 wxCairoPenData::~wxCairoPenData()
427 {
428 delete[] m_userLengths;
429 }
430
431 void wxCairoPenData::Init()
432 {
433 m_lengths = NULL;
434 m_userLengths = NULL;
435 m_width = 0;
436 m_count = 0;
437 }
438
439 wxCairoPenData::wxCairoPenData( wxGraphicsRenderer* renderer, const wxPen &pen )
440 : wxGraphicsObjectRefData(renderer)
441 {
442 Init();
443 m_pen = pen;
444 m_width = m_pen.GetWidth();
445 if (m_width <= 0.0)
446 m_width = 0.1;
447
448 m_red = m_pen.GetColour().Red()/255.0;
449 m_green = m_pen.GetColour().Green()/255.0;
450 m_blue = m_pen.GetColour().Blue()/255.0;
451 m_alpha = m_pen.GetColour().Alpha()/255.0;
452
453 switch ( m_pen.GetCap() )
454 {
455 case wxCAP_ROUND :
456 m_cap = CAIRO_LINE_CAP_ROUND;
457 break;
458
459 case wxCAP_PROJECTING :
460 m_cap = CAIRO_LINE_CAP_SQUARE;
461 break;
462
463 case wxCAP_BUTT :
464 m_cap = CAIRO_LINE_CAP_BUTT;
465 break;
466
467 default :
468 m_cap = CAIRO_LINE_CAP_BUTT;
469 break;
470 }
471
472 switch ( m_pen.GetJoin() )
473 {
474 case wxJOIN_BEVEL :
475 m_join = CAIRO_LINE_JOIN_BEVEL;
476 break;
477
478 case wxJOIN_MITER :
479 m_join = CAIRO_LINE_JOIN_MITER;
480 break;
481
482 case wxJOIN_ROUND :
483 m_join = CAIRO_LINE_JOIN_ROUND;
484 break;
485
486 default :
487 m_join = CAIRO_LINE_JOIN_MITER;
488 break;
489 }
490
491 const double dashUnit = m_width < 1.0 ? 1.0 : m_width;
492 const double dotted[] =
493 {
494 dashUnit , dashUnit + 2.0
495 };
496 static const double short_dashed[] =
497 {
498 9.0 , 6.0
499 };
500 static const double dashed[] =
501 {
502 19.0 , 9.0
503 };
504 static const double dotted_dashed[] =
505 {
506 9.0 , 6.0 , 3.0 , 3.0
507 };
508
509 switch ( m_pen.GetStyle() )
510 {
511 case wxPENSTYLE_SOLID :
512 break;
513
514 case wxPENSTYLE_DOT :
515 m_count = WXSIZEOF(dotted);
516 m_userLengths = new double[ m_count ] ;
517 memcpy( m_userLengths, dotted, sizeof(dotted) );
518 m_lengths = m_userLengths;
519 break;
520
521 case wxPENSTYLE_LONG_DASH :
522 m_lengths = dashed ;
523 m_count = WXSIZEOF(dashed);
524 break;
525
526 case wxPENSTYLE_SHORT_DASH :
527 m_lengths = short_dashed ;
528 m_count = WXSIZEOF(short_dashed);
529 break;
530
531 case wxPENSTYLE_DOT_DASH :
532 m_lengths = dotted_dashed ;
533 m_count = WXSIZEOF(dotted_dashed);
534 break;
535
536 case wxPENSTYLE_USER_DASH :
537 {
538 wxDash *wxdashes ;
539 m_count = m_pen.GetDashes( &wxdashes ) ;
540 if ((wxdashes != NULL) && (m_count > 0))
541 {
542 m_userLengths = new double[m_count] ;
543 for ( int i = 0 ; i < m_count ; ++i )
544 {
545 m_userLengths[i] = wxdashes[i] * dashUnit ;
546
547 if ( i % 2 == 1 && m_userLengths[i] < dashUnit + 2.0 )
548 m_userLengths[i] = dashUnit + 2.0 ;
549 else if ( i % 2 == 0 && m_userLengths[i] < dashUnit )
550 m_userLengths[i] = dashUnit ;
551 }
552 }
553 m_lengths = m_userLengths ;
554 }
555 break;
556 case wxPENSTYLE_STIPPLE :
557 {
558 /*
559 wxBitmap* bmp = pen.GetStipple();
560 if ( bmp && bmp->IsOk() )
561 {
562 wxDELETE( m_penImage );
563 wxDELETE( m_penBrush );
564 m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
565 m_penBrush = new TextureBrush(m_penImage);
566 m_pen->SetBrush( m_penBrush );
567 }
568 */
569 }
570 break;
571 default :
572 if ( m_pen.GetStyle() >= wxPENSTYLE_FIRST_HATCH
573 && m_pen.GetStyle() <= wxPENSTYLE_LAST_HATCH )
574 {
575 /*
576 wxDELETE( m_penBrush );
577 HatchStyle style = HatchStyleHorizontal;
578 switch( pen.GetStyle() )
579 {
580 case wxPENSTYLE_BDIAGONAL_HATCH :
581 style = HatchStyleBackwardDiagonal;
582 break ;
583 case wxPENSTYLE_CROSSDIAG_HATCH :
584 style = HatchStyleDiagonalCross;
585 break ;
586 case wxPENSTYLE_FDIAGONAL_HATCH :
587 style = HatchStyleForwardDiagonal;
588 break ;
589 case wxPENSTYLE_CROSS_HATCH :
590 style = HatchStyleCross;
591 break ;
592 case wxPENSTYLE_HORIZONTAL_HATCH :
593 style = HatchStyleHorizontal;
594 break ;
595 case wxPENSTYLE_VERTICAL_HATCH :
596 style = HatchStyleVertical;
597 break ;
598
599 }
600 m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() ,
601 pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent );
602 m_pen->SetBrush( m_penBrush )
603 */
604 }
605 break;
606 }
607 }
608
609 void wxCairoPenData::Apply( wxGraphicsContext* context )
610 {
611 cairo_t * ctext = (cairo_t*) context->GetNativeContext();
612 cairo_set_line_width(ctext,m_width);
613 cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha);
614 cairo_set_line_cap(ctext,m_cap);
615 cairo_set_line_join(ctext,m_join);
616 cairo_set_dash(ctext,(double*)m_lengths,m_count,0.0);
617 }
618
619 //-----------------------------------------------------------------------------
620 // wxCairoBrushData implementation
621 //-----------------------------------------------------------------------------
622
623 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer* renderer )
624 : wxGraphicsObjectRefData( renderer )
625 {
626 Init();
627 }
628
629 wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush )
630 : wxGraphicsObjectRefData(renderer)
631 {
632 Init();
633
634 m_red = brush.GetColour().Red()/255.0;
635 m_green = brush.GetColour().Green()/255.0;
636 m_blue = brush.GetColour().Blue()/255.0;
637 m_alpha = brush.GetColour().Alpha()/255.0;
638 /*
639 if ( brush.GetStyle() == wxBRUSHSTYLE_SOLID)
640 {
641 m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
642 brush.GetColour().Green() , brush.GetColour().Blue() ) );
643 }
644 else if ( brush.IsHatch() )
645 {
646 HatchStyle style = HatchStyleHorizontal;
647 switch( brush.GetStyle() )
648 {
649 case wxBRUSHSTYLE_BDIAGONAL_HATCH :
650 style = HatchStyleBackwardDiagonal;
651 break ;
652 case wxBRUSHSTYLE_CROSSDIAG_HATCH :
653 style = HatchStyleDiagonalCross;
654 break ;
655 case wxBRUSHSTYLE_FDIAGONAL_HATCH :
656 style = HatchStyleForwardDiagonal;
657 break ;
658 case wxBRUSHSTYLE_CROSS_HATCH :
659 style = HatchStyleCross;
660 break ;
661 case wxBRUSHSTYLE_HORIZONTAL_HATCH :
662 style = HatchStyleHorizontal;
663 break ;
664 case wxBRUSHSTYLE_VERTICAL_HATCH :
665 style = HatchStyleVertical;
666 break ;
667
668 }
669 m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() ,
670 brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent );
671 }
672 else
673 {
674 wxBitmap* bmp = brush.GetStipple();
675 if ( bmp && bmp->IsOk() )
676 {
677 wxDELETE( m_brushImage );
678 m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE());
679 m_brush = new TextureBrush(m_brushImage);
680 }
681 }
682 */
683 }
684
685 wxCairoBrushData::~wxCairoBrushData ()
686 {
687 if (m_brushPattern)
688 cairo_pattern_destroy(m_brushPattern);
689 }
690
691 void wxCairoBrushData::Apply( wxGraphicsContext* context )
692 {
693 cairo_t * ctext = (cairo_t*) context->GetNativeContext();
694 if ( m_brushPattern )
695 {
696 cairo_set_source(ctext,m_brushPattern);
697 }
698 else
699 {
700 cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha);
701 }
702 }
703
704 void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops& stops)
705 {
706 // loop over all the stops, they include the beginning and ending ones
707 const unsigned numStops = stops.GetCount();
708 for ( unsigned n = 0; n < numStops; n++ )
709 {
710 const wxGraphicsGradientStop stop = stops.Item(n);
711
712 const wxColour col = stop.GetColour();
713
714 cairo_pattern_add_color_stop_rgba
715 (
716 m_brushPattern,
717 stop.GetPosition(),
718 col.Red()/255.0,
719 col.Green()/255.0,
720 col.Blue()/255.0,
721 col.Alpha()/255.0
722 );
723 }
724
725 wxASSERT_MSG(cairo_pattern_status(m_brushPattern) == CAIRO_STATUS_SUCCESS,
726 wxT("Couldn't create cairo pattern"));
727 }
728
729 void
730 wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
731 wxDouble x2, wxDouble y2,
732 const wxGraphicsGradientStops& stops)
733 {
734 m_brushPattern = cairo_pattern_create_linear(x1,y1,x2,y2);
735
736 AddGradientStops(stops);
737 }
738
739 void
740 wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
741 wxDouble xc, wxDouble yc,
742 wxDouble radius,
743 const wxGraphicsGradientStops& stops)
744 {
745 m_brushPattern = cairo_pattern_create_radial(xo,yo,0.0,xc,yc,radius);
746
747 AddGradientStops(stops);
748 }
749
750 void wxCairoBrushData::Init()
751 {
752 m_brushPattern = NULL;
753 }
754
755 //-----------------------------------------------------------------------------
756 // wxCairoFontData implementation
757 //-----------------------------------------------------------------------------
758
759 wxCairoFontData::wxCairoFontData( wxGraphicsRenderer* renderer, const wxFont &font,
760 const wxColour& col ) : wxGraphicsObjectRefData(renderer)
761 {
762 m_red = col.Red()/255.0;
763 m_green = col.Green()/255.0;
764 m_blue = col.Blue()/255.0;
765 m_alpha = col.Alpha()/255.0;
766 m_size = font.GetPointSize();
767 m_underlined = font.GetUnderlined();
768
769 #ifdef __WXMAC__
770 m_font = cairo_quartz_font_face_create_for_cgfont( font.OSXGetCGFont() );
771 #elif defined(__WXGTK__)
772 m_font = pango_font_description_copy( font.GetNativeFontInfo()->description );
773 #else
774 m_fontName = font.GetFaceName().mb_str(wxConvUTF8);
775 m_slant = font.GetStyle() == wxFONTSTYLE_ITALIC ? CAIRO_FONT_SLANT_ITALIC:CAIRO_FONT_SLANT_NORMAL;
776 m_weight = font.GetWeight() == wxFONTWEIGHT_BOLD ? CAIRO_FONT_WEIGHT_BOLD:CAIRO_FONT_WEIGHT_NORMAL;
777 #endif
778 }
779
780 wxCairoFontData::~wxCairoFontData()
781 {
782 #ifdef __WXMAC__
783 cairo_font_face_destroy( m_font );
784 #elif defined(__WXGTK__)
785 pango_font_description_free( m_font );
786 #else
787 #endif
788 }
789
790 void wxCairoFontData::Apply( wxGraphicsContext* context )
791 {
792 cairo_t * ctext = (cairo_t*) context->GetNativeContext();
793 cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha);
794 #ifdef __WXGTK__
795 // the rest is done using Pango layouts
796 #elif defined(__WXMAC__)
797 cairo_set_font_face(ctext, m_font);
798 cairo_set_font_size(ctext, m_size );
799 #else
800 cairo_select_font_face(ctext, m_fontName, m_slant, m_weight );
801 cairo_set_font_size(ctext, m_size );
802 #endif
803 }
804
805 //-----------------------------------------------------------------------------
806 // wxCairoPathData implementation
807 //-----------------------------------------------------------------------------
808
809 wxCairoPathData::wxCairoPathData( wxGraphicsRenderer* renderer, cairo_t* pathcontext)
810 : wxGraphicsPathData(renderer)
811 {
812 if (pathcontext)
813 {
814 m_pathContext = pathcontext;
815 }
816 else
817 {
818 cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,1,1);
819 m_pathContext = cairo_create(surface);
820 cairo_surface_destroy (surface);
821 }
822 }
823
824 wxCairoPathData::~wxCairoPathData()
825 {
826 cairo_destroy(m_pathContext);
827 }
828
829 wxGraphicsObjectRefData *wxCairoPathData::Clone() const
830 {
831 cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,1,1);
832 cairo_t* pathcontext = cairo_create(surface);
833 cairo_surface_destroy (surface);
834
835 cairo_path_t* path = cairo_copy_path(m_pathContext);
836 cairo_append_path(pathcontext, path);
837 cairo_path_destroy(path);
838 return new wxCairoPathData( GetRenderer() ,pathcontext);
839 }
840
841
842 void* wxCairoPathData::GetNativePath() const
843 {
844 return cairo_copy_path(m_pathContext) ;
845 }
846
847 void wxCairoPathData::UnGetNativePath(void *p) const
848 {
849 cairo_path_destroy((cairo_path_t*)p);
850 }
851
852 //
853 // The Primitives
854 //
855
856 void wxCairoPathData::MoveToPoint( wxDouble x , wxDouble y )
857 {
858 cairo_move_to(m_pathContext,x,y);
859 }
860
861 void wxCairoPathData::AddLineToPoint( wxDouble x , wxDouble y )
862 {
863 cairo_line_to(m_pathContext,x,y);
864 }
865
866 void wxCairoPathData::AddPath( const wxGraphicsPathData* path )
867 {
868 cairo_path_t* p = (cairo_path_t*)path->GetNativePath();
869 cairo_append_path(m_pathContext, p);
870 UnGetNativePath(p);
871 }
872
873 void wxCairoPathData::CloseSubpath()
874 {
875 cairo_close_path(m_pathContext);
876 }
877
878 void wxCairoPathData::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y )
879 {
880 cairo_curve_to(m_pathContext,cx1,cy1,cx2,cy2,x,y);
881 }
882
883 // gets the last point of the current path, (0,0) if not yet set
884 void wxCairoPathData::GetCurrentPoint( wxDouble* x, wxDouble* y) const
885 {
886 double dx,dy;
887 cairo_get_current_point(m_pathContext,&dx,&dy);
888 if (x)
889 *x = dx;
890 if (y)
891 *y = dy;
892 }
893
894 void wxCairoPathData::AddArc( wxDouble x, wxDouble y, wxDouble r, double startAngle, double endAngle, bool clockwise )
895 {
896 // as clockwise means positive in our system (y pointing downwards)
897 // TODO make this interpretation dependent of the
898 // real device trans
899 if ( clockwise||(endAngle-startAngle)>=2*M_PI)
900 cairo_arc(m_pathContext,x,y,r,startAngle,endAngle);
901 else
902 cairo_arc_negative(m_pathContext,x,y,r,startAngle,endAngle);
903 }
904
905 // transforms each point of this path by the matrix
906 void wxCairoPathData::Transform( const wxGraphicsMatrixData* matrix )
907 {
908 // as we don't have a true path object, we have to apply the inverse
909 // matrix to the context
910 cairo_matrix_t m = *((cairo_matrix_t*) matrix->GetNativeMatrix());
911 cairo_matrix_invert( &m );
912 cairo_transform(m_pathContext,&m);
913 }
914
915 // gets the bounding box enclosing all points (possibly including control points)
916 void wxCairoPathData::GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const
917 {
918 double x1,y1,x2,y2;
919
920 cairo_stroke_extents( m_pathContext, &x1, &y1, &x2, &y2 );
921 if ( x2 < x1 )
922 {
923 *x = x2;
924 *w = x1-x2;
925 }
926 else
927 {
928 *x = x1;
929 *w = x2-x1;
930 }
931
932 if( y2 < y1 )
933 {
934 *y = y2;
935 *h = y1-y2;
936 }
937 else
938 {
939 *y = y1;
940 *h = y2-y1;
941 }
942 }
943
944 bool wxCairoPathData::Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle ) const
945 {
946 cairo_set_fill_rule(m_pathContext,fillStyle==wxODDEVEN_RULE ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
947 return cairo_in_fill( m_pathContext, x, y) != 0;
948 }
949
950 //-----------------------------------------------------------------------------
951 // wxCairoMatrixData implementation
952 //-----------------------------------------------------------------------------
953
954 wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer* renderer, const cairo_matrix_t* matrix )
955 : wxGraphicsMatrixData(renderer)
956 {
957 if ( matrix )
958 m_matrix = *matrix;
959 }
960
961 wxCairoMatrixData::~wxCairoMatrixData()
962 {
963 // nothing to do
964 }
965
966 wxGraphicsObjectRefData *wxCairoMatrixData::Clone() const
967 {
968 return new wxCairoMatrixData(GetRenderer(),&m_matrix);
969 }
970
971 // concatenates the matrix
972 void wxCairoMatrixData::Concat( const wxGraphicsMatrixData *t )
973 {
974 cairo_matrix_multiply( &m_matrix, &m_matrix, (cairo_matrix_t*) t->GetNativeMatrix());
975 }
976
977 // sets the matrix to the respective values
978 void wxCairoMatrixData::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d,
979 wxDouble tx, wxDouble ty)
980 {
981 cairo_matrix_init( &m_matrix, a, b, c, d, tx, ty);
982 }
983
984 // gets the component valuess of the matrix
985 void wxCairoMatrixData::Get(wxDouble* a, wxDouble* b, wxDouble* c,
986 wxDouble* d, wxDouble* tx, wxDouble* ty) const
987 {
988 if (a) *a = m_matrix.xx;
989 if (b) *b = m_matrix.yx;
990 if (c) *c = m_matrix.xy;
991 if (d) *d = m_matrix.yy;
992 if (tx) *tx= m_matrix.x0;
993 if (ty) *ty= m_matrix.y0;
994 }
995
996 // makes this the inverse matrix
997 void wxCairoMatrixData::Invert()
998 {
999 cairo_matrix_invert( &m_matrix );
1000 }
1001
1002 // returns true if the elements of the transformation matrix are equal ?
1003 bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData* t) const
1004 {
1005 const cairo_matrix_t* tm = (cairo_matrix_t*) t->GetNativeMatrix();
1006 return (
1007 m_matrix.xx == tm->xx &&
1008 m_matrix.yx == tm->yx &&
1009 m_matrix.xy == tm->xy &&
1010 m_matrix.yy == tm->yy &&
1011 m_matrix.x0 == tm->x0 &&
1012 m_matrix.y0 == tm->y0 ) ;
1013 }
1014
1015 // return true if this is the identity matrix
1016 bool wxCairoMatrixData::IsIdentity() const
1017 {
1018 return ( m_matrix.xx == 1 && m_matrix.yy == 1 &&
1019 m_matrix.yx == 0 && m_matrix.xy == 0 && m_matrix.x0 == 0 && m_matrix.y0 == 0);
1020 }
1021
1022 //
1023 // transformation
1024 //
1025
1026 // add the translation to this matrix
1027 void wxCairoMatrixData::Translate( wxDouble dx , wxDouble dy )
1028 {
1029 cairo_matrix_translate( &m_matrix, dx, dy) ;
1030 }
1031
1032 // add the scale to this matrix
1033 void wxCairoMatrixData::Scale( wxDouble xScale , wxDouble yScale )
1034 {
1035 cairo_matrix_scale( &m_matrix, xScale, yScale) ;
1036 }
1037
1038 // add the rotation to this matrix (radians)
1039 void wxCairoMatrixData::Rotate( wxDouble angle )
1040 {
1041 cairo_matrix_rotate( &m_matrix, angle) ;
1042 }
1043
1044 //
1045 // apply the transforms
1046 //
1047
1048 // applies that matrix to the point
1049 void wxCairoMatrixData::TransformPoint( wxDouble *x, wxDouble *y ) const
1050 {
1051 double lx = *x, ly = *y ;
1052 cairo_matrix_transform_point( &m_matrix, &lx, &ly);
1053 *x = lx;
1054 *y = ly;
1055 }
1056
1057 // applies the matrix except for translations
1058 void wxCairoMatrixData::TransformDistance( wxDouble *dx, wxDouble *dy ) const
1059 {
1060 double lx = *dx, ly = *dy ;
1061 cairo_matrix_transform_distance( &m_matrix, &lx, &ly);
1062 *dx = lx;
1063 *dy = ly;
1064 }
1065
1066 // returns the native representation
1067 void * wxCairoMatrixData::GetNativeMatrix() const
1068 {
1069 return (void*) &m_matrix;
1070 }
1071
1072 // wxCairoBitmap implementation
1073 //-----------------------------------------------------------------------------
1074
1075 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer* renderer, cairo_surface_t* bitmap ) :
1076 wxGraphicsObjectRefData( renderer )
1077 {
1078 m_surface = bitmap;
1079 m_pattern = cairo_pattern_create_for_surface(m_surface);
1080 }
1081
1082 wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer* renderer, const wxBitmap& bmp ) : wxGraphicsObjectRefData( renderer )
1083 {
1084 wxCHECK_RET( bmp.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap"));
1085
1086 #ifdef wxHAS_RAW_BITMAP
1087 int bw = m_width = bmp.GetWidth();
1088 int bh = m_height = bmp.GetHeight();
1089 wxBitmap bmpSource = bmp; // we need a non-const instance
1090 m_buffer = new unsigned char[bw*bh*4];
1091 wxUint32* data = (wxUint32*)m_buffer;
1092
1093 // Create a surface object and copy the bitmap pixel data to it. if the
1094 // image has alpha (or a mask represented as alpha) then we'll use a
1095 // different format and iterator than if it doesn't...
1096 if (bmpSource.HasAlpha() || (bmpSource.GetMask()
1097 #ifdef __WXMSW__
1098 // this check is needed under wxMSW, but adding this condition to wxGTK
1099 // causes an assert when getting alpha pixel data, not sure about Mac.
1100 && bmpSource.GetDepth() == 32
1101 #endif
1102 ))
1103 {
1104 m_surface = cairo_image_surface_create_for_data(
1105 m_buffer, CAIRO_FORMAT_ARGB32, bw, bh, bw*4);
1106 wxAlphaPixelData pixData(bmpSource, wxPoint(0,0), wxSize(bw, bh));
1107 wxCHECK_RET( pixData, wxT("Failed to gain raw access to bitmap data."));
1108
1109 wxAlphaPixelData::Iterator p(pixData);
1110 for (int y=0; y<bh; y++)
1111 {
1112 wxAlphaPixelData::Iterator rowStart = p;
1113 for (int x=0; x<bw; x++)
1114 {
1115 // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity,
1116 // with alpha in the upper 8 bits, then red, then green, then
1117 // blue. The 32-bit quantities are stored native-endian.
1118 // Pre-multiplied alpha is used.
1119 unsigned char alpha = p.Alpha();
1120 if (alpha == 0)
1121 *data = 0;
1122 else
1123 *data = ( alpha << 24
1124 | (p.Red() * alpha/255) << 16
1125 | (p.Green() * alpha/255) << 8
1126 | (p.Blue() * alpha/255) );
1127 ++data;
1128 ++p;
1129 }
1130 p = rowStart;
1131 p.OffsetY(pixData, 1);
1132 }
1133 }
1134 else // no alpha
1135 {
1136 m_surface = cairo_image_surface_create_for_data(
1137 m_buffer, CAIRO_FORMAT_RGB24, bw, bh, bw*4);
1138 wxNativePixelData pixData(bmpSource, wxPoint(0,0), wxSize(bw, bh));
1139 wxCHECK_RET( pixData, wxT("Failed to gain raw access to bitmap data."));
1140
1141 wxNativePixelData::Iterator p(pixData);
1142 for (int y=0; y<bh; y++)
1143 {
1144 wxNativePixelData::Iterator rowStart = p;
1145 for (int x=0; x<bw; x++)
1146 {
1147 // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with
1148 // the upper 8 bits unused. Red, Green, and Blue are stored in
1149 // the remaining 24 bits in that order. The 32-bit quantities
1150 // are stored native-endian.
1151 *data = ( p.Red() << 16 | p.Green() << 8 | p.Blue() );
1152 ++data;
1153 ++p;
1154 }
1155 p = rowStart;
1156 p.OffsetY(pixData, 1);
1157 }
1158 }
1159 m_pattern = cairo_pattern_create_for_surface(m_surface);
1160 #endif // wxHAS_RAW_BITMAP
1161 }
1162
1163 wxCairoBitmapData::~wxCairoBitmapData()
1164 {
1165 if (m_pattern)
1166 cairo_pattern_destroy(m_pattern);
1167
1168 if (m_surface)
1169 cairo_surface_destroy(m_surface);
1170
1171 delete [] m_buffer;
1172 }
1173
1174
1175
1176 //-----------------------------------------------------------------------------
1177 // wxCairoContext implementation
1178 //-----------------------------------------------------------------------------
1179
1180 class wxCairoOffsetHelper
1181 {
1182 public :
1183 wxCairoOffsetHelper( cairo_t* ctx , bool offset )
1184 {
1185 m_ctx = ctx;
1186 m_offset = offset;
1187 if ( m_offset )
1188 cairo_translate( m_ctx, 0.5, 0.5 );
1189 }
1190 ~wxCairoOffsetHelper( )
1191 {
1192 if ( m_offset )
1193 cairo_translate( m_ctx, -0.5, -0.5 );
1194 }
1195 public :
1196 cairo_t* m_ctx;
1197 bool m_offset;
1198 } ;
1199
1200 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxPrinterDC& dc )
1201 : wxGraphicsContext(renderer)
1202 {
1203 #ifdef __WXMSW__
1204 // wxMSW contexts always use MM_ANISOTROPIC, which messes up
1205 // text rendering when printing using Cairo. Switch it to MM_TEXT
1206 // map mode to avoid this problem.
1207 HDC hdc = (HDC)dc.GetHDC();
1208 ::SetMapMode(hdc, MM_TEXT);
1209 m_mswSurface = cairo_win32_printing_surface_create(hdc);
1210 Init( cairo_create(m_mswSurface) );
1211 #endif
1212
1213 #ifdef __WXGTK20__
1214 const wxDCImpl *impl = dc.GetImpl();
1215 Init( (cairo_t*) impl->GetCairoContext() );
1216 #endif
1217 wxSize sz = dc.GetSize();
1218 m_width = sz.x;
1219 m_height = sz.y;
1220
1221 wxPoint org = dc.GetDeviceOrigin();
1222 cairo_translate( m_context, org.x, org.y );
1223
1224 double sx,sy;
1225 dc.GetUserScale( &sx, &sy );
1226
1227 // TODO: Determine if these fixes are needed on other platforms too.
1228 // On MSW, without this the printer context will not respect wxDC SetMapMode calls.
1229 // For example, using dc.SetMapMode(wxMM_POINTS) can let us share printer and screen
1230 // drawing code
1231 #ifdef __WXMSW__
1232 double lsx,lsy;
1233 dc.GetLogicalScale( &lsx, &lsy );
1234 sx *= lsx;
1235 sy *= lsy;
1236 #endif
1237 cairo_scale( m_context, sx, sy );
1238
1239 org = dc.GetLogicalOrigin();
1240 cairo_translate( m_context, -org.x, -org.y );
1241 }
1242
1243 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxWindowDC& dc )
1244 : wxGraphicsContext(renderer)
1245 {
1246 int width, height;
1247 dc.GetSize( &width, &height );
1248 m_width = width;
1249 m_height = height;
1250
1251 m_enableOffset = true;
1252
1253 #ifdef __WXMSW__
1254 m_mswSurface = cairo_win32_surface_create((HDC)dc.GetHDC());
1255 Init( cairo_create(m_mswSurface) );
1256 #endif
1257
1258 #ifdef __WXGTK20__
1259 wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl();
1260 Init( gdk_cairo_create( impldc->GetGDKWindow() ) );
1261
1262 #if 0
1263 wxGraphicsMatrix matrix = CreateMatrix();
1264
1265 wxPoint org = dc.GetDeviceOrigin();
1266 matrix.Translate( org.x, org.y );
1267
1268 org = dc.GetLogicalOrigin();
1269 matrix.Translate( -org.x, -org.y );
1270
1271 double sx,sy;
1272 dc.GetUserScale( &sx, &sy );
1273 matrix.Scale( sx, sy );
1274
1275 ConcatTransform( matrix );
1276 #endif
1277 #endif
1278
1279 #ifdef __WXMAC__
1280 CGContextRef cgcontext = (CGContextRef)dc.GetWindow()->MacGetCGContextRef();
1281 cairo_surface_t* surface = cairo_quartz_surface_create_for_cg_context(cgcontext, width, height);
1282 Init( cairo_create( surface ) );
1283 cairo_surface_destroy( surface );
1284 #endif
1285 }
1286
1287 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxMemoryDC& dc )
1288 : wxGraphicsContext(renderer)
1289 {
1290 int width, height;
1291 dc.GetSize( &width, &height );
1292 m_width = width;
1293 m_height = height;
1294
1295 m_enableOffset = true;
1296
1297 #ifdef __WXMSW__
1298 m_mswSurface = cairo_win32_surface_create((HDC)dc.GetHDC());
1299 Init( cairo_create(m_mswSurface) );
1300 #endif
1301
1302 #ifdef __WXGTK20__
1303 wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl();
1304 Init( gdk_cairo_create( impldc->GetGDKWindow() ) );
1305
1306 #if 0
1307 wxGraphicsMatrix matrix = CreateMatrix();
1308
1309 wxPoint org = dc.GetDeviceOrigin();
1310 matrix.Translate( org.x, org.y );
1311
1312 org = dc.GetLogicalOrigin();
1313 matrix.Translate( -org.x, -org.y );
1314
1315 double sx,sy;
1316 dc.GetUserScale( &sx, &sy );
1317 matrix.Scale( sx, sy );
1318
1319 ConcatTransform( matrix );
1320 #endif
1321 #endif
1322
1323 #ifdef __WXMAC__
1324 CGContextRef cgcontext = (CGContextRef)dc.GetWindow()->MacGetCGContextRef();
1325 cairo_surface_t* surface = cairo_quartz_surface_create_for_cg_context(cgcontext, width, height);
1326 Init( cairo_create( surface ) );
1327 cairo_surface_destroy( surface );
1328 #endif
1329 }
1330
1331 #ifdef __WXGTK20__
1332 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, GdkDrawable *drawable )
1333 : wxGraphicsContext(renderer)
1334 {
1335 Init( gdk_cairo_create( drawable ) );
1336
1337 int width, height;
1338 gdk_drawable_get_size( drawable, &width, &height );
1339 m_width = width;
1340 m_height = height;
1341 }
1342 #endif
1343
1344 #ifdef __WXMSW__
1345 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, HDC handle )
1346 : wxGraphicsContext(renderer)
1347 {
1348 m_mswSurface = cairo_win32_surface_create(handle);
1349 Init( cairo_create(m_mswSurface) );
1350 m_width =
1351 m_height = 0;
1352 }
1353 #endif
1354
1355
1356 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, cairo_t *context )
1357 : wxGraphicsContext(renderer)
1358 {
1359 Init( context );
1360 m_width =
1361 m_height = 0;
1362 }
1363
1364 wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, wxWindow *window)
1365 : wxGraphicsContext(renderer)
1366 {
1367 m_enableOffset = true;
1368 #ifdef __WXGTK__
1369 // something along these lines (copied from dcclient)
1370
1371 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
1372 // code should still be able to create wxClientDCs for them, so we will
1373 // use the parent window here then.
1374 if (window->m_wxwindow == NULL)
1375 {
1376 window = window->GetParent();
1377 }
1378
1379 wxASSERT_MSG( window->m_wxwindow, wxT("wxCairoContext needs a widget") );
1380
1381 Init(gdk_cairo_create(window->GTKGetDrawingWindow()));
1382
1383 wxSize sz = window->GetSize();
1384 m_width = sz.x;
1385 m_height = sz.y;
1386 #endif
1387
1388 #ifdef __WXMSW__
1389 m_mswSurface = cairo_win32_surface_create((HDC)window->GetHandle());
1390 Init(cairo_create(m_mswSurface));
1391 #endif
1392
1393 }
1394
1395 wxCairoContext::~wxCairoContext()
1396 {
1397 if ( m_context )
1398 {
1399 PopState();
1400 PopState();
1401 cairo_destroy(m_context);
1402 }
1403 #ifdef __WXMSW__
1404 if ( m_mswSurface )
1405 cairo_surface_destroy(m_mswSurface);
1406 #endif
1407 }
1408
1409 void wxCairoContext::Init(cairo_t *context)
1410 {
1411 m_context = context ;
1412 PushState();
1413 PushState();
1414 }
1415
1416
1417 void wxCairoContext::Clip( const wxRegion& region )
1418 {
1419 // Create a path with all the rectangles in the region
1420 wxGraphicsPath path = GetRenderer()->CreatePath();
1421 wxRegionIterator ri(region);
1422 while (ri)
1423 {
1424 path.AddRectangle(ri.GetX(), ri.GetY(), ri.GetW(), ri.GetH());
1425 ++ri;
1426 }
1427
1428 // Put it in the context
1429 cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ;
1430 cairo_append_path(m_context, cp);
1431
1432 // clip to that path
1433 cairo_clip(m_context);
1434 path.UnGetNativePath(cp);
1435 }
1436
1437 void wxCairoContext::Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1438 {
1439 // Create a path with this rectangle
1440 wxGraphicsPath path = GetRenderer()->CreatePath();
1441 path.AddRectangle(x,y,w,h);
1442
1443 // Put it in the context
1444 cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ;
1445 cairo_append_path(m_context, cp);
1446
1447 // clip to that path
1448 cairo_clip(m_context);
1449 path.UnGetNativePath(cp);
1450 }
1451
1452 void wxCairoContext::ResetClip()
1453 {
1454 cairo_reset_clip(m_context);
1455 }
1456
1457
1458 void wxCairoContext::StrokePath( const wxGraphicsPath& path )
1459 {
1460 if ( !m_pen.IsNull() )
1461 {
1462 wxCairoOffsetHelper helper( m_context, ShouldOffset() ) ;
1463 cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ;
1464 cairo_append_path(m_context,cp);
1465 ((wxCairoPenData*)m_pen.GetRefData())->Apply(this);
1466 cairo_stroke(m_context);
1467 path.UnGetNativePath(cp);
1468 }
1469 }
1470
1471 void wxCairoContext::FillPath( const wxGraphicsPath& path , wxPolygonFillMode fillStyle )
1472 {
1473 if ( !m_brush.IsNull() )
1474 {
1475 wxCairoOffsetHelper helper( m_context, ShouldOffset() ) ;
1476 cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ;
1477 cairo_append_path(m_context,cp);
1478 ((wxCairoBrushData*)m_brush.GetRefData())->Apply(this);
1479 cairo_set_fill_rule(m_context,fillStyle==wxODDEVEN_RULE ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
1480 cairo_fill(m_context);
1481 path.UnGetNativePath(cp);
1482 }
1483 }
1484
1485 void wxCairoContext::Rotate( wxDouble angle )
1486 {
1487 cairo_rotate(m_context,angle);
1488 }
1489
1490 void wxCairoContext::Translate( wxDouble dx , wxDouble dy )
1491 {
1492 cairo_translate(m_context,dx,dy);
1493 }
1494
1495 void wxCairoContext::Scale( wxDouble xScale , wxDouble yScale )
1496 {
1497 cairo_scale(m_context,xScale,yScale);
1498 }
1499
1500 // concatenates this transform with the current transform of this context
1501 void wxCairoContext::ConcatTransform( const wxGraphicsMatrix& matrix )
1502 {
1503 cairo_transform(m_context,(const cairo_matrix_t *) matrix.GetNativeMatrix());
1504 }
1505
1506 // sets the transform of this context
1507 void wxCairoContext::SetTransform( const wxGraphicsMatrix& matrix )
1508 {
1509 cairo_set_matrix(m_context,(const cairo_matrix_t*) matrix.GetNativeMatrix());
1510 }
1511
1512 // gets the matrix of this context
1513 wxGraphicsMatrix wxCairoContext::GetTransform() const
1514 {
1515 wxGraphicsMatrix matrix = CreateMatrix();
1516 cairo_get_matrix(m_context,(cairo_matrix_t*) matrix.GetNativeMatrix());
1517 return matrix;
1518 }
1519
1520
1521
1522 void wxCairoContext::PushState()
1523 {
1524 cairo_save(m_context);
1525 }
1526
1527 void wxCairoContext::PopState()
1528 {
1529 cairo_restore(m_context);
1530 }
1531
1532 void wxCairoContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1533 {
1534 wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp);
1535 DrawBitmap(bitmap, x, y, w, h);
1536
1537 }
1538
1539 void wxCairoContext::DrawBitmap(const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1540 {
1541 PushState();
1542
1543 // In case we're scaling the image by using a width and height different
1544 // than the bitmap's size create a pattern transformation on the surface and
1545 // draw the transformed pattern.
1546 wxCairoBitmapData* data = static_cast<wxCairoBitmapData*>(bmp.GetRefData());
1547 cairo_pattern_t* pattern = data->GetCairoPattern();
1548 wxSize size = data->GetSize();
1549
1550 wxDouble scaleX = w / size.GetWidth();
1551 wxDouble scaleY = h / size.GetHeight();
1552
1553 // prepare to draw the image
1554 cairo_translate(m_context, x, y);
1555 cairo_scale(m_context, scaleX, scaleY);
1556 cairo_set_source(m_context, pattern);
1557 // use the original size here since the context is scaled already...
1558 cairo_rectangle(m_context, 0, 0, size.GetWidth(), size.GetHeight());
1559 // fill the rectangle using the pattern
1560 cairo_fill(m_context);
1561
1562 PopState();
1563 }
1564
1565 void wxCairoContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1566 {
1567 // An icon is a bitmap on wxGTK, so do this the easy way. When we want to
1568 // start using the Cairo backend on other platforms then we may need to
1569 // fiddle with this...
1570 DrawBitmap(icon, x, y, w, h);
1571 }
1572
1573
1574 void wxCairoContext::DoDrawText(const wxString& str, wxDouble x, wxDouble y)
1575 {
1576 wxCHECK_RET( !m_font.IsNull(),
1577 wxT("wxCairoContext::DrawText - no valid font set") );
1578
1579 if ( str.empty())
1580 return;
1581
1582 const wxCharBuffer data = str.utf8_str();
1583 if ( !data )
1584 return;
1585
1586 ((wxCairoFontData*)m_font.GetRefData())->Apply(this);
1587
1588 #ifdef __WXGTK__
1589 size_t datalen = strlen(data);
1590
1591 PangoLayout *layout = pango_cairo_create_layout (m_context);
1592 wxCairoFontData* font_data = (wxCairoFontData*) m_font.GetRefData();
1593 pango_layout_set_font_description( layout, font_data->GetFont());
1594 pango_layout_set_text(layout, data, datalen);
1595
1596 if (font_data->GetUnderlined())
1597 {
1598 PangoAttrList *attrs = pango_attr_list_new();
1599 PangoAttribute *attr = pango_attr_underline_new(PANGO_UNDERLINE_SINGLE);
1600 pango_attr_list_insert(attrs, attr);
1601 pango_layout_set_attributes(layout, attrs);
1602 pango_attr_list_unref(attrs);
1603 }
1604
1605 cairo_move_to(m_context, x, y);
1606 pango_cairo_show_layout (m_context, layout);
1607
1608 g_object_unref (layout);
1609 #else
1610 // Cairo's x,y for drawing text is at the baseline, so we need to adjust
1611 // the position we move to by the ascent.
1612 cairo_font_extents_t fe;
1613 cairo_font_extents(m_context, &fe);
1614 cairo_move_to(m_context, x, y+fe.ascent);
1615
1616 cairo_show_text(m_context, data);
1617 #endif
1618 }
1619
1620 void wxCairoContext::GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height,
1621 wxDouble *descent, wxDouble *externalLeading ) const
1622 {
1623 wxCHECK_RET( !m_font.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") );
1624
1625 if ( width )
1626 *width = 0;
1627 if ( height )
1628 *height = 0;
1629 if ( descent )
1630 *descent = 0;
1631 if ( externalLeading )
1632 *externalLeading = 0;
1633
1634 if ( str.empty())
1635 return;
1636
1637 #ifdef __WXGTK__
1638 int w, h;
1639
1640 PangoLayout *layout = pango_cairo_create_layout (m_context);
1641 pango_layout_set_font_description( layout, ((wxCairoFontData*)m_font.GetRefData())->GetFont());
1642 const wxCharBuffer data = str.utf8_str();
1643 if ( !data )
1644 {
1645 return;
1646 }
1647 pango_layout_set_text( layout, data, strlen(data) );
1648 pango_layout_get_pixel_size (layout, &w, &h);
1649 if ( width )
1650 *width = w;
1651 if ( height )
1652 *height = h;
1653 if (descent)
1654 {
1655 PangoLayoutIter *iter = pango_layout_get_iter(layout);
1656 int baseline = pango_layout_iter_get_baseline(iter);
1657 pango_layout_iter_free(iter);
1658 *descent = h - PANGO_PIXELS(baseline);
1659 }
1660 g_object_unref (layout);
1661 #else
1662 ((wxCairoFontData*)m_font.GetRefData())->Apply((wxCairoContext*)this);
1663
1664 if (width)
1665 {
1666 const wxWX2MBbuf buf(str.mb_str(wxConvUTF8));
1667 cairo_text_extents_t te;
1668 cairo_text_extents(m_context, buf, &te);
1669 *width = te.width;
1670 }
1671
1672 if (height || descent || externalLeading)
1673 {
1674 cairo_font_extents_t fe;
1675 cairo_font_extents(m_context, &fe);
1676
1677 // some backends have negative descents
1678
1679 if ( fe.descent < 0 )
1680 fe.descent = -fe.descent;
1681
1682 if ( fe.height < (fe.ascent + fe.descent ) )
1683 {
1684 // some backends are broken re height ... (eg currently ATSUI)
1685 fe.height = fe.ascent + fe.descent;
1686 }
1687
1688 if (height)
1689 *height = fe.height;
1690 if ( descent )
1691 *descent = fe.descent;
1692 if ( externalLeading )
1693 *externalLeading = wxMax(0, fe.height - (fe.ascent + fe.descent));
1694 }
1695 #endif
1696 }
1697
1698 void wxCairoContext::GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const
1699 {
1700 widths.Empty();
1701 widths.Add(0, text.length());
1702
1703 wxCHECK_RET( !m_font.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") );
1704
1705 if (text.empty())
1706 return;
1707
1708 // TODO
1709 }
1710
1711 void * wxCairoContext::GetNativeContext()
1712 {
1713 return m_context;
1714 }
1715
1716 bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias)
1717 {
1718 if (m_antialias == antialias)
1719 return true;
1720
1721 m_antialias = antialias;
1722
1723 cairo_antialias_t antialiasMode;
1724 switch (antialias)
1725 {
1726 case wxANTIALIAS_DEFAULT:
1727 antialiasMode = CAIRO_ANTIALIAS_DEFAULT;
1728 break;
1729 case wxANTIALIAS_NONE:
1730 antialiasMode = CAIRO_ANTIALIAS_NONE;
1731 break;
1732 default:
1733 return false;
1734 }
1735 cairo_set_antialias(m_context, antialiasMode);
1736 return true;
1737 }
1738
1739 bool wxCairoContext::SetInterpolationQuality(wxInterpolationQuality WXUNUSED(interpolation))
1740 {
1741 // placeholder
1742 return false;
1743 }
1744
1745 bool wxCairoContext::SetCompositionMode(wxCompositionMode op)
1746 {
1747 if ( m_composition == op )
1748 return true;
1749
1750 m_composition = op;
1751 cairo_operator_t cop;
1752 switch (op)
1753 {
1754 case wxCOMPOSITION_CLEAR:
1755 cop = CAIRO_OPERATOR_CLEAR;
1756 break;
1757 case wxCOMPOSITION_SOURCE:
1758 cop = CAIRO_OPERATOR_SOURCE;
1759 break;
1760 case wxCOMPOSITION_OVER:
1761 cop = CAIRO_OPERATOR_OVER;
1762 break;
1763 case wxCOMPOSITION_IN:
1764 cop = CAIRO_OPERATOR_IN;
1765 break;
1766 case wxCOMPOSITION_OUT:
1767 cop = CAIRO_OPERATOR_OUT;
1768 break;
1769 case wxCOMPOSITION_ATOP:
1770 cop = CAIRO_OPERATOR_ATOP;
1771 break;
1772 case wxCOMPOSITION_DEST:
1773 cop = CAIRO_OPERATOR_DEST;
1774 break;
1775 case wxCOMPOSITION_DEST_OVER:
1776 cop = CAIRO_OPERATOR_DEST_OVER;
1777 break;
1778 case wxCOMPOSITION_DEST_IN:
1779 cop = CAIRO_OPERATOR_DEST_IN;
1780 break;
1781 case wxCOMPOSITION_DEST_OUT:
1782 cop = CAIRO_OPERATOR_DEST_OUT;
1783 break;
1784 case wxCOMPOSITION_DEST_ATOP:
1785 cop = CAIRO_OPERATOR_DEST_ATOP;
1786 break;
1787 case wxCOMPOSITION_XOR:
1788 cop = CAIRO_OPERATOR_XOR;
1789 break;
1790 case wxCOMPOSITION_ADD:
1791 cop = CAIRO_OPERATOR_ADD;
1792 break;
1793 default:
1794 return false;
1795 }
1796 cairo_set_operator(m_context, cop);
1797 return true;
1798 }
1799
1800 void wxCairoContext::BeginLayer(wxDouble opacity)
1801 {
1802 m_layerOpacities.push_back(opacity);
1803 cairo_push_group(m_context);
1804 }
1805
1806 void wxCairoContext::EndLayer()
1807 {
1808 float opacity = m_layerOpacities.back();
1809 m_layerOpacities.pop_back();
1810 cairo_pop_group_to_source(m_context);
1811 cairo_paint_with_alpha(m_context,opacity);
1812 }
1813
1814 //-----------------------------------------------------------------------------
1815 // wxCairoRenderer declaration
1816 //-----------------------------------------------------------------------------
1817
1818 class WXDLLIMPEXP_CORE wxCairoRenderer : public wxGraphicsRenderer
1819 {
1820 public :
1821 wxCairoRenderer() {}
1822
1823 virtual ~wxCairoRenderer() {}
1824
1825 // Context
1826
1827 virtual wxGraphicsContext * CreateContext( const wxWindowDC& dc);
1828 virtual wxGraphicsContext * CreateContext( const wxMemoryDC& dc);
1829 virtual wxGraphicsContext * CreateContext( const wxPrinterDC& dc);
1830
1831 virtual wxGraphicsContext * CreateContextFromNativeContext( void * context );
1832
1833 virtual wxGraphicsContext * CreateContextFromNativeWindow( void * window );
1834
1835 virtual wxGraphicsContext * CreateContext( wxWindow* window );
1836
1837 virtual wxGraphicsContext * CreateMeasuringContext();
1838 #ifdef __WXMSW__
1839 #if wxUSE_ENH_METAFILE
1840 virtual wxGraphicsContext * CreateContext( const wxEnhMetaFileDC& dc);
1841 #endif
1842 #endif
1843 // Path
1844
1845 virtual wxGraphicsPath CreatePath();
1846
1847 // Matrix
1848
1849 virtual wxGraphicsMatrix CreateMatrix( wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0,
1850 wxDouble tx=0.0, wxDouble ty=0.0);
1851
1852
1853 virtual wxGraphicsPen CreatePen(const wxPen& pen) ;
1854
1855 virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ;
1856
1857 virtual wxGraphicsBrush
1858 CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
1859 wxDouble x2, wxDouble y2,
1860 const wxGraphicsGradientStops& stops);
1861
1862 virtual wxGraphicsBrush
1863 CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
1864 wxDouble xc, wxDouble yc,
1865 wxDouble radius,
1866 const wxGraphicsGradientStops& stops);
1867
1868 // sets the font
1869 virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ) ;
1870
1871 // create a native bitmap representation
1872 virtual wxGraphicsBitmap CreateBitmap( const wxBitmap &bitmap );
1873
1874 // create a graphics bitmap from a native bitmap
1875 virtual wxGraphicsBitmap CreateBitmapFromNativeBitmap( void* bitmap );
1876
1877 // create a subimage from a native image representation
1878 virtual wxGraphicsBitmap CreateSubBitmap( const wxGraphicsBitmap &bitmap, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1879
1880 protected :
1881 bool EnsureIsLoaded();
1882 void Load();
1883 void Unload();
1884 friend class wxCairoModule;
1885 private :
1886 int m_loaded;
1887 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer)
1888 } ;
1889
1890 //-----------------------------------------------------------------------------
1891 // wxCairoRenderer implementation
1892 //-----------------------------------------------------------------------------
1893
1894 IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer,wxGraphicsRenderer)
1895
1896 static wxCairoRenderer gs_cairoGraphicsRenderer;
1897 // temporary hack to allow creating a cairo context on any platform
1898 extern wxGraphicsRenderer* gCairoRenderer;
1899 wxGraphicsRenderer* gCairoRenderer = &gs_cairoGraphicsRenderer;
1900
1901 bool wxCairoRenderer::EnsureIsLoaded()
1902 {
1903 #ifndef __WXGTK__
1904 Load();
1905 return wxCairoInit();
1906 #else
1907 return true;
1908 #endif
1909 }
1910
1911 void wxCairoRenderer::Load()
1912 {
1913 wxCairoInit();
1914 }
1915
1916 void wxCairoRenderer::Unload()
1917 {
1918 wxCairoCleanUp();
1919 }
1920
1921 // call EnsureIsLoaded() and return returnOnFail value if it fails
1922 #define ENSURE_LOADED_OR_RETURN(returnOnFail) \
1923 if ( !EnsureIsLoaded() ) \
1924 return (returnOnFail)
1925
1926 wxGraphicsContext * wxCairoRenderer::CreateContext( const wxWindowDC& dc)
1927 {
1928 ENSURE_LOADED_OR_RETURN(NULL);
1929 return new wxCairoContext(this,dc);
1930 }
1931
1932 wxGraphicsContext * wxCairoRenderer::CreateContext( const wxMemoryDC& dc)
1933 {
1934 ENSURE_LOADED_OR_RETURN(NULL);
1935 return new wxCairoContext(this,dc);
1936 }
1937
1938 wxGraphicsContext * wxCairoRenderer::CreateContext( const wxPrinterDC& dc)
1939 {
1940 ENSURE_LOADED_OR_RETURN(NULL);
1941 #ifdef __WXGTK20__
1942 const wxDCImpl *impl = dc.GetImpl();
1943 cairo_t* context = (cairo_t*) impl->GetCairoContext();
1944 if (context)
1945 return new wxCairoContext(this,dc);
1946 else
1947 #endif
1948 return new wxCairoContext(this,dc);
1949 }
1950
1951 #ifdef __WXMSW__
1952 #if wxUSE_ENH_METAFILE
1953 wxGraphicsContext * wxCairoRenderer::CreateContext( const wxEnhMetaFileDC& WXUNUSED(dc) )
1954 {
1955 ENSURE_LOADED_OR_RETURN(NULL);
1956 return NULL;
1957 }
1958 #endif
1959 #endif
1960
1961 wxGraphicsContext * wxCairoRenderer::CreateContextFromNativeContext( void * context )
1962 {
1963 ENSURE_LOADED_OR_RETURN(NULL);
1964 #ifdef __WXMSW__
1965 return new wxCairoContext(this,(HDC)context);
1966 #else
1967 return new wxCairoContext(this,(cairo_t*)context);
1968 #endif
1969 }
1970
1971
1972 wxGraphicsContext * wxCairoRenderer::CreateContextFromNativeWindow( void * window )
1973 {
1974 ENSURE_LOADED_OR_RETURN(NULL);
1975 #ifdef __WXGTK__
1976 return new wxCairoContext(this,(GdkDrawable*)window);
1977 #else
1978 wxUnusedVar(window);
1979 return NULL;
1980 #endif
1981 }
1982
1983 wxGraphicsContext * wxCairoRenderer::CreateMeasuringContext()
1984 {
1985 ENSURE_LOADED_OR_RETURN(NULL);
1986 #ifdef __WXGTK__
1987 return CreateContextFromNativeWindow(gdk_get_default_root_window());
1988 #endif
1989 return NULL;
1990 // TODO
1991 }
1992
1993 wxGraphicsContext * wxCairoRenderer::CreateContext( wxWindow* window )
1994 {
1995 ENSURE_LOADED_OR_RETURN(NULL);
1996 return new wxCairoContext(this, window );
1997 }
1998
1999 // Path
2000
2001 wxGraphicsPath wxCairoRenderer::CreatePath()
2002 {
2003 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath);
2004 wxGraphicsPath path;
2005 path.SetRefData( new wxCairoPathData(this) );
2006 return path;
2007 }
2008
2009
2010 // Matrix
2011
2012 wxGraphicsMatrix wxCairoRenderer::CreateMatrix( wxDouble a, wxDouble b, wxDouble c, wxDouble d,
2013 wxDouble tx, wxDouble ty)
2014
2015 {
2016 ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix);
2017 wxGraphicsMatrix m;
2018 wxCairoMatrixData* data = new wxCairoMatrixData( this );
2019 data->Set( a,b,c,d,tx,ty ) ;
2020 m.SetRefData(data);
2021 return m;
2022 }
2023
2024 wxGraphicsPen wxCairoRenderer::CreatePen(const wxPen& pen)
2025 {
2026 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen);
2027 if ( !pen.IsOk() || pen.GetStyle() == wxPENSTYLE_TRANSPARENT )
2028 return wxNullGraphicsPen;
2029 else
2030 {
2031 wxGraphicsPen p;
2032 p.SetRefData(new wxCairoPenData( this, pen ));
2033 return p;
2034 }
2035 }
2036
2037 wxGraphicsBrush wxCairoRenderer::CreateBrush(const wxBrush& brush )
2038 {
2039 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush);
2040 if ( !brush.IsOk() || brush.GetStyle() == wxBRUSHSTYLE_TRANSPARENT )
2041 return wxNullGraphicsBrush;
2042 else
2043 {
2044 wxGraphicsBrush p;
2045 p.SetRefData(new wxCairoBrushData( this, brush ));
2046 return p;
2047 }
2048 }
2049
2050 wxGraphicsBrush
2051 wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
2052 wxDouble x2, wxDouble y2,
2053 const wxGraphicsGradientStops& stops)
2054 {
2055 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush);
2056 wxGraphicsBrush p;
2057 wxCairoBrushData* d = new wxCairoBrushData( this );
2058 d->CreateLinearGradientBrush(x1, y1, x2, y2, stops);
2059 p.SetRefData(d);
2060 return p;
2061 }
2062
2063 wxGraphicsBrush
2064 wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
2065 wxDouble xc, wxDouble yc, wxDouble r,
2066 const wxGraphicsGradientStops& stops)
2067 {
2068 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush);
2069 wxGraphicsBrush p;
2070 wxCairoBrushData* d = new wxCairoBrushData( this );
2071 d->CreateRadialGradientBrush(xo, yo, xc, yc, r, stops);
2072 p.SetRefData(d);
2073 return p;
2074 }
2075
2076 // sets the font
2077 wxGraphicsFont wxCairoRenderer::CreateFont( const wxFont &font , const wxColour &col )
2078 {
2079 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont);
2080 if ( font.IsOk() )
2081 {
2082 wxGraphicsFont p;
2083 p.SetRefData(new wxCairoFontData( this , font, col ));
2084 return p;
2085 }
2086 else
2087 return wxNullGraphicsFont;
2088 }
2089
2090 wxGraphicsBitmap wxCairoRenderer::CreateBitmap( const wxBitmap& bmp )
2091 {
2092 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap);
2093 if ( bmp.IsOk() )
2094 {
2095 wxGraphicsBitmap p;
2096 p.SetRefData(new wxCairoBitmapData( this , bmp ));
2097 return p;
2098 }
2099 else
2100 return wxNullGraphicsBitmap;
2101 }
2102
2103 wxGraphicsBitmap wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap )
2104 {
2105 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap);
2106 if ( bitmap != NULL )
2107 {
2108 wxGraphicsBitmap p;
2109 p.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t*) bitmap ));
2110 return p;
2111 }
2112 else
2113 return wxNullGraphicsBitmap;
2114 }
2115
2116 wxGraphicsBitmap
2117 wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap& WXUNUSED(bitmap),
2118 wxDouble WXUNUSED(x),
2119 wxDouble WXUNUSED(y),
2120 wxDouble WXUNUSED(w),
2121 wxDouble WXUNUSED(h))
2122 {
2123 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap);
2124 wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented.");
2125 return wxNullGraphicsBitmap;
2126 }
2127
2128 wxGraphicsRenderer* wxGraphicsRenderer::GetCairoRenderer()
2129 {
2130 return &gs_cairoGraphicsRenderer;
2131 }
2132
2133 #else // !wxUSE_CAIRO
2134
2135 wxGraphicsRenderer* wxGraphicsRenderer::GetCairoRenderer()
2136 {
2137 return NULL;
2138 }
2139
2140 #endif // wxUSE_CAIRO/!wxUSE_CAIRO
2141
2142 // MSW and OS X have their own native default renderers, but the other ports
2143 // use Cairo by default
2144 #if !(defined(__WXMSW__) || defined(__WXOSX__))
2145 wxGraphicsRenderer* wxGraphicsRenderer::GetDefaultRenderer()
2146 {
2147 return GetCairoRenderer();
2148 }
2149 #endif // !(__WXMSW__ || __WXOSX__)
2150
2151 #endif // wxUSE_GRAPHICS_CONTEXT