I'm playing with Qt (v. 5.5) gestures on a Macbook Pro to see what works reliably.
TapGesture = 1,
TapAndHoldGesture = 2,
PanGesture = 3,
PinchGesture = 4,
SwipeGesture = 5,
With the touch pad I can reliably get the pinch gesture to callback as a gesture event, but not the other kinds. Pan works some of the time, but only with a mouth pad and only if a have more than 1 finger on the touchpad and I haven't managed to get swipe working. I've also trying using a mouse, which doesn't seem to work either.
I can't find documentation online that explains what these gestures are, and/or how to trigger them.