11 #include "input/touch/generic/IGenericTouchGestureDetector.h"    40   unsigned int m_directions;
    44   bool m_swipeDetected = 
false;
    48   unsigned int m_size = 0;
 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:35
bool OnTouchUp(unsigned int index, const Pointer &pointer) override
An active touch pointer has vanished. 
Definition: GenericTouchSwipeDetector.cpp:53
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:165
bool OnTouchMove(unsigned int index, const Pointer &pointer) override
An active touch pointer has moved. 
Definition: GenericTouchSwipeDetector.cpp:83
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