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

45 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-07-15 07:10:29 -07:00
import evas_types;
class Evas.Out (Eo.Base)
2014-03-12 11:13:45 -07:00
{
eo_prefix: evas_out;
legacy_prefix: evas_output;
methods {
@property view {
2014-03-12 11:13:45 -07:00
set {
[[Sets the viewport region of the canvas that the output displays.
This sets both the viewport region in the canvas that displays
on the given output, but also the viewport size will match the
output resolution 1:1.]]
2014-03-12 11:13:45 -07:00
}
get {
[[Gets the viewport region of the canvas that the output displays.]]
2014-03-12 11:13:45 -07:00
}
values {
2015-07-15 07:10:29 -07:00
x: Evas.Coord;
y: Evas.Coord;
w: Evas.Coord;
h: Evas.Coord;
2014-03-12 11:13:45 -07:00
}
}
@property engine_info {
2014-03-12 11:13:45 -07:00
set {
[[Sets the engine specific output parameters for a given output.]]
return: bool;
2014-03-12 11:13:45 -07:00
}
get {
[[Gets the engine specific output parameters for a given output.]]
2014-03-12 11:13:45 -07:00
}
values {
info: Evas.Engine_Info *; [[The engine parameters.]]
2014-03-12 11:13:45 -07:00
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
2014-03-12 11:13:45 -07:00
}
}