blob: f42c2dccb34a22ba0ce79ba3a32923b898f221d1 (
plain) (
blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
|
class @beta Efl.Canvas.Gesture_Manager extends Efl.Object
{
[[EFL Gesture Manager class]]
eo_prefix: efl_gesture_manager;
methods {
recognizer_register {
[[This function is called to register a new Efl.Canvas.Gesture_Recognizer]]
params {
@in recognizer: Efl.Canvas.Gesture_Recognizer; [[The gesture recognizer object]]
}
return: ptr(const(Efl.Event_Description)); [[Returns the Efl.Event_Description type the recognizer supports]]
}
recognizer_unregister {
[[This function is called to unregister a Efl.Canvas.Gesture_Recognizer]]
params {
@in recognizer: Efl.Canvas.Gesture_Recognizer; [[The gesture recognizer object]]
}
}
@property config {
[[This property holds the config value for the recognizer]]
set {
}
get {
}
keys {
name: string; [[propery name]]
}
values {
value: any_value_ptr; [[value of the property]]
}
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
}
}
|