libevdev
0.1
A wrapper library for evdev devices
|
Modifying the set of events reported by this device. More...
Functions | |
int | libevdev_enable_event_type (struct libevdev *dev, unsigned int type) |
Forcibly enable an event type on this device, even if the underlying device does not support it. More... | |
int | libevdev_disable_event_type (struct libevdev *dev, unsigned int type) |
Forcibly disable an event type on this device, even if the underlying device provides it, effectively muting all keys or axes. More... | |
int | libevdev_enable_event_code (struct libevdev *dev, unsigned int type, unsigned int code, const void *data) |
Forcibly enable an event type on this device, even if the underlying device does not support it. More... | |
int | libevdev_disable_event_code (struct libevdev *dev, unsigned int type, unsigned int code) |
Forcibly disable an event code on this device, even if the underlying device provides it, effectively muting this key or axis. More... | |
int | libevdev_kernel_set_abs_value (struct libevdev *dev, unsigned int code, const struct input_absinfo *abs) |
Set the device's EV_ABS axis to the value defined in the abs parameter. More... | |
Modifying the set of events reported by this device.
By default, the libevdev device mirrors the kernel device, enabling only those bits exported by the kernel. This set of functions enable or disable bits as seen from the caller.
Enabling an event type or code does not affect event reporting - a software-enabled event will not be generated by the physical hardware. Disabling an event will prevent libevdev from routing such events to the caller. Enabling and disabling event types and codes is at the library level and thus only affects the caller.
If an event type or code is enabled at kernel-level, future users of this device will see this event enabled. Currently there is no option of disabling an event type or code at kernel-level.
int libevdev_disable_event_code | ( | struct libevdev * | dev, |
unsigned int | type, | ||
unsigned int | code | ||
) |
Forcibly disable an event code on this device, even if the underlying device provides it, effectively muting this key or axis.
libevdev will filter any events matching this type and code and none will reach the caller. libevdev_has_event_code() will return false for this code combination.
Disabling all event codes for a given type will not disable the event type. Use libevdev_disable_event_type() for that.
This is a local modification only affecting only this representation of this device.
Disabling EV_SYN will not work. Don't shoot yourself in the foot. It hurts.
dev | The evdev device, already initialized with libevdev_set_fd() |
type | The event type to disable (EV_ABS, EV_KEY, ...) |
code | The event code to disable (ABS_X, REL_X, etc.) |
int libevdev_disable_event_type | ( | struct libevdev * | dev, |
unsigned int | type | ||
) |
Forcibly disable an event type on this device, even if the underlying device provides it, effectively muting all keys or axes.
libevdev will filter any events matching this type and none will reach the caller. libevdev_has_event_type() will return false for this type.
In most cases, a caller likely only wants to disable a single code, not the whole type. Use libevdev_disable_event_code() for that.
Disabling EV_SYN will not work. Don't shoot yourself in the foot. It hurts.
This is a local modification only affecting only this representation of this device.
dev | The evdev device, already initialized with libevdev_set_fd() |
type | The event type to disable (EV_ABS, EV_KEY, ...) |
int libevdev_enable_event_code | ( | struct libevdev * | dev, |
unsigned int | type, | ||
unsigned int | code, | ||
const void * | data | ||
) |
Forcibly enable an event type on this device, even if the underlying device does not support it.
While this cannot make the device actually report such events, it will now return true for libevdev_has_event_code().
The last argument depends on the type and code:
This function calls libevdev_enable_event_type() if necessary.
This is a local modification only affecting only this representation of this device.
dev | The evdev device, already initialized with libevdev_set_fd() |
type | The event type to enable (EV_ABS, EV_KEY, ...) |
code | The event code to enable (ABS_X, REL_X, etc.) |
data | If type is EV_ABS, data points to a struct input_absinfo. Otherwise, data must be NULL |
int libevdev_enable_event_type | ( | struct libevdev * | dev, |
unsigned int | type | ||
) |
Forcibly enable an event type on this device, even if the underlying device does not support it.
While this cannot make the device actually report such events, it will now return true for libevdev_has_event_type().
This is a local modification only affecting only this representation of this device.
dev | The evdev device, already initialized with libevdev_set_fd() |
type | The event type to enable (EV_ABS, EV_KEY, ...) |
int libevdev_kernel_set_abs_value | ( | struct libevdev * | dev, |
unsigned int | code, | ||
const struct input_absinfo * | abs | ||
) |
Set the device's EV_ABS axis to the value defined in the abs parameter.
This will be written to the kernel.
dev | The evdev device, already initialized with libevdev_set_fd() |
code | The EV_ABS event code to modify, one of ABS_X, ABS_Y, etc. |
abs | Axis info to set the kernel axis to |