two_finger_double_tap_params_t

Two-finger double tap gesture parameters

Synopsis:

#include <gestures/>
typedef struct two_finger_double_tap_params_t {
    unsigned max_displacement;
    unsigned max_hold_ms;
    unsigned max_delay_ms;
} two_finger_double_tap_params_t;

Data:

unsigned max_displacement
The maximum distance the fingers can move before the two-finger double tap gesture fails.
unsigned max_hold_ms
The maximum time the fingers can remain touching the screen before the two-finger double tap gesture fails.
unsigned max_delay_ms
The time between the first release and the second touch.

Library:

libgestures

Description:

This structure represents the parameters for the two-finger double tap gesture.