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

70 lines
2.0 KiB
Plaintext

import eina_types;
import ector_types;
abstract @beta Efl.Canvas.Vg.Node extends Efl.Object implements Efl.Gfx.Entity, Efl.Gfx.Color, Efl.Gfx.Stack, Efl.Duplicate, Efl.Gfx.Path
{
[[Efl vector graphics abstract class]]
methods {
@property transformation {
set {
[[Sets the transformation matrix to be used for this node object.
Note: Pass $null to cancel the applied transformation.
]]
}
get {
[[Gets the transformation matrix used for this node object.
]]
}
values {
@cref m: Eina.Matrix3; [[Transformation matrix.]]
}
}
@property origin {
set {
[[Sets the origin position of the node object.
This origin position affects node transformation.
]]
}
get {
[[Gets the origin position of the node object.
]]
}
values {
x: double; [[$origin x position.]]
y: double; [[$origin y position.]]
}
}
@property comp_method {
[[Set a composite target node to this node object.]]
set {
}
values {
target: Efl.Canvas.Vg.Node; [[Composite target node]]
method: Ector.Renderer.Composite_Method; [[Composite Method.]]
}
}
}
implements {
Efl.Object.name { set; }
Efl.Object.parent { set; }
Efl.Object.constructor;
Efl.Object.invalidate;
Efl.Object.destructor;
Efl.Gfx.Entity.visible { get; set; }
Efl.Gfx.Color.color { get; set; }
Efl.Gfx.Entity.size { get; }
Efl.Gfx.Entity.position { get; set; }
Efl.Gfx.Entity.geometry { get; }
Efl.Gfx.Stack.below { get; }
Efl.Gfx.Stack.above { get; }
Efl.Gfx.Stack.stack_below;
Efl.Gfx.Stack.stack_above;
Efl.Gfx.Stack.raise_to_top;
Efl.Gfx.Stack.lower_to_bottom;
Efl.Gfx.Path.interpolate;
Efl.Duplicate.duplicate;
}
}