Efl.Canvas.Gesture_Recognizer_Flick.recognize

Description

Analyzes the given event and the current state of the gesture object to see if the state has to be modified. For example, to signal a complete gesture detection.

Updates the state of the gesture object as required, and returns a suitable result for the current recognition step.

Signature

recognize @pure_virtual {
    params {
        @in gesture: Efl.Canvas.Gesture;
        @in watched: Efl.Object;
        @in event: Efl.Canvas.Gesture_Touch;
    }
    return: Efl.Canvas.Gesture_Recognizer_Result;
}

C signature

Efl_Canvas_Gesture_Recognizer_Result efl_gesture_recognizer_recognize(Eo *obj, Efl_Canvas_Gesture *gesture, Efl_Object *watched, Efl_Canvas_Gesture_Touch *event);

Parameters

  • gesture (in) - The gesture object.
  • watched (in) - The target canvas object.
  • event (in) - The pointer event being analyzed.

Implemented by