efl/src/lib/evas/canvas/evas_vg.eo

31 lines
824 B
Plaintext

class Evas.VG (Evas.Object, Efl.Gfx.Fill, Efl.Gfx.View)
{
legacy_prefix: evas_object_vg;
eo_prefix: evas_obj_vg;
methods {
@property 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.
@since 1.14]]
}
values {
container: Eo.Base; [[Root node of the VG canvas.]] /* FIXME: Should be Efl.VG */
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.finalize;
Eo.Base.destructor;
Efl.Gfx.Fill.fill.set;
Efl.Gfx.Fill.fill.get;
Efl.Gfx.View.view_size.set;
Efl.Gfx.View.view_size.get;
}
}