From: Subhransu Sekhar Mohanty Date: Thu, 5 Feb 2015 08:37:52 +0000 (+0900) Subject: evas/canvas : Documentation of evas_vg_shape and evas_vg_node class X-Git-Tag: accepted/tizen/mobile/20150709.001446~48^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=696b765ff6c5133319c1476b5003caa3e16335bd;p=platform%2Fupstream%2Fefl.git evas/canvas : Documentation of evas_vg_shape and evas_vg_node class Change-Id: Ie71535e1928535e4955db941a0f36631ce780f04 --- diff --git a/src/lib/evas/canvas/evas_vg_node.eo b/src/lib/evas/canvas/evas_vg_node.eo index e9b9f20..2c1c3b3 100644 --- a/src/lib/evas/canvas/evas_vg_node.eo +++ b/src/lib/evas/canvas/evas_vg_node.eo @@ -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 { diff --git a/src/lib/evas/canvas/evas_vg_shape.eo b/src/lib/evas/canvas/evas_vg_shape.eo index 7285586..ac5d997 100644 --- a/src/lib/evas/canvas/evas_vg_shape.eo +++ b/src/lib/evas/canvas/evas_vg_shape.eo @@ -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 {