Screen session types

Types of sessions.

Synopsis:

#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,
      ...
};

Data:

SCREEN_EVENT_JOG
A session that receives input from a device with jog input, such as a jog dial or jog wheel.
SCREEN_EVENT_POINTER
A session that receives input from a pointer device.
SCREEN_EVENT_KEYBOARD
A session that receives input from a keyboard.
SCREEN_EVENT_GAMEPAD
A session that receives input from a gamepad.
SCREEN_EVENT_JOYSTICK
A session that receives input from a joystick.
SCREEN_EVENT_GESTURE
A session that receives input from a gesture device.
SCREEN_EVENT_MTOUCH_TOUCH
A session that receives input from a multi-touch device.

Library:

libscreen

Description:

Session types are a subset of the enumeration, Screen event types .