1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of various wxGraphics* classes
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 A wxGraphicsPath is a native representation of a geometric path. The
13 contents are specific an private to the respective renderer. Instances are
14 reference counted and can therefore be assigned as usual. The only way to
15 get a valid instance is by using wxGraphicsContext::CreatePath() or
16 wxGraphicsRenderer::CreatePath().
21 class wxGraphicsPath
: public wxGraphicsObject
25 Adds an arc of a circle.
27 The circle is defined by the coordinates of its centre (@a x, @a y) or
28 @a c and its radius @a r. The arc goes from the starting angle @a
29 startAngle to @a endAngle either clockwise or counter-clockwise
30 depending on the value of @a clockwise argument.
32 The angles are measured in radians but, contrary to the usual
33 mathematical convention, are always @e clockwise from the horizontal
37 virtual void AddArc(wxDouble x
, wxDouble y
, wxDouble r
,
38 wxDouble startAngle
, wxDouble endAngle
,
40 void AddArc(const wxPoint2DDouble
& c
, wxDouble r
,
41 wxDouble startAngle
, wxDouble endAngle
, bool clockwise
);
45 Appends a an arc to two tangents connecting (current) to (@a x1,@a y1)
46 and (@a x1,@a y1) to (@a x2,@a y2), also a straight line from (current)
49 virtual void AddArcToPoint(wxDouble x1
, wxDouble y1
, wxDouble x2
,
50 wxDouble y2
, wxDouble r
);
53 Appends a circle around (@a x,@a y) with radius @a r as a new closed
56 virtual void AddCircle(wxDouble x
, wxDouble y
, wxDouble r
);
59 Adds a cubic bezier curve from the current point, using two control
60 points and an end point.
62 virtual void AddCurveToPoint(wxDouble cx1
, wxDouble cy1
,
63 wxDouble cx2
, wxDouble cy2
,
64 wxDouble x
, wxDouble y
);
66 Adds a cubic bezier curve from the current point, using two control
67 points and an end point.
69 void AddCurveToPoint(const wxPoint2DDouble
& c1
,
70 const wxPoint2DDouble
& c2
,
71 const wxPoint2DDouble
& e
);
74 Appends an ellipse fitting into the passed in rectangle.
76 virtual void AddEllipse(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
79 Adds a straight line from the current point to (@a x,@a y).
81 virtual void AddLineToPoint(wxDouble x
, wxDouble y
);
83 Adds a straight line from the current point to @a p.
85 void AddLineToPoint(const wxPoint2DDouble
& p
);
90 virtual void AddPath(const wxGraphicsPath
& path
);
93 Adds a quadratic bezier curve from the current point, using a control
94 point and an end point.
96 virtual void AddQuadCurveToPoint(wxDouble cx
, wxDouble cy
,
97 wxDouble x
, wxDouble y
);
100 Appends a rectangle as a new closed subpath.
102 virtual void AddRectangle(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
105 Appends a rounded rectangle as a new closed subpath.
107 virtual void AddRoundedRectangle(wxDouble x
, wxDouble y
, wxDouble w
,
108 wxDouble h
, wxDouble radius
);
111 Closes the current sub-path.
113 virtual void CloseSubpath();
116 @return @true if the point is within the path.
118 bool Contains(const wxPoint2DDouble
& c
,
119 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) const;
121 @return @true if the point is within the path.
123 virtual bool Contains(wxDouble x
, wxDouble y
,
124 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) const;
127 Gets the bounding box enclosing all points (possibly including control
130 wxRect2DDouble
GetBox() const;
132 Gets the bounding box enclosing all points (possibly including control
135 virtual void GetBox(wxDouble
* x
, wxDouble
* y
,
136 wxDouble
* w
, wxDouble
* h
) const;
139 Gets the last point of the current path, (0,0) if not yet set.
141 virtual void GetCurrentPoint(wxDouble
* x
, wxDouble
* y
) const;
143 Gets the last point of the current path, (0,0) if not yet set.
145 wxPoint2DDouble
GetCurrentPoint() const;
148 Returns the native path (CGPathRef for Core Graphics, Path pointer for
149 GDIPlus and a cairo_path_t pointer for cairo).
151 virtual void* GetNativePath() const;
154 Begins a new subpath at (@a x,@a y).
156 virtual void MoveToPoint(wxDouble x
, wxDouble y
);
158 Begins a new subpath at @a p.
160 void MoveToPoint(const wxPoint2DDouble
& p
);
163 Transforms each point of this path by the matrix.
165 virtual void Transform(const wxGraphicsMatrix
& matrix
);
168 Gives back the native path returned by GetNativePath() because there
169 might be some deallocations necessary (e.g. on cairo the native path
170 returned by GetNativePath() is newly allocated each time).
172 virtual void UnGetNativePath(void* p
) const;
178 @class wxGraphicsObject
180 This class is the superclass of native graphics objects like pens etc. It
181 allows reference counting. Not instantiated by user code.
186 @see wxGraphicsBrush, wxGraphicsPen, wxGraphicsMatrix, wxGraphicsPath
188 class wxGraphicsObject
: public wxObject
192 Returns the renderer that was used to create this instance, or @NULL
193 if it has not been initialized yet.
195 wxGraphicsRenderer
* GetRenderer() const;
198 @return @false if this object is valid, otherwise returns @true.
204 Anti-aliasing modes used by wxGraphicsContext::SetAntialiasMode().
208 /** No anti-aliasing */
211 /** The default anti-aliasing */
216 Interpolation quality used by wxGraphicsContext::SetInterpolationQuality().
218 enum wxInterpolationQuality
220 /** default interpolation, based on type of context, in general medium quality */
221 wxINTERPOLATION_DEFAULT
,
222 /** no interpolation */
223 wxINTERPOLATION_NONE
,
224 /** fast interpolation, suited for interactivity */
225 wxINTERPOLATION_FAST
,
226 /** better quality */
227 wxINTERPOLATION_GOOD
,
228 /** best quality, not suited for interactivity */
233 Compositing is done using Porter-Duff compositions
234 (see http://keithp.com/~keithp/porterduff/p253-porter.pdf) with
235 wxGraphicsContext::SetCompositionMode().
237 The description give a short equation on how the values of a resulting
238 pixel are calculated.
239 @e R = Result, @e S = Source, @e D = Destination, colors premultiplied with alpha
240 @e Ra, @e Sa, @e Da their alpha components
242 enum wxCompositionMode
245 Indicates invalid or unsupported composition mode.
247 This value can't be passed to wxGraphicsContext::SetCompositionMode().
251 wxCOMPOSITION_INVALID
= -1,
252 wxCOMPOSITION_CLEAR
, /**< @e R = 0 */
253 wxCOMPOSITION_SOURCE
, /**< @e R = S */
254 wxCOMPOSITION_OVER
, /**< @e R = @e S + @e D*(1 - @e Sa) */
255 wxCOMPOSITION_IN
, /**< @e R = @e S*@e Da */
256 wxCOMPOSITION_OUT
, /**< @e R = @e S*(1 - @e Da) */
257 wxCOMPOSITION_ATOP
, /**< @e R = @e S*@e Da + @e D*(1 - @e Sa) */
259 wxCOMPOSITION_DEST
, /**< @e R = @e D, essentially a noop */
260 wxCOMPOSITION_DEST_OVER
, /**< @e R = @e S*(1 - @e Da) + @e D */
261 wxCOMPOSITION_DEST_IN
, /**< @e R = @e D*@e Sa */
262 wxCOMPOSITION_DEST_OUT
, /**< @e R = @e D*(1 - @e Sa) */
263 wxCOMPOSITION_DEST_ATOP
, /**< @e R = @e S*(1 - @e Da) + @e D*@e Sa */
264 wxCOMPOSITION_XOR
, /**< @e R = @e S*(1 - @e Da) + @e D*(1 - @e Sa) */
265 wxCOMPOSITION_ADD
/**< @e R = @e S + @e D */
271 The objects of this class are not created directly but only via
272 wxGraphicsContext or wxGraphicsRenderer CreateBitmap(),
273 CreateBitmapFromImage() or CreateSubBitmap() methods. They can subsequently
274 be used with wxGraphicsContext::DrawBitmap(). The only other operation is
275 testing for the bitmap validity which can be performed using IsNull()
276 method inherited from the base class.
278 class wxGraphicsBitmap
: public wxGraphicsObject
282 Default constructor creates an invalid bitmap.
284 wxGraphicsBitmap() {}
287 Return the contents of this bitmap as wxImage.
289 Using this method is more efficient than converting wxGraphicsBitmap to
290 wxBitmap first and then to wxImage and can be useful if, for example,
291 you want to save wxGraphicsBitmap as a disk file in a format not
292 directly supported by wxBitmap.
294 Invalid image is returned if the bitmap is invalid.
298 wxImage
ConvertToImage() const;
302 @class wxGraphicsContext
304 A wxGraphicsContext instance is the object that is drawn upon. It is
305 created by a renderer using wxGraphicsRenderer::CreateContext(). This can
306 be either directly using a renderer instance, or indirectly using the
307 static convenience Create() functions of wxGraphicsContext that always
308 delegate the task to the default renderer.
311 void MyCanvas::OnPaint(wxPaintEvent &event)
316 // Create graphics context from it
317 wxGraphicsContext *gc = wxGraphicsContext::Create( dc );
321 // make a path that contains a circle and some lines
322 gc->SetPen( *wxRED_PEN );
323 wxGraphicsPath path = gc->CreatePath();
324 path.AddCircle( 50.0, 50.0, 50.0 );
325 path.MoveToPoint(0.0, 50.0);
326 path.AddLineToPoint(100.0, 50.0);
327 path.MoveToPoint(50.0, 0.0);
328 path.AddLineToPoint(50.0, 100.0 );
330 path.AddRectangle(25.0, 25.0, 50.0, 50.0);
332 gc->StrokePath(path);
342 @see wxGraphicsRenderer::CreateContext(), wxGCDC, wxDC
344 class wxGraphicsContext
: public wxGraphicsObject
348 Creates a wxGraphicsContext from a wxWindow.
350 @see wxGraphicsRenderer::CreateContext()
352 static wxGraphicsContext
* Create(wxWindow
* window
);
355 Creates a wxGraphicsContext from a wxWindowDC
357 @see wxGraphicsRenderer::CreateContext()
359 static wxGraphicsContext
* Create(const wxWindowDC
& dc
);
362 Creates a wxGraphicsContext from a wxMemoryDC
364 @see wxGraphicsRenderer::CreateContext()
366 static wxGraphicsContext
* Create(const wxMemoryDC
& dc
);
369 Creates a wxGraphicsContext from a wxPrinterDC. Under GTK+, this will
370 only work when using the GtkPrint printing backend which is available
373 @see wxGraphicsRenderer::CreateContext(), @ref overview_unixprinting
375 static wxGraphicsContext
* Create(const wxPrinterDC
& dc
);
378 Creates a wxGraphicsContext from a wxEnhMetaFileDC.
380 This function, as wxEnhMetaFileDC class itself, is only available only
383 @see wxGraphicsRenderer::CreateContext()
385 static wxGraphicsContext
* Create(const wxEnhMetaFileDC
& dc
);
388 Creates a wxGraphicsContext associated with a wxImage.
390 The image specifies the size of the context as well as whether alpha is
391 supported (if wxImage::HasAlpha()) or not and the initial contents of
392 the context. The @a image object must have a life time greater than
393 that of the new context as the context copies its contents back to the
394 image when it is destroyed.
398 static wxGraphicsContext
* Create(wxImage
& image
);
401 Clips drawings to the specified region.
403 virtual void Clip(const wxRegion
& region
) = 0;
406 Clips drawings to the specified rectangle.
408 virtual void Clip(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) = 0;
411 Concatenates the passed in transform with the current transform of this
414 virtual void ConcatTransform(const wxGraphicsMatrix
& matrix
) = 0;
417 Creates wxGraphicsBitmap from an existing wxBitmap.
419 Returns an invalid wxNullGraphicsBitmap on failure.
421 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
) = 0;
424 Creates wxGraphicsBitmap from an existing wxImage.
426 This method is more efficient than converting wxImage to wxBitmap first
427 and then calling CreateBitmap() but otherwise has the same effect.
429 Returns an invalid wxNullGraphicsBitmap on failure.
433 virtual wxGraphicsBitmap
CreateBitmapFromImage(const wxImage
& image
);
436 Extracts a sub-bitmap from an existing bitmap.
438 Currently this function is implemented in the native MSW and OS X
439 versions but not when using Cairo.
441 virtual wxGraphicsBitmap
CreateSubBitmap(const wxGraphicsBitmap
& bitmap
,
442 wxDouble x
, wxDouble y
,
443 wxDouble w
, wxDouble h
) = 0;
446 Creates a native brush from a wxBrush.
448 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) const;
451 Creates a native graphics font from a wxFont and a text colour.
453 virtual wxGraphicsFont
CreateFont(const wxFont
& font
,
454 const wxColour
& col
= *wxBLACK
) const;
457 Creates a font object with the specified attributes.
459 The use of overload taking wxFont is preferred, see
460 wxGraphicsRenderer::CreateFont() for more details.
464 virtual wxGraphicsFont
CreateFont(double sizeInPixels
,
465 const wxString
& facename
,
466 int flags
= wxFONTFLAG_DEFAULT
,
467 const wxColour
& col
= *wxBLACK
) const;
470 Creates a wxGraphicsContext from a native context. This native context
471 must be a CGContextRef for Core Graphics, a Graphics pointer for
472 GDIPlus, or a cairo_t pointer for cairo.
474 @see wxGraphicsRenderer::CreateContextFromNativeContext()
476 static wxGraphicsContext
* CreateFromNative(void* context
);
479 Creates a wxGraphicsContext from a native window.
481 @see wxGraphicsRenderer::CreateContextFromNativeWindow()
483 static wxGraphicsContext
* CreateFromNativeWindow(void* window
);
486 Creates a native brush with a linear gradient.
488 The brush starts at (@a x1, @a y1) and ends at (@a x2, @a y2). Either
489 just the start and end gradient colours (@a c1 and @a c2) or full set
490 of gradient @a stops can be specified.
492 The version taking wxGraphicsGradientStops is new in wxWidgets 2.9.1.
496 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
497 wxDouble x2
, wxDouble y2
,
498 const wxColour
& c1
, const wxColour
& c2
) const;
501 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
502 wxDouble x2
, wxDouble y2
,
503 const wxGraphicsGradientStops
& stops
) const;
507 Creates a native affine transformation matrix from the passed in
508 values. The default parameters result in an identity matrix.
510 virtual wxGraphicsMatrix
CreateMatrix(wxDouble a
= 1.0, wxDouble b
= 0.0,
511 wxDouble c
= 0.0, wxDouble d
= 1.0,
513 wxDouble ty
= 0.0) const;
516 Creates a native graphics path which is initially empty.
518 wxGraphicsPath
CreatePath() const;
521 Creates a native pen from a wxPen.
523 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) const;
526 Creates a native brush with a radial gradient.
528 The brush originates at (@a xo, @a yc) and ends on a circle around
529 (@a xc, @a yc) with the given @a radius.
531 The gradient may be specified either by its start and end colours @a
532 oColor and @a cColor or by a full set of gradient @a stops.
534 The version taking wxGraphicsGradientStops is new in wxWidgets 2.9.1.
537 virtual wxGraphicsBrush
538 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
539 wxDouble xc
, wxDouble yc
,
541 const wxColour
& oColor
,
542 const wxColour
& cColor
) const;
544 virtual wxGraphicsBrush
545 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
546 wxDouble xc
, wxDouble yc
,
548 const wxGraphicsGradientStops
& stops
) = 0;
552 Draws the bitmap. In case of a mono bitmap, this is treated as a mask
553 and the current brushed is used for filling.
556 virtual void DrawBitmap(const wxGraphicsBitmap
& bmp
,
557 wxDouble x
, wxDouble y
,
558 wxDouble w
, wxDouble h
) = 0;
559 virtual void DrawBitmap(const wxBitmap
& bmp
,
560 wxDouble x
, wxDouble y
,
561 wxDouble w
, wxDouble h
) = 0;
567 virtual void DrawEllipse(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
572 virtual void DrawIcon(const wxIcon
& icon
, wxDouble x
, wxDouble y
,
573 wxDouble w
, wxDouble h
) = 0;
578 virtual void DrawLines(size_t n
, const wxPoint2DDouble
* points
,
579 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
582 Draws the path by first filling and then stroking.
584 virtual void DrawPath(const wxGraphicsPath
& path
,
585 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
590 virtual void DrawRectangle(wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
593 Draws a rounded rectangle.
595 virtual void DrawRoundedRectangle(wxDouble x
, wxDouble y
, wxDouble w
,
596 wxDouble h
, wxDouble radius
);
599 Draws text at the defined position.
601 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
);
603 Draws text at the defined position.
608 The x coordinate position to draw the text at.
610 The y coordinate position to draw the text at.
612 The angle relative to the (default) horizontal direction to draw
615 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
, wxDouble angle
);
617 Draws text at the defined position.
622 The x coordinate position to draw the text at.
624 The y coordinate position to draw the text at.
625 @param backgroundBrush
626 Brush to fill the text with.
628 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
,
629 const wxGraphicsBrush
& backgroundBrush
);
631 Draws text at the defined position.
636 The x coordinate position to draw the text at.
638 The y coordinate position to draw the text at.
640 The angle relative to the (default) horizontal direction to draw
642 @param backgroundBrush
643 Brush to fill the text with.
645 void DrawText(const wxString
& str
, wxDouble x
, wxDouble y
,
646 wxDouble angle
, const wxGraphicsBrush
& backgroundBrush
);
649 Fills the path with the current brush.
651 virtual void FillPath(const wxGraphicsPath
& path
,
652 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) = 0;
655 Returns the native context (CGContextRef for Core Graphics, Graphics
656 pointer for GDIPlus and cairo_t pointer for cairo).
658 virtual void* GetNativeContext() = 0;
661 Fills the @a widths array with the widths from the beginning of
662 @a text to the corresponding character of @a text.
664 virtual void GetPartialTextExtents(const wxString
& text
,
665 wxArrayDouble
& widths
) const = 0;
668 Gets the dimensions of the string using the currently selected font.
671 The text string to measure.
673 Variable to store the total calculated width of the text.
675 Variable to store the total calculated height of the text.
677 Variable to store the dimension from the baseline of the font to
678 the bottom of the descender.
679 @param externalLeading
680 Any extra vertical space added to the font by the font designer
683 virtual void GetTextExtent(const wxString
& text
, wxDouble
* width
,
684 wxDouble
* height
, wxDouble
* descent
,
685 wxDouble
* externalLeading
) const = 0;
688 Gets the current transformation matrix of this context.
690 virtual wxGraphicsMatrix
GetTransform() const = 0;
693 Resets the clipping to original shape.
695 virtual void ResetClip() = 0;
698 Rotates the current transformation matrix (in radians).
700 virtual void Rotate(wxDouble angle
) = 0;
703 Scales the current transformation matrix.
705 virtual void Scale(wxDouble xScale
, wxDouble yScale
) = 0;
708 Sets the brush for filling paths.
710 void SetBrush(const wxBrush
& brush
);
712 Sets the brush for filling paths.
714 virtual void SetBrush(const wxGraphicsBrush
& brush
);
717 Sets the font for drawing text.
719 void SetFont(const wxFont
& font
, const wxColour
& colour
);
721 Sets the font for drawing text.
723 virtual void SetFont(const wxGraphicsFont
& font
);
726 Sets the pen used for stroking.
728 void SetPen(const wxPen
& pen
);
730 Sets the pen used for stroking.
732 virtual void SetPen(const wxGraphicsPen
& pen
);
735 Sets the current transformation matrix of this context
737 virtual void SetTransform(const wxGraphicsMatrix
& matrix
) = 0;
740 Strokes a single line.
742 virtual void StrokeLine(wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
);
745 Stroke disconnected lines from begin to end points, fastest method
746 available for this purpose.
748 virtual void StrokeLines(size_t n
, const wxPoint2DDouble
* beginPoints
,
749 const wxPoint2DDouble
* endPoints
);
751 Stroke lines connecting all the points.
753 Unlike the other overload of this function, this method draws a single
754 polyline and not a number of disconnected lines.
756 virtual void StrokeLines(size_t n
, const wxPoint2DDouble
* points
);
759 Strokes along a path with the current pen.
761 virtual void StrokePath(const wxGraphicsPath
& path
) = 0;
764 Translates the current transformation matrix.
766 virtual void Translate(wxDouble dx
, wxDouble dy
) = 0;
769 Redirects all rendering is done into a fully transparent temporary context
771 virtual void BeginLayer(wxDouble opacity
) = 0;
774 Composites back the drawings into the context with the opacity given at
777 virtual void EndLayer() = 0;
780 Sets the antialiasing mode, returns true if it supported
782 virtual bool SetAntialiasMode(wxAntialiasMode antialias
) = 0;
785 Returns the current shape antialiasing mode
787 virtual wxAntialiasMode
GetAntialiasMode() const ;
790 Sets the interpolation quality, returns true if it supported
792 virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation
) = 0;
795 Returns the current interpolation quality
797 virtual wxInterpolationQuality
GetInterpolationQuality() const;
800 Sets the compositing operator, returns true if it supported
802 virtual bool SetCompositionMode(wxCompositionMode op
) = 0;
805 Returns the current compositing operator
807 virtual wxCompositionMode
GetCompositionMode() const;
812 Represents a single gradient stop in a collection of gradient stops as
813 represented by wxGraphicsGradientStops.
820 class wxGraphicsGradientStop
824 Creates a stop with the given colour and position.
826 @param col The colour of this stop. Note that the alpha component of
827 the colour is honoured thus allowing the background colours to
828 partially show through the gradient.
829 @param pos The stop position, must be in [0, 1] range with 0 being the
830 beginning and 1 the end of the gradient.
832 wxGraphicsGradientStop(wxColour col
= wxTransparentColour
, float pos
= 0.);
834 /// Return the stop colour.
835 const wxColour
& GetColour() const;
838 Change the stop colour.
840 @param col The new colour.
842 void SetColour(const wxColour
& col
);
844 /// Return the stop position.
845 float GetPosition() const;
848 Change the stop position.
850 @param pos The new position, must always be in [0, 1] range.
852 void SetPosition(float pos
);
856 Represents a collection of wxGraphicGradientStop values for use with
857 CreateLinearGradientBrush and CreateRadialGradientBrush.
859 The stops are maintained in order of position. If two or more stops are
860 added with the same position then the one(s) added later come later.
861 This can be useful for producing discontinuities in the colour gradient.
863 Notice that this class is write-once, you can't modify the stops once they
871 class wxGraphicsGradientStops
875 Initializes the gradient stops with the given boundary colours.
877 Creates a wxGraphicsGradientStops instance with start colour given
878 by @a startCol and end colour given by @a endCol.
880 wxGraphicsGradientStops(wxColour startCol
= wxTransparentColour
,
881 wxColour endCol
= wxTransparentColour
);
887 void Add(const wxGraphicsGradientStop
& stop
);
888 void Add(wxColour col
, float pos
);
892 Returns the stop at the given index.
894 @param n The index, must be in [0, GetCount()) range.
896 wxGraphicsGradientStop
Item(unsigned n
) const;
899 Returns the number of stops.
901 unsigned GetCount() const;
904 Set the start colour to @a col
906 void SetStartColour(wxColour col
);
909 Returns the start colour.
911 wxColour
GetStartColour() const;
914 Set the end colour to @a col
916 void SetEndColour(wxColour col
);
919 Returns the end colour.
921 wxColour
GetEndColour() const;
925 @class wxGraphicsRenderer
927 A wxGraphicsRenderer is the instance corresponding to the rendering engine
928 used. There may be multiple instances on a system, if there are different
929 rendering engines present, but there is always only one instance per
930 engine. This instance is pointed back to by all objects created by it
931 (wxGraphicsContext, wxGraphicsPath etc) and can be retrieved through their
932 wxGraphicsObject::GetRenderer() method. Therefore you can create an
933 additional instance of a path etc. by calling
934 wxGraphicsObject::GetRenderer() and then using the appropriate CreateXXX()
935 function of that renderer.
938 wxGraphicsPath *path = // from somewhere
939 wxGraphicsBrush *brush = path->GetRenderer()->CreateBrush( *wxBLACK_BRUSH );
945 class wxGraphicsRenderer
: public wxObject
949 Creates wxGraphicsBitmap from an existing wxBitmap.
951 Returns an invalid wxNullGraphicsBitmap on failure.
953 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
) = 0;
956 Creates wxGraphicsBitmap from an existing wxImage.
958 This method is more efficient than converting wxImage to wxBitmap first
959 and then calling CreateBitmap() but otherwise has the same effect.
961 Returns an invalid wxNullGraphicsBitmap on failure.
965 virtual wxGraphicsBitmap
CreateBitmapFromImage(const wxImage
& image
) = 0;
968 Creates wxGraphicsBitmap from a native bitmap handle.
970 @a bitmap meaning is platform-dependent. Currently it's a GDI+ @c
971 Bitmap pointer under MSW, @c CGImage pointer under OS X or a @c
972 cairo_surface_t pointer when using Cairo under any platform.
974 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
) = 0;
977 Creates a wxGraphicsContext from a wxWindow.
979 virtual wxGraphicsContext
* CreateContext(wxWindow
* window
) = 0;
982 Creates a wxGraphicsContext from a wxWindowDC
984 virtual wxGraphicsContext
* CreateContext(const wxWindowDC
& dc
) = 0 ;
987 Creates a wxGraphicsContext from a wxMemoryDC
989 virtual wxGraphicsContext
* CreateContext(const wxMemoryDC
& dc
) = 0 ;
992 Creates a wxGraphicsContext from a wxPrinterDC
994 virtual wxGraphicsContext
* CreateContext(const wxPrinterDC
& dc
) = 0 ;
997 Creates a wxGraphicsContext from a wxEnhMetaFileDC.
999 This function, as wxEnhMetaFileDC class itself, is only available only
1002 virtual wxGraphicsContext
* CreateContext(const wxEnhMetaFileDC
& dc
) = 0;
1005 Creates a wxGraphicsContext associated with a wxImage.
1007 This function is used by wxContext::CreateFromImage() and is not
1008 normally called directly.
1012 static wxGraphicsContext
* CreateContextFromImage(wxImage
& image
);
1015 Creates a native brush from a wxBrush.
1017 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) = 0;
1020 Creates a wxGraphicsContext from a native context. This native context
1021 must be a CGContextRef for Core Graphics, a Graphics pointer for
1022 GDIPlus, or a cairo_t pointer for cairo.
1024 virtual wxGraphicsContext
* CreateContextFromNativeContext(void* context
) = 0;
1027 Creates a wxGraphicsContext from a native window.
1029 virtual wxGraphicsContext
* CreateContextFromNativeWindow(void* window
) = 0;
1032 Creates a wxGraphicsContext that can be used for measuring texts only.
1033 No drawing commands are allowed.
1035 virtual wxGraphicsContext
* CreateMeasuringContext() = 0;
1038 Creates a native graphics font from a wxFont and a text colour.
1040 virtual wxGraphicsFont
CreateFont(const wxFont
& font
,
1041 const wxColour
& col
= *wxBLACK
) = 0;
1044 Creates a graphics font with the given characteristics.
1046 If possible, the CreateFont() overload taking wxFont should be used
1047 instead. The main advantage of this overload is that it can be used
1048 without X server connection under Unix when using Cairo.
1051 Height of the font in user space units, i.e. normally pixels.
1052 Notice that this is different from the overload taking wxFont as
1053 wxFont size is specified in points.
1055 The name of the font. The same font name might not be available
1056 under all platforms so the font name can also be empty to use the
1057 default platform font.
1059 Combination of wxFontFlag enum elements. Currently only
1060 @c wxFONTFLAG_ITALIC and @c wxFONTFLAG_BOLD are supported. By
1061 default the normal font version is used.
1063 The font colour, black by default.
1067 virtual wxGraphicsFont
CreateFont(double sizeInPixels
,
1068 const wxString
& facename
,
1069 int flags
= wxFONTFLAG_DEFAULT
,
1070 const wxColour
& col
= *wxBLACK
) = 0;
1074 Creates a native brush with a linear gradient.
1076 Stops support is new since wxWidgets 2.9.1, previously only the start
1077 and end colours could be specified.
1079 virtual wxGraphicsBrush
CreateLinearGradientBrush(wxDouble x1
,
1083 const wxGraphicsGradientStops
& stops
) = 0;
1086 Creates a native affine transformation matrix from the passed in
1087 values. The defaults result in an identity matrix.
1089 virtual wxGraphicsMatrix
CreateMatrix(wxDouble a
= 1.0, wxDouble b
= 0.0,
1090 wxDouble c
= 0.0, wxDouble d
= 1.0,
1092 wxDouble ty
= 0.0) = 0;
1095 Creates a native graphics path which is initially empty.
1097 virtual wxGraphicsPath
CreatePath() = 0;
1100 Creates a native pen from a wxPen.
1102 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) = 0;
1105 Creates a native brush with a radial gradient.
1107 Stops support is new since wxWidgets 2.9.1, previously only the start
1108 and end colours could be specified.
1110 virtual wxGraphicsBrush
CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
1111 wxDouble xc
, wxDouble yc
,
1113 const wxGraphicsGradientStops
& stops
) = 0;
1116 Extracts a sub-bitmap from an existing bitmap.
1118 Currently this function is implemented in the native MSW and OS X
1119 versions but not when using Cairo.
1121 virtual wxGraphicsBitmap
CreateSubBitmap(const wxGraphicsBitmap
& bitmap
,
1122 wxDouble x
, wxDouble y
,
1123 wxDouble w
, wxDouble h
) = 0;
1126 Returns the default renderer on this platform. On OS X this is the Core
1127 Graphics (a.k.a. Quartz 2D) renderer, on MSW the GDIPlus renderer, and
1128 on GTK we currently default to the cairo renderer.
1130 static wxGraphicsRenderer
* GetDefaultRenderer();
1136 @class wxGraphicsBrush
1138 A wxGraphicsBrush is a native representation of a brush. The contents are
1139 specific and private to the respective renderer. Instances are ref counted
1140 and can therefore be assigned as usual. The only way to get a valid
1141 instance is via wxGraphicsContext::CreateBrush() or
1142 wxGraphicsRenderer::CreateBrush().
1147 class wxGraphicsBrush
: public wxGraphicsObject
1156 @class wxGraphicsFont
1158 A wxGraphicsFont is a native representation of a font. The contents are
1159 specific and private to the respective renderer. Instances are ref counted
1160 and can therefore be assigned as usual. The only way to get a valid
1161 instance is via wxGraphicsContext::CreateFont() or
1162 wxGraphicsRenderer::CreateFont().
1167 class wxGraphicsFont
: public wxGraphicsObject
1176 @class wxGraphicsPen
1178 A wxGraphicsPen is a native representation of a pen. The contents are
1179 specific and private to the respective renderer. Instances are ref counted
1180 and can therefore be assigned as usual. The only way to get a valid
1181 instance is via wxGraphicsContext::CreatePen() or
1182 wxGraphicsRenderer::CreatePen().
1187 class wxGraphicsPen
: public wxGraphicsObject
1196 @class wxGraphicsMatrix
1198 A wxGraphicsMatrix is a native representation of an affine matrix. The
1199 contents are specific and private to the respective renderer. Instances are
1200 ref counted and can therefore be assigned as usual. The only way to get a
1201 valid instance is via wxGraphicsContext::CreateMatrix() or
1202 wxGraphicsRenderer::CreateMatrix().
1207 class wxGraphicsMatrix
: public wxGraphicsObject
1211 Concatenates the matrix passed with the current matrix.
1213 virtual void Concat(const wxGraphicsMatrix
* t
);
1215 Concatenates the matrix passed with the current matrix.
1217 void Concat(const wxGraphicsMatrix
& t
);
1220 Returns the component values of the matrix via the argument pointers.
1222 virtual void Get(wxDouble
* a
= NULL
, wxDouble
* b
= NULL
,
1223 wxDouble
* c
= NULL
, wxDouble
* d
= NULL
,
1224 wxDouble
* tx
= NULL
, wxDouble
* ty
= NULL
) const;
1227 Returns the native representation of the matrix. For CoreGraphics this
1228 is a CFAffineMatrix pointer, for GDIPlus a Matrix Pointer, and for
1229 Cairo a cairo_matrix_t pointer.
1231 virtual void* GetNativeMatrix() const;
1236 virtual void Invert();
1239 Returns @true if the elements of the transformation matrix are equal.
1241 virtual bool IsEqual(const wxGraphicsMatrix
* t
) const;
1243 Returns @true if the elements of the transformation matrix are equal.
1245 bool IsEqual(const wxGraphicsMatrix
& t
) const;
1248 Return @true if this is the identity matrix.
1250 virtual bool IsIdentity() const;
1253 Rotates this matrix (in radians).
1255 virtual void Rotate(wxDouble angle
);
1260 virtual void Scale(wxDouble xScale
, wxDouble yScale
);
1263 Sets the matrix to the respective values (default values are the
1266 virtual void Set(wxDouble a
= 1.0, wxDouble b
= 0.0, wxDouble c
= 0.0,
1267 wxDouble d
= 1.0, wxDouble tx
= 0.0, wxDouble ty
= 0.0);
1270 Applies this matrix to a distance (ie. performs all transforms except
1273 virtual void TransformDistance(wxDouble
* dx
, wxDouble
* dy
) const;
1276 Applies this matrix to a point.
1278 virtual void TransformPoint(wxDouble
* x
, wxDouble
* y
) const;
1281 Translates this matrix.
1283 virtual void Translate(wxDouble dx
, wxDouble dy
);