diff --git a/src/libei.h b/src/libei.h index d437f75..fe541ca 100644 --- a/src/libei.h +++ b/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);