1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: graphics context header
4 // Author: Stefan Csomor
7 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GRAPHICS_H_
13 #define _WX_GRAPHICS_H_
15 #if wxUSE_GRAPHICS_CONTEXT
17 #include "wx/geometry.h"
18 #include "wx/dynarray.h"
20 class WXDLLIMPEXP_CORE wxWindowDC
;
21 class WXDLLIMPEXP_CORE wxGraphicsContext
;
22 class WXDLLIMPEXP_CORE wxGraphicsPath
;
23 class WXDLLIMPEXP_CORE wxGraphicsMatrix
;
24 class WXDLLIMPEXP_CORE wxGraphicsFigure
;
25 class WXDLLIMPEXP_CORE wxGraphicsRenderer
;
26 class WXDLLIMPEXP_CORE wxGraphicsPen
;
27 class WXDLLIMPEXP_CORE wxGraphicsBrush
;
28 class WXDLLIMPEXP_CORE wxGraphicsFont
;
31 * notes about the graphics context apis
33 * angles : are measured in radians, 0.0 being in direction of positiv x axis, PI/2 being
34 * in direction of positive y axis.
37 // Base class of all objects used for drawing in the new graphics API, the always point back to their
38 // originating rendering engine, there is no dynamic unloading of a renderer currently allowed,
39 // these references are not counted
41 class WXDLLIMPEXP_CORE wxGraphicsObject
: public wxObject
44 wxGraphicsObject( wxGraphicsRenderer
* renderer
= NULL
) : m_renderer(renderer
) {}
46 wxGraphicsObject( const wxGraphicsObject
& obj
) : m_renderer(obj
.GetRenderer()) {}
48 virtual ~wxGraphicsObject() {}
50 wxGraphicsRenderer
* GetRenderer() const { return m_renderer
; }
52 wxGraphicsRenderer
* m_renderer
;
53 DECLARE_DYNAMIC_CLASS(wxGraphicsObject
);
56 class WXDLLIMPEXP_CORE wxGraphicsPen
: public wxGraphicsObject
59 wxGraphicsPen(wxGraphicsRenderer
* renderer
) : wxGraphicsObject(renderer
) {}
60 virtual ~wxGraphicsPen() {}
61 virtual void Apply( wxGraphicsContext
* context
) = 0;
62 virtual wxDouble
GetWidth() = 0;
64 DECLARE_NO_COPY_CLASS(wxGraphicsPen
)
65 DECLARE_ABSTRACT_CLASS(wxGraphicsPen
)
68 class WXDLLIMPEXP_CORE wxGraphicsBrush
: public wxGraphicsObject
71 wxGraphicsBrush(wxGraphicsRenderer
* renderer
) : wxGraphicsObject(renderer
) {}
72 virtual ~wxGraphicsBrush() {}
73 virtual void Apply( wxGraphicsContext
* context
) = 0;
75 DECLARE_NO_COPY_CLASS(wxGraphicsBrush
)
76 DECLARE_ABSTRACT_CLASS(wxGraphicsBrush
)
79 class WXDLLIMPEXP_CORE wxGraphicsFont
: public wxGraphicsObject
82 wxGraphicsFont(wxGraphicsRenderer
* renderer
) : wxGraphicsObject(renderer
) {}
83 virtual ~wxGraphicsFont() {}
84 virtual void Apply( wxGraphicsContext
* context
) = 0;
86 DECLARE_NO_COPY_CLASS(wxGraphicsFont
)
87 DECLARE_ABSTRACT_CLASS(wxGraphicsFont
)
90 class WXDLLIMPEXP_CORE wxGraphicsPath
: public wxGraphicsObject
93 wxGraphicsPath(wxGraphicsRenderer
* renderer
) : wxGraphicsObject(renderer
) {}
94 virtual ~wxGraphicsPath() {}
96 virtual wxGraphicsPath
*Clone() const = 0;
99 // These are the path primitives from which everything else can be constructed
102 // begins a new subpath at (x,y)
103 virtual void MoveToPoint( wxDouble x
, wxDouble y
) = 0;
104 void MoveToPoint( const wxPoint2DDouble
& p
);
106 // adds a straight line from the current point to (x,y)
107 virtual void AddLineToPoint( wxDouble x
, wxDouble y
) = 0;
108 void AddLineToPoint( const wxPoint2DDouble
& p
);
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
) = 0;
112 void AddCurveToPoint( const wxPoint2DDouble
& c1
, const wxPoint2DDouble
& c2
, const wxPoint2DDouble
& e
);
115 virtual void AddPath( const wxGraphicsPath
* path
) =0;
117 // closes the current sub-path
118 virtual void CloseSubpath() = 0;
120 // gets the last point of the current path, (0,0) if not yet set
121 virtual void GetCurrentPoint( wxDouble
& x
, wxDouble
&y
) = 0;
122 wxPoint2DDouble
GetCurrentPoint();
124 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
125 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) = 0;
126 void AddArc( const wxPoint2DDouble
& c
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
);
129 // These are convenience functions which - if not available natively will be assembled
130 // using the primitives from above
133 // adds a quadratic Bezier curve from the current point, using a control point and an end point
134 virtual void AddQuadCurveToPoint( wxDouble cx
, wxDouble cy
, wxDouble x
, wxDouble y
);
136 // appends a rectangle as a new closed subpath
137 virtual void AddRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
139 // appends an ellipsis as a new closed subpath fitting the passed rectangle
140 virtual void AddCircle( wxDouble x
, wxDouble y
, wxDouble r
);
142 // 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)
143 virtual void AddArcToPoint( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
, wxDouble r
) ;
145 // returns the native path
146 virtual void * GetNativePath() const = 0;
148 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
149 virtual void UnGetNativePath(void *p
) = 0;
151 // transforms each point of this path by the matrix
152 virtual void Transform( wxGraphicsMatrix
* matrix
) =0;
154 // gets the bounding box enclosing all points (possibly including control points)
155 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) =0;
156 wxRect2DDouble
GetBox();
158 virtual bool Contains( wxDouble x
, wxDouble y
, int fillStyle
= wxWINDING_RULE
) =0;
159 bool Contains( const wxPoint2DDouble
& c
, int fillStyle
= wxWINDING_RULE
);
161 DECLARE_NO_COPY_CLASS(wxGraphicsPath
)
162 DECLARE_ABSTRACT_CLASS(wxGraphicsPath
)
165 class WXDLLIMPEXP_CORE wxGraphicsMatrix
: public wxGraphicsObject
168 wxGraphicsMatrix(wxGraphicsRenderer
* renderer
) : wxGraphicsObject(renderer
) {}
170 virtual ~wxGraphicsMatrix() {}
172 virtual wxGraphicsMatrix
*Clone() const = 0;
174 // concatenates the matrix
175 virtual void Concat( const wxGraphicsMatrix
*t
) = 0;
176 void Concat( const wxGraphicsMatrix
&t
) { Concat( &t
); }
178 // copies the passed in matrix
179 virtual void Copy( const wxGraphicsMatrix
*t
) = 0;
180 void Copy( const wxGraphicsMatrix
&t
) { Copy( &t
); }
182 // sets the matrix to the respective values
183 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
184 wxDouble tx
=0.0, wxDouble ty
=0.0) = 0;
186 // makes this the inverse matrix
187 virtual void Invert() = 0;
189 // returns true if the elements of the transformation matrix are equal ?
190 virtual bool IsEqual( const wxGraphicsMatrix
* t
) const = 0;
191 bool IsEqual( const wxGraphicsMatrix
& t
) const { return IsEqual( &t
); }
193 // return true if this is the identity matrix
194 virtual bool IsIdentity() = 0;
200 // add the translation to this matrix
201 virtual void Translate( wxDouble dx
, wxDouble dy
) = 0;
203 // add the scale to this matrix
204 virtual void Scale( wxDouble xScale
, wxDouble yScale
) = 0;
206 // add the rotation to this matrix (radians)
207 virtual void Rotate( wxDouble angle
) = 0;
210 // apply the transforms
213 // applies that matrix to the point
214 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
) = 0;
216 // applies the matrix except for translations
217 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
) =0;
219 // returns the native representation
220 virtual void * GetNativeMatrix() const = 0;
222 DECLARE_NO_COPY_CLASS(wxGraphicsMatrix
)
223 DECLARE_ABSTRACT_CLASS(wxGraphicsMatrix
)
226 class WXDLLIMPEXP_CORE wxGraphicsContext
: public wxGraphicsObject
229 wxGraphicsContext(wxGraphicsRenderer
* renderer
);
231 virtual ~wxGraphicsContext();
233 static wxGraphicsContext
* Create( const wxWindowDC
& dc
) ;
235 static wxGraphicsContext
* CreateFromNative( void * context
) ;
238 static wxGraphicsContext
* CreateFromNativeWindow( void * window
) ;
240 static wxGraphicsContext
* Create( wxWindow
* window
) ;
242 wxGraphicsPath
* CreatePath();
244 virtual wxGraphicsPen
* CreatePen(const wxPen
& pen
);
246 virtual wxGraphicsBrush
* CreateBrush(const wxBrush
& brush
);
248 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
249 virtual wxGraphicsBrush
* CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
250 const wxColour
&c1
, const wxColour
&c2
);
252 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)
253 // with radius r and color cColor
254 virtual wxGraphicsBrush
* CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
255 const wxColour
&oColor
, const wxColour
&cColor
);
258 virtual wxGraphicsFont
* CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
);
260 // create a 'native' matrix corresponding to these values
261 virtual wxGraphicsMatrix
* CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
262 wxDouble tx
=0.0, wxDouble ty
=0.0);
264 // push the current state of the context, ie the transformation matrix on a stack
265 virtual void PushState() = 0;
267 // pops a stored state from the stack
268 virtual void PopState() = 0;
270 // clips drawings to the region, combined to current clipping region
271 virtual void Clip( const wxRegion
®ion
) = 0;
273 // clips drawings to the rect
274 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) = 0;
276 // resets the clipping to original extent
277 virtual void ResetClip() = 0 ;
279 // returns the native context
280 virtual void * GetNativeContext() = 0;
283 // transformation : changes the current transformation matrix CTM of the context
287 virtual void Translate( wxDouble dx
, wxDouble dy
) = 0;
290 virtual void Scale( wxDouble xScale
, wxDouble yScale
) = 0;
293 virtual void Rotate( wxDouble angle
) = 0;
295 // concatenates this transform with the current transform of this context
296 virtual void ConcatTransform( const wxGraphicsMatrix
* matrix
) = 0;
298 // sets the transform of this context
299 virtual void SetTransform( const wxGraphicsMatrix
* matrix
) = 0;
301 // gets the matrix of this context
302 virtual void GetTransform( wxGraphicsMatrix
* matrix
) = 0;
308 virtual void SetPen( wxGraphicsPen
* pen
, bool release
= true );
310 void SetPen( const wxPen
& pen
);
312 // sets the brush for filling
313 virtual void SetBrush( wxGraphicsBrush
* brush
, bool release
= true );
315 void SetBrush( const wxBrush
& brush
);
318 virtual void SetFont( wxGraphicsFont
* font
, bool release
= true );
320 void SetFont( const wxFont
& font
, const wxColour
& colour
);
322 // strokes along a path with the current pen
323 virtual void StrokePath( const wxGraphicsPath
*path
) = 0;
325 // fills a path with the current brush
326 virtual void FillPath( const wxGraphicsPath
*path
, int fillStyle
= wxWINDING_RULE
) = 0;
328 // draws a path by first filling and then stroking
329 virtual void DrawPath( const wxGraphicsPath
*path
, int fillStyle
= wxWINDING_RULE
);
335 virtual void DrawText( const wxString
&str
, wxDouble x
, wxDouble y
) = 0;
337 virtual void DrawText( const wxString
&str
, wxDouble x
, wxDouble y
, wxDouble angle
);
339 virtual void GetTextExtent( const wxString
&text
, wxDouble
*width
, wxDouble
*height
,
340 wxDouble
*descent
, wxDouble
*externalLeading
) const = 0;
342 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const = 0;
348 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) = 0;
350 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) = 0;
353 // convenience methods
356 // strokes a single line
357 virtual void StrokeLine( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
);
359 // stroke lines connecting each of the points
360 virtual void StrokeLines( size_t n
, const wxPoint2DDouble
*points
);
362 // stroke disconnected lines from begin to end points
363 virtual void StrokeLines( size_t n
, const wxPoint2DDouble
*beginPoints
, const wxPoint2DDouble
*endPoints
);
366 virtual void DrawLines( size_t n
, const wxPoint2DDouble
*points
, int fillStyle
= wxWINDING_RULE
);
369 virtual void DrawRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
372 virtual void DrawEllipse( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
374 // draws a rounded rectangle
375 virtual void DrawRoundedRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
, wxDouble radius
);
377 // wrappers using wxPoint2DDouble TODO
380 // helper to determine if a 0.5 offset should be applied for the drawing operation
381 virtual bool ShouldOffset() const { return false; }
383 wxGraphicsPen
* m_pen
;
385 wxGraphicsBrush
* m_brush
;
387 wxGraphicsFont
* m_font
;
391 DECLARE_NO_COPY_CLASS(wxGraphicsContext
)
392 DECLARE_ABSTRACT_CLASS(wxGraphicsContext
)
398 // A graphics figure allows to cache path, pen etc creations, also will be a basis for layering/grouping elements
401 class WXDLLIMPEXP_CORE wxGraphicsFigure
: public wxGraphicsObject
404 wxGraphicsFigure(wxGraphicsRenderer
* renderer
) ;
406 virtual ~wxGraphicsFigure() ;
408 void SetPath( wxGraphicsMatrix
* matrix
);
410 void SetMatrix( wxGraphicsPath
* path
);
412 // draws this object on the context
413 virtual void Draw( wxGraphicsContext
* cg
);
415 // returns the path of this object
416 wxGraphicsPath
* GetPath() { return m_path
; }
418 // returns the transformation matrix of this object, may be null if there is no transformation necessary
419 wxGraphicsMatrix
* GetMatrix() { return m_matrix
; }
422 wxGraphicsMatrix
* m_matrix
;
423 wxGraphicsPath
* m_path
;
425 DECLARE_DYNAMIC_CLASS(wxGraphicsFigure
)
431 // The graphics renderer is the instance corresponding to the rendering engine used, eg there is ONE core graphics renderer
432 // instance on OSX. This instance is pointed back to by all objects created by it. Therefore you can create eg additional
433 // paths at any point from a given matrix etc.
436 class WXDLLIMPEXP_CORE wxGraphicsRenderer
: public wxObject
439 wxGraphicsRenderer() {}
441 virtual ~wxGraphicsRenderer() {}
443 static wxGraphicsRenderer
* GetDefaultRenderer();
447 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
) = 0 ;
449 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
) = 0;
451 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
) = 0;
453 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
) = 0;
457 virtual wxGraphicsPath
* CreatePath() = 0;
461 virtual wxGraphicsMatrix
* CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
462 wxDouble tx
=0.0, wxDouble ty
=0.0) = 0;
466 virtual wxGraphicsPen
* CreatePen(const wxPen
& pen
) = 0 ;
468 virtual wxGraphicsBrush
* CreateBrush(const wxBrush
& brush
) = 0 ;
470 // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2
471 virtual wxGraphicsBrush
* CreateLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
,
472 const wxColour
&c1
, const wxColour
&c2
) = 0;
474 // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc)
475 // with radius r and color cColor
476 virtual wxGraphicsBrush
* CreateRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
477 const wxColour
&oColor
, const wxColour
&cColor
) = 0;
480 virtual wxGraphicsFont
* CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) = 0;
483 DECLARE_NO_COPY_CLASS(wxGraphicsRenderer
)
484 DECLARE_ABSTRACT_CLASS(wxGraphicsRenderer
)
489 #endif // _WX_GRAPHICS_H_