evas/canvas : Documentation of evas_vg_shape and evas_vg_node class 76/43276/1
authorSubhransu Sekhar Mohanty <sub.mohanty@samsung.com>
Thu, 5 Feb 2015 08:37:52 +0000 (17:37 +0900)
committerSubhransu Mohanty <sub.mohanty@samsung.com>
Wed, 8 Jul 2015 02:11:52 +0000 (11:11 +0900)
Change-Id: Ie71535e1928535e4955db941a0f36631ce780f04

src/lib/evas/canvas/evas_vg_node.eo
src/lib/evas/canvas/evas_vg_shape.eo

index e9b9f20..2c1c3b3 100644 (file)
@@ -5,11 +5,17 @@ abstract Evas.VG_Node (Eo.Base, Efl.Gfx.Base)
    properties {
       transformation {
          set {
+            /*@
+              Sets the transformation matrix to be used for this node object.
+            */
          }
          get {
+            /*@
+              Gets the transformation matrix used for this node object.
+            */
          }
          values {
-            const(Eina_Matrix3) *m;
+            const(Eina_Matrix3) *m; /*@ transformation matrix */
          }
       }
       origin {
@@ -24,8 +30,14 @@ abstract Evas.VG_Node (Eo.Base, Efl.Gfx.Base)
       }
       mask {
          set {
+            /*@
+              Not implemented.
+            */
          }
          get {
+            /*@
+              Not implemented.
+            */
          }
          values {
             Evas_VG_Node *m;
@@ -120,6 +132,7 @@ abstract Evas.VG_Node (Eo.Base, Efl.Gfx.Base)
           @see evas_vg_node_raise() */
       }
       changed {
+         /*@ Request for a redraw of the node object*/
       }
    }
    implements {
index 7285586..ac5d997 100644 (file)
@@ -5,30 +5,48 @@ class Evas.VG_Shape (Evas.VG_Node, Efl.Gfx.Shape)
    properties {
       fill {
          set {
-        }
-        get {
-        }
-        values {
-           Evas_VG_Node *f;
-        }
+            /*@
+              Sets the Evas_Vg_Node to be used for filling this shape.
+            */
+         }
+         get {
+            /*@
+              Get the Evas_Vg_Node used for filling this shape.
+            */
+         }
+         values {
+            Evas_VG_Node *f; /*@ Node to be used in filling this shape */
+         }
       }
       stroke_fill {
          set {
-        }
-        get {
-        }
-        values {
-           Evas_VG_Node *f;
-        }
+            /*@
+              Sets the Evas_Vg_Node to be used for stroking this shape.
+            */
+         }
+         get {
+            /*@
+              Get the Evas_Vg_Node used for stroking this shape.
+            */
+         }
+         values {
+            Evas_VG_Node *f; /*@ Node to be used in stroking this shape */
+         }
       }
       stroke_marker {
          set {
-        }
-        get {
-        }
-        values {
-           Evas_VG_Node *m;
-        }
+            /*@
+              Not implemented.
+            */
+         }
+         get {
+            /*@
+              Not implemented.
+            */
+         }
+         values {
+            Evas_VG_Node *m;
+         }
       }
    }
    implements {