summaryrefslogtreecommitdiff
path: root/src/lib/evas/gesture/efl_canvas_gesture_recognizer_custom.eo
blob: 92f9786e756797bca218974c9edde330de8781f8 (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
abstract @beta Efl.Canvas.Gesture_Recognizer_Custom extends Efl.Canvas.Gesture_Recognizer
{
   [[This is the recognizer for Custom gestures.
     See @Efl.Canvas.Gesture_Recognizer.

     Custom-written recognizers must inherit this class.
     They are responsible for managing and updating the state of the recognized @Efl.Canvas.Gesture object inside
     their implementation of the @Efl.Canvas.Gesture_Recognizer.recognize method, which is required.
   ]]
   c_prefix: efl_gesture_recognizer_custom;
   methods {
      @property gesture_name {
         [[This is the name of the gesture recognizer.]]
         get {
         }
         set {
         }
         values {
            gesture_name: string; [[The name of the gesture recognizer.]]
         }
      }
   }
   implements {
      Efl.Object.destructor;
      Efl.Object.finalize;
      Efl.Canvas.Gesture_Recognizer.type { get; }
   }
}