11 #include "input/touch/generic/IGenericTouchGestureDetector.h" 40 unsigned int m_directions;
Implementation of IGenericTouchGestureDetector to detect swipe gestures in any direction.
Definition: GenericTouchSwipeDetector.h:20
bool OnTouchDown(unsigned int index, const Pointer &pointer) override
A new touch pointer has been recognised.
Definition: GenericTouchSwipeDetector.cpp:37
bool OnTouchUp(unsigned int index, const Pointer &pointer) override
An active touch pointer has vanished.
Definition: GenericTouchSwipeDetector.cpp:55
bool OnTouchUpdate(unsigned int index, const Pointer &pointer) override
An active touch pointer's values have been updated but no event has occurred.
Definition: GenericTouchSwipeDetector.cpp:167
bool OnTouchMove(unsigned int index, const Pointer &pointer) override
An active touch pointer has moved.
Definition: GenericTouchSwipeDetector.cpp:85
Interface defining methods to perform gesture recognition.
Definition: IGenericTouchGestureDetector.h:20
Interface defining all supported touch action events.
Definition: ITouchActionHandler.h:32
A class representing a touch pointer interaction consisting of an down touch, the last touch and the ...
Definition: TouchTypes.h:49