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
|
|
|
|
|
|
|
|
struct sway_shortcut_state {
|
|
|
|
uint32_t pressed_keys[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
|
|
|
|
uint32_t pressed_keycodes[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
|
|
|
|
int last_key_index;
|
|
|
|
};
|
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;
|
|
|
|
|
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;
|
|
|
|
struct sway_binding *held_binding;
|
|
|
|
uint32_t last_modifiers;
|
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
|
|
|
|
|
|
|
#endif
|