Types of devices.
#include <screen/screen.h>
enum {
...
SCREEN_EVENT_JOG = 5,
SCREEN_EVENT_POINTER = 6,
SCREEN_EVENT_KEYBOARD = 7,
...
SCREEN_EVENT_GAMEPAD = 14,
SCREEN_EVENT_JOYSTICK = 15,
...
SCREEN_EVENT_GESTURE = 18,
...
SCREEN_EVENT_MTOUCH_TOUCH = 100,
};
Device types are a subset of the enumeration, Screen event types .