blob: 07e8fcf50f5eae0f9188e0cb35c9468a1b1ccf79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class Efl.Event.Hold (Eo.Base, Efl.Event.Input)
{
[[Event data sent when inputs are put on hold or resumed.]]
methods {
@property hold {
[[$true if inputs are now on hold.]]
values {
val: bool;
}
}
}
implements {
Eo.Base.constructor;
Efl.Event.instance_get;
Efl.Event.reset;
Efl.Event.dup;
Efl.Event.timestamp.get;
Efl.Event.timestamp.set;
//Efl.Event.Input.fake.get;
Efl.Event.Input.event_flags.set;
Efl.Event.Input.event_flags.get;
Efl.Event.Input.device.set;
Efl.Event.Input.device.get;
}
}
|