1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Wrapper definitions for wx.GraphicsPath, wx.GraphicsContext
9 // Copyright: (c) 2006 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
20 #include <wx/graphics.h>
23 // Turn off the aquisition of the Global Interpreter Lock for the classes and
24 // functions in this file
28 //---------------------------------------------------------------------------
29 //---------------------------------------------------------------------------
32 #if !wxUSE_GRAPHICS_CONTEXT
33 // C++ stub classes for platforms or build configurations that don't have
34 // wxGraphicsContext yet.
36 class wxGraphicsRenderer;
37 class wxGraphicsMatrix;
40 class wxGraphicsObject : public wxObject
44 wxGraphicsObject( wxGraphicsRenderer* ) {
45 PyErr_SetString(PyExc_NotImplementedError,
46 "wx.GraphicsObject is not available on this platform.");
48 wxGraphicsObject( const wxGraphicsObject& ) {}
49 virtual ~wxGraphicsObject() {}
50 bool IsNull() const { return false; }
51 wxGraphicsRenderer* GetRenderer() const { return NULL; }
56 class wxGraphicsPen : public wxGraphicsObject
60 virtual ~wxGraphicsPen() {}
62 wxGraphicsPen wxNullGraphicsPen;
66 class wxGraphicsBrush : public wxGraphicsObject
70 virtual ~wxGraphicsBrush() {}
72 wxGraphicsBrush wxNullGraphicsBrush;
76 class wxGraphicsFont : public wxGraphicsObject
80 virtual ~wxGraphicsFont() {}
82 wxGraphicsFont wxNullGraphicsFont;
86 class wxGraphicsPath : public wxGraphicsObject
90 wxGraphicsPath(wxGraphicsRenderer* ) {
91 PyErr_SetString(PyExc_NotImplementedError,
92 "wx.GraphicsPath is not available on this platform.");
94 virtual ~wxGraphicsPath() {}
96 void MoveToPoint( wxDouble, wxDouble ) {}
97 void MoveToPoint( const wxPoint2DDouble& ) {}
98 void AddLineToPoint( wxDouble, wxDouble ) {}
99 void AddLineToPoint( const wxPoint2DDouble& ) {}
100 void AddCurveToPoint( wxDouble, wxDouble, wxDouble, wxDouble, wxDouble, wxDouble ) {}
101 void AddCurveToPoint( const wxPoint2DDouble&, const wxPoint2DDouble&, const wxPoint2DDouble&) {}
102 void AddPath( const wxGraphicsPath& ) {}
103 void CloseSubpath() {}
104 void GetCurrentPoint( wxDouble&, wxDouble&) const {}
105 wxPoint2DDouble GetCurrentPoint() const { return wxPoint2D(0,0); }
106 void AddArc( wxDouble, wxDouble, wxDouble, wxDouble, wxDouble, bool ) {}
107 void AddArc( const wxPoint2DDouble& , wxDouble, wxDouble , wxDouble , bool ) {}
109 void AddQuadCurveToPoint( wxDouble, wxDouble, wxDouble, wxDouble ) {}
110 void AddRectangle( wxDouble, wxDouble, wxDouble, wxDouble ) {}
111 void AddCircle( wxDouble, wxDouble, wxDouble ) {}
112 void AddArcToPoint( wxDouble, wxDouble , wxDouble, wxDouble, wxDouble ) {}
114 void AddEllipse( wxDouble , wxDouble , wxDouble , wxDouble ) {}
115 void AddRoundedRectangle( wxDouble , wxDouble , wxDouble , wxDouble , wxDouble ) {}
116 void * GetNativePath() const { return NULL; }
117 void UnGetNativePath(void *) const {}
118 void Transform( const wxGraphicsMatrix& ) {}
119 void GetBox(wxDouble *, wxDouble *, wxDouble *, wxDouble *) const {}
120 wxRect2D GetBox() const { return wxRect2D(0,0,0,0); }
122 bool Contains( wxDouble , wxDouble , int ) const { return false; }
123 bool Contains( const wxPoint2DDouble& , int ) const { return false; }
125 wxGraphicsPath wxNullGraphicsPath;
128 class wxGraphicsMatrix : public wxGraphicsObject
131 wxGraphicsMatrix() { }
132 wxGraphicsMatrix(wxGraphicsRenderer* ) {
133 PyErr_SetString(PyExc_NotImplementedError,
134 "wx.GraphicsMatrix is not available on this platform.");
136 virtual ~wxGraphicsMatrix() {}
137 virtual void Concat( const wxGraphicsMatrix & ) {}
138 virtual void Copy( const wxGraphicsMatrix & ) {}
139 virtual void Set(wxDouble , wxDouble , wxDouble , wxDouble ,
140 wxDouble , wxDouble ) {}
141 virtual void Invert() {}
142 virtual bool IsEqual( const wxGraphicsMatrix& t) const { return false; }
143 virtual bool IsIdentity() const { return false; }
144 virtual void Translate( wxDouble , wxDouble ) {}
145 virtual void Scale( wxDouble , wxDouble ) {}
146 virtual void Rotate( wxDouble ) {}
147 virtual void TransformPoint( wxDouble *, wxDouble * ) const {}
148 virtual void TransformDistance( wxDouble *, wxDouble * ) const {}
149 virtual void * GetNativeMatrix() const { return NULL; }
151 wxGraphicsMatrix wxNullGraphicsMatrix;
154 class wxGraphicsContext : public wxGraphicsObject
158 wxGraphicsContext(wxGraphicsRenderer* ) {
159 PyErr_SetString(PyExc_NotImplementedError,
160 "wx.GraphicsContext is not available on this platform.");
163 virtual ~wxGraphicsContext() {}
165 static wxGraphicsContext* Create() {
166 PyErr_SetString(PyExc_NotImplementedError,
167 "wx.GraphicsContext is not available on this platform.");
170 static wxGraphicsContext* Create( const wxWindowDC& ) {
171 PyErr_SetString(PyExc_NotImplementedError,
172 "wx.GraphicsContext is not available on this platform.");
176 static wxGraphicsContext* CreateFromNative( void * ) {
177 PyErr_SetString(PyExc_NotImplementedError,
178 "wx.GraphicsContext is not available on this platform.");
182 static wxGraphicsContext* CreateFromNativeWindow( void * ) {
183 PyErr_SetString(PyExc_NotImplementedError,
184 "wx.GraphicsContext is not available on this platform.");
188 static wxGraphicsContext* Create( wxWindow* ) {
189 PyErr_SetString(PyExc_NotImplementedError,
190 "wx.GraphicsContext is not available on this platform.");
194 wxGraphicsPath CreatePath() { return wxNullGraphicsPath; }
196 virtual wxGraphicsPen CreatePen(const wxPen& ) { return wxNullGraphicsPen; }
198 virtual wxGraphicsBrush CreateBrush(const wxBrush& ) { return wxNullGraphicsBrush; }
200 virtual wxGraphicsBrush CreateLinearGradientBrush( wxDouble , wxDouble , wxDouble , wxDouble ,
201 const wxColour&, const wxColour&) { return wxNullGraphicsBrush; }
203 virtual wxGraphicsBrush CreateRadialGradientBrush( wxDouble xo, wxDouble yo,
204 wxDouble xc, wxDouble yc, wxDouble radius,
205 const wxColour &oColor, const wxColour &cColor) { return wxNullGraphicsBrush; }
207 virtual wxGraphicsFont CreateFont( const wxFont &, const wxColour & ) { return wxNullGraphicsFont; }
209 virtual wxGraphicsMatrix CreateMatrix( wxDouble, wxDouble, wxDouble, wxDouble,
210 wxDouble, wxDouble) { return wxNullGraphicsMatrix; }
212 virtual void PushState() {}
213 virtual void PopState() {}
214 virtual void Clip( const wxRegion & ) {}
215 virtual void Clip( wxDouble , wxDouble , wxDouble , wxDouble ) {}
216 virtual void ResetClip() {}
217 virtual void * GetNativeContext() { return NULL; }
218 virtual void Translate( wxDouble , wxDouble ) {}
219 virtual void Scale( wxDouble , wxDouble ) {}
220 virtual void Rotate( wxDouble ) {}
221 virtual void ConcatTransform( const wxGraphicsMatrix& ) {}
222 virtual void SetTransform( const wxGraphicsMatrix& ) {}
223 virtual wxGraphicsMatrix GetTransform() const { return wxNullGraphicsMatrix; }
225 virtual void SetPen( const wxGraphicsPen& ) {}
226 void SetPen( const wxPen& ) {}
228 virtual void SetBrush( const wxGraphicsBrush& ) {}
229 void SetBrush( const wxBrush& ) {}
231 virtual void SetFont( const wxGraphicsFont& ) {}
232 void SetFont( const wxFont&, const wxColour& ) {}
234 virtual void StrokePath( const wxGraphicsPath & ) {}
235 virtual void FillPath( const wxGraphicsPath &, int ) {}
236 virtual void DrawPath( const wxGraphicsPath &, int ) {}
238 virtual void DrawText( const wxString &, wxDouble , wxDouble ) {}
239 virtual void DrawText( const wxString &, wxDouble , wxDouble , wxDouble ) {}
240 virtual void DrawText( const wxString &, wxDouble , wxDouble , wxGraphicsBrush ) {}
241 virtual void DrawText( const wxString &, wxDouble , wxDouble , wxDouble , wxGraphicsBrush ) {}
242 virtual void GetTextExtent( const wxString &, wxDouble *, wxDouble *,
243 wxDouble *, wxDouble * ) const {}
244 virtual void GetPartialTextExtents(const wxString& , wxArrayDouble& ) const {}
246 virtual void DrawBitmap( const wxBitmap &, wxDouble , wxDouble , wxDouble , wxDouble ) {}
247 virtual void DrawIcon( const wxIcon &, wxDouble , wxDouble , wxDouble , wxDouble ) {}
249 virtual void StrokeLine( wxDouble , wxDouble , wxDouble , wxDouble ) {}
250 virtual void StrokeLines( size_t , const wxPoint2DDouble *) {}
251 virtual void StrokeLines( size_t , const wxPoint2DDouble *, const wxPoint2DDouble *) {}
252 virtual void DrawLines( size_t , const wxPoint2DDouble *, int ) {}
253 virtual void DrawRectangle( wxDouble , wxDouble , wxDouble , wxDouble ) {}
254 virtual void DrawRoundedRectangle( wxDouble , wxDouble , wxDouble , wxDouble , wxDouble ) {}
255 virtual void DrawEllipse( wxDouble , wxDouble , wxDouble , wxDouble ) {}
256 virtual void DrawRoundedRectangle( wxDouble wxDouble , wxDouble , wxDouble , wxDouble ) {}
257 virtual bool ShouldOffset() const { return false; }
261 class wxGraphicsRenderer : public wxObject
264 wxGraphicsRenderer() {
265 PyErr_SetString(PyExc_NotImplementedError,
266 "wx.GraphicsRenderer is not available on this platform.");
269 virtual ~wxGraphicsRenderer() {}
271 static wxGraphicsRenderer* GetDefaultRenderer() {
272 PyErr_SetString(PyExc_NotImplementedError,
273 "wx.GraphicsRenderer is not available on this platform.");
277 virtual wxGraphicsContext * CreateContext( const wxWindowDC& ) { return NULL; }
278 virtual wxGraphicsContext * CreateContextFromNativeContext( void * ) { return NULL; }
279 virtual wxGraphicsContext * CreateContextFromNativeWindow( void * ) { return NULL; }
280 virtual wxGraphicsContext * CreateContext( wxWindow* ) { return NULL; }
281 virtual wxGraphicsContext * CreateMeasuringContext() { return NULL; }
283 virtual wxGraphicsPath CreatePath() { return wxNullGraphicsPath; }
285 virtual wxGraphicsMatrix CreateMatrix( wxDouble , wxDouble , wxDouble , wxDouble ,
286 wxDouble , wxDouble ) { return wxNullGraphicsMatrix; }
288 virtual wxGraphicsPen CreatePen(const wxPen& ) { return wxNullGraphicsPen; }
289 virtual wxGraphicsBrush CreateBrush(const wxBrush& ) { return wxNullGraphicsBrush; }
290 virtual wxGraphicsBrush CreateLinearGradientBrush(wxDouble , wxDouble , wxDouble , wxDouble ,
291 const wxColour&, const wxColour&) { return wxNullGraphicsBrush; }
292 virtual wxGraphicsBrush CreateRadialGradientBrush(wxDouble , wxDouble , wxDouble , wxDouble , wxDouble ,
293 const wxColour &, const wxColour &) { return wxNullGraphicsBrush; }
294 virtual wxGraphicsFont CreateFont( const wxFont & , const wxColour & ) { return wxNullGraphicsFont; }
299 class wxGCDC: public wxWindowDC
302 wxGCDC(const wxWindowDC&) {
303 wxPyBlock_t blocked = wxPyBeginBlockThreads();
304 PyErr_SetString(PyExc_NotImplementedError,
305 "wxGCDC is not available on this platform.");
306 wxPyEndBlockThreads(blocked);
309 wxGCDC(const wxWindow*) {
310 wxPyBlock_t blocked = wxPyBeginBlockThreads();
311 PyErr_SetString(PyExc_NotImplementedError,
312 "wxGCDC is not available on this platform.");
313 wxPyEndBlockThreads(blocked);
317 wxPyBlock_t blocked = wxPyBeginBlockThreads();
318 PyErr_SetString(PyExc_NotImplementedError,
319 "wxGCDC is not available on this platform.");
320 wxPyEndBlockThreads(blocked);
325 wxGraphicsContext* GetGraphicsContext() { return NULL; }
326 void SetGraphicsContext( wxGraphicsContext* ) {}
332 //---------------------------------------------------------------------------
333 //---------------------------------------------------------------------------
336 %typemap(in) (size_t points, wxPoint2D* points_array ) {
337 $2 = wxPoint2D_LIST_helper($input, &$1);
338 if ($2 == NULL) SWIG_fail;
340 %typemap(freearg) (size_t points, wxPoint2D* points_array ) {
341 if ($2) delete [] $2;
346 MustHaveApp(wxGraphicsPath);
347 MustHaveApp(wxGraphicsContext);
350 typedef double wxDouble;
353 //---------------------------------------------------------------------------
356 DocStr(wxGraphicsObject,
357 "This class is the superclass of native graphics objects like pens
358 etc. It provides the internal reference counting. It is not to be
359 instantiated by user code.", "");
360 class wxGraphicsObject : public wxObject
363 wxGraphicsObject( wxGraphicsRenderer* renderer = NULL );
364 virtual ~wxGraphicsObject();
367 bool , IsNull() const ,
368 "Is this object valid (false) or still empty (true)?", "");
371 wxGraphicsRenderer* , GetRenderer() const,
372 "Returns the renderer that was used to create this instance, or
373 ``None`` if it has not been initialized yet.", "");
378 DocStr(wxGraphicsPen,
379 "A wx.GraphicsPen is a native representation of a pen. It is used for
380 stroking a path on a `wx.GraphicsContext`. The contents are specific and
381 private to the respective renderer. The only way to get a valid instance
382 is via a CreatePen call on the graphics context or the renderer
384 class wxGraphicsPen : public wxGraphicsObject
388 virtual ~wxGraphicsPen();
391 DocStr(wxGraphicsBrush,
392 "A wx.GraphicsBrush is a native representation of a brush. It is used
393 for filling a path on a `wx.GraphicsContext`. The contents are
394 specific and private to the respective renderer. The only way to get a
395 valid instance is via a Create...Brush call on the graphics context or
396 the renderer instance.", "");
397 class wxGraphicsBrush : public wxGraphicsObject
401 virtual ~wxGraphicsBrush();
405 DocStr(wxGraphicsFont,
406 "A `wx.GraphicsFont` is a native representation of a font (including
407 text colour). The contents are specific an private to the respective
408 renderer. The only way to get a valid instance is via a CreateFont
409 call on the graphics context or the renderer instance.", "");
410 class wxGraphicsFont : public wxGraphicsObject
414 virtual ~wxGraphicsFont();
418 //---------------------------------------------------------------------------
420 DocStr(wxGraphicsMatrix,
421 "A wx.GraphicsMatrix is a native representation of an affine
422 matrix. The contents are specific an private to the respective
423 renderer. The only way to get a valid instance is via a CreateMatrix
424 call on the graphics context or the renderer instance.", "");
425 class wxGraphicsMatrix : public wxGraphicsObject
429 virtual ~wxGraphicsMatrix();
432 virtual void , Concat( const wxGraphicsMatrix& t ),
433 "Concatenates the passed in matrix to the current matrix.", "");
437 // "Copy the passed in matrix to this one.", "");
438 // void Copy( const wxGraphicsMatrix& t ) {
445 virtual void , Set(wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0,
446 wxDouble tx=0.0, wxDouble ty=0.0),
447 "Sets the matrix to the specified values (default values are the
448 identity matrix.)", "");
452 virtual void , Invert(),
453 "Inverts the matrix.", "");
457 virtual bool , IsEqual( const wxGraphicsMatrix& t) const,
458 "Returns ``True`` if the elements of the transformation matrix are equal", "");
462 virtual bool , IsIdentity() const,
463 "Returns ``True`` if this is the identity matrix", "");
467 virtual void , Translate( wxDouble dx , wxDouble dy ),
468 "Add a translation to this matrix.", "");
472 virtual void , Scale( wxDouble xScale , wxDouble yScale ),
473 "Scales this matrix.", "");
477 virtual void , Rotate( wxDouble angle ),
478 "Rotates this matrix. The angle should be specified in radians.", "");
482 virtual void , TransformPoint( wxDouble *INOUT, wxDouble *INOUT ) const,
483 "TransformPoint(self, x, y) --> (x, y)",
484 "Applies this matrix to a point, returns the resulting point values", "");
488 virtual void , TransformDistance( wxDouble *INOUT, wxDouble *INOUT ) const,
489 "TransformDistance(self, dx, dy) --> (dx, dy)",
490 "Applies this matrix to a distance (ie. performs all transforms except
495 virtual void * , GetNativeMatrix() const,
496 "Returns the native representation of the matrix. For CoreGraphics this
497 is a CFAffineMatrix pointer. For GDIPlus a Matrix Pointer and for
498 Cairo a cairo_matrix_t pointer. NOTE: For wxPython we still need a
499 way to make this value usable.", "");
502 //---------------------------------------------------------------------------
504 class wxGraphicsPath : public wxGraphicsObject
508 virtual ~wxGraphicsPath();
511 %nokwargs MoveToPoint;
513 "Begins a new subpath at the specified point.", "");
514 virtual void MoveToPoint( wxDouble x, wxDouble y );
515 void MoveToPoint( const wxPoint2D& p);
518 %nokwargs AddLineToPoint;
519 DocStr(AddLineToPoint,
520 "Adds a straight line from the current point to the specified point.", "");
521 virtual void AddLineToPoint( wxDouble x, wxDouble y );
522 void AddLineToPoint( const wxPoint2D& p);
525 %nokwargs AddCurveToPoint;
526 DocStr(AddCurveToPoint,
527 "Adds a cubic Bezier curve from the current point, using two control
528 points and an end point", "");
529 virtual void AddCurveToPoint( wxDouble cx1, wxDouble cy1,
530 wxDouble cx2, wxDouble cy2,
531 wxDouble x, wxDouble y );
532 void AddCurveToPoint( const wxPoint2D& c1, const wxPoint2D& c2, const wxPoint2D& e);
537 virtual void , AddPath( const wxGraphicsPath& path ),
538 "Adds another path", "");
542 virtual void , CloseSubpath(),
543 "Closes the current sub-path.", "");
547 wxPoint2D , GetCurrentPoint() const,
548 "Gets the last point of the current path, (0,0) if not yet set", "");
553 "Adds an arc of a circle centering at (x,y) with radius (r) from
554 startAngle to endAngle", "");
555 virtual void AddArc( wxDouble x, wxDouble y, wxDouble r,
556 wxDouble startAngle, wxDouble endAngle, bool clockwise );
557 void AddArc( const wxPoint2D& c, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise);
561 virtual void , AddQuadCurveToPoint( wxDouble cx, wxDouble cy, wxDouble x, wxDouble y ),
562 "Adds a quadratic Bezier curve from the current point, using a control
563 point and an end point", "");
567 virtual void , AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ),
568 "Appends a rectangle as a new closed subpath.", "");
572 virtual void , AddCircle( wxDouble x, wxDouble y, wxDouble r ),
573 "Appends a circle around (x,y) with radius r as a new closed subpath.", "");
577 virtual void , AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ,
578 "Appends an arc to two tangents connecting (current) to (x1,y1) and (x1,y1)
579 to (x2,y2), also a straight line from (current) to (x1,y1)", "");
583 virtual void , AddEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h),
584 "Appends an ellipse fitting into the passed in rectangle.", "");
588 virtual void , AddRoundedRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h, wxDouble radius),
589 "Appends a rounded rectangle.", "");
593 virtual void * , GetNativePath() const,
594 "Returns the native path (CGPathRef for Core Graphics, Path pointer for
595 GDIPlus and a cairo_path_t pointer for cairo). NOTE: For wxPython we
596 still need a way to make this value usable.", "");
600 virtual void , UnGetNativePath(void *p) const,
601 "Gives back the native path returned by GetNativePath() because there
602 might be some deallocations necessary (eg on cairo the native path
603 returned by GetNativePath is newly allocated each time).", "");
607 virtual void , Transform( const wxGraphicsMatrix& matrix ),
608 "Transforms each point of this path by the matrix", "");
612 wxRect2DDouble , GetBox() const,
613 "Gets the bounding box enclosing all points (possibly including control points)", "");
618 "Returns ``True`` if the point is within the path.", "");
619 virtual bool Contains( wxDouble x, wxDouble y, int fillStyle = wxODDEVEN_RULE) const;
620 bool Contains( const wxPoint2DDouble& c, int fillStyle = wxODDEVEN_RULE) const;
625 //---------------------------------------------------------------------------
628 const wxGraphicsPen wxNullGraphicsPen;
629 const wxGraphicsBrush wxNullGraphicsBrush;
630 const wxGraphicsFont wxNullGraphicsFont;
631 const wxGraphicsMatrix wxNullGraphicsMatrix;
632 const wxGraphicsPath wxNullGraphicsPath;
635 //---------------------------------------------------------------------------
637 DocStr(wxGraphicsContext,
638 "A `wx.GraphicsContext` instance is the object that is drawn upon. It is
639 created by a renderer using the CreateContext calls, this can be done
640 either directly using a renderer instance, or indirectly using the
641 static convenience CreateXXX functions of wx.GraphicsContext that
642 always delegate the task to the default renderer.", "");
644 class wxGraphicsContext : public wxGraphicsObject
647 //wxGraphicsContext(); This is an ABC, use Create to make an instance...
648 virtual ~wxGraphicsContext();
653 "val.__dc = args[0] # save a ref so the dc will not be deleted before self";
655 "Creates a wx.GraphicsContext either from a window or a DC.", "");
656 static wxGraphicsContext* Create( const wxWindowDC& dc);
657 static wxGraphicsContext* Create( wxWindow* window ) ;
660 static wxGraphicsContext* , Create(),
661 "Create a lightwieght context that can be used for measuring text only.", "",
662 CreateMeasuringContext);
664 %newobject CreateFromNative;
666 static wxGraphicsContext* , CreateFromNative( void * context ) ,
667 "Creates a wx.GraphicsContext from a native context. This native context
668 must be eg a CGContextRef for Core Graphics, a Graphics pointer for
669 GDIPlus or a cairo_t pointer for Cairo.", "");
672 %newobject CreateFromNative;
674 static wxGraphicsContext* , CreateFromNativeWindow( void * window ) ,
675 "Creates a wx.GraphicsContext from a native window.", "");
680 virtual wxGraphicsPath , CreatePath(),
681 "Creates a native graphics path which is initially empty.", "");
685 virtual wxGraphicsPen , CreatePen(const wxPen& pen),
686 "Creates a native pen from a `wx.Pen`.", "");
690 virtual wxGraphicsBrush , CreateBrush(const wxBrush& brush ),
691 "Creates a native brush from a `wx.Brush`.", "");
695 virtual wxGraphicsBrush ,
696 CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2,
697 const wxColour& c1, const wxColour& c2),
698 "Creates a native brush, having a linear gradient, starting at (x1,y1)
699 with color c1 to (x2,y2) with color c2.", "");
703 virtual wxGraphicsBrush ,
704 CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius,
705 const wxColour &oColor, const wxColour &cColor),
706 "Creates a native brush, having a radial gradient originating at
707 point (xo,yc) with color oColour and ends on a circle around (xc,yc) with
708 radius r and color cColour.", "");
712 virtual wxGraphicsFont , CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ),
713 "Creates a native graphics font from a `wx.Font` and a text colour.", "");
717 virtual wxGraphicsMatrix , CreateMatrix( wxDouble a=1.0, wxDouble b=0.0,
718 wxDouble c=0.0, wxDouble d=1.0,
719 wxDouble tx=0.0, wxDouble ty=0.0),
720 "Creates a native affine transformation matrix from the passed in
721 values. The defaults result in an identity matrix.", "");
726 virtual void , PushState(),
727 "push the current state of the context, ie the transformation matrix on a stack", "");
731 virtual void , PopState(),
732 "pops a stored state from the stack", "");
736 virtual void , Clip( const wxRegion ®ion ),
737 "Clips drawings to the region, combined to current clipping region.", "",
742 virtual void , Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h ),
743 "Clips drawings to the rectangle.", "");
747 virtual void , ResetClip(),
748 "Resets the clipping to original shape.", "");
752 virtual void * , GetNativeContext(),
753 "Returns the native context (CGContextRef for Core Graphics, Graphics
754 pointer for GDIPlus and cairo_t pointer for cairo).", "");
758 virtual void , Translate( wxDouble dx , wxDouble dy ),
759 "Translates the current transformation matrix.", "");
763 virtual void , Scale( wxDouble xScale , wxDouble yScale ),
764 "Scale the current transformation matrix of the context.", "");
768 virtual void , Rotate( wxDouble angle ),
769 "Rotate the current transformation matrix of the context. ``angle`` is
770 specified in radians.", "");
774 virtual void , ConcatTransform( const wxGraphicsMatrix& matrix ),
775 "Concatenates the passed in transform with the current transform of
780 virtual void , SetTransform( const wxGraphicsMatrix& matrix ),
781 "Sets the current transform of this context.", "");
785 virtual wxGraphicsMatrix , GetTransform() const,
786 "Gets the current transformation matrix of this context.", "");
791 DocStr(SetPen, "Sets the stroke pen", "");
793 virtual void SetPen( const wxGraphicsPen& pen );
794 void SetPen( const wxPen& pen );
797 DocStr(SetBrush, "Sets the brush for filling", "");
799 virtual void SetBrush( const wxGraphicsBrush& brush );
800 void SetBrush( const wxBrush& brush );
803 DocStr(SetFont, "Sets the font", "");
805 virtual void SetFont( const wxGraphicsFont& font );
806 void SetFont( const wxFont& font, const wxColour& colour = *wxBLACK);
811 virtual void , StrokePath( const wxGraphicsPath& path ),
812 "Strokes along a path with the current pen.", "");
816 virtual void , FillPath( const wxGraphicsPath& path, int fillStyle = wxODDEVEN_RULE ),
817 "Fills a path with the current brush.", "");
821 virtual void , DrawPath( const wxGraphicsPath& path, int fillStyle = wxODDEVEN_RULE ),
822 "Draws the path by first filling and then stroking.", "");
827 "Draws a text string at the defined position.", "");
828 void DrawText( const wxString &str, wxDouble x, wxDouble y,
829 const wxGraphicsBrush& backgroundBrush = wxNullGraphicsBrush )
831 if ( !backgroundBrush.IsNull() )
832 self->DrawText(str, x, y, backgroundBrush);
834 self->DrawText(str, x, y);
837 DocStr(DrawRotatedText,
838 "Draws a text string at the defined position, at the specified angle,
839 which is given in radians.", "");
840 void DrawRotatedText( const wxString &str, wxDouble x, wxDouble y, wxDouble angle,
841 const wxGraphicsBrush& backgroundBrush = wxNullGraphicsBrush )
843 if ( !backgroundBrush.IsNull() )
844 self->DrawText(str, x, y, angle, backgroundBrush);
846 self->DrawText(str, x, y, angle);
853 virtual void , GetTextExtent( const wxString &text,
854 wxDouble *OUTPUT /*width*/,
855 wxDouble *OUTPUT /*height*/,
856 wxDouble *OUTPUT /*descent*/,
857 wxDouble *OUTPUT /*externalLeading*/ ) const ,
858 "GetFullTextExtent(self, text) --> (width, height, descent, externalLeading)",
859 "Gets the dimensions of the string using the currently selected
860 font. ``text`` is the string to measure, ``w`` and ``h`` are the total
861 width and height respectively, ``descent`` is the dimension from the
862 baseline of the font to the bottom of the descender, and
863 ``externalLeading`` is any extra vertical space added to the font by
864 the font designer (usually is zero).", "",
868 DocAStr(GetTextExtent,
869 "GetTextExtent(self, text) --> (width, height)",
870 "Gets the dimensions of the string using the currently selected
871 font. ``text`` is the string to measure, ``w`` and ``h`` are the total
872 width and height respectively.", "");
874 PyObject* GetTextExtent( const wxString &text )
876 wxDouble width = 0.0,
878 self->GetTextExtent(text, &width, &height, NULL, NULL);
879 // thread wrapers are turned off for this .i file, so no need to acquire GIL...
880 PyObject* rv = PyTuple_New(2);
881 PyTuple_SET_ITEM(rv, 0, PyFloat_FromDouble(width));
882 PyTuple_SET_ITEM(rv, 1, PyFloat_FromDouble(height));
889 DocAStr(GetPartialTextExtents,
890 "GetPartialTextExtents(self, text) -> [widths]",
891 "Returns a list of widths from the beginning of ``text`` to the
892 coresponding character in ``text``.", "");
893 wxArrayDouble GetPartialTextExtents(const wxString& text) {
894 wxArrayDouble widths;
895 self->GetPartialTextExtents(text, widths);
902 virtual void , DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ),
903 "Draws the bitmap. In case of a mono bitmap, this is treated as a mask
904 and the current brush is used for filling.", "");
908 virtual void , DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ),
909 "Draws the icon.", "");
914 virtual void , StrokeLine( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2),
915 "Strokes a single line.", "");
919 virtual void , StrokeLines( size_t points, const wxPoint2D *points_array),
920 "StrokeLines(self, List points)",
921 "Stroke lines connecting each of the points", "");
925 DocStr(StrokeLineSegements,
926 "Stroke disconnected lines from begin to end points", "");
927 void StrokeLineSegements(PyObject* beginPoints, PyObject* endPoints)
929 size_t c1, c2, count;
930 wxPoint2D* beginP = wxPoint2D_LIST_helper(beginPoints, &c1);
931 wxPoint2D* endP = wxPoint2D_LIST_helper(endPoints, &c2);
933 if ( beginP != NULL && endP != NULL )
935 count = wxMin(c1, c2);
936 self->StrokeLines(count, beginP, endP);
945 virtual void , DrawLines( size_t points, const wxPoint2D *points_array,
946 int fillStyle = wxODDEVEN_RULE ),
947 "Draws a polygon.", "");
951 virtual void , DrawRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h),
952 "Draws a rectangle.", "");
956 virtual void , DrawEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h),
957 "Draws an ellipse.", "");
961 virtual void , DrawRoundedRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h, wxDouble radius),
962 "Draws a rounded rectangle", "");
967 virtual bool , ShouldOffset() const,
968 "helper to determine if a 0.5 offset should be applied for the drawing operation", "");
973 //---------------------------------------------------------------------------
975 class wxGraphicsRenderer : public wxObject
978 // wxGraphicsRenderer(); This is an ABC, use GetDefaultRenderer
980 virtual ~wxGraphicsRenderer();
982 // %newobject GetDefaultRenderer; ???
983 static wxGraphicsRenderer* GetDefaultRenderer();
985 %nokwargs CreateContext;
986 %newobject CreateContext;
987 virtual wxGraphicsContext * CreateContext( const wxWindowDC& dc) ;
988 virtual wxGraphicsContext * CreateContext( wxWindow* window );
990 // create a context that can be used for measuring texts only, no drawing allowed
991 virtual wxGraphicsContext * CreateMeasuringContext();
993 %newobject CreateContextFromNativeContext;
994 virtual wxGraphicsContext * CreateContextFromNativeContext( void * context );
996 %newobject CreateContextFromNativeWindow;
997 virtual wxGraphicsContext * CreateContextFromNativeWindow( void * window );
1000 virtual wxGraphicsPath CreatePath();
1002 virtual wxGraphicsMatrix CreateMatrix( wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0,
1003 wxDouble tx=0.0, wxDouble ty=0.0);
1005 virtual wxGraphicsPen CreatePen(const wxPen& pen) ;
1007 virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ;
1009 virtual wxGraphicsBrush CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2,
1010 const wxColour&c1, const wxColour&c2);
1012 virtual wxGraphicsBrush CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius,
1013 const wxColour &oColor, const wxColour &cColor);
1015 virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK );
1021 //---------------------------------------------------------------------------
1024 #include "wx/dcgraph.h"
1027 class wxGCDC: public wxDC
1031 %pythonAppend wxGCDC
1032 "self.__dc = args[0] # save a ref so the other dc will not be deleted before self";
1033 wxGCDC(const wxWindowDC& dc);
1034 wxGCDC(wxWindow* window);
1038 wxGraphicsContext* GetGraphicsContext();
1039 virtual void SetGraphicsContext( wxGraphicsContext* ctx );
1041 %property(GraphicsContext, GetGraphicsContext, SetGraphicsContext);
1045 //---------------------------------------------------------------------------
1047 // Turn GIL acquisition back on.