コード例 #1
0
        public MgShapes cloneShapes()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapes_cloneShapes(swigCPtr);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #2
0
        public static MgShapes create(MgObject owner)
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapes_create__SWIG_1(MgObject.getCPtr(owner));
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #3
0
        public MgShapes shallowCopy()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapes_shallowCopy(swigCPtr);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #4
0
        public static MgShapes create()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapes_create__SWIG_2();
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #5
0
        public MgShapes getCurrentShapes()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapeDoc_getCurrentShapes(swigCPtr);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #6
0
ファイル: MgShape.cs プロジェクト: shuangyou/TouchVG
        public virtual MgShapes getParent()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShape_getParent(swigCPtr);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #7
0
        public static MgShapes fromHandle(int h)
        {
            IntPtr   cPtr = touchvgPINVOKE.MgShapes_fromHandle(h);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #8
0
ファイル: MgView.cs プロジェクト: shuangyou/TouchVG
        public virtual MgShapes shapes()
        {
            IntPtr   cPtr = touchvgPINVOKE.MgView_shapes(swigCPtr);
            MgShapes ret  = (cPtr == IntPtr.Zero) ? null : new MgShapes(cPtr, false);

            return(ret);
        }
コード例 #9
0
ファイル: MgImageShape.cs プロジェクト: shuangyou/TouchVG
        public static MgShape findShapeByImageID(MgShapes shapes, string name)
        {
            IntPtr  cPtr = touchvgPINVOKE.MgImageShape_findShapeByImageID(MgShapes.getCPtr(shapes), name);
            MgShape ret  = (cPtr == IntPtr.Zero) ? null : new MgShape(cPtr, false);

            return(ret);
        }
コード例 #10
0
 internal static HandleRef getCPtr(MgShapes obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }
コード例 #11
0
ファイル: MgCommand.cs プロジェクト: stonelin129/Touchvg
 public virtual bool gatherShapes(MgMotion sender, MgShapes shapes)
 {
     bool ret = (SwigDerivedClassHasMethod("gatherShapes", swigMethodTypes5) ? touchvgPINVOKE.MgCommand_gatherShapesSwigExplicitMgCommand(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)) : touchvgPINVOKE.MgCommand_gatherShapes(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)));
     return ret;
 }
コード例 #12
0
ファイル: MgShapes.cs プロジェクト: pankajcg/TouchVG
 internal static HandleRef getCPtr(MgShapes obj)
 {
     return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
コード例 #13
0
ファイル: MgShapes.cs プロジェクト: pankajcg/TouchVG
 public bool moveShapeTo(int sid, MgShapes dest)
 {
     bool ret = touchvgPINVOKE.MgShapes_moveShapeTo(swigCPtr, sid, MgShapes.getCPtr(dest));
     return ret;
 }
コード例 #14
0
ファイル: MgShapes.cs プロジェクト: pankajcg/TouchVG
 public void copyShapesTo(MgShapes dest)
 {
     touchvgPINVOKE.MgShapes_copyShapesTo(swigCPtr, MgShapes.getCPtr(dest));
 }
コード例 #15
0
        public virtual bool gatherShapes(MgMotion sender, MgShapes shapes)
        {
            bool ret = (SwigDerivedClassHasMethod("gatherShapes", swigMethodTypes5) ? touchvgPINVOKE.MgCommand_gatherShapesSwigExplicitMgCommand(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)) : touchvgPINVOKE.MgCommand_gatherShapes(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)));

            return(ret);
        }
コード例 #16
0
        public bool moveShapeTo(int sid, MgShapes dest)
        {
            bool ret = touchvgPINVOKE.MgShapes_moveShapeTo(swigCPtr, sid, MgShapes.getCPtr(dest));

            return(ret);
        }
コード例 #17
0
        public int copyShapes(MgShapes src, bool deeply)
        {
            int ret = touchvgPINVOKE.MgShapes_copyShapes__SWIG_1(swigCPtr, MgShapes.getCPtr(src), deeply);

            return(ret);
        }
コード例 #18
0
ファイル: MgImageShape.cs プロジェクト: vvhh2002/TouchVG
 public static MgShape findShapeByImageID(MgShapes shapes, string name)
 {
     IntPtr cPtr = touchvgPINVOKE.MgImageShape_findShapeByImageID(MgShapes.getCPtr(shapes), name);
     MgShape ret = (cPtr == IntPtr.Zero) ? null : new MgShape(cPtr, false);
     return ret;
 }
コード例 #19
0
ファイル: MgView.cs プロジェクト: rhcad/touchvg-v0.6
 public virtual bool setCurrentShapes(MgShapes shapes) {
   bool ret = touchvgPINVOKE.MgView_setCurrentShapes(swigCPtr, MgShapes.getCPtr(shapes));
   return ret;
 }
コード例 #20
0
ファイル: MgShape.cs プロジェクト: vvhh2002/TouchVG
 public virtual void setParent(MgShapes p, int sid)
 {
     touchvgPINVOKE.MgShape_setParent(swigCPtr, MgShapes.getCPtr(p), sid);
 }
コード例 #21
0
 public MgShapeIterator(MgShapes shapes)
     : this(touchvgPINVOKE.new_MgShapeIterator(MgShapes.getCPtr(shapes)), true)
 {
 }
コード例 #22
0
        public bool setCurrentShapes(MgShapes shapes)
        {
            bool ret = touchvgPINVOKE.MgShapeDoc_setCurrentShapes(swigCPtr, MgShapes.getCPtr(shapes));

            return(ret);
        }
コード例 #23
0
        public int copyShapes(MgShapes src)
        {
            int ret = touchvgPINVOKE.MgShapes_copyShapes__SWIG_2(swigCPtr, MgShapes.getCPtr(src));

            return(ret);
        }
コード例 #24
0
ファイル: MgShapes.cs プロジェクト: vvhh2002/TouchVG
 public void copyShapes(MgShapes src)
 {
     touchvgPINVOKE.MgShapes_copyShapes__SWIG_1(swigCPtr, MgShapes.getCPtr(src));
 }
コード例 #25
0
 public void copyShapesTo(MgShapes dest)
 {
     touchvgPINVOKE.MgShapes_copyShapesTo(swigCPtr, MgShapes.getCPtr(dest));
 }
コード例 #26
0
ファイル: MgCommandDraw.cs プロジェクト: hantu123/touchvg
 public override int gatherShapes(MgMotion sender, MgShapes shapes)
 {
     int ret = (SwigDerivedClassHasMethod("gatherShapes", swigMethodTypes6) ? touchvgPINVOKE.MgCommandDraw_gatherShapesSwigExplicitMgCommandDraw(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)) : touchvgPINVOKE.MgCommandDraw_gatherShapes(swigCPtr, MgMotion.getCPtr(sender), MgShapes.getCPtr(shapes)));
     return ret;
 }
コード例 #27
0
ファイル: MgShape.cs プロジェクト: shuangyou/TouchVG
 public virtual void setParent(MgShapes p, int sid)
 {
     touchvgPINVOKE.MgShape_setParent(swigCPtr, MgShapes.getCPtr(p), sid);
 }
コード例 #28
0
ファイル: MgShapes.cs プロジェクト: vvhh2002/TouchVG
 public void copyShapes(MgShapes src, bool deeply)
 {
     touchvgPINVOKE.MgShapes_copyShapes__SWIG_0(swigCPtr, MgShapes.getCPtr(src), deeply);
 }
コード例 #29
0
ファイル: MgShapes.cs プロジェクト: pankajcg/TouchVG
 public int copyShapes(MgShapes src, bool deeply)
 {
     int ret = touchvgPINVOKE.MgShapes_copyShapes__SWIG_1(swigCPtr, MgShapes.getCPtr(src), deeply);
     return ret;
 }
コード例 #30
0
ファイル: MgShapes.cs プロジェクト: pankajcg/TouchVG
 public int copyShapes(MgShapes src)
 {
     int ret = touchvgPINVOKE.MgShapes_copyShapes__SWIG_2(swigCPtr, MgShapes.getCPtr(src));
     return ret;
 }
コード例 #31
0
ファイル: MgShapeDoc.cs プロジェクト: stonelin129/Touchvg
 public bool setCurrentShapes(MgShapes shapes)
 {
     bool ret = touchvgPINVOKE.MgShapeDoc_setCurrentShapes(swigCPtr, MgShapes.getCPtr(shapes));
     return ret;
 }
コード例 #32
0
ファイル: MgShapeIterator.cs プロジェクト: shuangyou/TouchVG
 public MgShapeIterator(MgShapes shapes) : this(touchvgPINVOKE.new_MgShapeIterator(MgShapes.getCPtr(shapes)), true)
 {
 }