tft_params_t

Two-finger tap gesture parameters.

Synopsis:

typedef struct  {
    unsigned max_touch_interval ;
    unsigned max_release_interval ;
    unsigned max_tap_time ;
    unsigned max_displacement ;
}tft_params_t;

Data:

unsigned max_touch_interval
The maximum time that can elapse between when the first and second fingers touch the screen.
unsigned max_release_interval
The maximum time that can elapse between when the first and second fingers are released.
unsigned max_tap_time
The maximum time both fingers can stay down.
unsigned max_displacement
The maximum distance either finger can move before the two-finger tap gesture fails.

Library:

libgestures

Description:

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