Example #1
0
        public GraphicsPath(GraphicsPath path)
        {
            GpPath clonepath = null;

            SetStatus(GdiPlus.GdipClonePath(path.nativePath, out clonepath));
            SetNativePath(clonepath);
        }
Example #2
0
        public GraphicsPath Clone()
        {
            GpPath clonepath = null;

            SetStatus(GdiPlus.GdipClonePath(nativePath, out clonepath));

            return(new GraphicsPath(clonepath));
        }
Example #3
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
     }
     if ((IntPtr)nativePath != IntPtr.Zero)
     {
         GdiPlus.GdipDeletePath(nativePath);
         nativePath = new GpPath();
     }
 }
Example #4
0
        public void AddPath(GraphicsPath addingPath, bool connect)
        {
            GpPath nativePath2 = null;

            if (addingPath != null)
            {
                nativePath2 = addingPath.nativePath;
            }

            SetStatus(GdiPlus.GdipAddPathPath(nativePath, nativePath2, connect));
        }
Example #5
0
        public CustomLineCap(
            GraphicsPath fillPath,
            GraphicsPath strokePath,
            LineCap baseCap,
            float baseInset
            )
        {
            nativeCap = new GpCustomLineCap();
            GpPath nativeFillPath   = null;
            GpPath nativeStrokePath = null;

            if (fillPath != null)
            {
                nativeFillPath = fillPath.nativePath;
            }
            if (strokePath != null)
            {
                nativeStrokePath = strokePath.nativePath;
            }

            lastResult = GdiPlus.GdipCreateCustomLineCap(
                nativeFillPath, nativeStrokePath,
                baseCap, baseInset, out nativeCap);
        }
Example #6
0
 internal static extern GpStatus GdipStartPathFigure(GpPath path);
Example #7
0
 internal static extern GpStatus GdipCreatePath(FillMode brushMode, out GpPath path);
Example #8
0
 internal static extern GpStatus GdipAddPathPolygon(GpPath path, PointF[] points, int count);
Example #9
0
 internal static extern GpStatus GdipAddPathBeziersI(GpPath path, Point[] points, int count);
Example #10
0
 internal static extern GpStatus GdipSetPathFillMode(GpPath path, FillMode fillmode);
Example #11
0
 internal static extern GpStatus GdipAddPathLine(GpPath path, float x1, float y1, float x2, float y2);
Example #12
0
 internal static extern GpStatus GdipAddPathLine2I(GpPath path, Point[] points, int count);
Example #13
0
 internal static extern GpStatus GdipResetPath(GpPath path);
Example #14
0
 internal static extern GpStatus GdipAddPathEllipseI(GpPath path, int x, int y, int width, int height);
Example #15
0
 internal static extern GpStatus GdipAddPathLine(GpPath path, float x1, float y1, float x2, float y2);
Example #16
0
 internal static extern GpStatus GdipAddPathEllipse(GpPath path, float x, float y, float width, float height);
Example #17
0
 internal static extern GpStatus GdipAddPathBeziersI(GpPath path, Point[] points, int count);
Example #18
0
 internal static extern GpStatus GdipAddPathArc(GpPath path, float x, float y, float width, float height, float startAngle, float sweepAngle);
Example #19
0
 internal static extern GpStatus GdipIsVisiblePathPointI(GpPath path, int x, int y, GpGraphics graphics, out bool result);
Example #20
0
 internal static extern GpStatus GdipAddPathPath(GpPath path, GpPath addingPath, bool connect);
Example #21
0
 internal static extern GpStatus GdipClonePath(GpPath path, out GpPath clonePath);
Example #22
0
 internal static extern GpStatus GdipAddPathPieI(GpPath path, int x, int y, int width, int height, float startAngle, float sweepAngle);
Example #23
0
 internal static extern GpStatus GdipGetPathTypes(GpPath path, byte[] types, int count);
Example #24
0
 internal static extern GpStatus GdipAddPathPolygon(GpPath path, PointF[] points, int count);
Example #25
0
 internal static extern GpStatus GdipClosePathFigures(GpPath path);
Example #26
0
 internal static extern GpStatus GdipAddPathRectangle(GpPath path, float x, float y, float width, float height);
Example #27
0
 internal static extern GpStatus GdipAddPathEllipse(GpPath path, float x, float y, float width, float height);
Example #28
0
 internal static extern GpStatus GdipAddPathRectangleI(GpPath path, int x, int y, int width, int height);
Example #29
0
 internal static extern GpStatus GdipAddPathLine2I(GpPath path, Point[] points, int count);
Example #30
0
 internal static extern GpStatus GdipAddPathRectanglesI(GpPath path, Rectangle[] rects, int count);
Example #31
0
 internal static extern GpStatus GdipAddPathRectanglesI(GpPath path, Rectangle[] rects, int count);
Example #32
0
 internal static extern GpStatus GdipClonePath(GpPath path, out GpPath clonePath);
Example #33
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
     }
     if ((IntPtr)nativePath != IntPtr.Zero)
     {
         GdiPlus.GdipDeletePath(nativePath);
         nativePath = new GpPath();
     }
 }
Example #34
0
 internal static extern GpStatus GdipClosePathFigures(GpPath path);
Example #35
0
 internal static extern GpStatus GdipAddPathEllipseI(GpPath path, int x, int y, int width, int height);
Example #36
0
 internal static extern GpStatus GdipCreatePath(FillMode brushMode, out GpPath path);
Example #37
0
 internal static extern GpStatus GdipIsOutlineVisiblePathPoint(GpPath path, float x, float y, GpPen pen, GpGraphics graphics, out bool result);
Example #38
0
 internal static extern GpStatus GdipDeletePath(GpPath path);
Example #39
0
 internal static extern GpStatus GdipDeletePath(GpPath path);
Example #40
0
 internal static extern GpStatus GdipGetPathFillMode(GpPath path, out FillMode fillmode);
Example #41
0
 internal static extern GpStatus GdipGetPointCount(GpPath path, out int count);
Example #42
0
 internal static extern GpStatus GdipGetPathLastPoint(GpPath path, out PointF lastPoint);
Example #43
0
 internal static extern GpStatus GdipGetPathPointsI(GpPath path, Point[] points, int count);
Example #44
0
 internal static extern GpStatus GdipGetPathPointsI(GpPath path, Point[] points, int count);
Example #45
0
 internal static extern GpStatus GdipStartPathFigure(GpPath path);
Example #46
0
 internal static extern GpStatus GdipGetPathTypes(GpPath path, byte[] types, int count);
Example #47
0
 internal static extern GpStatus GdipGetPathLastPoint(GpPath path, out PointF lastPoint);
Example #48
0
 internal static extern GpStatus GdipGetPointCount(GpPath path, out int count);
Example #49
0
 GdipAddPathRectangle(GpPath path, float x, float y, float width, float height);
Example #50
0
 internal static extern GpStatus GdipIsVisiblePathPoint(GpPath path, float x, float y, GpGraphics graphics, out bool result);
Example #51
0
 internal static extern GpStatus GdipAddPathPie(GpPath path, float x, float y, float width, float height, float startAngle, float sweepAngle);
Example #52
0
 internal static extern GpStatus GdipCreateCustomLineCap(GpPath fillPath, GpPath strokePath, LineCap baseCap, float baseInset, out GpCustomLineCap customCap);
Example #53
0
 internal static extern GpStatus GdipAddPathPath(GpPath path, GpPath addingPath, bool connect);
Example #54
0
 public GraphicsPath(FillMode fillMode)
 {
     nativePath = null;
     lastResult = GdiPlus.GdipCreatePath(fillMode, out nativePath);
 }
Example #55
0
 internal static extern GpStatus GdipAddPathArcI(GpPath path, int x, int y, int width, int height, float startAngle, float sweepAngle);
Example #56
0
 void SetNativePath(GpPath nativePath)
 {
     this.nativePath = nativePath;
 }
Example #57
0
 internal static extern GpStatus GdipAddPathRectangleI(GpPath path, int x, int y, int width, int height);
Example #58
0
 protected GraphicsPath(GpPath nativePath)
 {
     lastResult = GpStatus.Ok;
     SetNativePath(nativePath);
 }
Example #59
0
 internal static extern GpStatus GdipCreatePathGradientFromPath(GpPath path,
     out GpPathGradient polyGradient);
Example #60
0
 internal static extern GpStatus GdipResetPath(GpPath path);