Remove unimplemented ei_device_get_keymap()

This is ei_device_keyboard_get_keymap() instead
This commit is contained in:
Peter Hutterer 2023-05-30 19:11:44 +10:00
parent 37e2bdebed
commit 35ec414215

View file

@ -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);