2017-12-16 14:33:22 +01:00
|
|
|
#ifndef _SWAY_INPUT_KEYBOARD_H
|
|
|
|
#define _SWAY_INPUT_KEYBOARD_H
|
|
|
|
|
2017-12-10 19:59:04 +01:00
|
|
|
#include "sway/input/seat.h"
|
|
|
|
|
2018-06-01 01:35:17 +02:00
|
|
|
#define SWAY_KEYBOARD_PRESSED_KEYS_CAP 32
|
|
|
|
|
2019-01-21 18:39:16 +01:00
|
|
|
/**
|
|
|
|
* Get modifier mask from modifier name.
|
|
|
|
*
|
|
|
|
* Returns the modifer mask or 0 if the name isn't found.
|
|
|
|
*/
|
|
|
|
uint32_t get_modifier_mask_by_name(const char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get modifier name from modifier mask.
|
|
|
|
*
|
|
|
|
* Returns the modifier name or NULL if it isn't found.
|
|
|
|
*/
|
|
|
|
const char *get_modifier_name_by_mask(uint32_t modifier);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an array of modifier names from modifier_masks
|
|
|
|
*
|
|
|
|
* Populates the names array and return the number of names added.
|
|
|
|
*/
|
|
|
|
int get_modifier_names(const char **names, uint32_t modifier_masks);
|
|
|
|
|
2018-06-01 01:35:17 +02:00
|
|
|
struct sway_shortcut_state {
|
2018-06-01 23:04:58 +02:00
|
|
|
/**
|
|
|
|
* A list of pressed key ids (either keysyms or keycodes),
|
|
|
|
* including duplicates when different keycodes produce the same key id.
|
|
|
|
*
|
|
|
|
* Each key id is associated with the keycode (in `pressed_keycodes`)
|
|
|
|
* whose press generated it, so that the key id can be removed on
|
|
|
|
* keycode release without recalculating the transient link between
|
|
|
|
* keycode and key id at the time of the key press.
|
|
|
|
*/
|
2018-06-01 01:35:17 +02:00
|
|
|
uint32_t pressed_keys[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
|
2018-06-01 23:04:58 +02:00
|
|
|
/**
|
|
|
|
* The list of keycodes associated to currently pressed key ids,
|
|
|
|
* including duplicates when a keycode generates multiple key ids.
|
|
|
|
*/
|
2018-06-01 01:35:17 +02:00
|
|
|
uint32_t pressed_keycodes[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
|
2018-06-12 17:07:11 +02:00
|
|
|
uint32_t last_keycode;
|
|
|
|
uint32_t last_raw_modifiers;
|
|
|
|
size_t npressed;
|
2018-10-29 13:25:15 +01:00
|
|
|
uint32_t current_key;
|
2018-06-01 01:35:17 +02:00
|
|
|
};
|
2017-12-27 19:20:28 +01:00
|
|
|
|
2017-12-10 19:59:04 +01:00
|
|
|
struct sway_keyboard {
|
2017-12-14 17:11:56 +01:00
|
|
|
struct sway_seat_device *seat_device;
|
2017-12-10 19:59:04 +01:00
|
|
|
|
2017-12-14 17:11:56 +01:00
|
|
|
struct xkb_keymap *keymap;
|
2019-07-17 23:12:20 +02:00
|
|
|
xkb_layout_index_t effective_layout;
|
2017-12-14 17:11:56 +01:00
|
|
|
|
2017-12-10 19:59:04 +01:00
|
|
|
struct wl_listener keyboard_key;
|
|
|
|
struct wl_listener keyboard_modifiers;
|
2017-12-27 19:20:28 +01:00
|
|
|
|
2018-06-01 01:35:17 +02:00
|
|
|
struct sway_shortcut_state state_keysyms_translated;
|
|
|
|
struct sway_shortcut_state state_keysyms_raw;
|
|
|
|
struct sway_shortcut_state state_keycodes;
|
2019-08-15 06:59:39 +02:00
|
|
|
struct sway_shortcut_state state_pressed_sent;
|
2018-06-01 01:35:17 +02:00
|
|
|
struct sway_binding *held_binding;
|
2018-07-29 22:25:43 +02:00
|
|
|
|
|
|
|
struct wl_event_source *key_repeat_source;
|
|
|
|
struct sway_binding *repeat_binding;
|
2017-12-10 19:59:04 +01:00
|
|
|
};
|
|
|
|
|
2019-05-23 09:06:28 +02:00
|
|
|
struct xkb_keymap *sway_keyboard_compile_keymap(struct input_config *ic,
|
|
|
|
char **error);
|
2019-05-14 05:56:59 +02:00
|
|
|
|
2017-12-10 19:59:04 +01:00
|
|
|
struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,
|
2017-12-14 17:11:56 +01:00
|
|
|
struct sway_seat_device *device);
|
|
|
|
|
|
|
|
void sway_keyboard_configure(struct sway_keyboard *keyboard);
|
2017-12-10 21:37:17 +01:00
|
|
|
|
|
|
|
void sway_keyboard_destroy(struct sway_keyboard *keyboard);
|
2017-12-16 14:33:22 +01:00
|
|
|
|
2019-01-14 20:06:35 +01:00
|
|
|
void sway_keyboard_disarm_key_repeat(struct sway_keyboard *keyboard);
|
2017-12-16 14:33:22 +01:00
|
|
|
#endif
|