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

25 lines
685 B
Plaintext
Raw Normal View History

2016-11-17 11:29:58 -08:00
class Efl.Input.Focus(Efl.Object, Efl.Input.Event)
{
[[Represents a focus event. @since 1.19]]
2016-11-17 11:29:58 -08:00
methods {
@property object {
[[The focused object]]
2016-11-17 11:29:58 -08:00
values {
object: Efl.Object; [[The focused object.
In case this represents a canvas
focus the object will be $null]]
}
}
}
implements {
class.destructor;
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Input.Event.device { get; set; }
2016-11-17 11:29:58 -08:00
Efl.Input.Event.instance_get;
Efl.Input.Event.reset;
Efl.Input.Event.dup;
Efl.Input.Event.timestamp { get; set; }
2016-11-17 11:29:58 -08:00
}
}