evas/canvas : Documentation added for Eva_Object_Vg class 78/43278/1
authorSubhransu Sekhar Mohanty <sub.mohanty@samsung.com>
Thu, 5 Feb 2015 08:56:03 +0000 (17:56 +0900)
committerSubhransu Mohanty <sub.mohanty@samsung.com>
Wed, 8 Jul 2015 02:12:02 +0000 (11:12 +0900)
Change-Id: Iccefe6762153ccb928e4d8fac1300134b5583e42

src/lib/evas/canvas/evas_vg.eo

index 8f61aa9..630298a 100644 (file)
@@ -5,9 +5,15 @@ class Evas.VG (Evas.Object, Efl.File)
    properties {
       root_node {
          get {
+            /*@
+              Get the root node of the evas_object_vg.
+
+              @note To manually create the shape object and show in the Vg object
+                    canvas you must create the hirarchy and set the parent as root node.
+            */
          }
          values {
-            Evas_VG_Node *container;
+            Evas_VG_Node *container; /*@ Root node of the VG canvas */
          }
       }
       size {
@@ -24,8 +30,8 @@ class Evas.VG (Evas.Object, Efl.File)
              */         
          }
          values {
-            uint w;
-            uint h;
+            uint w; /*@ width of the vg object */
+            uint h; /*@ height of the vg object */
          }
       }
       fill {