enum GestureMaskBits { GestureBit_Unknown = 0, GestureBit_Pan = 0x01, GestureBit_Zoom = 0x02, GestureBit_Rotate = 0x04, GestureBit_Swipe = 0x08, GestureBit_PressAndTap = 0x10, GestureBit_TwoFingerTap = 0x20, GestureBit_Last = GestureBit_TwoFingerTap, GestureBit_All = 0xFF };
Mask bits for the type of multi-touch event that is performed such as pan, rotate, swipe, zoom, tap etc.
Members |
Description |
GestureBit_Unknown = 0 |
Mask bit to indicate an unknown gesture. |
GestureBit_Pan = 0x01 |
Mask bit to indicate a pan gesture. |
GestureBit_Zoom = 0x02 |
Mask bit to indicate a zoom gesture. |
GestureBit_Rotate = 0x04 |
Mask bit to indicate a rotate gesture. |
GestureBit_Swipe = 0x08 |
Mask bit to indicate a swipe gesture. |
GestureBit_PressAndTap = 0x10 |
Mask bit to indicate a press and tap gesture. |
GestureBit_TwoFingerTap = 0x20 |
Mask bit to indicate a two finger tap gesture. |
GestureBit_Last = GestureBit_TwoFingerTap |
Mask bit to indicate the last used gesture. |
GestureBit_All = 0xFF |
Mask bit to indicate support for all gestures. |
Platform.h