summaryrefslogtreecommitdiff
path: root/src/lib/evas/gesture/efl_gesture_recognizer.eo
blob: 617638147e1be61928aefb929cd543842b7dcab1 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import efl_gesture_types;

abstract Efl.Gesture.Recognizer (Efl.Object)
{
   [[EFL Gesture Recognizer abstract class]]
   methods {
      create @pure_virtual {
         [[This function is called to create a new Efl.Gesture object for the given target]]
         params {
            @in target: Efl.Object; [[The target widget]]
         }
         return: Efl.Gesture; [[Returns the Efl.Gesture event object]]
      }
      recognize @pure_virtual {
         [[Handles the given event for the watched object.

           Updates the state of the gesture object as required, and returns a
           suitable result for the current recognition step.
         ]]
         params {
            @in gesture: Efl.Gesture; [[The gesture object]]
            @in watched: Efl.Object; [[The watched object]]
            @in event: Efl.Gesture.Touch; [[The pointer event]]
         }
         return: Efl.Gesture.Recognizer_Result; [[Returns the Efl.Gesture event object]]
      }
      /* FIXME: This function is not used? */
      reset {
         [[This function is called by the framework to reset a given gesture.]]
         params {
            @in gesture: Efl.Gesture; [[The gesture object]]
         }
      }
      @property config {
         [[This property holds the config value for the recognizer]]
         get {
         }
         keys {
            name: string; [[propery name]]
         }
         values {
            value: any_value_ptr; [[value of the property]]
         }
      }
   }
}