Enumeration for the types of INPUT_CLASS_MTOUCH events.
Synopsis:
#include <input/event_types.h>
typedef enum {
INPUT_EVENT_UNKNOWN = 0
INPUT_EVENT_MTOUCH_TOUCH = 100
INPUT_EVENT_MTOUCH_MOVE
INPUT_EVENT_MTOUCH_RELEASE
} input_event_e;
Data:
- INPUT_EVENT_UNKNOWN
- Unknown event type (default)
- INPUT_EVENT_MTOUCH_TOUCH
- Event type for when a finger just touched the screen.
- INPUT_EVENT_MTOUCH_MOVE
- Event type for when a finger is already touching the screen but is changing position.
- INPUT_EVENT_MTOUCH_RELEASE
- Event type for when a finger is removed from the screen.
Library:
libinputevents (For the qcc command, use the -l inputevents option to link against this library)
Description:
The input_event_e enumeration defines the possible INPUT_CLASS_MTOUCH input event types.