Types and Values
enum ETextEventProcessorCommandPosition
 
enum ETextEventProcessorCommandAction
 
ETextEventProcessorCommand
typedef struct {
	ETextEventProcessorCommandPosition position;
	ETextEventProcessorCommandAction action;
	gint value;
	const gchar *string;
	GdkDevice *device;
	guint32 time;
} ETextEventProcessorCommand;
 
ETextEventProcessorEventButton
typedef struct {
	GdkEventType type;
	guint32 time;
	guint state;
	guint button;
	gint position;
	GdkDevice *device;
} ETextEventProcessorEventButton;
 
ETextEventProcessorEventKey
typedef struct {
	GdkEventType type;
	guint32 time;
	guint state;
	guint keyval;
	gint length;
	const gchar *string;
} ETextEventProcessorEventKey;
 
ETextEventProcessorEventMotion
typedef struct {
	GdkEventType type;
	guint32 time;
	guint state;
	gint position;
} ETextEventProcessorEventMotion;
 
union ETextEventProcessorEvent
 
enum ETextEventProcessorCaps