mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-01-06 04:50:12 +01:00
Remove unimplemented ei_device_get_keymap()
This is ei_device_keyboard_get_keymap() instead
This commit is contained in:
parent
37e2bdebed
commit
35ec414215
1 changed files with 5 additions and 16 deletions
21
src/libei.h
21
src/libei.h
|
|
@ -1009,17 +1009,6 @@ ei_device_get_width(struct ei_device *device);
|
|||
uint32_t
|
||||
ei_device_get_height(struct ei_device *device);
|
||||
|
||||
/**
|
||||
* @ingroup libei-device
|
||||
*
|
||||
* Return the keymap assigned to this device by the EIS implementation or NULL
|
||||
* if no keymap is set.
|
||||
*
|
||||
* The keymap is constant for the life of the device.
|
||||
*/
|
||||
struct ei_keymap *
|
||||
ei_device_get_keymap(struct ei_device *device);
|
||||
|
||||
/**
|
||||
* @ingroup libei-keymap
|
||||
*
|
||||
|
|
@ -1581,7 +1570,7 @@ ei_device_scroll_cancel(struct ei_device *device, bool cancel_x, bool cancel_y);
|
|||
*
|
||||
* Note that this is a keymap-independent key code, equivalent to the scancode
|
||||
* a physical keyboard would produce. To generate a specific key symbol, a
|
||||
* client must look at the keymap returned by ei_device_get_keymap() and
|
||||
* client must look at the keymap returned by ei_device_keyboard_get_keymap() and
|
||||
* generate the appropriate keycodes.
|
||||
*
|
||||
* This method is only available on an ei sender context.
|
||||
|
|
@ -1720,7 +1709,7 @@ ei_event_emulating_get_sequence(struct ei_event *event);
|
|||
*
|
||||
* For an event of type @ref EI_EVENT_KEYBOARD_MODIFIERS, get the
|
||||
* mask of currently logically pressed-down modifiers.
|
||||
* See ei_device_get_keymap() for the corresponding keymap.
|
||||
* See ei_device_keyboard_get_keymap() for the corresponding keymap.
|
||||
*/
|
||||
uint32_t
|
||||
ei_event_keyboard_get_xkb_mods_depressed(struct ei_event *event);
|
||||
|
|
@ -1730,7 +1719,7 @@ ei_event_keyboard_get_xkb_mods_depressed(struct ei_event *event);
|
|||
*
|
||||
* For an event of type @ref EI_EVENT_KEYBOARD_MODIFIERS, get the
|
||||
* mask of currently logically latched modifiers.
|
||||
* See ei_device_get_keymap() for the corresponding keymap.
|
||||
* See ei_device_keyboard_get_keymap() for the corresponding keymap.
|
||||
*/
|
||||
uint32_t
|
||||
ei_event_keyboard_get_xkb_mods_latched(struct ei_event *event);
|
||||
|
|
@ -1740,7 +1729,7 @@ ei_event_keyboard_get_xkb_mods_latched(struct ei_event *event);
|
|||
*
|
||||
* For an event of type @ref EI_EVENT_KEYBOARD_MODIFIERS, get the
|
||||
* mask of currently logically locked modifiers.
|
||||
* See ei_device_get_keymap() for the corresponding keymap.
|
||||
* See ei_device_keyboard_get_keymap() for the corresponding keymap.
|
||||
*/
|
||||
uint32_t
|
||||
ei_event_keyboard_get_xkb_mods_locked(struct ei_event *event);
|
||||
|
|
@ -1750,7 +1739,7 @@ ei_event_keyboard_get_xkb_mods_locked(struct ei_event *event);
|
|||
*
|
||||
* For an event of type @ref EI_EVENT_KEYBOARD_MODIFIERS, get the
|
||||
* logical group state.
|
||||
* See ei_device_get_keymap() for the corresponding keymap.
|
||||
* See ei_device_keyboard_get_keymap() for the corresponding keymap.
|
||||
*/
|
||||
uint32_t
|
||||
ei_event_keyboard_get_xkb_group(struct ei_event *event);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue