X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/328f5751e8a06727b137189fe04891a9f43bfc8b..bf956fac0e89eab569c41a9f121e728958767de7:/interface/graphics.h diff --git a/interface/graphics.h b/interface/graphics.h index 44c444ac66..c20139b4bd 100644 --- a/interface/graphics.h +++ b/interface/graphics.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: graphics.h -// Purpose: documentation for wxGraphicsPath class +// Purpose: interface of wxGraphicsPath // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -23,7 +23,7 @@ class wxGraphicsPath : public wxGraphicsObject public: //@{ /** - + */ void AddArc(wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, @@ -49,7 +49,7 @@ public: //@{ /** - + */ void AddCurveToPoint(wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, @@ -67,7 +67,7 @@ public: //@{ /** - + */ void AddLineToPoint(wxDouble x, wxDouble y); void AddLineToPoint(const wxPoint2DDouble& p); @@ -157,6 +157,7 @@ public: }; + /** @class wxGraphicsObject @wxheader{graphics.h} @@ -167,8 +168,7 @@ public: @library{wxcore} @category{FIXME} - @seealso - wxGraphicsBrush, wxGraphicsPen, wxGraphicsMatrix, wxGraphicsPath + @see wxGraphicsBrush, wxGraphicsPen, wxGraphicsMatrix, wxGraphicsPath */ class wxGraphicsObject : public wxObject { @@ -186,6 +186,7 @@ public: }; + /** @class wxGraphicsContext @wxheader{graphics.h} @@ -198,8 +199,7 @@ public: @library{wxcore} @category{FIXME} - @seealso - wxGraphicsRenderer:: CreateContext + @see wxGraphicsRenderer:: CreateContext */ class wxGraphicsContext : public wxGraphicsObject { @@ -220,7 +220,7 @@ public: //@{ /** Creates a wxGraphicsContext from a wxWindow. - + @see wxGraphicsRenderer:: CreateContext */ wxGraphicsContext* Create(const wxWindowDC& dc); @@ -242,9 +242,9 @@ public: Creates a wxGraphicsContext from a native context. This native context must be eg a CGContextRef for Core Graphics, a Graphics pointer for GDIPlus or a cairo_t pointer for cairo. - + Creates a wxGraphicsContext from a native window. - + @see wxGraphicsRenderer:: CreateContextFromNativeContext */ wxGraphicsContext* CreateFromNative(void* context); @@ -458,6 +458,7 @@ public: }; + /** @class wxGraphicsRenderer @wxheader{graphics.h} @@ -552,6 +553,7 @@ public: }; + /** @class wxGraphicsBrush @wxheader{graphics.h} @@ -567,6 +569,7 @@ public: }; + /** @class wxGraphicsFont @wxheader{graphics.h} @@ -582,6 +585,7 @@ public: }; + /** @class wxGraphicsPen @wxheader{graphics.h} @@ -597,6 +601,7 @@ public: }; + /** @class wxGraphicsMatrix @wxheader{graphics.h} @@ -612,7 +617,7 @@ class wxGraphicsMatrix : public wxGraphicsObject public: //@{ /** - + */ void Concat(const wxGraphicsMatrix* t); void Concat(const wxGraphicsMatrix& t); @@ -680,3 +685,4 @@ public: */ void Translate(wxDouble dx, wxDouble dy); }; +