]>
Commit | Line | Data |
---|---|---|
184fc6c8 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/generic/graphicc.cpp | |
3 | // Purpose: cairo device context class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
e0876d73 | 6 | // Created: 2006-10-03 |
184fc6c8 | 7 | // RCS-ID: $Id$ |
e0876d73 | 8 | // Copyright: (c) 2006 Stefan Csomor |
184fc6c8 SC |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
184fc6c8 | 14 | #ifdef __BORLANDC__ |
7f0d0111 | 15 | #pragma hdrstop |
184fc6c8 SC |
16 | #endif |
17 | ||
9a67941f | 18 | #if wxUSE_GRAPHICS_CONTEXT |
c0e69d72 | 19 | |
6c99dbd5 | 20 | #include "wx/graphics.h" |
9a67941f VZ |
21 | |
22 | #if wxUSE_CAIRO | |
23 | ||
932d0768 RD |
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 | ||
6c99dbd5 VZ |
28 | #include "wx/cairo.h" |
29 | ||
184fc6c8 | 30 | #ifndef WX_PRECOMP |
7f0d0111 VZ |
31 | #include "wx/bitmap.h" |
32 | #include "wx/icon.h" | |
7f0d0111 VZ |
33 | #include "wx/dcclient.h" |
34 | #include "wx/dcmemory.h" | |
35 | #include "wx/dcprint.h" | |
239e6af7 | 36 | #include "wx/window.h" |
184fc6c8 SC |
37 | #endif |
38 | ||
2f94ab40 | 39 | #include "wx/private/graphics.h" |
d9485f89 | 40 | #include "wx/rawbmp.h" |
50de831a | 41 | #include "wx/vector.h" |
184fc6c8 | 42 | |
184fc6c8 SC |
43 | using namespace std; |
44 | ||
184fc6c8 SC |
45 | //----------------------------------------------------------------------------- |
46 | // device context implementation | |
47 | // | |
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 | //----------------------------------------------------------------------------- | |
52 | ||
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) | |
56 | ||
57 | //----------------------------------------------------------------------------- | |
58 | // wxGraphicsPath implementation | |
59 | //----------------------------------------------------------------------------- | |
60 | ||
61 | // TODO remove this dependency (gdiplus needs the macros) | |
62 | ||
63 | #ifndef max | |
64 | #define max(a,b) (((a) > (b)) ? (a) : (b)) | |
65 | #endif | |
66 | ||
67 | #ifndef min | |
68 | #define min(a,b) (((a) < (b)) ? (a) : (b)) | |
69 | #endif | |
70 | ||
71 | #include <cairo.h> | |
c0e69d72 KO |
72 | #ifdef __WXMSW__ |
73 | #include <cairo-win32.h> | |
365d11be VZ |
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" | |
c0e69d72 KO |
78 | #endif |
79 | ||
00bd8e72 | 80 | #ifdef __WXGTK__ |
184fc6c8 | 81 | #include <gtk/gtk.h> |
84f67b11 | 82 | #include "wx/fontutil.h" |
888dde65 | 83 | #include "wx/gtk/dc.h" |
00bd8e72 | 84 | #endif |
184fc6c8 | 85 | |
e7f9f819 | 86 | #ifdef __WXMAC__ |
33ddeaba | 87 | #include "wx/osx/private.h" |
e7f9f819 SC |
88 | #include <cairo-quartz.h> |
89 | #include <cairo-atsui.h> | |
90 | #endif | |
91 | ||
0db8a70e | 92 | class WXDLLIMPEXP_CORE wxCairoPathData : public wxGraphicsPathData |
184fc6c8 | 93 | { |
184fc6c8 | 94 | public : |
0db8a70e RD |
95 | wxCairoPathData(wxGraphicsRenderer* renderer, cairo_t* path = NULL); |
96 | ~wxCairoPathData(); | |
184fc6c8 | 97 | |
0db8a70e | 98 | virtual wxGraphicsObjectRefData *Clone() const; |
184fc6c8 SC |
99 | |
100 | // | |
101 | // These are the path primitives from which everything else can be constructed | |
102 | // | |
103 | ||
104 | // begins a new subpath at (x,y) | |
105 | virtual void MoveToPoint( wxDouble x, wxDouble y ); | |
106 | ||
107 | // adds a straight line from the current point to (x,y) | |
108 | virtual void AddLineToPoint( wxDouble x, wxDouble y ); | |
109 | ||
110 | // adds a cubic Bezier curve from the current point, using two control points and an end point | |
111 | virtual void AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ); | |
112 | ||
113 | ||
114 | // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle | |
115 | virtual void AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise ) ; | |
116 | ||
117 | // gets the last point of the current path, (0,0) if not yet set | |
0db8a70e | 118 | virtual void GetCurrentPoint( wxDouble* x, wxDouble* y) const; |
184fc6c8 | 119 | |
00bd8e72 | 120 | // adds another path |
0db8a70e | 121 | virtual void AddPath( const wxGraphicsPathData* path ); |
00bd8e72 | 122 | |
184fc6c8 SC |
123 | // closes the current sub-path |
124 | virtual void CloseSubpath(); | |
125 | ||
126 | // | |
127 | // These are convenience functions which - if not available natively will be assembled | |
128 | // using the primitives from above | |
129 | // | |
130 | ||
131 | /* | |
132 | ||
49ad157e | 133 | // appends a rectangle as a new closed subpath |
184fc6c8 SC |
134 | virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ; |
135 | // appends an ellipsis as a new closed subpath fitting the passed rectangle | |
136 | virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ; | |
137 | ||
138 | // 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) | |
139 | virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ; | |
140 | */ | |
141 | ||
cd5adaa6 RD |
142 | // returns the native path |
143 | virtual void * GetNativePath() const ; | |
144 | ||
145 | // give the native path returned by GetNativePath() back (there might be some deallocations necessary) | |
0db8a70e | 146 | virtual void UnGetNativePath(void *p) const; |
f540e5bd | 147 | |
00bd8e72 | 148 | // transforms each point of this path by the matrix |
0db8a70e | 149 | virtual void Transform( const wxGraphicsMatrixData* matrix ) ; |
00bd8e72 SC |
150 | |
151 | // gets the bounding box enclosing all points (possibly including control points) | |
0db8a70e | 152 | virtual void GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const; |
00bd8e72 | 153 | |
94a007ec | 154 | virtual bool Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle = wxWINDING_RULE) const; |
00bd8e72 | 155 | |
184fc6c8 SC |
156 | private : |
157 | cairo_t* m_pathContext; | |
158 | }; | |
159 | ||
0db8a70e | 160 | class WXDLLIMPEXP_CORE wxCairoMatrixData : public wxGraphicsMatrixData |
184fc6c8 | 161 | { |
00bd8e72 | 162 | public : |
0db8a70e RD |
163 | wxCairoMatrixData(wxGraphicsRenderer* renderer, const cairo_matrix_t* matrix = NULL ) ; |
164 | virtual ~wxCairoMatrixData() ; | |
184fc6c8 | 165 | |
0db8a70e | 166 | virtual wxGraphicsObjectRefData *Clone() const ; |
184fc6c8 | 167 | |
00bd8e72 | 168 | // concatenates the matrix |
0db8a70e | 169 | virtual void Concat( const wxGraphicsMatrixData *t ); |
184fc6c8 | 170 | |
00bd8e72 | 171 | // sets the matrix to the respective values |
49ad157e | 172 | virtual void Set(wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0, |
00bd8e72 | 173 | wxDouble tx=0.0, wxDouble ty=0.0); |
184fc6c8 | 174 | |
248802d0 RD |
175 | // gets the component valuess of the matrix |
176 | virtual void Get(wxDouble* a=NULL, wxDouble* b=NULL, wxDouble* c=NULL, | |
177 | wxDouble* d=NULL, wxDouble* tx=NULL, wxDouble* ty=NULL) const; | |
49ad157e | 178 | |
00bd8e72 SC |
179 | // makes this the inverse matrix |
180 | virtual void Invert(); | |
184fc6c8 | 181 | |
00bd8e72 | 182 | // returns true if the elements of the transformation matrix are equal ? |
0db8a70e | 183 | virtual bool IsEqual( const wxGraphicsMatrixData* t) const ; |
184fc6c8 | 184 | |
00bd8e72 | 185 | // return true if this is the identity matrix |
0db8a70e | 186 | virtual bool IsIdentity() const; |
184fc6c8 | 187 | |
00bd8e72 SC |
188 | // |
189 | // transformation | |
190 | // | |
184fc6c8 | 191 | |
00bd8e72 SC |
192 | // add the translation to this matrix |
193 | virtual void Translate( wxDouble dx , wxDouble dy ); | |
194 | ||
195 | // add the scale to this matrix | |
196 | virtual void Scale( wxDouble xScale , wxDouble yScale ); | |
197 | ||
198 | // add the rotation to this matrix (radians) | |
49ad157e | 199 | virtual void Rotate( wxDouble angle ); |
00bd8e72 SC |
200 | |
201 | // | |
202 | // apply the transforms | |
203 | // | |
204 | ||
205 | // applies that matrix to the point | |
0db8a70e | 206 | virtual void TransformPoint( wxDouble *x, wxDouble *y ) const; |
00bd8e72 SC |
207 | |
208 | // applies the matrix except for translations | |
0db8a70e | 209 | virtual void TransformDistance( wxDouble *dx, wxDouble *dy ) const; |
00bd8e72 SC |
210 | |
211 | // returns the native representation | |
212 | virtual void * GetNativeMatrix() const; | |
213 | private: | |
214 | cairo_matrix_t m_matrix ; | |
00bd8e72 SC |
215 | } ; |
216 | ||
87752530 | 217 | class WXDLLIMPEXP_CORE wxCairoPenData : public wxGraphicsObjectRefData |
184fc6c8 | 218 | { |
00bd8e72 | 219 | public: |
87752530 SC |
220 | wxCairoPenData( wxGraphicsRenderer* renderer, const wxPen &pen ); |
221 | ~wxCairoPenData(); | |
00bd8e72 SC |
222 | |
223 | void Init(); | |
224 | ||
225 | virtual void Apply( wxGraphicsContext* context ); | |
226 | virtual wxDouble GetWidth() { return m_width; } | |
227 | ||
228 | private : | |
229 | double m_width; | |
49ad157e | 230 | |
00bd8e72 SC |
231 | double m_red; |
232 | double m_green; | |
233 | double m_blue; | |
234 | double m_alpha; | |
49ad157e | 235 | |
00bd8e72 SC |
236 | cairo_line_cap_t m_cap; |
237 | cairo_line_join_t m_join; | |
238 | ||
239 | int m_count; | |
240 | const double *m_lengths; | |
241 | double *m_userLengths; | |
184fc6c8 | 242 | |
00bd8e72 | 243 | wxPen m_pen; |
50de831a PC |
244 | |
245 | wxDECLARE_NO_COPY_CLASS(wxCairoPenData); | |
00bd8e72 SC |
246 | }; |
247 | ||
87752530 | 248 | class WXDLLIMPEXP_CORE wxCairoBrushData : public wxGraphicsObjectRefData |
184fc6c8 | 249 | { |
00bd8e72 | 250 | public: |
87752530 SC |
251 | wxCairoBrushData( wxGraphicsRenderer* renderer ); |
252 | wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush ); | |
253 | ~wxCairoBrushData (); | |
00bd8e72 SC |
254 | |
255 | virtual void Apply( wxGraphicsContext* context ); | |
4ee4c7b9 VZ |
256 | |
257 | void CreateLinearGradientBrush(wxDouble x1, wxDouble y1, | |
258 | wxDouble x2, wxDouble y2, | |
259 | const wxGraphicsGradientStops& stops); | |
260 | void CreateRadialGradientBrush(wxDouble xo, wxDouble yo, | |
261 | wxDouble xc, wxDouble yc, wxDouble radius, | |
262 | const wxGraphicsGradientStops& stops); | |
00bd8e72 SC |
263 | |
264 | protected: | |
265 | virtual void Init(); | |
266 | ||
4ee4c7b9 VZ |
267 | // common part of Create{Linear,Radial}GradientBrush() |
268 | void AddGradientStops(const wxGraphicsGradientStops& stops); | |
269 | ||
00bd8e72 SC |
270 | private : |
271 | double m_red; | |
272 | double m_green; | |
273 | double m_blue; | |
274 | double m_alpha; | |
275 | ||
276 | cairo_pattern_t* m_brushPattern; | |
00bd8e72 SC |
277 | }; |
278 | ||
87752530 | 279 | class wxCairoFontData : public wxGraphicsObjectRefData |
184fc6c8 | 280 | { |
00bd8e72 | 281 | public: |
87752530 | 282 | wxCairoFontData( wxGraphicsRenderer* renderer, const wxFont &font, const wxColour& col ); |
fa378d36 VZ |
283 | wxCairoFontData(wxGraphicsRenderer* renderer, |
284 | double sizeInPixels, | |
285 | const wxString& facename, | |
286 | int flags, | |
287 | const wxColour& col); | |
87752530 | 288 | ~wxCairoFontData(); |
00bd8e72 | 289 | |
fa378d36 | 290 | virtual bool Apply( wxGraphicsContext* context ); |
84f67b11 | 291 | #ifdef __WXGTK__ |
304c3065 | 292 | const wxFont& GetFont() const { return m_wxfont; } |
84f67b11 | 293 | #endif |
00bd8e72 | 294 | private : |
fa378d36 VZ |
295 | void InitColour(const wxColour& col); |
296 | void InitFontComponents(const wxString& facename, | |
297 | cairo_font_slant_t slant, | |
298 | cairo_font_weight_t weight); | |
299 | ||
00bd8e72 | 300 | double m_size; |
00bd8e72 SC |
301 | double m_red; |
302 | double m_green; | |
303 | double m_blue; | |
304 | double m_alpha; | |
84f67b11 | 305 | #ifdef __WXMAC__ |
e7f9f819 | 306 | cairo_font_face_t *m_font; |
84f67b11 | 307 | #elif defined(__WXGTK__) |
304c3065 | 308 | wxFont m_wxfont; |
fa378d36 VZ |
309 | #endif |
310 | ||
311 | // These members are used when the font is created from its face name and | |
312 | // flags (and not from wxFont) and also even when creating it from wxFont | |
313 | // on the platforms not covered above. | |
314 | // | |
315 | // Notice that we can't use cairo_font_face_t instead of storing those, | |
316 | // even though it would be simpler and need less #ifdefs, because | |
317 | // cairo_toy_font_face_create() that we'd need to create it is only | |
318 | // available in Cairo 1.8 and we require just 1.2 currently. If we do drop | |
319 | // support for < 1.8 versions in the future it would be definitely better | |
320 | // to use cairo_toy_font_face_create() instead. | |
84f67b11 SC |
321 | wxCharBuffer m_fontName; |
322 | cairo_font_slant_t m_slant; | |
323 | cairo_font_weight_t m_weight; | |
00bd8e72 | 324 | }; |
184fc6c8 | 325 | |
8b180bde | 326 | class wxCairoBitmapData : public wxGraphicsBitmapData |
2fc9c1ea KO |
327 | { |
328 | public: | |
329 | wxCairoBitmapData( wxGraphicsRenderer* renderer, const wxBitmap& bmp ); | |
0a470e5e VZ |
330 | #if wxUSE_IMAGE |
331 | wxCairoBitmapData(wxGraphicsRenderer* renderer, const wxImage& image); | |
332 | #endif // wxUSE_IMAGE | |
2986eb86 | 333 | wxCairoBitmapData( wxGraphicsRenderer* renderer, cairo_surface_t* bitmap ); |
2fc9c1ea KO |
334 | ~wxCairoBitmapData(); |
335 | ||
336 | virtual cairo_surface_t* GetCairoSurface() { return m_surface; } | |
337 | virtual cairo_pattern_t* GetCairoPattern() { return m_pattern; } | |
8b180bde | 338 | void* GetNativeBitmap() const { return (void*)m_surface; } |
2fc9c1ea | 339 | virtual wxSize GetSize() { return wxSize(m_width, m_height); } |
08b2d55f VZ |
340 | |
341 | #if wxUSE_IMAGE | |
342 | wxImage ConvertToImage() const; | |
343 | #endif // wxUSE_IMAGE | |
344 | ||
2fc9c1ea | 345 | private : |
5f606e65 VZ |
346 | // Allocate m_buffer for the bitmap of the given size in the given format. |
347 | // | |
348 | // Returns the stride used for the buffer. | |
349 | int InitBuffer(int width, int height, cairo_format_t format); | |
350 | ||
351 | // Really create the surface using the buffer (which was supposed to be | |
352 | // filled since InitBuffer() call). | |
353 | void InitSurface(cairo_format_t format, int stride); | |
354 | ||
355 | ||
2fc9c1ea KO |
356 | cairo_surface_t* m_surface; |
357 | cairo_pattern_t* m_pattern; | |
358 | int m_width; | |
359 | int m_height; | |
360 | unsigned char* m_buffer; | |
361 | }; | |
362 | ||
00bd8e72 | 363 | class WXDLLIMPEXP_CORE wxCairoContext : public wxGraphicsContext |
184fc6c8 | 364 | { |
184fc6c8 | 365 | public: |
00bd8e72 | 366 | wxCairoContext( wxGraphicsRenderer* renderer, const wxWindowDC& dc ); |
888dde65 | 367 | wxCairoContext( wxGraphicsRenderer* renderer, const wxMemoryDC& dc ); |
c9008abe | 368 | wxCairoContext( wxGraphicsRenderer* renderer, const wxPrinterDC& dc ); |
00bd8e72 SC |
369 | #ifdef __WXGTK__ |
370 | wxCairoContext( wxGraphicsRenderer* renderer, GdkDrawable *drawable ); | |
9f2b6b31 RD |
371 | #endif |
372 | #ifdef __WXMSW__ | |
373 | wxCairoContext( wxGraphicsRenderer* renderer, HDC context ); | |
00bd8e72 SC |
374 | #endif |
375 | wxCairoContext( wxGraphicsRenderer* renderer, cairo_t *context ); | |
376 | wxCairoContext( wxGraphicsRenderer* renderer, wxWindow *window); | |
79313208 VZ |
377 | |
378 | // If this ctor is used, Init() must be called by the derived class later. | |
379 | wxCairoContext( wxGraphicsRenderer* renderer ); | |
380 | ||
184fc6c8 SC |
381 | virtual ~wxCairoContext(); |
382 | ||
e7f9f819 | 383 | virtual bool ShouldOffset() const |
49ad157e | 384 | { |
136a1de9 SC |
385 | if ( !m_enableOffset ) |
386 | return false; | |
387 | ||
e7f9f819 SC |
388 | int penwidth = 0 ; |
389 | if ( !m_pen.IsNull() ) | |
390 | { | |
391 | penwidth = (int)((wxCairoPenData*)m_pen.GetRefData())->GetWidth(); | |
392 | if ( penwidth == 0 ) | |
393 | penwidth = 1; | |
394 | } | |
395 | return ( penwidth % 2 ) == 1; | |
396 | } | |
397 | ||
184fc6c8 | 398 | virtual void Clip( const wxRegion ®ion ); |
c0e69d72 KO |
399 | #ifdef __WXMSW__ |
400 | cairo_surface_t* m_mswSurface; | |
365d11be | 401 | WindowHDC m_mswWindowHDC; |
c0e69d72 | 402 | #endif |
539e2795 SC |
403 | |
404 | // clips drawings to the rect | |
405 | virtual void Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
539e2795 | 406 | |
cd5adaa6 RD |
407 | // resets the clipping to original extent |
408 | virtual void ResetClip(); | |
409 | ||
410 | virtual void * GetNativeContext(); | |
411 | ||
bf02a7f9 | 412 | virtual bool SetAntialiasMode(wxAntialiasMode antialias); |
49ad157e | 413 | |
133cb28b SC |
414 | virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation); |
415 | ||
bf02a7f9 SC |
416 | virtual bool SetCompositionMode(wxCompositionMode op); |
417 | ||
418 | virtual void BeginLayer(wxDouble opacity); | |
419 | ||
420 | virtual void EndLayer(); | |
03647350 | 421 | |
0db8a70e | 422 | virtual void StrokePath( const wxGraphicsPath& p ); |
94a007ec | 423 | virtual void FillPath( const wxGraphicsPath& p , wxPolygonFillMode fillStyle = wxWINDING_RULE ); |
184fc6c8 | 424 | |
184fc6c8 SC |
425 | virtual void Translate( wxDouble dx , wxDouble dy ); |
426 | virtual void Scale( wxDouble xScale , wxDouble yScale ); | |
427 | virtual void Rotate( wxDouble angle ); | |
428 | ||
00bd8e72 | 429 | // concatenates this transform with the current transform of this context |
0db8a70e | 430 | virtual void ConcatTransform( const wxGraphicsMatrix& matrix ); |
00bd8e72 SC |
431 | |
432 | // sets the transform of this context | |
0db8a70e | 433 | virtual void SetTransform( const wxGraphicsMatrix& matrix ); |
00bd8e72 SC |
434 | |
435 | // gets the matrix of this context | |
0db8a70e | 436 | virtual wxGraphicsMatrix GetTransform() const; |
00bd8e72 | 437 | |
e77cba1a | 438 | virtual void DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); |
184fc6c8 SC |
439 | virtual void DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); |
440 | virtual void DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
441 | virtual void PushState(); | |
442 | virtual void PopState(); | |
443 | ||
184fc6c8 SC |
444 | virtual void GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, |
445 | wxDouble *descent, wxDouble *externalLeading ) const; | |
446 | virtual void GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const; | |
447 | ||
50de831a PC |
448 | protected: |
449 | virtual void DoDrawText( const wxString &str, wxDouble x, wxDouble y ); | |
450 | ||
e7f9f819 | 451 | void Init(cairo_t *context); |
49ad157e | 452 | |
0a470e5e | 453 | private: |
184fc6c8 | 454 | cairo_t* m_context; |
03647350 | 455 | |
bf02a7f9 | 456 | wxVector<float> m_layerOpacities; |
0b7dce54 | 457 | |
c0c133e1 | 458 | wxDECLARE_NO_COPY_CLASS(wxCairoContext); |
184fc6c8 SC |
459 | }; |
460 | ||
0a470e5e VZ |
461 | #if wxUSE_IMAGE |
462 | // ---------------------------------------------------------------------------- | |
463 | // wxCairoImageContext: context associated with a wxImage. | |
464 | // ---------------------------------------------------------------------------- | |
465 | ||
466 | class wxCairoImageContext : public wxCairoContext | |
467 | { | |
468 | public: | |
469 | wxCairoImageContext(wxGraphicsRenderer* renderer, wxImage& image) : | |
470 | wxCairoContext(renderer), | |
471 | m_image(image), | |
472 | m_data(renderer, image) | |
473 | { | |
474 | Init(cairo_create(m_data.GetCairoSurface())); | |
475 | } | |
476 | ||
477 | virtual ~wxCairoImageContext() | |
478 | { | |
479 | m_image = m_data.ConvertToImage(); | |
480 | } | |
481 | ||
482 | private: | |
483 | wxImage& m_image; | |
484 | wxCairoBitmapData m_data; | |
485 | ||
486 | wxDECLARE_NO_COPY_CLASS(wxCairoImageContext); | |
487 | }; | |
488 | #endif // wxUSE_IMAGE | |
489 | ||
184fc6c8 | 490 | //----------------------------------------------------------------------------- |
87752530 | 491 | // wxCairoPenData implementation |
184fc6c8 SC |
492 | //----------------------------------------------------------------------------- |
493 | ||
87752530 | 494 | wxCairoPenData::~wxCairoPenData() |
539e2795 | 495 | { |
00bd8e72 | 496 | delete[] m_userLengths; |
539e2795 | 497 | } |
cd5adaa6 | 498 | |
87752530 | 499 | void wxCairoPenData::Init() |
539e2795 | 500 | { |
00bd8e72 SC |
501 | m_lengths = NULL; |
502 | m_userLengths = NULL; | |
503 | m_width = 0; | |
504 | m_count = 0; | |
539e2795 SC |
505 | } |
506 | ||
87752530 SC |
507 | wxCairoPenData::wxCairoPenData( wxGraphicsRenderer* renderer, const wxPen &pen ) |
508 | : wxGraphicsObjectRefData(renderer) | |
49ad157e | 509 | { |
00bd8e72 | 510 | Init(); |
7f8bd9fc RD |
511 | m_pen = pen; |
512 | m_width = m_pen.GetWidth(); | |
00bd8e72 SC |
513 | if (m_width <= 0.0) |
514 | m_width = 0.1; | |
539e2795 | 515 | |
00bd8e72 | 516 | m_red = m_pen.GetColour().Red()/255.0; |
49ad157e | 517 | m_green = m_pen.GetColour().Green()/255.0; |
00bd8e72 SC |
518 | m_blue = m_pen.GetColour().Blue()/255.0; |
519 | m_alpha = m_pen.GetColour().Alpha()/255.0; | |
184fc6c8 | 520 | |
184fc6c8 SC |
521 | switch ( m_pen.GetCap() ) |
522 | { | |
523 | case wxCAP_ROUND : | |
00bd8e72 | 524 | m_cap = CAIRO_LINE_CAP_ROUND; |
184fc6c8 SC |
525 | break; |
526 | ||
527 | case wxCAP_PROJECTING : | |
00bd8e72 | 528 | m_cap = CAIRO_LINE_CAP_SQUARE; |
184fc6c8 SC |
529 | break; |
530 | ||
531 | case wxCAP_BUTT : | |
00bd8e72 | 532 | m_cap = CAIRO_LINE_CAP_BUTT; |
184fc6c8 SC |
533 | break; |
534 | ||
535 | default : | |
00bd8e72 | 536 | m_cap = CAIRO_LINE_CAP_BUTT; |
184fc6c8 SC |
537 | break; |
538 | } | |
184fc6c8 | 539 | |
184fc6c8 SC |
540 | switch ( m_pen.GetJoin() ) |
541 | { | |
542 | case wxJOIN_BEVEL : | |
00bd8e72 | 543 | m_join = CAIRO_LINE_JOIN_BEVEL; |
184fc6c8 SC |
544 | break; |
545 | ||
546 | case wxJOIN_MITER : | |
00bd8e72 | 547 | m_join = CAIRO_LINE_JOIN_MITER; |
184fc6c8 SC |
548 | break; |
549 | ||
550 | case wxJOIN_ROUND : | |
00bd8e72 | 551 | m_join = CAIRO_LINE_JOIN_ROUND; |
184fc6c8 SC |
552 | break; |
553 | ||
554 | default : | |
00bd8e72 | 555 | m_join = CAIRO_LINE_JOIN_MITER; |
184fc6c8 SC |
556 | break; |
557 | } | |
184fc6c8 | 558 | |
00bd8e72 | 559 | const double dashUnit = m_width < 1.0 ? 1.0 : m_width; |
184fc6c8 | 560 | const double dotted[] = |
00bd8e72 SC |
561 | { |
562 | dashUnit , dashUnit + 2.0 | |
563 | }; | |
564 | static const double short_dashed[] = | |
565 | { | |
566 | 9.0 , 6.0 | |
567 | }; | |
568 | static const double dashed[] = | |
569 | { | |
570 | 19.0 , 9.0 | |
571 | }; | |
572 | static const double dotted_dashed[] = | |
573 | { | |
574 | 9.0 , 6.0 , 3.0 , 3.0 | |
575 | }; | |
184fc6c8 SC |
576 | |
577 | switch ( m_pen.GetStyle() ) | |
578 | { | |
fb040094 | 579 | case wxPENSTYLE_SOLID : |
184fc6c8 SC |
580 | break; |
581 | ||
fb040094 | 582 | case wxPENSTYLE_DOT : |
00bd8e72 SC |
583 | m_count = WXSIZEOF(dotted); |
584 | m_userLengths = new double[ m_count ] ; | |
585 | memcpy( m_userLengths, dotted, sizeof(dotted) ); | |
586 | m_lengths = m_userLengths; | |
184fc6c8 SC |
587 | break; |
588 | ||
fb040094 | 589 | case wxPENSTYLE_LONG_DASH : |
84f67b11 | 590 | m_lengths = dashed ; |
00bd8e72 | 591 | m_count = WXSIZEOF(dashed); |
184fc6c8 SC |
592 | break; |
593 | ||
fb040094 | 594 | case wxPENSTYLE_SHORT_DASH : |
84f67b11 | 595 | m_lengths = short_dashed ; |
00bd8e72 | 596 | m_count = WXSIZEOF(short_dashed); |
184fc6c8 SC |
597 | break; |
598 | ||
fb040094 | 599 | case wxPENSTYLE_DOT_DASH : |
84f67b11 | 600 | m_lengths = dotted_dashed ; |
00bd8e72 | 601 | m_count = WXSIZEOF(dotted_dashed); |
184fc6c8 SC |
602 | break; |
603 | ||
fb040094 | 604 | case wxPENSTYLE_USER_DASH : |
184fc6c8 SC |
605 | { |
606 | wxDash *wxdashes ; | |
00bd8e72 SC |
607 | m_count = m_pen.GetDashes( &wxdashes ) ; |
608 | if ((wxdashes != NULL) && (m_count > 0)) | |
184fc6c8 | 609 | { |
00bd8e72 SC |
610 | m_userLengths = new double[m_count] ; |
611 | for ( int i = 0 ; i < m_count ; ++i ) | |
184fc6c8 | 612 | { |
00bd8e72 | 613 | m_userLengths[i] = wxdashes[i] * dashUnit ; |
184fc6c8 | 614 | |
00bd8e72 SC |
615 | if ( i % 2 == 1 && m_userLengths[i] < dashUnit + 2.0 ) |
616 | m_userLengths[i] = dashUnit + 2.0 ; | |
617 | else if ( i % 2 == 0 && m_userLengths[i] < dashUnit ) | |
618 | m_userLengths[i] = dashUnit ; | |
184fc6c8 SC |
619 | } |
620 | } | |
00bd8e72 | 621 | m_lengths = m_userLengths ; |
184fc6c8 SC |
622 | } |
623 | break; | |
fb040094 | 624 | case wxPENSTYLE_STIPPLE : |
184fc6c8 SC |
625 | { |
626 | /* | |
00bd8e72 | 627 | wxBitmap* bmp = pen.GetStipple(); |
a1b806b9 | 628 | if ( bmp && bmp->IsOk() ) |
00bd8e72 SC |
629 | { |
630 | wxDELETE( m_penImage ); | |
631 | wxDELETE( m_penBrush ); | |
632 | m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
633 | m_penBrush = new TextureBrush(m_penImage); | |
634 | m_pen->SetBrush( m_penBrush ); | |
635 | } | |
184fc6c8 SC |
636 | */ |
637 | } | |
638 | break; | |
639 | default : | |
89efaf2b | 640 | if ( m_pen.GetStyle() >= wxPENSTYLE_FIRST_HATCH |
fb040094 | 641 | && m_pen.GetStyle() <= wxPENSTYLE_LAST_HATCH ) |
184fc6c8 SC |
642 | { |
643 | /* | |
00bd8e72 SC |
644 | wxDELETE( m_penBrush ); |
645 | HatchStyle style = HatchStyleHorizontal; | |
646 | switch( pen.GetStyle() ) | |
647 | { | |
fb040094 | 648 | case wxPENSTYLE_BDIAGONAL_HATCH : |
00bd8e72 SC |
649 | style = HatchStyleBackwardDiagonal; |
650 | break ; | |
fb040094 | 651 | case wxPENSTYLE_CROSSDIAG_HATCH : |
00bd8e72 SC |
652 | style = HatchStyleDiagonalCross; |
653 | break ; | |
fb040094 | 654 | case wxPENSTYLE_FDIAGONAL_HATCH : |
00bd8e72 SC |
655 | style = HatchStyleForwardDiagonal; |
656 | break ; | |
fb040094 | 657 | case wxPENSTYLE_CROSS_HATCH : |
00bd8e72 SC |
658 | style = HatchStyleCross; |
659 | break ; | |
fb040094 | 660 | case wxPENSTYLE_HORIZONTAL_HATCH : |
00bd8e72 SC |
661 | style = HatchStyleHorizontal; |
662 | break ; | |
fb040094 | 663 | case wxPENSTYLE_VERTICAL_HATCH : |
00bd8e72 SC |
664 | style = HatchStyleVertical; |
665 | break ; | |
666 | ||
667 | } | |
668 | m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() , | |
669 | pen.GetColour().Green() , pen.GetColour().Blue() ), Color.Transparent ); | |
670 | m_pen->SetBrush( m_penBrush ) | |
184fc6c8 SC |
671 | */ |
672 | } | |
673 | break; | |
674 | } | |
00bd8e72 | 675 | } |
184fc6c8 | 676 | |
87752530 | 677 | void wxCairoPenData::Apply( wxGraphicsContext* context ) |
00bd8e72 SC |
678 | { |
679 | cairo_t * ctext = (cairo_t*) context->GetNativeContext(); | |
680 | cairo_set_line_width(ctext,m_width); | |
681 | cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha); | |
682 | cairo_set_line_cap(ctext,m_cap); | |
683 | cairo_set_line_join(ctext,m_join); | |
684 | cairo_set_dash(ctext,(double*)m_lengths,m_count,0.0); | |
184fc6c8 SC |
685 | } |
686 | ||
00bd8e72 | 687 | //----------------------------------------------------------------------------- |
87752530 | 688 | // wxCairoBrushData implementation |
00bd8e72 SC |
689 | //----------------------------------------------------------------------------- |
690 | ||
7f8bd9fc RD |
691 | wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer* renderer ) |
692 | : wxGraphicsObjectRefData( renderer ) | |
00bd8e72 SC |
693 | { |
694 | Init(); | |
695 | } | |
184fc6c8 | 696 | |
87752530 | 697 | wxCairoBrushData::wxCairoBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush ) |
7f8bd9fc | 698 | : wxGraphicsObjectRefData(renderer) |
00bd8e72 | 699 | { |
7f8bd9fc | 700 | Init(); |
49ad157e | 701 | |
00bd8e72 | 702 | m_red = brush.GetColour().Red()/255.0; |
49ad157e | 703 | m_green = brush.GetColour().Green()/255.0; |
00bd8e72 SC |
704 | m_blue = brush.GetColour().Blue()/255.0; |
705 | m_alpha = brush.GetColour().Alpha()/255.0; | |
706 | /* | |
fb040094 | 707 | if ( brush.GetStyle() == wxBRUSHSTYLE_SOLID) |
00bd8e72 SC |
708 | { |
709 | m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
710 | brush.GetColour().Green() , brush.GetColour().Blue() ) ); | |
711 | } | |
712 | else if ( brush.IsHatch() ) | |
713 | { | |
714 | HatchStyle style = HatchStyleHorizontal; | |
715 | switch( brush.GetStyle() ) | |
716 | { | |
fb040094 | 717 | case wxBRUSHSTYLE_BDIAGONAL_HATCH : |
00bd8e72 SC |
718 | style = HatchStyleBackwardDiagonal; |
719 | break ; | |
fb040094 | 720 | case wxBRUSHSTYLE_CROSSDIAG_HATCH : |
00bd8e72 SC |
721 | style = HatchStyleDiagonalCross; |
722 | break ; | |
fb040094 | 723 | case wxBRUSHSTYLE_FDIAGONAL_HATCH : |
00bd8e72 SC |
724 | style = HatchStyleForwardDiagonal; |
725 | break ; | |
fb040094 | 726 | case wxBRUSHSTYLE_CROSS_HATCH : |
00bd8e72 SC |
727 | style = HatchStyleCross; |
728 | break ; | |
fb040094 | 729 | case wxBRUSHSTYLE_HORIZONTAL_HATCH : |
00bd8e72 SC |
730 | style = HatchStyleHorizontal; |
731 | break ; | |
fb040094 | 732 | case wxBRUSHSTYLE_VERTICAL_HATCH : |
00bd8e72 SC |
733 | style = HatchStyleVertical; |
734 | break ; | |
735 | ||
736 | } | |
737 | m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
738 | brush.GetColour().Green() , brush.GetColour().Blue() ), Color.Transparent ); | |
739 | } | |
49ad157e | 740 | else |
00bd8e72 SC |
741 | { |
742 | wxBitmap* bmp = brush.GetStipple(); | |
a1b806b9 | 743 | if ( bmp && bmp->IsOk() ) |
00bd8e72 SC |
744 | { |
745 | wxDELETE( m_brushImage ); | |
746 | m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
747 | m_brush = new TextureBrush(m_brushImage); | |
748 | } | |
184fc6c8 | 749 | } |
00bd8e72 | 750 | */ |
184fc6c8 SC |
751 | } |
752 | ||
87752530 | 753 | wxCairoBrushData::~wxCairoBrushData () |
184fc6c8 | 754 | { |
00bd8e72 SC |
755 | if (m_brushPattern) |
756 | cairo_pattern_destroy(m_brushPattern); | |
184fc6c8 SC |
757 | } |
758 | ||
87752530 | 759 | void wxCairoBrushData::Apply( wxGraphicsContext* context ) |
184fc6c8 | 760 | { |
00bd8e72 SC |
761 | cairo_t * ctext = (cairo_t*) context->GetNativeContext(); |
762 | if ( m_brushPattern ) | |
763 | { | |
764 | cairo_set_source(ctext,m_brushPattern); | |
765 | } | |
766 | else | |
767 | { | |
768 | cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha); | |
769 | } | |
184fc6c8 SC |
770 | } |
771 | ||
4ee4c7b9 VZ |
772 | void wxCairoBrushData::AddGradientStops(const wxGraphicsGradientStops& stops) |
773 | { | |
774 | // loop over all the stops, they include the beginning and ending ones | |
775 | const unsigned numStops = stops.GetCount(); | |
776 | for ( unsigned n = 0; n < numStops; n++ ) | |
777 | { | |
778 | const wxGraphicsGradientStop stop = stops.Item(n); | |
779 | ||
780 | const wxColour col = stop.GetColour(); | |
781 | ||
782 | cairo_pattern_add_color_stop_rgba | |
783 | ( | |
784 | m_brushPattern, | |
785 | stop.GetPosition(), | |
786 | col.Red()/255.0, | |
787 | col.Green()/255.0, | |
788 | col.Blue()/255.0, | |
789 | col.Alpha()/255.0 | |
790 | ); | |
791 | } | |
792 | ||
793 | wxASSERT_MSG(cairo_pattern_status(m_brushPattern) == CAIRO_STATUS_SUCCESS, | |
794 | wxT("Couldn't create cairo pattern")); | |
795 | } | |
796 | ||
797 | void | |
798 | wxCairoBrushData::CreateLinearGradientBrush(wxDouble x1, wxDouble y1, | |
799 | wxDouble x2, wxDouble y2, | |
800 | const wxGraphicsGradientStops& stops) | |
184fc6c8 | 801 | { |
00bd8e72 | 802 | m_brushPattern = cairo_pattern_create_linear(x1,y1,x2,y2); |
4ee4c7b9 VZ |
803 | |
804 | AddGradientStops(stops); | |
184fc6c8 SC |
805 | } |
806 | ||
4ee4c7b9 VZ |
807 | void |
808 | wxCairoBrushData::CreateRadialGradientBrush(wxDouble xo, wxDouble yo, | |
809 | wxDouble xc, wxDouble yc, | |
810 | wxDouble radius, | |
811 | const wxGraphicsGradientStops& stops) | |
184fc6c8 | 812 | { |
00bd8e72 | 813 | m_brushPattern = cairo_pattern_create_radial(xo,yo,0.0,xc,yc,radius); |
4ee4c7b9 VZ |
814 | |
815 | AddGradientStops(stops); | |
184fc6c8 SC |
816 | } |
817 | ||
87752530 | 818 | void wxCairoBrushData::Init() |
184fc6c8 | 819 | { |
00bd8e72 | 820 | m_brushPattern = NULL; |
184fc6c8 SC |
821 | } |
822 | ||
00bd8e72 | 823 | //----------------------------------------------------------------------------- |
87752530 | 824 | // wxCairoFontData implementation |
00bd8e72 SC |
825 | //----------------------------------------------------------------------------- |
826 | ||
fa378d36 | 827 | void wxCairoFontData::InitColour(const wxColour& col) |
184fc6c8 | 828 | { |
00bd8e72 | 829 | m_red = col.Red()/255.0; |
49ad157e | 830 | m_green = col.Green()/255.0; |
00bd8e72 SC |
831 | m_blue = col.Blue()/255.0; |
832 | m_alpha = col.Alpha()/255.0; | |
fa378d36 VZ |
833 | } |
834 | ||
835 | void | |
836 | wxCairoFontData::InitFontComponents(const wxString& facename, | |
837 | cairo_font_slant_t slant, | |
838 | cairo_font_weight_t weight) | |
839 | { | |
840 | m_fontName = facename.mb_str(wxConvUTF8); | |
841 | m_slant = slant; | |
842 | m_weight = weight; | |
843 | } | |
844 | ||
845 | wxCairoFontData::wxCairoFontData( wxGraphicsRenderer* renderer, const wxFont &font, | |
304c3065 PC |
846 | const wxColour& col ) |
847 | : wxGraphicsObjectRefData(renderer) | |
848 | #ifdef __WXGTK__ | |
849 | , m_wxfont(font) | |
850 | #endif | |
fa378d36 VZ |
851 | { |
852 | InitColour(col); | |
853 | ||
00bd8e72 | 854 | m_size = font.GetPointSize(); |
84f67b11 SC |
855 | |
856 | #ifdef __WXMAC__ | |
aa6208d9 | 857 | m_font = cairo_quartz_font_face_create_for_cgfont( font.OSXGetCGFont() ); |
84f67b11 | 858 | #elif defined(__WXGTK__) |
84f67b11 | 859 | #else |
fa378d36 VZ |
860 | InitFontComponents |
861 | ( | |
862 | font.GetFaceName(), | |
863 | font.GetStyle() == wxFONTSTYLE_ITALIC ? CAIRO_FONT_SLANT_ITALIC | |
864 | : CAIRO_FONT_SLANT_NORMAL, | |
865 | font.GetWeight() == wxFONTWEIGHT_BOLD ? CAIRO_FONT_WEIGHT_BOLD | |
866 | : CAIRO_FONT_WEIGHT_NORMAL | |
867 | ); | |
e7f9f819 | 868 | #endif |
184fc6c8 SC |
869 | } |
870 | ||
fa378d36 VZ |
871 | wxCairoFontData::wxCairoFontData(wxGraphicsRenderer* renderer, |
872 | double sizeInPixels, | |
873 | const wxString& facename, | |
874 | int flags, | |
875 | const wxColour& col) : | |
876 | wxGraphicsObjectRefData(renderer) | |
877 | { | |
878 | InitColour(col); | |
879 | ||
880 | // Resolution for Cairo image surfaces is 72 DPI meaning that the sizes in | |
881 | // points and pixels are identical, so we can just pass the size in pixels | |
882 | // directly to cairo_set_font_size(). | |
883 | m_size = sizeInPixels; | |
884 | ||
304c3065 | 885 | #if defined(__WXMAC__) |
fa378d36 VZ |
886 | m_font = NULL; |
887 | #endif | |
888 | ||
00953cf0 VZ |
889 | // There is no need to set m_underlined under wxGTK in this case, it can |
890 | // only be used if m_font != NULL. | |
fa378d36 VZ |
891 | |
892 | InitFontComponents | |
893 | ( | |
894 | facename, | |
895 | flags & wxFONTFLAG_ITALIC ? CAIRO_FONT_SLANT_ITALIC | |
896 | : CAIRO_FONT_SLANT_NORMAL, | |
897 | flags & wxFONTFLAG_BOLD ? CAIRO_FONT_WEIGHT_BOLD | |
898 | : CAIRO_FONT_WEIGHT_NORMAL | |
899 | ); | |
900 | } | |
901 | ||
87752530 | 902 | wxCairoFontData::~wxCairoFontData() |
184fc6c8 | 903 | { |
84f67b11 | 904 | #ifdef __WXMAC__ |
fa378d36 VZ |
905 | if ( m_font ) |
906 | cairo_font_face_destroy( m_font ); | |
84f67b11 | 907 | #endif |
00bd8e72 | 908 | } |
184fc6c8 | 909 | |
fa378d36 | 910 | bool wxCairoFontData::Apply( wxGraphicsContext* context ) |
00bd8e72 SC |
911 | { |
912 | cairo_t * ctext = (cairo_t*) context->GetNativeContext(); | |
913 | cairo_set_source_rgba(ctext,m_red,m_green, m_blue,m_alpha); | |
84f67b11 | 914 | #ifdef __WXGTK__ |
304c3065 | 915 | if (m_wxfont.IsOk()) |
fa378d36 VZ |
916 | { |
917 | // Nothing to do, the caller uses Pango layout functions to do | |
918 | // everything. | |
919 | return true; | |
920 | } | |
84f67b11 | 921 | #elif defined(__WXMAC__) |
fa378d36 VZ |
922 | if ( m_font ) |
923 | { | |
924 | cairo_set_font_face(ctext, m_font); | |
925 | cairo_set_font_size(ctext, m_size ); | |
926 | return true; | |
927 | } | |
928 | #endif | |
929 | ||
930 | // If we get here, we must be on a platform without native font support or | |
931 | // we're using toy Cairo API even under wxGTK/wxMac. | |
711a4812 | 932 | cairo_select_font_face(ctext, m_fontName, m_slant, m_weight ); |
84f67b11 | 933 | cairo_set_font_size(ctext, m_size ); |
fa378d36 VZ |
934 | |
935 | // Indicate that we don't use native fonts for the platforms which care | |
936 | // about this (currently only wxGTK). | |
937 | return false; | |
00bd8e72 SC |
938 | } |
939 | ||
940 | //----------------------------------------------------------------------------- | |
0db8a70e | 941 | // wxCairoPathData implementation |
00bd8e72 SC |
942 | //----------------------------------------------------------------------------- |
943 | ||
0db8a70e RD |
944 | wxCairoPathData::wxCairoPathData( wxGraphicsRenderer* renderer, cairo_t* pathcontext) |
945 | : wxGraphicsPathData(renderer) | |
184fc6c8 | 946 | { |
00bd8e72 | 947 | if (pathcontext) |
184fc6c8 | 948 | { |
00bd8e72 SC |
949 | m_pathContext = pathcontext; |
950 | } | |
951 | else | |
952 | { | |
953 | cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,1,1); | |
954 | m_pathContext = cairo_create(surface); | |
955 | cairo_surface_destroy (surface); | |
184fc6c8 | 956 | } |
00bd8e72 | 957 | } |
184fc6c8 | 958 | |
0db8a70e | 959 | wxCairoPathData::~wxCairoPathData() |
00bd8e72 SC |
960 | { |
961 | cairo_destroy(m_pathContext); | |
184fc6c8 SC |
962 | } |
963 | ||
0db8a70e | 964 | wxGraphicsObjectRefData *wxCairoPathData::Clone() const |
184fc6c8 | 965 | { |
00bd8e72 SC |
966 | cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32,1,1); |
967 | cairo_t* pathcontext = cairo_create(surface); | |
968 | cairo_surface_destroy (surface); | |
969 | ||
970 | cairo_path_t* path = cairo_copy_path(m_pathContext); | |
971 | cairo_append_path(pathcontext, path); | |
972 | cairo_path_destroy(path); | |
0db8a70e | 973 | return new wxCairoPathData( GetRenderer() ,pathcontext); |
00bd8e72 SC |
974 | } |
975 | ||
976 | ||
0db8a70e | 977 | void* wxCairoPathData::GetNativePath() const |
00bd8e72 SC |
978 | { |
979 | return cairo_copy_path(m_pathContext) ; | |
980 | } | |
981 | ||
0db8a70e | 982 | void wxCairoPathData::UnGetNativePath(void *p) const |
00bd8e72 SC |
983 | { |
984 | cairo_path_destroy((cairo_path_t*)p); | |
985 | } | |
986 | ||
987 | // | |
988 | // The Primitives | |
989 | // | |
990 | ||
0db8a70e | 991 | void wxCairoPathData::MoveToPoint( wxDouble x , wxDouble y ) |
00bd8e72 SC |
992 | { |
993 | cairo_move_to(m_pathContext,x,y); | |
994 | } | |
995 | ||
0db8a70e | 996 | void wxCairoPathData::AddLineToPoint( wxDouble x , wxDouble y ) |
00bd8e72 SC |
997 | { |
998 | cairo_line_to(m_pathContext,x,y); | |
999 | } | |
1000 | ||
0db8a70e | 1001 | void wxCairoPathData::AddPath( const wxGraphicsPathData* path ) |
6b06903d | 1002 | { |
d9485f89 RD |
1003 | cairo_path_t* p = (cairo_path_t*)path->GetNativePath(); |
1004 | cairo_append_path(m_pathContext, p); | |
1005 | UnGetNativePath(p); | |
6b06903d RD |
1006 | } |
1007 | ||
0db8a70e | 1008 | void wxCairoPathData::CloseSubpath() |
00bd8e72 SC |
1009 | { |
1010 | cairo_close_path(m_pathContext); | |
1011 | } | |
1012 | ||
0db8a70e | 1013 | void wxCairoPathData::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ) |
00bd8e72 SC |
1014 | { |
1015 | cairo_curve_to(m_pathContext,cx1,cy1,cx2,cy2,x,y); | |
1016 | } | |
1017 | ||
1018 | // gets the last point of the current path, (0,0) if not yet set | |
0db8a70e | 1019 | void wxCairoPathData::GetCurrentPoint( wxDouble* x, wxDouble* y) const |
00bd8e72 SC |
1020 | { |
1021 | double dx,dy; | |
1022 | cairo_get_current_point(m_pathContext,&dx,&dy); | |
0db8a70e RD |
1023 | if (x) |
1024 | *x = dx; | |
1025 | if (y) | |
1026 | *y = dy; | |
00bd8e72 SC |
1027 | } |
1028 | ||
0db8a70e | 1029 | void wxCairoPathData::AddArc( wxDouble x, wxDouble y, wxDouble r, double startAngle, double endAngle, bool clockwise ) |
00bd8e72 | 1030 | { |
49ad157e | 1031 | // as clockwise means positive in our system (y pointing downwards) |
00bd8e72 SC |
1032 | // TODO make this interpretation dependent of the |
1033 | // real device trans | |
1034 | if ( clockwise||(endAngle-startAngle)>=2*M_PI) | |
1035 | cairo_arc(m_pathContext,x,y,r,startAngle,endAngle); | |
1036 | else | |
1037 | cairo_arc_negative(m_pathContext,x,y,r,startAngle,endAngle); | |
1038 | } | |
1039 | ||
1040 | // transforms each point of this path by the matrix | |
49ad157e | 1041 | void wxCairoPathData::Transform( const wxGraphicsMatrixData* matrix ) |
00bd8e72 SC |
1042 | { |
1043 | // as we don't have a true path object, we have to apply the inverse | |
1044 | // matrix to the context | |
1045 | cairo_matrix_t m = *((cairo_matrix_t*) matrix->GetNativeMatrix()); | |
1046 | cairo_matrix_invert( &m ); | |
1047 | cairo_transform(m_pathContext,&m); | |
49ad157e | 1048 | } |
00bd8e72 SC |
1049 | |
1050 | // gets the bounding box enclosing all points (possibly including control points) | |
0db8a70e | 1051 | void wxCairoPathData::GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const |
00bd8e72 SC |
1052 | { |
1053 | double x1,y1,x2,y2; | |
1054 | ||
1055 | cairo_stroke_extents( m_pathContext, &x1, &y1, &x2, &y2 ); | |
1056 | if ( x2 < x1 ) | |
184fc6c8 | 1057 | { |
00bd8e72 SC |
1058 | *x = x2; |
1059 | *w = x1-x2; | |
1060 | } | |
1061 | else | |
1062 | { | |
1063 | *x = x1; | |
1064 | *w = x2-x1; | |
184fc6c8 | 1065 | } |
49ad157e | 1066 | |
00bd8e72 SC |
1067 | if( y2 < y1 ) |
1068 | { | |
1069 | *y = y2; | |
1070 | *h = y1-y2; | |
1071 | } | |
1072 | else | |
1073 | { | |
1074 | *y = y1; | |
1075 | *h = y2-y1; | |
1076 | } | |
1077 | } | |
1078 | ||
f2b905d7 | 1079 | bool wxCairoPathData::Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle ) const |
00bd8e72 | 1080 | { |
f2b905d7 SC |
1081 | cairo_set_fill_rule(m_pathContext,fillStyle==wxODDEVEN_RULE ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING); |
1082 | return cairo_in_fill( m_pathContext, x, y) != 0; | |
00bd8e72 SC |
1083 | } |
1084 | ||
1085 | //----------------------------------------------------------------------------- | |
0db8a70e | 1086 | // wxCairoMatrixData implementation |
00bd8e72 SC |
1087 | //----------------------------------------------------------------------------- |
1088 | ||
0db8a70e RD |
1089 | wxCairoMatrixData::wxCairoMatrixData(wxGraphicsRenderer* renderer, const cairo_matrix_t* matrix ) |
1090 | : wxGraphicsMatrixData(renderer) | |
00bd8e72 SC |
1091 | { |
1092 | if ( matrix ) | |
1093 | m_matrix = *matrix; | |
1094 | } | |
1095 | ||
49ad157e | 1096 | wxCairoMatrixData::~wxCairoMatrixData() |
00bd8e72 SC |
1097 | { |
1098 | // nothing to do | |
1099 | } | |
1100 | ||
49ad157e | 1101 | wxGraphicsObjectRefData *wxCairoMatrixData::Clone() const |
00bd8e72 | 1102 | { |
0db8a70e | 1103 | return new wxCairoMatrixData(GetRenderer(),&m_matrix); |
00bd8e72 SC |
1104 | } |
1105 | ||
1106 | // concatenates the matrix | |
49ad157e | 1107 | void wxCairoMatrixData::Concat( const wxGraphicsMatrixData *t ) |
00bd8e72 | 1108 | { |
49ad157e | 1109 | cairo_matrix_multiply( &m_matrix, &m_matrix, (cairo_matrix_t*) t->GetNativeMatrix()); |
00bd8e72 SC |
1110 | } |
1111 | ||
00bd8e72 | 1112 | // sets the matrix to the respective values |
49ad157e VZ |
1113 | void wxCairoMatrixData::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d, |
1114 | wxDouble tx, wxDouble ty) | |
00bd8e72 SC |
1115 | { |
1116 | cairo_matrix_init( &m_matrix, a, b, c, d, tx, ty); | |
1117 | } | |
1118 | ||
248802d0 RD |
1119 | // gets the component valuess of the matrix |
1120 | void wxCairoMatrixData::Get(wxDouble* a, wxDouble* b, wxDouble* c, | |
1121 | wxDouble* d, wxDouble* tx, wxDouble* ty) const | |
1122 | { | |
1123 | if (a) *a = m_matrix.xx; | |
1124 | if (b) *b = m_matrix.yx; | |
1125 | if (c) *c = m_matrix.xy; | |
1126 | if (d) *d = m_matrix.yy; | |
1127 | if (tx) *tx= m_matrix.x0; | |
1128 | if (ty) *ty= m_matrix.y0; | |
1129 | } | |
1130 | ||
00bd8e72 | 1131 | // makes this the inverse matrix |
49ad157e | 1132 | void wxCairoMatrixData::Invert() |
00bd8e72 SC |
1133 | { |
1134 | cairo_matrix_invert( &m_matrix ); | |
1135 | } | |
1136 | ||
1137 | // returns true if the elements of the transformation matrix are equal ? | |
49ad157e | 1138 | bool wxCairoMatrixData::IsEqual( const wxGraphicsMatrixData* t) const |
00bd8e72 SC |
1139 | { |
1140 | const cairo_matrix_t* tm = (cairo_matrix_t*) t->GetNativeMatrix(); | |
49ad157e VZ |
1141 | return ( |
1142 | m_matrix.xx == tm->xx && | |
1143 | m_matrix.yx == tm->yx && | |
1144 | m_matrix.xy == tm->xy && | |
1145 | m_matrix.yy == tm->yy && | |
1146 | m_matrix.x0 == tm->x0 && | |
00bd8e72 SC |
1147 | m_matrix.y0 == tm->y0 ) ; |
1148 | } | |
1149 | ||
1150 | // return true if this is the identity matrix | |
0db8a70e | 1151 | bool wxCairoMatrixData::IsIdentity() const |
00bd8e72 SC |
1152 | { |
1153 | return ( m_matrix.xx == 1 && m_matrix.yy == 1 && | |
1154 | m_matrix.yx == 0 && m_matrix.xy == 0 && m_matrix.x0 == 0 && m_matrix.y0 == 0); | |
1155 | } | |
1156 | ||
1157 | // | |
1158 | // transformation | |
1159 | // | |
1160 | ||
1161 | // add the translation to this matrix | |
0db8a70e | 1162 | void wxCairoMatrixData::Translate( wxDouble dx , wxDouble dy ) |
00bd8e72 SC |
1163 | { |
1164 | cairo_matrix_translate( &m_matrix, dx, dy) ; | |
1165 | } | |
1166 | ||
1167 | // add the scale to this matrix | |
0db8a70e | 1168 | void wxCairoMatrixData::Scale( wxDouble xScale , wxDouble yScale ) |
00bd8e72 SC |
1169 | { |
1170 | cairo_matrix_scale( &m_matrix, xScale, yScale) ; | |
1171 | } | |
1172 | ||
1173 | // add the rotation to this matrix (radians) | |
49ad157e | 1174 | void wxCairoMatrixData::Rotate( wxDouble angle ) |
00bd8e72 SC |
1175 | { |
1176 | cairo_matrix_rotate( &m_matrix, angle) ; | |
49ad157e | 1177 | } |
00bd8e72 SC |
1178 | |
1179 | // | |
1180 | // apply the transforms | |
1181 | // | |
1182 | ||
1183 | // applies that matrix to the point | |
0db8a70e | 1184 | void wxCairoMatrixData::TransformPoint( wxDouble *x, wxDouble *y ) const |
00bd8e72 SC |
1185 | { |
1186 | double lx = *x, ly = *y ; | |
1187 | cairo_matrix_transform_point( &m_matrix, &lx, &ly); | |
1188 | *x = lx; | |
1189 | *y = ly; | |
1190 | } | |
1191 | ||
1192 | // applies the matrix except for translations | |
0db8a70e | 1193 | void wxCairoMatrixData::TransformDistance( wxDouble *dx, wxDouble *dy ) const |
00bd8e72 SC |
1194 | { |
1195 | double lx = *dx, ly = *dy ; | |
1196 | cairo_matrix_transform_distance( &m_matrix, &lx, &ly); | |
1197 | *dx = lx; | |
1198 | *dy = ly; | |
1199 | } | |
1200 | ||
1201 | // returns the native representation | |
0db8a70e | 1202 | void * wxCairoMatrixData::GetNativeMatrix() const |
00bd8e72 SC |
1203 | { |
1204 | return (void*) &m_matrix; | |
1205 | } | |
1206 | ||
5f606e65 | 1207 | // ---------------------------------------------------------------------------- |
2fc9c1ea | 1208 | // wxCairoBitmap implementation |
5f606e65 VZ |
1209 | // ---------------------------------------------------------------------------- |
1210 | ||
1211 | int wxCairoBitmapData::InitBuffer(int width, int height, cairo_format_t format) | |
1212 | { | |
1213 | wxUnusedVar(format); // Only really unused with Cairo < 1.6. | |
1214 | ||
1215 | // Determine the stride: use cairo_format_stride_for_width() if available | |
1216 | // but fall back to 4*width for the earlier versions as this is what that | |
1217 | // function always returns, even in latest Cairo, anyhow. | |
1218 | int stride; | |
1219 | #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 6, 0) | |
1220 | if ( cairo_version() >= CAIRO_VERSION_ENCODE(1, 6, 0) ) | |
1221 | { | |
1222 | stride = cairo_format_stride_for_width(format, width); | |
1223 | ||
1224 | // All our code would totally break if stride were not a multiple of 4 | |
1225 | // so ensure this is the case. | |
1226 | if ( stride % 4 ) | |
1227 | { | |
1228 | wxFAIL_MSG("Unexpected Cairo image surface stride."); | |
1229 | ||
1230 | stride += 4 - stride % 4; | |
1231 | } | |
1232 | } | |
1233 | else | |
1234 | #endif | |
1235 | stride = 4*width; | |
1236 | ||
1237 | m_width = width; | |
1238 | m_height = height; | |
1239 | m_buffer = new unsigned char[height*stride]; | |
1240 | ||
1241 | return stride; | |
1242 | } | |
1243 | ||
1244 | void wxCairoBitmapData::InitSurface(cairo_format_t format, int stride) | |
1245 | { | |
1246 | m_surface = cairo_image_surface_create_for_data( | |
1247 | m_buffer, format, m_width, m_height, stride); | |
1248 | m_pattern = cairo_pattern_create_for_surface(m_surface); | |
1249 | } | |
2fc9c1ea | 1250 | |
2986eb86 | 1251 | wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer* renderer, cairo_surface_t* bitmap ) : |
8b180bde | 1252 | wxGraphicsBitmapData( renderer ) |
2986eb86 SC |
1253 | { |
1254 | m_surface = bitmap; | |
1255 | m_pattern = cairo_pattern_create_for_surface(m_surface); | |
1256 | } | |
1257 | ||
8b180bde | 1258 | wxCairoBitmapData::wxCairoBitmapData( wxGraphicsRenderer* renderer, const wxBitmap& bmp ) : wxGraphicsBitmapData( renderer ) |
2fc9c1ea KO |
1259 | { |
1260 | wxCHECK_RET( bmp.IsOk(), wxT("Invalid bitmap in wxCairoContext::DrawBitmap")); | |
1261 | ||
711a4812 | 1262 | #ifdef wxHAS_RAW_BITMAP |
2fc9c1ea KO |
1263 | // Create a surface object and copy the bitmap pixel data to it. if the |
1264 | // image has alpha (or a mask represented as alpha) then we'll use a | |
1265 | // different format and iterator than if it doesn't... | |
6e6f074b | 1266 | cairo_format_t bufferFormat = bmp.GetDepth() == 32 |
75ded4d1 | 1267 | #ifdef __WXGTK__ |
5f606e65 | 1268 | || bmp.GetMask() |
932d0768 | 1269 | #endif |
5f606e65 VZ |
1270 | ? CAIRO_FORMAT_ARGB32 |
1271 | : CAIRO_FORMAT_RGB24; | |
1272 | ||
1273 | int stride = InitBuffer(bmp.GetWidth(), bmp.GetHeight(), bufferFormat); | |
1274 | ||
5f606e65 VZ |
1275 | wxBitmap bmpSource = bmp; // we need a non-const instance |
1276 | wxUint32* data = (wxUint32*)m_buffer; | |
1277 | ||
1278 | if ( bufferFormat == CAIRO_FORMAT_ARGB32 ) | |
1279 | { | |
1280 | // use the bitmap's alpha | |
95c0502b VZ |
1281 | wxAlphaPixelData |
1282 | pixData(bmpSource, wxPoint(0, 0), wxSize(m_width, m_height)); | |
2fc9c1ea KO |
1283 | wxCHECK_RET( pixData, wxT("Failed to gain raw access to bitmap data.")); |
1284 | ||
1285 | wxAlphaPixelData::Iterator p(pixData); | |
95c0502b | 1286 | for (int y=0; y<m_height; y++) |
2fc9c1ea KO |
1287 | { |
1288 | wxAlphaPixelData::Iterator rowStart = p; | |
5f606e65 | 1289 | wxUint32* const rowStartDst = data; |
95c0502b | 1290 | for (int x=0; x<m_width; x++) |
2fc9c1ea KO |
1291 | { |
1292 | // Each pixel in CAIRO_FORMAT_ARGB32 is a 32-bit quantity, | |
1293 | // with alpha in the upper 8 bits, then red, then green, then | |
1294 | // blue. The 32-bit quantities are stored native-endian. | |
1295 | // Pre-multiplied alpha is used. | |
1296 | unsigned char alpha = p.Alpha(); | |
1297 | if (alpha == 0) | |
1298 | *data = 0; | |
1299 | else | |
1300 | *data = ( alpha << 24 | |
1301 | | (p.Red() * alpha/255) << 16 | |
1302 | | (p.Green() * alpha/255) << 8 | |
1303 | | (p.Blue() * alpha/255) ); | |
1304 | ++data; | |
1305 | ++p; | |
1306 | } | |
5f606e65 VZ |
1307 | |
1308 | data = rowStartDst + stride / 4; | |
2fc9c1ea KO |
1309 | p = rowStart; |
1310 | p.OffsetY(pixData, 1); | |
1311 | } | |
1312 | } | |
1313 | else // no alpha | |
1314 | { | |
95c0502b VZ |
1315 | wxNativePixelData |
1316 | pixData(bmpSource, wxPoint(0, 0), wxSize(m_width, m_height)); | |
2fc9c1ea KO |
1317 | wxCHECK_RET( pixData, wxT("Failed to gain raw access to bitmap data.")); |
1318 | ||
1319 | wxNativePixelData::Iterator p(pixData); | |
95c0502b | 1320 | for (int y=0; y<m_height; y++) |
2fc9c1ea KO |
1321 | { |
1322 | wxNativePixelData::Iterator rowStart = p; | |
5f606e65 | 1323 | wxUint32* const rowStartDst = data; |
95c0502b | 1324 | for (int x=0; x<m_width; x++) |
2fc9c1ea KO |
1325 | { |
1326 | // Each pixel in CAIRO_FORMAT_RGB24 is a 32-bit quantity, with | |
1327 | // the upper 8 bits unused. Red, Green, and Blue are stored in | |
1328 | // the remaining 24 bits in that order. The 32-bit quantities | |
1329 | // are stored native-endian. | |
1330 | *data = ( p.Red() << 16 | p.Green() << 8 | p.Blue() ); | |
1331 | ++data; | |
1332 | ++p; | |
1333 | } | |
5f606e65 VZ |
1334 | |
1335 | data = rowStartDst + stride / 4; | |
2fc9c1ea KO |
1336 | p = rowStart; |
1337 | p.OffsetY(pixData, 1); | |
1338 | } | |
1339 | } | |
75ded4d1 RD |
1340 | #ifdef __WXMSW__ |
1341 | // if there is a mask, set the alpha bytes in the target buffer to | |
1342 | // fully transparent or fully opaque | |
1343 | if (bmpSource.GetMask()) | |
1344 | { | |
1345 | wxBitmap bmpMask = bmpSource.GetMaskBitmap(); | |
1346 | bufferFormat = CAIRO_FORMAT_ARGB32; | |
1347 | data = (wxUint32*)m_buffer; | |
95c0502b VZ |
1348 | wxNativePixelData |
1349 | pixData(bmpMask, wxPoint(0, 0), wxSize(m_width, m_height)); | |
1350 | wxCHECK_RET( pixData, wxT("Failed to gain raw access to mask data.")); | |
75ded4d1 RD |
1351 | |
1352 | wxNativePixelData::Iterator p(pixData); | |
95c0502b | 1353 | for (int y=0; y<m_height; y++) |
75ded4d1 RD |
1354 | { |
1355 | wxNativePixelData::Iterator rowStart = p; | |
5f606e65 | 1356 | wxUint32* const rowStartDst = data; |
95c0502b | 1357 | for (int x=0; x<m_width; x++) |
75ded4d1 RD |
1358 | { |
1359 | if (p.Red()+p.Green()+p.Blue() == 0) | |
1360 | *data = 0; | |
1361 | else | |
1362 | *data = (wxALPHA_OPAQUE << 24) | (*data & 0x00FFFFFF); | |
1363 | ++data; | |
1364 | ++p; | |
1365 | } | |
5f606e65 VZ |
1366 | |
1367 | data = rowStartDst + stride / 4; | |
75ded4d1 RD |
1368 | p = rowStart; |
1369 | p.OffsetY(pixData, 1); | |
1370 | } | |
1371 | } | |
1372 | #endif | |
1373 | ||
5f606e65 | 1374 | InitSurface(bufferFormat, stride); |
711a4812 | 1375 | #endif // wxHAS_RAW_BITMAP |
2fc9c1ea KO |
1376 | } |
1377 | ||
08b2d55f VZ |
1378 | #if wxUSE_IMAGE |
1379 | ||
1380 | // Helper functions for dealing with alpha pre-multiplication. | |
1381 | namespace | |
1382 | { | |
1383 | ||
1384 | inline unsigned char Premultiply(unsigned char alpha, unsigned char data) | |
1385 | { | |
1386 | return alpha ? (data * alpha)/0xff : data; | |
1387 | } | |
1388 | ||
1389 | inline unsigned char Unpremultiply(unsigned char alpha, unsigned char data) | |
1390 | { | |
1391 | return alpha ? (data * 0xff)/alpha : data; | |
1392 | } | |
1393 | ||
1394 | } // anonymous namespace | |
1395 | ||
1396 | wxCairoBitmapData::wxCairoBitmapData(wxGraphicsRenderer* renderer, | |
1397 | const wxImage& image) | |
8b180bde | 1398 | : wxGraphicsBitmapData(renderer) |
08b2d55f VZ |
1399 | { |
1400 | const cairo_format_t bufferFormat = image.HasAlpha() | |
1401 | ? CAIRO_FORMAT_ARGB32 | |
1402 | : CAIRO_FORMAT_RGB24; | |
1403 | ||
0a470e5e | 1404 | int stride = InitBuffer(image.GetWidth(), image.GetHeight(), bufferFormat); |
08b2d55f VZ |
1405 | |
1406 | // Copy wxImage data into the buffer. Notice that we work with wxUint32 | |
1407 | // values and not bytes becase Cairo always works with buffers in native | |
1408 | // endianness. | |
1409 | wxUint32* dst = reinterpret_cast<wxUint32*>(m_buffer); | |
1410 | const unsigned char* src = image.GetData(); | |
1411 | ||
1412 | if ( bufferFormat == CAIRO_FORMAT_ARGB32 ) | |
1413 | { | |
1414 | const unsigned char* alpha = image.GetAlpha(); | |
1415 | ||
1416 | for ( int y = 0; y < m_height; y++ ) | |
1417 | { | |
0a470e5e VZ |
1418 | wxUint32* const rowStartDst = dst; |
1419 | ||
08b2d55f VZ |
1420 | for ( int x = 0; x < m_width; x++ ) |
1421 | { | |
1422 | const unsigned char a = *alpha++; | |
1423 | ||
1424 | *dst++ = a << 24 | | |
1425 | Premultiply(a, src[0]) << 16 | | |
1426 | Premultiply(a, src[1]) << 8 | | |
1427 | Premultiply(a, src[2]); | |
1428 | src += 3; | |
1429 | } | |
0a470e5e VZ |
1430 | |
1431 | dst = rowStartDst + stride / 4; | |
08b2d55f VZ |
1432 | } |
1433 | } | |
1434 | else // RGB | |
1435 | { | |
1436 | for ( int y = 0; y < m_height; y++ ) | |
1437 | { | |
0a470e5e VZ |
1438 | wxUint32* const rowStartDst = dst; |
1439 | ||
08b2d55f VZ |
1440 | for ( int x = 0; x < m_width; x++ ) |
1441 | { | |
1442 | *dst++ = src[0] << 16 | | |
1443 | src[1] << 8 | | |
1444 | src[2]; | |
1445 | src += 3; | |
1446 | } | |
0a470e5e VZ |
1447 | |
1448 | dst = rowStartDst + stride / 4; | |
08b2d55f VZ |
1449 | } |
1450 | } | |
1451 | ||
0a470e5e | 1452 | InitSurface(bufferFormat, stride); |
08b2d55f VZ |
1453 | } |
1454 | ||
1455 | wxImage wxCairoBitmapData::ConvertToImage() const | |
1456 | { | |
1457 | wxImage image(m_width, m_height, false /* don't clear */); | |
1458 | ||
1459 | // Get the surface type and format. | |
1460 | wxCHECK_MSG( cairo_surface_get_type(m_surface) == CAIRO_SURFACE_TYPE_IMAGE, | |
1461 | wxNullImage, | |
1462 | wxS("Can't convert non-image surface to image.") ); | |
1463 | ||
1464 | switch ( cairo_image_surface_get_format(m_surface) ) | |
1465 | { | |
1466 | case CAIRO_FORMAT_ARGB32: | |
1467 | image.SetAlpha(); | |
1468 | break; | |
1469 | ||
1470 | case CAIRO_FORMAT_RGB24: | |
1471 | // Nothing to do, we don't use alpha by default. | |
1472 | break; | |
1473 | ||
1474 | case CAIRO_FORMAT_A8: | |
1475 | case CAIRO_FORMAT_A1: | |
1476 | wxFAIL_MSG(wxS("Unsupported Cairo image surface type.")); | |
1477 | return wxNullImage; | |
1478 | ||
1479 | default: | |
1480 | wxFAIL_MSG(wxS("Unknown Cairo image surface type.")); | |
1481 | return wxNullImage; | |
1482 | } | |
1483 | ||
1484 | // Prepare for copying data. | |
1485 | const wxUint32* src = (wxUint32*)cairo_image_surface_get_data(m_surface); | |
1486 | wxCHECK_MSG( src, wxNullImage, wxS("Failed to get Cairo surface data.") ); | |
1487 | ||
1488 | int stride = cairo_image_surface_get_stride(m_surface); | |
1489 | wxCHECK_MSG( stride > 0, wxNullImage, | |
1490 | wxS("Failed to get Cairo surface stride.") ); | |
1491 | ||
1492 | // As we work with wxUint32 pointers and not char ones, we need to adjust | |
1493 | // the stride accordingly. This should be lossless as the stride must be a | |
1494 | // multiple of pixel size. | |
1495 | wxASSERT_MSG( !(stride % sizeof(wxUint32)), wxS("Unexpected stride.") ); | |
1496 | stride /= sizeof(wxUint32); | |
1497 | ||
1498 | unsigned char* dst = image.GetData(); | |
1499 | unsigned char *alpha = image.GetAlpha(); | |
1500 | if ( alpha ) | |
1501 | { | |
1502 | // We need to also copy alpha and undo the pre-multiplication as Cairo | |
1503 | // stores pre-multiplied values in this format while wxImage does not. | |
1504 | for ( int y = 0; y < m_height; y++ ) | |
1505 | { | |
1506 | const wxUint32* const rowStart = src; | |
1507 | for ( int x = 0; x < m_width; x++ ) | |
1508 | { | |
1509 | const wxUint32 argb = *src++; | |
1510 | ||
1511 | *alpha++ = (argb & 0xff000000) >> 24; | |
1512 | ||
1513 | // Copy the RGB data undoing the pre-multiplication. | |
1514 | *dst++ = Unpremultiply(*alpha, (argb & 0x00ff0000) >> 16); | |
1515 | *dst++ = Unpremultiply(*alpha, (argb & 0x0000ff00) >> 8); | |
1516 | *dst++ = Unpremultiply(*alpha, (argb & 0x000000ff)); | |
1517 | } | |
1518 | ||
1519 | src = rowStart + stride; | |
1520 | } | |
1521 | } | |
1522 | else // RGB | |
1523 | { | |
1524 | // Things are pretty simple in this case, just copy RGB bytes. | |
1525 | for ( int y = 0; y < m_height; y++ ) | |
1526 | { | |
1527 | const wxUint32* const rowStart = src; | |
1528 | for ( int x = 0; x < m_width; x++ ) | |
1529 | { | |
1530 | const wxUint32 argb = *src++; | |
1531 | ||
1532 | *dst++ = (argb & 0x00ff0000) >> 16; | |
1533 | *dst++ = (argb & 0x0000ff00) >> 8; | |
1534 | *dst++ = (argb & 0x000000ff); | |
1535 | } | |
1536 | ||
1537 | src = rowStart + stride; | |
1538 | } | |
1539 | } | |
1540 | ||
1541 | return image; | |
1542 | } | |
1543 | ||
1544 | #endif // wxUSE_IMAGE | |
1545 | ||
2fc9c1ea KO |
1546 | wxCairoBitmapData::~wxCairoBitmapData() |
1547 | { | |
66f917a7 KO |
1548 | if (m_pattern) |
1549 | cairo_pattern_destroy(m_pattern); | |
4ee4c7b9 | 1550 | |
66f917a7 KO |
1551 | if (m_surface) |
1552 | cairo_surface_destroy(m_surface); | |
4ee4c7b9 | 1553 | |
2fc9c1ea KO |
1554 | delete [] m_buffer; |
1555 | } | |
1556 | ||
00bd8e72 SC |
1557 | //----------------------------------------------------------------------------- |
1558 | // wxCairoContext implementation | |
1559 | //----------------------------------------------------------------------------- | |
1560 | ||
e7f9f819 SC |
1561 | class wxCairoOffsetHelper |
1562 | { | |
1563 | public : | |
1564 | wxCairoOffsetHelper( cairo_t* ctx , bool offset ) | |
1565 | { | |
1566 | m_ctx = ctx; | |
1567 | m_offset = offset; | |
1568 | if ( m_offset ) | |
1569 | cairo_translate( m_ctx, 0.5, 0.5 ); | |
1570 | } | |
1571 | ~wxCairoOffsetHelper( ) | |
1572 | { | |
1573 | if ( m_offset ) | |
1574 | cairo_translate( m_ctx, -0.5, -0.5 ); | |
1575 | } | |
1576 | public : | |
1577 | cairo_t* m_ctx; | |
1578 | bool m_offset; | |
1579 | } ; | |
1580 | ||
c9008abe RR |
1581 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxPrinterDC& dc ) |
1582 | : wxGraphicsContext(renderer) | |
1583 | { | |
932d0768 RD |
1584 | #ifdef __WXMSW__ |
1585 | // wxMSW contexts always use MM_ANISOTROPIC, which messes up | |
1586 | // text rendering when printing using Cairo. Switch it to MM_TEXT | |
1587 | // map mode to avoid this problem. | |
1588 | HDC hdc = (HDC)dc.GetHDC(); | |
1589 | ::SetMapMode(hdc, MM_TEXT); | |
1590 | m_mswSurface = cairo_win32_printing_surface_create(hdc); | |
1591 | Init( cairo_create(m_mswSurface) ); | |
1592 | #endif | |
1593 | ||
c9008abe RR |
1594 | #ifdef __WXGTK20__ |
1595 | const wxDCImpl *impl = dc.GetImpl(); | |
1596 | Init( (cairo_t*) impl->GetCairoContext() ); | |
932d0768 | 1597 | #endif |
b129eaa3 VZ |
1598 | wxSize sz = dc.GetSize(); |
1599 | m_width = sz.x; | |
1600 | m_height = sz.y; | |
1601 | ||
c9008abe | 1602 | wxPoint org = dc.GetDeviceOrigin(); |
eaeb9985 | 1603 | cairo_translate( m_context, org.x, org.y ); |
49ad157e | 1604 | |
c9008abe RR |
1605 | double sx,sy; |
1606 | dc.GetUserScale( &sx, &sy ); | |
932d0768 RD |
1607 | |
1608 | // TODO: Determine if these fixes are needed on other platforms too. | |
1609 | // On MSW, without this the printer context will not respect wxDC SetMapMode calls. | |
1610 | // For example, using dc.SetMapMode(wxMM_POINTS) can let us share printer and screen | |
1611 | // drawing code | |
1612 | #ifdef __WXMSW__ | |
1613 | double lsx,lsy; | |
1614 | dc.GetLogicalScale( &lsx, &lsy ); | |
1615 | sx *= lsx; | |
1616 | sy *= lsy; | |
1617 | #endif | |
eaeb9985 | 1618 | cairo_scale( m_context, sx, sy ); |
c9008abe | 1619 | |
eaeb9985 RR |
1620 | org = dc.GetLogicalOrigin(); |
1621 | cairo_translate( m_context, -org.x, -org.y ); | |
c9008abe RR |
1622 | } |
1623 | ||
00bd8e72 SC |
1624 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxWindowDC& dc ) |
1625 | : wxGraphicsContext(renderer) | |
1626 | { | |
b129eaa3 VZ |
1627 | int width, height; |
1628 | dc.GetSize( &width, &height ); | |
1629 | m_width = width; | |
1630 | m_height = height; | |
1631 | ||
136a1de9 SC |
1632 | m_enableOffset = true; |
1633 | ||
932d0768 RD |
1634 | #ifdef __WXMSW__ |
1635 | m_mswSurface = cairo_win32_surface_create((HDC)dc.GetHDC()); | |
1636 | Init( cairo_create(m_mswSurface) ); | |
1637 | #endif | |
1638 | ||
c9008abe | 1639 | #ifdef __WXGTK20__ |
888dde65 | 1640 | wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl(); |
64a226f7 | 1641 | Init( gdk_cairo_create( impldc->GetGDKWindow() ) ); |
49ad157e VZ |
1642 | |
1643 | #if 0 | |
c9008abe | 1644 | wxGraphicsMatrix matrix = CreateMatrix(); |
49ad157e | 1645 | |
c9008abe RR |
1646 | wxPoint org = dc.GetDeviceOrigin(); |
1647 | matrix.Translate( org.x, org.y ); | |
49ad157e | 1648 | |
c9008abe RR |
1649 | org = dc.GetLogicalOrigin(); |
1650 | matrix.Translate( -org.x, -org.y ); | |
1651 | ||
1652 | double sx,sy; | |
1653 | dc.GetUserScale( &sx, &sy ); | |
1654 | matrix.Scale( sx, sy ); | |
1655 | ||
1656 | ConcatTransform( matrix ); | |
1657 | #endif | |
e7f9f819 | 1658 | #endif |
c9008abe | 1659 | |
888dde65 | 1660 | #ifdef __WXMAC__ |
888dde65 RR |
1661 | CGContextRef cgcontext = (CGContextRef)dc.GetWindow()->MacGetCGContextRef(); |
1662 | cairo_surface_t* surface = cairo_quartz_surface_create_for_cg_context(cgcontext, width, height); | |
1663 | Init( cairo_create( surface ) ); | |
1664 | cairo_surface_destroy( surface ); | |
1665 | #endif | |
1666 | } | |
1667 | ||
1668 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxMemoryDC& dc ) | |
1669 | : wxGraphicsContext(renderer) | |
1670 | { | |
b129eaa3 VZ |
1671 | int width, height; |
1672 | dc.GetSize( &width, &height ); | |
1673 | m_width = width; | |
1674 | m_height = height; | |
1675 | ||
136a1de9 | 1676 | m_enableOffset = true; |
932d0768 RD |
1677 | |
1678 | #ifdef __WXMSW__ | |
caf1a3aa RD |
1679 | |
1680 | HDC hdc = (HDC)dc.GetHDC(); | |
1681 | ||
1682 | HBITMAP bitmap = (HBITMAP)GetCurrentObject(hdc, OBJ_BITMAP); | |
1683 | ||
1684 | BITMAP info; | |
1685 | bool hasBitmap = false; | |
1686 | ||
1687 | // cairo_win32_surface_create creates a 24-bit bitmap, | |
1688 | // so if we have alpha, we need to create a 32-bit surface instead. | |
1689 | if (!GetObject(bitmap, sizeof(info), &info) || info.bmBitsPixel < 32) | |
1690 | m_mswSurface = cairo_win32_surface_create(hdc); | |
1691 | else { | |
1692 | hasBitmap = true; | |
1693 | m_mswSurface = cairo_image_surface_create_for_data((unsigned char*)info.bmBits, | |
1694 | CAIRO_FORMAT_ARGB32, | |
1695 | info.bmWidth, | |
1696 | info.bmHeight, | |
1697 | info.bmWidthBytes); | |
1698 | } | |
1699 | ||
932d0768 | 1700 | Init( cairo_create(m_mswSurface) ); |
caf1a3aa RD |
1701 | // If we've created a image surface, we need to flip the Y axis so that |
1702 | // all drawing will appear right side up. | |
1703 | if (hasBitmap) { | |
1704 | cairo_matrix_t matrix; | |
1705 | cairo_matrix_init(&matrix, 1.0, 0.0, 0.0, -1.0, 0.0, height); | |
1706 | cairo_set_matrix(m_context, &matrix); | |
1707 | } | |
932d0768 | 1708 | #endif |
136a1de9 | 1709 | |
c9008abe | 1710 | #ifdef __WXGTK20__ |
888dde65 RR |
1711 | wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl(); |
1712 | Init( gdk_cairo_create( impldc->GetGDKWindow() ) ); | |
49ad157e VZ |
1713 | |
1714 | #if 0 | |
c9008abe | 1715 | wxGraphicsMatrix matrix = CreateMatrix(); |
49ad157e | 1716 | |
c9008abe RR |
1717 | wxPoint org = dc.GetDeviceOrigin(); |
1718 | matrix.Translate( org.x, org.y ); | |
49ad157e | 1719 | |
c9008abe RR |
1720 | org = dc.GetLogicalOrigin(); |
1721 | matrix.Translate( -org.x, -org.y ); | |
1722 | ||
1723 | double sx,sy; | |
1724 | dc.GetUserScale( &sx, &sy ); | |
1725 | matrix.Scale( sx, sy ); | |
1726 | ||
1727 | ConcatTransform( matrix ); | |
64a226f7 | 1728 | #endif |
c9008abe RR |
1729 | #endif |
1730 | ||
e7f9f819 | 1731 | #ifdef __WXMAC__ |
e7f9f819 SC |
1732 | CGContextRef cgcontext = (CGContextRef)dc.GetWindow()->MacGetCGContextRef(); |
1733 | cairo_surface_t* surface = cairo_quartz_surface_create_for_cg_context(cgcontext, width, height); | |
1734 | Init( cairo_create( surface ) ); | |
1735 | cairo_surface_destroy( surface ); | |
00bd8e72 | 1736 | #endif |
00bd8e72 SC |
1737 | } |
1738 | ||
c9008abe | 1739 | #ifdef __WXGTK20__ |
00bd8e72 SC |
1740 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, GdkDrawable *drawable ) |
1741 | : wxGraphicsContext(renderer) | |
1742 | { | |
e7f9f819 | 1743 | Init( gdk_cairo_create( drawable ) ); |
b129eaa3 VZ |
1744 | |
1745 | int width, height; | |
1746 | gdk_drawable_get_size( drawable, &width, &height ); | |
1747 | m_width = width; | |
1748 | m_height = height; | |
00bd8e72 SC |
1749 | } |
1750 | #endif | |
1751 | ||
c0e69d72 KO |
1752 | #ifdef __WXMSW__ |
1753 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, HDC handle ) | |
1754 | : wxGraphicsContext(renderer) | |
1755 | { | |
1756 | m_mswSurface = cairo_win32_surface_create(handle); | |
b129eaa3 VZ |
1757 | Init( cairo_create(m_mswSurface) ); |
1758 | m_width = | |
1759 | m_height = 0; | |
c0e69d72 KO |
1760 | } |
1761 | #endif | |
1762 | ||
1763 | ||
00bd8e72 SC |
1764 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, cairo_t *context ) |
1765 | : wxGraphicsContext(renderer) | |
1766 | { | |
e7f9f819 | 1767 | Init( context ); |
b129eaa3 VZ |
1768 | m_width = |
1769 | m_height = 0; | |
184fc6c8 SC |
1770 | } |
1771 | ||
00bd8e72 | 1772 | wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, wxWindow *window) |
365d11be VZ |
1773 | : wxGraphicsContext(renderer) |
1774 | #ifdef __WXMSW__ | |
1775 | , m_mswWindowHDC(GetHwndOf(window)) | |
1776 | #endif | |
184fc6c8 | 1777 | { |
136a1de9 | 1778 | m_enableOffset = true; |
00bd8e72 SC |
1779 | #ifdef __WXGTK__ |
1780 | // something along these lines (copied from dcclient) | |
1781 | ||
00bd8e72 SC |
1782 | // Some controls don't have m_wxwindow - like wxStaticBox, but the user |
1783 | // code should still be able to create wxClientDCs for them, so we will | |
1784 | // use the parent window here then. | |
82a234fb | 1785 | if (window->m_wxwindow == NULL) |
184fc6c8 | 1786 | { |
00bd8e72 | 1787 | window = window->GetParent(); |
184fc6c8 | 1788 | } |
00bd8e72 | 1789 | |
82a234fb | 1790 | wxASSERT_MSG( window->m_wxwindow, wxT("wxCairoContext needs a widget") ); |
00bd8e72 | 1791 | |
82a234fb | 1792 | Init(gdk_cairo_create(window->GTKGetDrawingWindow())); |
b129eaa3 VZ |
1793 | |
1794 | wxSize sz = window->GetSize(); | |
1795 | m_width = sz.x; | |
1796 | m_height = sz.y; | |
00bd8e72 | 1797 | #endif |
9f2b6b31 RD |
1798 | |
1799 | #ifdef __WXMSW__ | |
365d11be | 1800 | m_mswSurface = cairo_win32_surface_create((HDC)m_mswWindowHDC); |
9f2b6b31 RD |
1801 | Init(cairo_create(m_mswSurface)); |
1802 | #endif | |
1803 | ||
00bd8e72 SC |
1804 | } |
1805 | ||
79313208 VZ |
1806 | wxCairoContext::wxCairoContext(wxGraphicsRenderer* renderer) : |
1807 | wxGraphicsContext(renderer) | |
1808 | { | |
1809 | m_context = NULL; | |
1810 | } | |
1811 | ||
00bd8e72 SC |
1812 | wxCairoContext::~wxCairoContext() |
1813 | { | |
00bd8e72 SC |
1814 | if ( m_context ) |
1815 | { | |
1816 | PopState(); | |
1817 | PopState(); | |
1818 | cairo_destroy(m_context); | |
1819 | } | |
c0e69d72 KO |
1820 | #ifdef __WXMSW__ |
1821 | if ( m_mswSurface ) | |
1822 | cairo_surface_destroy(m_mswSurface); | |
1823 | #endif | |
00bd8e72 SC |
1824 | } |
1825 | ||
e7f9f819 SC |
1826 | void wxCairoContext::Init(cairo_t *context) |
1827 | { | |
1828 | m_context = context ; | |
1829 | PushState(); | |
1830 | PushState(); | |
1831 | } | |
1832 | ||
00bd8e72 | 1833 | |
d9485f89 | 1834 | void wxCairoContext::Clip( const wxRegion& region ) |
00bd8e72 | 1835 | { |
d9485f89 RD |
1836 | // Create a path with all the rectangles in the region |
1837 | wxGraphicsPath path = GetRenderer()->CreatePath(); | |
1838 | wxRegionIterator ri(region); | |
1839 | while (ri) | |
1840 | { | |
1841 | path.AddRectangle(ri.GetX(), ri.GetY(), ri.GetW(), ri.GetH()); | |
82a234fb | 1842 | ++ri; |
d9485f89 | 1843 | } |
49ad157e | 1844 | |
d9485f89 RD |
1845 | // Put it in the context |
1846 | cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ; | |
1847 | cairo_append_path(m_context, cp); | |
1848 | ||
1849 | // clip to that path | |
1850 | cairo_clip(m_context); | |
49ad157e | 1851 | path.UnGetNativePath(cp); |
00bd8e72 SC |
1852 | } |
1853 | ||
1854 | void wxCairoContext::Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1855 | { | |
d9485f89 RD |
1856 | // Create a path with this rectangle |
1857 | wxGraphicsPath path = GetRenderer()->CreatePath(); | |
1858 | path.AddRectangle(x,y,w,h); | |
1859 | ||
1860 | // Put it in the context | |
1861 | cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ; | |
1862 | cairo_append_path(m_context, cp); | |
1863 | ||
1864 | // clip to that path | |
71696da0 | 1865 | cairo_clip(m_context); |
49ad157e | 1866 | path.UnGetNativePath(cp); |
00bd8e72 SC |
1867 | } |
1868 | ||
1869 | void wxCairoContext::ResetClip() | |
1870 | { | |
d9485f89 | 1871 | cairo_reset_clip(m_context); |
00bd8e72 SC |
1872 | } |
1873 | ||
1874 | ||
0db8a70e | 1875 | void wxCairoContext::StrokePath( const wxGraphicsPath& path ) |
00bd8e72 | 1876 | { |
87752530 | 1877 | if ( !m_pen.IsNull() ) |
49ad157e VZ |
1878 | { |
1879 | wxCairoOffsetHelper helper( m_context, ShouldOffset() ) ; | |
0db8a70e | 1880 | cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ; |
00bd8e72 | 1881 | cairo_append_path(m_context,cp); |
87752530 | 1882 | ((wxCairoPenData*)m_pen.GetRefData())->Apply(this); |
00bd8e72 | 1883 | cairo_stroke(m_context); |
0db8a70e | 1884 | path.UnGetNativePath(cp); |
00bd8e72 SC |
1885 | } |
1886 | } | |
1887 | ||
94a007ec | 1888 | void wxCairoContext::FillPath( const wxGraphicsPath& path , wxPolygonFillMode fillStyle ) |
00bd8e72 | 1889 | { |
87752530 | 1890 | if ( !m_brush.IsNull() ) |
00bd8e72 | 1891 | { |
e7f9f819 | 1892 | wxCairoOffsetHelper helper( m_context, ShouldOffset() ) ; |
0db8a70e | 1893 | cairo_path_t* cp = (cairo_path_t*) path.GetNativePath() ; |
00bd8e72 | 1894 | cairo_append_path(m_context,cp); |
87752530 | 1895 | ((wxCairoBrushData*)m_brush.GetRefData())->Apply(this); |
00bd8e72 SC |
1896 | cairo_set_fill_rule(m_context,fillStyle==wxODDEVEN_RULE ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING); |
1897 | cairo_fill(m_context); | |
0db8a70e | 1898 | path.UnGetNativePath(cp); |
00bd8e72 SC |
1899 | } |
1900 | } | |
1901 | ||
1902 | void wxCairoContext::Rotate( wxDouble angle ) | |
1903 | { | |
1904 | cairo_rotate(m_context,angle); | |
1905 | } | |
1906 | ||
1907 | void wxCairoContext::Translate( wxDouble dx , wxDouble dy ) | |
1908 | { | |
1909 | cairo_translate(m_context,dx,dy); | |
1910 | } | |
1911 | ||
1912 | void wxCairoContext::Scale( wxDouble xScale , wxDouble yScale ) | |
1913 | { | |
1914 | cairo_scale(m_context,xScale,yScale); | |
1915 | } | |
1916 | ||
1917 | // concatenates this transform with the current transform of this context | |
0db8a70e | 1918 | void wxCairoContext::ConcatTransform( const wxGraphicsMatrix& matrix ) |
00bd8e72 | 1919 | { |
0db8a70e | 1920 | cairo_transform(m_context,(const cairo_matrix_t *) matrix.GetNativeMatrix()); |
00bd8e72 SC |
1921 | } |
1922 | ||
1923 | // sets the transform of this context | |
0db8a70e | 1924 | void wxCairoContext::SetTransform( const wxGraphicsMatrix& matrix ) |
00bd8e72 | 1925 | { |
0db8a70e | 1926 | cairo_set_matrix(m_context,(const cairo_matrix_t*) matrix.GetNativeMatrix()); |
00bd8e72 SC |
1927 | } |
1928 | ||
1929 | // gets the matrix of this context | |
0db8a70e | 1930 | wxGraphicsMatrix wxCairoContext::GetTransform() const |
00bd8e72 | 1931 | { |
0db8a70e RD |
1932 | wxGraphicsMatrix matrix = CreateMatrix(); |
1933 | cairo_get_matrix(m_context,(cairo_matrix_t*) matrix.GetNativeMatrix()); | |
1934 | return matrix; | |
00bd8e72 SC |
1935 | } |
1936 | ||
1937 | ||
1938 | ||
1939 | void wxCairoContext::PushState() | |
1940 | { | |
1941 | cairo_save(m_context); | |
1942 | } | |
1943 | ||
1944 | void wxCairoContext::PopState() | |
1945 | { | |
1946 | cairo_restore(m_context); | |
1947 | } | |
184fc6c8 SC |
1948 | |
1949 | void wxCairoContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1950 | { | |
2fc9c1ea | 1951 | wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp); |
3c10f6db | 1952 | DrawBitmap(bitmap, x, y, w, h); |
d9485f89 | 1953 | |
2fc9c1ea | 1954 | } |
49ad157e | 1955 | |
2fc9c1ea KO |
1956 | void wxCairoContext::DrawBitmap(const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) |
1957 | { | |
d9485f89 | 1958 | PushState(); |
49ad157e | 1959 | |
d9485f89 RD |
1960 | // In case we're scaling the image by using a width and height different |
1961 | // than the bitmap's size create a pattern transformation on the surface and | |
1962 | // draw the transformed pattern. | |
2fc9c1ea KO |
1963 | wxCairoBitmapData* data = static_cast<wxCairoBitmapData*>(bmp.GetRefData()); |
1964 | cairo_pattern_t* pattern = data->GetCairoPattern(); | |
1965 | wxSize size = data->GetSize(); | |
1966 | ||
1967 | wxDouble scaleX = w / size.GetWidth(); | |
1968 | wxDouble scaleY = h / size.GetHeight(); | |
d9485f89 RD |
1969 | |
1970 | // prepare to draw the image | |
1971 | cairo_translate(m_context, x, y); | |
ce6b1014 | 1972 | cairo_scale(m_context, scaleX, scaleY); |
d9485f89 RD |
1973 | cairo_set_source(m_context, pattern); |
1974 | // use the original size here since the context is scaled already... | |
2fc9c1ea | 1975 | cairo_rectangle(m_context, 0, 0, size.GetWidth(), size.GetHeight()); |
d9485f89 RD |
1976 | // fill the rectangle using the pattern |
1977 | cairo_fill(m_context); | |
1978 | ||
d9485f89 | 1979 | PopState(); |
184fc6c8 SC |
1980 | } |
1981 | ||
1982 | void wxCairoContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1983 | { | |
d9485f89 RD |
1984 | // An icon is a bitmap on wxGTK, so do this the easy way. When we want to |
1985 | // start using the Cairo backend on other platforms then we may need to | |
1986 | // fiddle with this... | |
1987 | DrawBitmap(icon, x, y, w, h); | |
184fc6c8 SC |
1988 | } |
1989 | ||
1990 | ||
0b7dce54 | 1991 | void wxCairoContext::DoDrawText(const wxString& str, wxDouble x, wxDouble y) |
184fc6c8 | 1992 | { |
0b7dce54 VZ |
1993 | wxCHECK_RET( !m_font.IsNull(), |
1994 | wxT("wxCairoContext::DrawText - no valid font set") ); | |
1011fbeb SC |
1995 | |
1996 | if ( str.empty()) | |
d9485f89 | 1997 | return; |
84f67b11 | 1998 | |
10c508ef | 1999 | const wxCharBuffer data = str.utf8_str(); |
e7f9f819 SC |
2000 | if ( !data ) |
2001 | return; | |
0b7dce54 | 2002 | |
fa378d36 VZ |
2003 | if ( ((wxCairoFontData*)m_font.GetRefData())->Apply(this) ) |
2004 | { | |
0b7dce54 | 2005 | #ifdef __WXGTK__ |
fa378d36 | 2006 | PangoLayout *layout = pango_cairo_create_layout (m_context); |
304c3065 PC |
2007 | const wxFont& font = static_cast<wxCairoFontData*>(m_font.GetRefData())->GetFont(); |
2008 | pango_layout_set_font_description(layout, font.GetNativeFontInfo()->description); | |
2009 | pango_layout_set_text(layout, data, data.length()); | |
2010 | font.GTKSetPangoAttrs(layout); | |
0d19936d | 2011 | |
fa378d36 VZ |
2012 | cairo_move_to(m_context, x, y); |
2013 | pango_cairo_show_layout (m_context, layout); | |
2014 | ||
2015 | g_object_unref (layout); | |
2016 | ||
2017 | // Don't use Cairo text API, we already did everything. | |
2018 | return; | |
2019 | #endif | |
2020 | } | |
e7f9f819 | 2021 | |
d9485f89 RD |
2022 | // Cairo's x,y for drawing text is at the baseline, so we need to adjust |
2023 | // the position we move to by the ascent. | |
2024 | cairo_font_extents_t fe; | |
2025 | cairo_font_extents(m_context, &fe); | |
2026 | cairo_move_to(m_context, x, y+fe.ascent); | |
49ad157e | 2027 | |
0b7dce54 | 2028 | cairo_show_text(m_context, data); |
184fc6c8 SC |
2029 | } |
2030 | ||
2031 | void wxCairoContext::GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, | |
2032 | wxDouble *descent, wxDouble *externalLeading ) const | |
2033 | { | |
1011fbeb SC |
2034 | wxCHECK_RET( !m_font.IsNull(), wxT("wxCairoContext::GetTextExtent - no valid font set") ); |
2035 | ||
e7f9f819 SC |
2036 | if ( width ) |
2037 | *width = 0; | |
2038 | if ( height ) | |
2039 | *height = 0; | |
2040 | if ( descent ) | |
2041 | *descent = 0; | |
2042 | if ( externalLeading ) | |
2043 | *externalLeading = 0; | |
2044 | ||
1011fbeb | 2045 | if ( str.empty()) |
d9485f89 RD |
2046 | return; |
2047 | ||
fa378d36 VZ |
2048 | if ( ((wxCairoFontData*)m_font.GetRefData())->Apply((wxCairoContext*)this) ) |
2049 | { | |
e7f9f819 | 2050 | #ifdef __WXGTK__ |
fa378d36 | 2051 | int w, h; |
49ad157e | 2052 | |
fa378d36 | 2053 | PangoLayout *layout = pango_cairo_create_layout (m_context); |
304c3065 PC |
2054 | const wxFont& font = static_cast<wxCairoFontData*>(m_font.GetRefData())->GetFont(); |
2055 | pango_layout_set_font_description(layout, font.GetNativeFontInfo()->description); | |
fa378d36 VZ |
2056 | const wxCharBuffer data = str.utf8_str(); |
2057 | if ( !data ) | |
2058 | { | |
2059 | return; | |
2060 | } | |
304c3065 | 2061 | pango_layout_set_text(layout, data, data.length()); |
fa378d36 VZ |
2062 | pango_layout_get_pixel_size (layout, &w, &h); |
2063 | if ( width ) | |
2064 | *width = w; | |
2065 | if ( height ) | |
2066 | *height = h; | |
2067 | if (descent) | |
2068 | { | |
2069 | PangoLayoutIter *iter = pango_layout_get_iter(layout); | |
2070 | int baseline = pango_layout_iter_get_baseline(iter); | |
2071 | pango_layout_iter_free(iter); | |
2072 | *descent = h - PANGO_PIXELS(baseline); | |
2073 | } | |
2074 | g_object_unref (layout); | |
e7f9f819 | 2075 | return; |
fa378d36 | 2076 | #endif |
e7f9f819 | 2077 | } |
d9485f89 RD |
2078 | |
2079 | if (width) | |
2080 | { | |
2081 | const wxWX2MBbuf buf(str.mb_str(wxConvUTF8)); | |
2082 | cairo_text_extents_t te; | |
2083 | cairo_text_extents(m_context, buf, &te); | |
2084 | *width = te.width; | |
2085 | } | |
2086 | ||
2087 | if (height || descent || externalLeading) | |
2088 | { | |
2089 | cairo_font_extents_t fe; | |
2090 | cairo_font_extents(m_context, &fe); | |
49ad157e | 2091 | |
3e700936 | 2092 | // some backends have negative descents |
49ad157e | 2093 | |
3e700936 SC |
2094 | if ( fe.descent < 0 ) |
2095 | fe.descent = -fe.descent; | |
49ad157e | 2096 | |
3e700936 SC |
2097 | if ( fe.height < (fe.ascent + fe.descent ) ) |
2098 | { | |
2099 | // some backends are broken re height ... (eg currently ATSUI) | |
2100 | fe.height = fe.ascent + fe.descent; | |
2101 | } | |
49ad157e | 2102 | |
d9485f89 RD |
2103 | if (height) |
2104 | *height = fe.height; | |
2105 | if ( descent ) | |
2106 | *descent = fe.descent; | |
2107 | if ( externalLeading ) | |
2108 | *externalLeading = wxMax(0, fe.height - (fe.ascent + fe.descent)); | |
2109 | } | |
184fc6c8 SC |
2110 | } |
2111 | ||
2112 | void wxCairoContext::GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const | |
2113 | { | |
2114 | widths.Empty(); | |
2115 | widths.Add(0, text.length()); | |
2116 | ||
1011fbeb SC |
2117 | wxCHECK_RET( !m_font.IsNull(), wxT("wxCairoContext::GetPartialTextExtents - no valid font set") ); |
2118 | ||
184fc6c8 SC |
2119 | if (text.empty()) |
2120 | return; | |
00bd8e72 SC |
2121 | |
2122 | // TODO | |
184fc6c8 SC |
2123 | } |
2124 | ||
49ad157e | 2125 | void * wxCairoContext::GetNativeContext() |
184fc6c8 | 2126 | { |
00bd8e72 SC |
2127 | return m_context; |
2128 | } | |
184fc6c8 | 2129 | |
bf02a7f9 | 2130 | bool wxCairoContext::SetAntialiasMode(wxAntialiasMode antialias) |
49ad157e | 2131 | { |
bf02a7f9 | 2132 | if (m_antialias == antialias) |
49ad157e VZ |
2133 | return true; |
2134 | ||
bf02a7f9 | 2135 | m_antialias = antialias; |
03647350 | 2136 | |
bf02a7f9 SC |
2137 | cairo_antialias_t antialiasMode; |
2138 | switch (antialias) | |
2139 | { | |
2140 | case wxANTIALIAS_DEFAULT: | |
2141 | antialiasMode = CAIRO_ANTIALIAS_DEFAULT; | |
2142 | break; | |
2143 | case wxANTIALIAS_NONE: | |
2144 | antialiasMode = CAIRO_ANTIALIAS_NONE; | |
2145 | break; | |
2146 | default: | |
2147 | return false; | |
2148 | } | |
2149 | cairo_set_antialias(m_context, antialiasMode); | |
2150 | return true; | |
2151 | } | |
49ad157e | 2152 | |
133cb28b SC |
2153 | bool wxCairoContext::SetInterpolationQuality(wxInterpolationQuality WXUNUSED(interpolation)) |
2154 | { | |
2155 | // placeholder | |
2156 | return false; | |
2157 | } | |
2158 | ||
bf02a7f9 SC |
2159 | bool wxCairoContext::SetCompositionMode(wxCompositionMode op) |
2160 | { | |
2161 | if ( m_composition == op ) | |
2162 | return true; | |
03647350 | 2163 | |
bf02a7f9 SC |
2164 | m_composition = op; |
2165 | cairo_operator_t cop; | |
2166 | switch (op) | |
49ad157e | 2167 | { |
50de831a | 2168 | case wxCOMPOSITION_CLEAR: |
bf02a7f9 | 2169 | cop = CAIRO_OPERATOR_CLEAR; |
49ad157e | 2170 | break; |
bf02a7f9 SC |
2171 | case wxCOMPOSITION_SOURCE: |
2172 | cop = CAIRO_OPERATOR_SOURCE; | |
49ad157e | 2173 | break; |
bf02a7f9 SC |
2174 | case wxCOMPOSITION_OVER: |
2175 | cop = CAIRO_OPERATOR_OVER; | |
49ad157e | 2176 | break; |
bf02a7f9 SC |
2177 | case wxCOMPOSITION_IN: |
2178 | cop = CAIRO_OPERATOR_IN; | |
2179 | break; | |
2180 | case wxCOMPOSITION_OUT: | |
2181 | cop = CAIRO_OPERATOR_OUT; | |
2182 | break; | |
2183 | case wxCOMPOSITION_ATOP: | |
2184 | cop = CAIRO_OPERATOR_ATOP; | |
2185 | break; | |
2186 | case wxCOMPOSITION_DEST: | |
2187 | cop = CAIRO_OPERATOR_DEST; | |
2188 | break; | |
2189 | case wxCOMPOSITION_DEST_OVER: | |
2190 | cop = CAIRO_OPERATOR_DEST_OVER; | |
2191 | break; | |
2192 | case wxCOMPOSITION_DEST_IN: | |
2193 | cop = CAIRO_OPERATOR_DEST_IN; | |
2194 | break; | |
2195 | case wxCOMPOSITION_DEST_OUT: | |
2196 | cop = CAIRO_OPERATOR_DEST_OUT; | |
2197 | break; | |
2198 | case wxCOMPOSITION_DEST_ATOP: | |
2199 | cop = CAIRO_OPERATOR_DEST_ATOP; | |
2200 | break; | |
2201 | case wxCOMPOSITION_XOR: | |
2202 | cop = CAIRO_OPERATOR_XOR; | |
2203 | break; | |
2204 | case wxCOMPOSITION_ADD: | |
2205 | cop = CAIRO_OPERATOR_ADD; | |
49ad157e | 2206 | break; |
49ad157e VZ |
2207 | default: |
2208 | return false; | |
2209 | } | |
bf02a7f9 | 2210 | cairo_set_operator(m_context, cop); |
49ad157e VZ |
2211 | return true; |
2212 | } | |
2213 | ||
bf02a7f9 SC |
2214 | void wxCairoContext::BeginLayer(wxDouble opacity) |
2215 | { | |
2216 | m_layerOpacities.push_back(opacity); | |
2217 | cairo_push_group(m_context); | |
2218 | } | |
49ad157e | 2219 | |
bf02a7f9 SC |
2220 | void wxCairoContext::EndLayer() |
2221 | { | |
2222 | float opacity = m_layerOpacities.back(); | |
2223 | m_layerOpacities.pop_back(); | |
2224 | cairo_pop_group_to_source(m_context); | |
2225 | cairo_paint_with_alpha(m_context,opacity); | |
2226 | } | |
03647350 | 2227 | |
00bd8e72 SC |
2228 | //----------------------------------------------------------------------------- |
2229 | // wxCairoRenderer declaration | |
2230 | //----------------------------------------------------------------------------- | |
2231 | ||
2232 | class WXDLLIMPEXP_CORE wxCairoRenderer : public wxGraphicsRenderer | |
2233 | { | |
2234 | public : | |
2235 | wxCairoRenderer() {} | |
2236 | ||
2237 | virtual ~wxCairoRenderer() {} | |
2238 | ||
2239 | // Context | |
2240 | ||
2241 | virtual wxGraphicsContext * CreateContext( const wxWindowDC& dc); | |
773ccc31 | 2242 | virtual wxGraphicsContext * CreateContext( const wxMemoryDC& dc); |
0b822969 | 2243 | virtual wxGraphicsContext * CreateContext( const wxPrinterDC& dc); |
773ccc31 | 2244 | |
00bd8e72 SC |
2245 | virtual wxGraphicsContext * CreateContextFromNativeContext( void * context ); |
2246 | ||
2247 | virtual wxGraphicsContext * CreateContextFromNativeWindow( void * window ); | |
0a470e5e VZ |
2248 | #if wxUSE_IMAGE |
2249 | virtual wxGraphicsContext * CreateContextFromImage(wxImage& image); | |
2250 | #endif // wxUSE_IMAGE | |
00bd8e72 SC |
2251 | |
2252 | virtual wxGraphicsContext * CreateContext( wxWindow* window ); | |
2253 | ||
091ef146 | 2254 | virtual wxGraphicsContext * CreateMeasuringContext(); |
9f2b6b31 RD |
2255 | #ifdef __WXMSW__ |
2256 | #if wxUSE_ENH_METAFILE | |
2257 | virtual wxGraphicsContext * CreateContext( const wxEnhMetaFileDC& dc); | |
2258 | #endif | |
2259 | #endif | |
00bd8e72 SC |
2260 | // Path |
2261 | ||
0db8a70e | 2262 | virtual wxGraphicsPath CreatePath(); |
00bd8e72 SC |
2263 | |
2264 | // Matrix | |
2265 | ||
49ad157e | 2266 | virtual wxGraphicsMatrix CreateMatrix( wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0, |
00bd8e72 SC |
2267 | wxDouble tx=0.0, wxDouble ty=0.0); |
2268 | ||
2269 | ||
87752530 | 2270 | virtual wxGraphicsPen CreatePen(const wxPen& pen) ; |
00bd8e72 | 2271 | |
87752530 | 2272 | virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ; |
00bd8e72 | 2273 | |
4ee4c7b9 VZ |
2274 | virtual wxGraphicsBrush |
2275 | CreateLinearGradientBrush(wxDouble x1, wxDouble y1, | |
2276 | wxDouble x2, wxDouble y2, | |
2277 | const wxGraphicsGradientStops& stops); | |
00bd8e72 | 2278 | |
4ee4c7b9 VZ |
2279 | virtual wxGraphicsBrush |
2280 | CreateRadialGradientBrush(wxDouble xo, wxDouble yo, | |
2281 | wxDouble xc, wxDouble yc, | |
2282 | wxDouble radius, | |
2283 | const wxGraphicsGradientStops& stops); | |
00bd8e72 SC |
2284 | |
2285 | // sets the font | |
87752530 | 2286 | virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ) ; |
fa378d36 VZ |
2287 | virtual wxGraphicsFont CreateFont(double sizeInPixels, |
2288 | const wxString& facename, | |
2289 | int flags = wxFONTFLAG_DEFAULT, | |
2290 | const wxColour& col = *wxBLACK); | |
00bd8e72 | 2291 | |
d974a494 | 2292 | // create a native bitmap representation |
2fc9c1ea | 2293 | virtual wxGraphicsBitmap CreateBitmap( const wxBitmap &bitmap ); |
0a470e5e VZ |
2294 | #if wxUSE_IMAGE |
2295 | virtual wxGraphicsBitmap CreateBitmapFromImage(const wxImage& image); | |
6e6f074b | 2296 | virtual wxImage CreateImageFromBitmap(const wxGraphicsBitmap& bmp); |
0a470e5e | 2297 | #endif // wxUSE_IMAGE |
49ad157e | 2298 | |
2986eb86 SC |
2299 | // create a graphics bitmap from a native bitmap |
2300 | virtual wxGraphicsBitmap CreateBitmapFromNativeBitmap( void* bitmap ); | |
2301 | ||
d974a494 | 2302 | // create a subimage from a native image representation |
2fc9c1ea | 2303 | virtual wxGraphicsBitmap CreateSubBitmap( const wxGraphicsBitmap &bitmap, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); |
d974a494 | 2304 | |
932d0768 RD |
2305 | protected : |
2306 | bool EnsureIsLoaded(); | |
2307 | void Load(); | |
2308 | void Unload(); | |
2309 | friend class wxCairoModule; | |
00bd8e72 | 2310 | private : |
932d0768 | 2311 | int m_loaded; |
00bd8e72 SC |
2312 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxCairoRenderer) |
2313 | } ; | |
2314 | ||
2315 | //----------------------------------------------------------------------------- | |
2316 | // wxCairoRenderer implementation | |
2317 | //----------------------------------------------------------------------------- | |
2318 | ||
2319 | IMPLEMENT_DYNAMIC_CLASS(wxCairoRenderer,wxGraphicsRenderer) | |
2320 | ||
2321 | static wxCairoRenderer gs_cairoGraphicsRenderer; | |
3e700936 SC |
2322 | // temporary hack to allow creating a cairo context on any platform |
2323 | extern wxGraphicsRenderer* gCairoRenderer; | |
2324 | wxGraphicsRenderer* gCairoRenderer = &gs_cairoGraphicsRenderer; | |
00bd8e72 | 2325 | |
932d0768 RD |
2326 | bool wxCairoRenderer::EnsureIsLoaded() |
2327 | { | |
2328 | #ifndef __WXGTK__ | |
2329 | Load(); | |
2330 | return wxCairoInit(); | |
2331 | #else | |
2332 | return true; | |
2333 | #endif | |
2334 | } | |
2335 | ||
2336 | void wxCairoRenderer::Load() | |
2337 | { | |
2338 | wxCairoInit(); | |
2339 | } | |
2340 | ||
2341 | void wxCairoRenderer::Unload() | |
2342 | { | |
2343 | wxCairoCleanUp(); | |
2344 | } | |
2345 | ||
2346 | // call EnsureIsLoaded() and return returnOnFail value if it fails | |
2347 | #define ENSURE_LOADED_OR_RETURN(returnOnFail) \ | |
2348 | if ( !EnsureIsLoaded() ) \ | |
2349 | return (returnOnFail) | |
2350 | ||
00bd8e72 | 2351 | wxGraphicsContext * wxCairoRenderer::CreateContext( const wxWindowDC& dc) |
539e2795 | 2352 | { |
932d0768 | 2353 | ENSURE_LOADED_OR_RETURN(NULL); |
00bd8e72 SC |
2354 | return new wxCairoContext(this,dc); |
2355 | } | |
2356 | ||
773ccc31 SC |
2357 | wxGraphicsContext * wxCairoRenderer::CreateContext( const wxMemoryDC& dc) |
2358 | { | |
932d0768 | 2359 | ENSURE_LOADED_OR_RETURN(NULL); |
888dde65 | 2360 | return new wxCairoContext(this,dc); |
773ccc31 | 2361 | } |
773ccc31 | 2362 | |
0b822969 RR |
2363 | wxGraphicsContext * wxCairoRenderer::CreateContext( const wxPrinterDC& dc) |
2364 | { | |
932d0768 | 2365 | ENSURE_LOADED_OR_RETURN(NULL); |
0f31a78f | 2366 | return new wxCairoContext(this, dc); |
0b822969 RR |
2367 | } |
2368 | ||
9f2b6b31 RD |
2369 | #ifdef __WXMSW__ |
2370 | #if wxUSE_ENH_METAFILE | |
932d0768 | 2371 | wxGraphicsContext * wxCairoRenderer::CreateContext( const wxEnhMetaFileDC& WXUNUSED(dc) ) |
9f2b6b31 | 2372 | { |
932d0768 | 2373 | ENSURE_LOADED_OR_RETURN(NULL); |
9f2b6b31 RD |
2374 | return NULL; |
2375 | } | |
2376 | #endif | |
2377 | #endif | |
2378 | ||
00bd8e72 SC |
2379 | wxGraphicsContext * wxCairoRenderer::CreateContextFromNativeContext( void * context ) |
2380 | { | |
932d0768 | 2381 | ENSURE_LOADED_OR_RETURN(NULL); |
a8f9fe13 | 2382 | #ifdef __WXMSW__ |
c0e69d72 | 2383 | return new wxCairoContext(this,(HDC)context); |
711a4812 | 2384 | #else |
00bd8e72 | 2385 | return new wxCairoContext(this,(cairo_t*)context); |
c0e69d72 | 2386 | #endif |
00bd8e72 SC |
2387 | } |
2388 | ||
2389 | ||
2390 | wxGraphicsContext * wxCairoRenderer::CreateContextFromNativeWindow( void * window ) | |
2391 | { | |
932d0768 | 2392 | ENSURE_LOADED_OR_RETURN(NULL); |
00bd8e72 | 2393 | #ifdef __WXGTK__ |
ed1b38a8 | 2394 | return new wxCairoContext(this,(GdkDrawable*)window); |
00bd8e72 | 2395 | #else |
932d0768 | 2396 | wxUnusedVar(window); |
00bd8e72 SC |
2397 | return NULL; |
2398 | #endif | |
2399 | } | |
2400 | ||
0a470e5e VZ |
2401 | #if wxUSE_IMAGE |
2402 | wxGraphicsContext * wxCairoRenderer::CreateContextFromImage(wxImage& image) | |
2403 | { | |
2404 | return new wxCairoImageContext(this, image); | |
2405 | } | |
2406 | #endif // wxUSE_IMAGE | |
2407 | ||
091ef146 SC |
2408 | wxGraphicsContext * wxCairoRenderer::CreateMeasuringContext() |
2409 | { | |
932d0768 | 2410 | ENSURE_LOADED_OR_RETURN(NULL); |
5e8d27fe KO |
2411 | #ifdef __WXGTK__ |
2412 | return CreateContextFromNativeWindow(gdk_get_default_root_window()); | |
2413 | #endif | |
091ef146 SC |
2414 | return NULL; |
2415 | // TODO | |
2416 | } | |
2417 | ||
00bd8e72 SC |
2418 | wxGraphicsContext * wxCairoRenderer::CreateContext( wxWindow* window ) |
2419 | { | |
932d0768 | 2420 | ENSURE_LOADED_OR_RETURN(NULL); |
00bd8e72 SC |
2421 | return new wxCairoContext(this, window ); |
2422 | } | |
2423 | ||
2424 | // Path | |
2425 | ||
0db8a70e | 2426 | wxGraphicsPath wxCairoRenderer::CreatePath() |
00bd8e72 | 2427 | { |
932d0768 | 2428 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath); |
0db8a70e RD |
2429 | wxGraphicsPath path; |
2430 | path.SetRefData( new wxCairoPathData(this) ); | |
2431 | return path; | |
539e2795 SC |
2432 | } |
2433 | ||
00bd8e72 SC |
2434 | |
2435 | // Matrix | |
2436 | ||
49ad157e | 2437 | wxGraphicsMatrix wxCairoRenderer::CreateMatrix( wxDouble a, wxDouble b, wxDouble c, wxDouble d, |
0db8a70e | 2438 | wxDouble tx, wxDouble ty) |
00bd8e72 | 2439 | |
184fc6c8 | 2440 | { |
932d0768 | 2441 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix); |
0db8a70e RD |
2442 | wxGraphicsMatrix m; |
2443 | wxCairoMatrixData* data = new wxCairoMatrixData( this ); | |
2444 | data->Set( a,b,c,d,tx,ty ) ; | |
2445 | m.SetRefData(data); | |
00bd8e72 | 2446 | return m; |
7ba86d93 RD |
2447 | } |
2448 | ||
49ad157e | 2449 | wxGraphicsPen wxCairoRenderer::CreatePen(const wxPen& pen) |
539e2795 | 2450 | { |
932d0768 | 2451 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen); |
a1b806b9 | 2452 | if ( !pen.IsOk() || pen.GetStyle() == wxPENSTYLE_TRANSPARENT ) |
87752530 | 2453 | return wxNullGraphicsPen; |
00bd8e72 | 2454 | else |
87752530 SC |
2455 | { |
2456 | wxGraphicsPen p; | |
2457 | p.SetRefData(new wxCairoPenData( this, pen )); | |
2458 | return p; | |
2459 | } | |
539e2795 SC |
2460 | } |
2461 | ||
49ad157e | 2462 | wxGraphicsBrush wxCairoRenderer::CreateBrush(const wxBrush& brush ) |
539e2795 | 2463 | { |
932d0768 | 2464 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); |
a1b806b9 | 2465 | if ( !brush.IsOk() || brush.GetStyle() == wxBRUSHSTYLE_TRANSPARENT ) |
87752530 | 2466 | return wxNullGraphicsBrush; |
00bd8e72 | 2467 | else |
87752530 SC |
2468 | { |
2469 | wxGraphicsBrush p; | |
2470 | p.SetRefData(new wxCairoBrushData( this, brush )); | |
2471 | return p; | |
2472 | } | |
00bd8e72 SC |
2473 | } |
2474 | ||
4ee4c7b9 VZ |
2475 | wxGraphicsBrush |
2476 | wxCairoRenderer::CreateLinearGradientBrush(wxDouble x1, wxDouble y1, | |
2477 | wxDouble x2, wxDouble y2, | |
2478 | const wxGraphicsGradientStops& stops) | |
00bd8e72 | 2479 | { |
932d0768 | 2480 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); |
87752530 SC |
2481 | wxGraphicsBrush p; |
2482 | wxCairoBrushData* d = new wxCairoBrushData( this ); | |
4ee4c7b9 | 2483 | d->CreateLinearGradientBrush(x1, y1, x2, y2, stops); |
87752530 SC |
2484 | p.SetRefData(d); |
2485 | return p; | |
00bd8e72 SC |
2486 | } |
2487 | ||
4ee4c7b9 VZ |
2488 | wxGraphicsBrush |
2489 | wxCairoRenderer::CreateRadialGradientBrush(wxDouble xo, wxDouble yo, | |
2490 | wxDouble xc, wxDouble yc, wxDouble r, | |
2491 | const wxGraphicsGradientStops& stops) | |
00bd8e72 | 2492 | { |
932d0768 | 2493 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); |
87752530 SC |
2494 | wxGraphicsBrush p; |
2495 | wxCairoBrushData* d = new wxCairoBrushData( this ); | |
4ee4c7b9 | 2496 | d->CreateRadialGradientBrush(xo, yo, xc, yc, r, stops); |
87752530 SC |
2497 | p.SetRefData(d); |
2498 | return p; | |
00bd8e72 SC |
2499 | } |
2500 | ||
49ad157e | 2501 | wxGraphicsFont wxCairoRenderer::CreateFont( const wxFont &font , const wxColour &col ) |
00bd8e72 | 2502 | { |
932d0768 | 2503 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont); |
a1b806b9 | 2504 | if ( font.IsOk() ) |
49ad157e | 2505 | { |
87752530 SC |
2506 | wxGraphicsFont p; |
2507 | p.SetRefData(new wxCairoFontData( this , font, col )); | |
2508 | return p; | |
2509 | } | |
00bd8e72 | 2510 | else |
87752530 | 2511 | return wxNullGraphicsFont; |
539e2795 SC |
2512 | } |
2513 | ||
fa378d36 VZ |
2514 | wxGraphicsFont |
2515 | wxCairoRenderer::CreateFont(double sizeInPixels, | |
2516 | const wxString& facename, | |
2517 | int flags, | |
2518 | const wxColour& col) | |
2519 | { | |
2520 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont); | |
2521 | ||
2522 | wxGraphicsFont font; | |
2523 | font.SetRefData(new wxCairoFontData(this, sizeInPixels, facename, flags, col)); | |
2524 | return font; | |
2525 | } | |
2526 | ||
f5008769 | 2527 | wxGraphicsBitmap wxCairoRenderer::CreateBitmap( const wxBitmap& bmp ) |
2fc9c1ea | 2528 | { |
932d0768 | 2529 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap); |
a1b806b9 | 2530 | if ( bmp.IsOk() ) |
2fc9c1ea KO |
2531 | { |
2532 | wxGraphicsBitmap p; | |
2533 | p.SetRefData(new wxCairoBitmapData( this , bmp )); | |
2534 | return p; | |
2535 | } | |
2536 | else | |
2537 | return wxNullGraphicsBitmap; | |
2538 | } | |
2539 | ||
0a470e5e VZ |
2540 | #if wxUSE_IMAGE |
2541 | ||
2542 | wxGraphicsBitmap wxCairoRenderer::CreateBitmapFromImage(const wxImage& image) | |
2543 | { | |
2544 | wxGraphicsBitmap bmp; | |
2545 | ||
2546 | ENSURE_LOADED_OR_RETURN(bmp); | |
2547 | ||
2548 | if ( image.IsOk() ) | |
2549 | { | |
2550 | bmp.SetRefData(new wxCairoBitmapData(this, image)); | |
2551 | } | |
2552 | ||
2553 | return bmp; | |
2554 | } | |
2555 | ||
6e6f074b RD |
2556 | wxImage wxCairoRenderer::CreateImageFromBitmap(const wxGraphicsBitmap& bmp) |
2557 | { | |
2558 | ENSURE_LOADED_OR_RETURN(wxNullImage); | |
2559 | ||
2560 | const wxCairoBitmapData* const | |
2561 | data = static_cast<wxCairoBitmapData*>(bmp.GetGraphicsData()); | |
2562 | ||
2563 | return data ? data->ConvertToImage() : wxNullImage; | |
2564 | } | |
2565 | ||
0a470e5e VZ |
2566 | #endif // wxUSE_IMAGE |
2567 | ||
6e6f074b | 2568 | |
2986eb86 SC |
2569 | wxGraphicsBitmap wxCairoRenderer::CreateBitmapFromNativeBitmap( void* bitmap ) |
2570 | { | |
932d0768 | 2571 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap); |
2986eb86 SC |
2572 | if ( bitmap != NULL ) |
2573 | { | |
2574 | wxGraphicsBitmap p; | |
2575 | p.SetRefData(new wxCairoBitmapData( this , (cairo_surface_t*) bitmap )); | |
2576 | return p; | |
2577 | } | |
2578 | else | |
2579 | return wxNullGraphicsBitmap; | |
2580 | } | |
2581 | ||
84e0e526 VZ |
2582 | wxGraphicsBitmap |
2583 | wxCairoRenderer::CreateSubBitmap(const wxGraphicsBitmap& WXUNUSED(bitmap), | |
2584 | wxDouble WXUNUSED(x), | |
2585 | wxDouble WXUNUSED(y), | |
2586 | wxDouble WXUNUSED(w), | |
2587 | wxDouble WXUNUSED(h)) | |
2fc9c1ea | 2588 | { |
932d0768 | 2589 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap); |
2fc9c1ea KO |
2590 | wxFAIL_MSG("wxCairoRenderer::CreateSubBitmap is not implemented."); |
2591 | return wxNullGraphicsBitmap; | |
2592 | } | |
2593 | ||
c0e69d72 KO |
2594 | wxGraphicsRenderer* wxGraphicsRenderer::GetCairoRenderer() |
2595 | { | |
c0e69d72 | 2596 | return &gs_cairoGraphicsRenderer; |
ef40c54c VZ |
2597 | } |
2598 | ||
2599 | #else // !wxUSE_CAIRO | |
2600 | ||
2601 | wxGraphicsRenderer* wxGraphicsRenderer::GetCairoRenderer() | |
2602 | { | |
c0e69d72 | 2603 | return NULL; |
c0e69d72 | 2604 | } |
9a67941f | 2605 | |
ef40c54c VZ |
2606 | #endif // wxUSE_CAIRO/!wxUSE_CAIRO |
2607 | ||
2608 | // MSW and OS X have their own native default renderers, but the other ports | |
2609 | // use Cairo by default | |
2610 | #if !(defined(__WXMSW__) || defined(__WXOSX__)) | |
2611 | wxGraphicsRenderer* wxGraphicsRenderer::GetDefaultRenderer() | |
2612 | { | |
2613 | return GetCairoRenderer(); | |
2614 | } | |
2615 | #endif // !(__WXMSW__ || __WXOSX__) | |
2616 | ||
9a67941f | 2617 | #endif // wxUSE_GRAPHICS_CONTEXT |