2018-01-04 23:25:52 +11:00
|
|
|
#include <assert.h>
|
2018-04-18 23:19:23 +10:00
|
|
|
#include <limits.h>
|
2019-01-22 04:39:16 +11:00
|
|
|
#include <strings.h>
|
2017-12-28 05:31:31 +11:00
|
|
|
#include <wlr/backend/multi.h>
|
|
|
|
#include <wlr/backend/session.h>
|
2018-07-23 05:16:19 +10:00
|
|
|
#include <wlr/interfaces/wlr_keyboard.h>
|
2019-11-04 06:20:05 +11:00
|
|
|
#include <wlr/types/wlr_idle.h>
|
2020-05-09 03:21:15 +10:00
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
2019-11-04 06:20:05 +11:00
|
|
|
#include <wlr/types/wlr_keyboard_group.h>
|
2019-01-22 04:39:16 +11:00
|
|
|
#include <xkbcommon/xkbcommon-names.h>
|
2018-07-24 11:38:29 +10:00
|
|
|
#include "sway/commands.h"
|
2018-07-15 15:20:21 +10:00
|
|
|
#include "sway/desktop/transaction.h"
|
2017-12-15 21:22:51 +11:00
|
|
|
#include "sway/input/input-manager.h"
|
2018-07-24 11:38:29 +10:00
|
|
|
#include "sway/input/keyboard.h"
|
|
|
|
#include "sway/input/seat.h"
|
2020-09-07 08:44:13 +10:00
|
|
|
#include "sway/input/cursor.h"
|
2018-10-13 07:14:52 +11:00
|
|
|
#include "sway/ipc-server.h"
|
2017-12-11 05:59:04 +11:00
|
|
|
#include "log.h"
|
|
|
|
|
2019-01-22 04:39:16 +11:00
|
|
|
static struct modifier_key {
|
|
|
|
char *name;
|
|
|
|
uint32_t mod;
|
|
|
|
} modifiers[] = {
|
|
|
|
{ XKB_MOD_NAME_SHIFT, WLR_MODIFIER_SHIFT },
|
|
|
|
{ XKB_MOD_NAME_CAPS, WLR_MODIFIER_CAPS },
|
|
|
|
{ XKB_MOD_NAME_CTRL, WLR_MODIFIER_CTRL },
|
|
|
|
{ "Ctrl", WLR_MODIFIER_CTRL },
|
|
|
|
{ XKB_MOD_NAME_ALT, WLR_MODIFIER_ALT },
|
|
|
|
{ "Alt", WLR_MODIFIER_ALT },
|
|
|
|
{ XKB_MOD_NAME_NUM, WLR_MODIFIER_MOD2 },
|
|
|
|
{ "Mod3", WLR_MODIFIER_MOD3 },
|
|
|
|
{ XKB_MOD_NAME_LOGO, WLR_MODIFIER_LOGO },
|
|
|
|
{ "Mod5", WLR_MODIFIER_MOD5 },
|
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t get_modifier_mask_by_name(const char *name) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (int)(sizeof(modifiers) / sizeof(struct modifier_key)); ++i) {
|
|
|
|
if (strcasecmp(modifiers[i].name, name) == 0) {
|
|
|
|
return modifiers[i].mod;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *get_modifier_name_by_mask(uint32_t modifier) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (int)(sizeof(modifiers) / sizeof(struct modifier_key)); ++i) {
|
|
|
|
if (modifiers[i].mod == modifier) {
|
|
|
|
return modifiers[i].name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_modifier_names(const char **names, uint32_t modifier_masks) {
|
|
|
|
int length = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (int)(sizeof(modifiers) / sizeof(struct modifier_key)); ++i) {
|
|
|
|
if ((modifier_masks & modifiers[i].mod) != 0) {
|
|
|
|
names[length] = modifiers[i].name;
|
|
|
|
++length;
|
|
|
|
modifier_masks ^= modifiers[i].mod;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2018-06-13 01:07:11 +10:00
|
|
|
/**
|
|
|
|
* Remove all key ids associated to a keycode from the list of pressed keys
|
|
|
|
*/
|
2019-08-15 14:59:39 +10:00
|
|
|
static bool state_erase_key(struct sway_shortcut_state *state,
|
2018-06-13 01:07:11 +10:00
|
|
|
uint32_t keycode) {
|
2019-08-15 14:59:39 +10:00
|
|
|
bool found = false;
|
2018-06-13 01:07:11 +10:00
|
|
|
size_t j = 0;
|
|
|
|
for (size_t i = 0; i < state->npressed; ++i) {
|
|
|
|
if (i > j) {
|
|
|
|
state->pressed_keys[j] = state->pressed_keys[i];
|
|
|
|
state->pressed_keycodes[j] = state->pressed_keycodes[i];
|
|
|
|
}
|
|
|
|
if (state->pressed_keycodes[i] != keycode) {
|
|
|
|
++j;
|
2019-08-15 14:59:39 +10:00
|
|
|
} else {
|
|
|
|
found = true;
|
2018-06-13 01:07:11 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while(state->npressed > j) {
|
|
|
|
--state->npressed;
|
|
|
|
state->pressed_keys[state->npressed] = 0;
|
|
|
|
state->pressed_keycodes[state->npressed] = 0;
|
|
|
|
}
|
2018-10-29 23:25:15 +11:00
|
|
|
state->current_key = 0;
|
2019-08-15 14:59:39 +10:00
|
|
|
return found;
|
2018-06-13 01:07:11 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a key id (with associated keycode) to the list of pressed keys,
|
|
|
|
* if the list is not full.
|
|
|
|
*/
|
|
|
|
static void state_add_key(struct sway_shortcut_state *state,
|
|
|
|
uint32_t keycode, uint32_t key_id) {
|
|
|
|
if (state->npressed >= SWAY_KEYBOARD_PRESSED_KEYS_CAP) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
size_t i = 0;
|
|
|
|
while (i < state->npressed && state->pressed_keys[i] < key_id) {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
size_t j = state->npressed;
|
|
|
|
while (j > i) {
|
|
|
|
state->pressed_keys[j] = state->pressed_keys[j - 1];
|
|
|
|
state->pressed_keycodes[j] = state->pressed_keycodes[j - 1];
|
|
|
|
--j;
|
|
|
|
}
|
|
|
|
state->pressed_keys[i] = key_id;
|
|
|
|
state->pressed_keycodes[i] = keycode;
|
|
|
|
state->npressed++;
|
2018-10-29 23:25:15 +11:00
|
|
|
state->current_key = key_id;
|
2018-06-13 01:07:11 +10:00
|
|
|
}
|
|
|
|
|
2018-06-01 09:35:17 +10:00
|
|
|
/**
|
|
|
|
* Update the shortcut model state in response to new input
|
|
|
|
*/
|
2019-08-15 14:59:39 +10:00
|
|
|
static bool update_shortcut_state(struct sway_shortcut_state *state,
|
2020-11-11 21:00:55 +11:00
|
|
|
uint32_t keycode, enum wl_keyboard_key_state keystate, uint32_t new_key,
|
2018-06-13 01:07:11 +10:00
|
|
|
uint32_t raw_modifiers) {
|
|
|
|
bool last_key_was_a_modifier = raw_modifiers != state->last_raw_modifiers;
|
|
|
|
state->last_raw_modifiers = raw_modifiers;
|
|
|
|
|
2018-10-13 07:14:52 +11:00
|
|
|
if (last_key_was_a_modifier && state->last_keycode) {
|
|
|
|
// Last pressed key before this one was a modifier
|
|
|
|
state_erase_key(state, state->last_keycode);
|
|
|
|
}
|
2017-12-28 07:17:01 +11:00
|
|
|
|
2020-11-11 21:00:55 +11:00
|
|
|
if (keystate == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2018-06-01 09:35:17 +10:00
|
|
|
// Add current key to set; there may be duplicates
|
2020-06-14 01:45:50 +10:00
|
|
|
state_add_key(state, keycode, new_key);
|
|
|
|
state->last_keycode = keycode;
|
2018-06-01 09:35:17 +10:00
|
|
|
} else {
|
2020-06-14 01:45:50 +10:00
|
|
|
return state_erase_key(state, keycode);
|
2018-01-04 23:54:14 +11:00
|
|
|
}
|
2019-08-15 14:59:39 +10:00
|
|
|
|
|
|
|
return false;
|
2018-01-04 23:54:14 +11:00
|
|
|
}
|
|
|
|
|
2018-06-01 09:35:17 +10:00
|
|
|
/**
|
2018-06-13 01:07:11 +10:00
|
|
|
* If one exists, finds a binding which matches the shortcut model state,
|
|
|
|
* current modifiers, release state, and locked state.
|
2018-06-01 09:35:17 +10:00
|
|
|
*/
|
2018-06-13 01:07:11 +10:00
|
|
|
static void get_active_binding(const struct sway_shortcut_state *state,
|
|
|
|
list_t *bindings, struct sway_binding **current_binding,
|
2020-02-16 06:55:33 +11:00
|
|
|
uint32_t modifiers, bool release, bool locked, bool inhibited,
|
|
|
|
const char *input, bool exact_input, xkb_layout_index_t group) {
|
2018-06-01 09:35:17 +10:00
|
|
|
for (int i = 0; i < bindings->length; ++i) {
|
|
|
|
struct sway_binding *binding = bindings->items[i];
|
2019-05-30 17:30:08 +10:00
|
|
|
bool binding_locked = (binding->flags & BINDING_LOCKED) != 0;
|
2020-02-16 06:55:33 +11:00
|
|
|
bool binding_inhibited = (binding->flags & BINDING_INHIBITED) != 0;
|
2018-07-24 11:38:29 +10:00
|
|
|
bool binding_release = binding->flags & BINDING_RELEASE;
|
2018-01-04 23:54:14 +11:00
|
|
|
|
2018-06-01 09:35:17 +10:00
|
|
|
if (modifiers ^ binding->modifiers ||
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
release != binding_release ||
|
2018-10-19 04:13:40 +11:00
|
|
|
locked > binding_locked ||
|
2020-02-16 06:55:33 +11:00
|
|
|
inhibited > binding_inhibited ||
|
2019-07-27 02:02:18 +10:00
|
|
|
(binding->group != XKB_LAYOUT_INVALID &&
|
|
|
|
binding->group != group) ||
|
2018-10-19 04:13:40 +11:00
|
|
|
(strcmp(binding->input, input) != 0 &&
|
2019-11-04 06:20:05 +11:00
|
|
|
(strcmp(binding->input, "*") != 0 || exact_input))) {
|
2018-01-04 23:54:14 +11:00
|
|
|
continue;
|
|
|
|
}
|
2018-06-01 09:35:17 +10:00
|
|
|
|
2018-10-29 23:25:15 +11:00
|
|
|
bool match = false;
|
|
|
|
if (state->npressed == (size_t)binding->keys->length) {
|
|
|
|
match = true;
|
|
|
|
for (size_t j = 0; j < state->npressed; j++) {
|
|
|
|
uint32_t key = *(uint32_t *)binding->keys->items[j];
|
|
|
|
if (key != state->pressed_keys[j]) {
|
|
|
|
match = false;
|
|
|
|
break;
|
|
|
|
}
|
2018-06-01 09:35:17 +10:00
|
|
|
}
|
2018-10-29 23:25:15 +11:00
|
|
|
} else if (binding->keys->length == 1) {
|
|
|
|
/*
|
|
|
|
* If no multiple-key binding has matched, try looking for
|
|
|
|
* single-key bindings that match the newly-pressed key.
|
|
|
|
*/
|
|
|
|
match = state->current_key == *(uint32_t *)binding->keys->items[0];
|
2018-01-04 23:54:14 +11:00
|
|
|
}
|
2018-06-13 01:07:11 +10:00
|
|
|
if (!match) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-01-04 23:54:14 +11:00
|
|
|
|
2019-05-30 17:30:08 +10:00
|
|
|
if (*current_binding) {
|
|
|
|
if (*current_binding == binding) {
|
|
|
|
continue;
|
2018-10-19 04:13:40 +11:00
|
|
|
}
|
2019-05-30 17:30:08 +10:00
|
|
|
|
|
|
|
bool current_locked =
|
|
|
|
((*current_binding)->flags & BINDING_LOCKED) != 0;
|
2020-02-16 06:55:33 +11:00
|
|
|
bool current_inhibited =
|
|
|
|
((*current_binding)->flags & BINDING_INHIBITED) != 0;
|
2019-05-30 17:30:08 +10:00
|
|
|
bool current_input = strcmp((*current_binding)->input, input) == 0;
|
2019-07-27 02:02:18 +10:00
|
|
|
bool current_group_set =
|
|
|
|
(*current_binding)->group != XKB_LAYOUT_INVALID;
|
2019-05-30 17:30:08 +10:00
|
|
|
bool binding_input = strcmp(binding->input, input) == 0;
|
2019-07-27 02:02:18 +10:00
|
|
|
bool binding_group_set = binding->group != XKB_LAYOUT_INVALID;
|
2019-05-30 17:30:08 +10:00
|
|
|
|
|
|
|
if (current_input == binding_input
|
2019-07-27 02:02:18 +10:00
|
|
|
&& current_locked == binding_locked
|
2020-02-16 06:55:33 +11:00
|
|
|
&& current_inhibited == binding_inhibited
|
2019-07-27 02:02:18 +10:00
|
|
|
&& current_group_set == binding_group_set) {
|
2019-05-30 17:30:08 +10:00
|
|
|
sway_log(SWAY_DEBUG,
|
|
|
|
"Encountered conflicting bindings %d and %d",
|
|
|
|
(*current_binding)->order, binding->order);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_input && !binding_input) {
|
|
|
|
continue; // Prefer the correct input
|
|
|
|
}
|
|
|
|
|
2019-07-27 02:02:18 +10:00
|
|
|
if (current_input == binding_input &&
|
|
|
|
(*current_binding)->group == group) {
|
|
|
|
continue; // Prefer correct group for matching inputs
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_input == binding_input &&
|
|
|
|
current_group_set == binding_group_set &&
|
|
|
|
current_locked == locked) {
|
|
|
|
continue; // Prefer correct lock state for matching input+group
|
2019-05-30 17:30:08 +10:00
|
|
|
}
|
2020-02-16 06:55:33 +11:00
|
|
|
|
|
|
|
if (current_input == binding_input &&
|
|
|
|
current_group_set == binding_group_set &&
|
|
|
|
current_locked == binding_locked &&
|
|
|
|
current_inhibited == inhibited) {
|
|
|
|
// Prefer correct inhibition state for matching
|
|
|
|
// input+group+locked
|
|
|
|
continue;
|
|
|
|
}
|
2019-05-30 17:30:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
*current_binding = binding;
|
|
|
|
if (strcmp((*current_binding)->input, input) == 0 &&
|
2019-07-27 02:02:18 +10:00
|
|
|
(((*current_binding)->flags & BINDING_LOCKED) == locked) &&
|
2020-02-16 06:55:33 +11:00
|
|
|
(((*current_binding)->flags & BINDING_INHIBITED) == inhibited) &&
|
2019-07-27 02:02:18 +10:00
|
|
|
(*current_binding)->group == group) {
|
2019-05-30 17:30:08 +10:00
|
|
|
return; // If a perfect match is found, quit searching
|
2018-06-01 09:35:17 +10:00
|
|
|
}
|
2018-01-04 23:54:14 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-28 05:31:31 +11:00
|
|
|
/**
|
|
|
|
* Execute a built-in, hardcoded compositor binding. These are triggered from a
|
|
|
|
* single keysym.
|
|
|
|
*
|
|
|
|
* Returns true if the keysym was handled by a binding and false if the event
|
|
|
|
* should be propagated to clients.
|
|
|
|
*/
|
2017-12-28 11:07:17 +11:00
|
|
|
static bool keyboard_execute_compositor_binding(struct sway_keyboard *keyboard,
|
2018-06-01 09:35:17 +10:00
|
|
|
const xkb_keysym_t *pressed_keysyms, uint32_t modifiers, size_t keysyms_len) {
|
2017-12-28 11:07:17 +11:00
|
|
|
for (size_t i = 0; i < keysyms_len; ++i) {
|
|
|
|
xkb_keysym_t keysym = pressed_keysyms[i];
|
|
|
|
if (keysym >= XKB_KEY_XF86Switch_VT_1 &&
|
|
|
|
keysym <= XKB_KEY_XF86Switch_VT_12) {
|
|
|
|
if (wlr_backend_is_multi(server.backend)) {
|
|
|
|
struct wlr_session *session =
|
2018-10-05 05:00:18 +10:00
|
|
|
wlr_backend_get_session(server.backend);
|
2017-12-28 11:07:17 +11:00
|
|
|
if (session) {
|
|
|
|
unsigned vt = keysym - XKB_KEY_XF86Switch_VT_1 + 1;
|
|
|
|
wlr_session_change_vt(session, vt);
|
|
|
|
}
|
2017-12-28 05:31:31 +11:00
|
|
|
}
|
2017-12-28 11:07:17 +11:00
|
|
|
return true;
|
2017-12-28 05:31:31 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-29 06:51:17 +11:00
|
|
|
/**
|
2017-12-28 05:20:28 +11:00
|
|
|
* Get keysyms and modifiers from the keyboard as xkb sees them.
|
|
|
|
*
|
|
|
|
* This uses the xkb keysyms translation based on pressed modifiers and clears
|
|
|
|
* the consumed modifiers from the list of modifiers passed to keybind
|
|
|
|
* detection.
|
|
|
|
*
|
|
|
|
* On US layout, pressing Alt+Shift+2 will trigger Alt+@.
|
|
|
|
*/
|
|
|
|
static size_t keyboard_keysyms_translated(struct sway_keyboard *keyboard,
|
|
|
|
xkb_keycode_t keycode, const xkb_keysym_t **keysyms,
|
|
|
|
uint32_t *modifiers) {
|
|
|
|
struct wlr_input_device *device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
|
|
|
*modifiers = wlr_keyboard_get_modifiers(device->keyboard);
|
|
|
|
xkb_mod_mask_t consumed = xkb_state_key_get_consumed_mods2(
|
|
|
|
device->keyboard->xkb_state, keycode, XKB_CONSUMED_MODE_XKB);
|
|
|
|
*modifiers = *modifiers & ~consumed;
|
|
|
|
|
|
|
|
return xkb_state_key_get_syms(device->keyboard->xkb_state,
|
|
|
|
keycode, keysyms);
|
|
|
|
}
|
|
|
|
|
2017-12-29 06:51:17 +11:00
|
|
|
/**
|
2017-12-28 05:20:28 +11:00
|
|
|
* Get keysyms and modifiers from the keyboard as if modifiers didn't change
|
|
|
|
* keysyms.
|
|
|
|
*
|
|
|
|
* This avoids the xkb keysym translation based on modifiers considered pressed
|
|
|
|
* in the state.
|
|
|
|
*
|
|
|
|
* This will trigger keybinds such as Alt+Shift+2.
|
|
|
|
*/
|
|
|
|
static size_t keyboard_keysyms_raw(struct sway_keyboard *keyboard,
|
|
|
|
xkb_keycode_t keycode, const xkb_keysym_t **keysyms,
|
|
|
|
uint32_t *modifiers) {
|
|
|
|
struct wlr_input_device *device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
|
|
|
*modifiers = wlr_keyboard_get_modifiers(device->keyboard);
|
|
|
|
|
|
|
|
xkb_layout_index_t layout_index = xkb_state_key_get_layout(
|
|
|
|
device->keyboard->xkb_state, keycode);
|
|
|
|
return xkb_keymap_key_get_syms_by_level(device->keyboard->keymap,
|
|
|
|
keycode, layout_index, 0, keysyms);
|
|
|
|
}
|
|
|
|
|
2019-01-15 06:06:35 +11:00
|
|
|
void sway_keyboard_disarm_key_repeat(struct sway_keyboard *keyboard) {
|
|
|
|
if (!keyboard) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
keyboard->repeat_binding = NULL;
|
|
|
|
if (wl_event_source_timer_update(keyboard->key_repeat_source, 0) < 0) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "failed to disarm key repeat timer");
|
2019-01-15 06:06:35 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-14 01:45:50 +10:00
|
|
|
struct key_info {
|
|
|
|
uint32_t keycode;
|
|
|
|
uint32_t code_modifiers;
|
|
|
|
|
|
|
|
const xkb_keysym_t *raw_keysyms;
|
|
|
|
uint32_t raw_modifiers;
|
|
|
|
size_t raw_keysyms_len;
|
|
|
|
|
|
|
|
const xkb_keysym_t *translated_keysyms;
|
|
|
|
uint32_t translated_modifiers;
|
|
|
|
size_t translated_keysyms_len;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void update_keyboard_state(struct sway_keyboard *keyboard,
|
2020-11-11 21:00:55 +11:00
|
|
|
uint32_t raw_keycode, enum wl_keyboard_key_state keystate,
|
2020-06-14 01:45:50 +10:00
|
|
|
struct key_info *keyinfo) {
|
|
|
|
// Identify new keycode, raw keysym(s), and translated keysym(s)
|
|
|
|
keyinfo->keycode = raw_keycode + 8;
|
|
|
|
|
|
|
|
keyinfo->raw_keysyms_len = keyboard_keysyms_raw(keyboard, keyinfo->keycode,
|
|
|
|
&keyinfo->raw_keysyms, &keyinfo->raw_modifiers);
|
|
|
|
|
|
|
|
keyinfo->translated_keysyms_len = keyboard_keysyms_translated(keyboard,
|
|
|
|
keyinfo->keycode, &keyinfo->translated_keysyms,
|
|
|
|
&keyinfo->translated_modifiers);
|
|
|
|
|
|
|
|
keyinfo->code_modifiers = wlr_keyboard_get_modifiers(
|
|
|
|
keyboard->seat_device->input_device->wlr_device->keyboard);
|
|
|
|
|
|
|
|
// Update shortcut model keyinfo
|
|
|
|
update_shortcut_state(&keyboard->state_keycodes, raw_keycode, keystate,
|
|
|
|
keyinfo->keycode, keyinfo->code_modifiers);
|
|
|
|
for (size_t i = 0; i < keyinfo->raw_keysyms_len; ++i) {
|
|
|
|
update_shortcut_state(&keyboard->state_keysyms_raw,
|
|
|
|
raw_keycode, keystate, keyinfo->raw_keysyms[i],
|
|
|
|
keyinfo->code_modifiers);
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < keyinfo->translated_keysyms_len; ++i) {
|
|
|
|
update_shortcut_state(&keyboard->state_keysyms_translated,
|
|
|
|
raw_keycode, keystate, keyinfo->translated_keysyms[i],
|
|
|
|
keyinfo->code_modifiers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
static void handle_key_event(struct sway_keyboard *keyboard,
|
|
|
|
struct wlr_event_keyboard_key *event) {
|
2020-06-14 01:45:50 +10:00
|
|
|
struct sway_seat *seat = keyboard->seat_device->sway_seat;
|
2018-07-24 11:38:29 +10:00
|
|
|
struct wlr_seat *wlr_seat = seat->wlr_seat;
|
2017-12-15 03:11:56 +11:00
|
|
|
struct wlr_input_device *wlr_device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
2018-10-19 04:13:40 +11:00
|
|
|
char *device_identifier = input_device_get_identifier(wlr_device);
|
2019-11-04 06:20:05 +11:00
|
|
|
bool exact_identifier = wlr_device->keyboard->group != NULL;
|
2019-12-12 03:00:39 +11:00
|
|
|
seat_idle_notify_activity(seat, IDLE_SOURCE_KEYBOARD);
|
2018-07-24 11:38:29 +10:00
|
|
|
bool input_inhibited = seat->exclusive_client != NULL;
|
2020-02-16 06:55:33 +11:00
|
|
|
struct sway_keyboard_shortcuts_inhibitor *sway_inhibitor =
|
|
|
|
keyboard_shortcuts_inhibitor_get_for_focused_surface(seat);
|
|
|
|
bool shortcuts_inhibited = sway_inhibitor && sway_inhibitor->inhibitor->active;
|
2017-12-28 05:20:28 +11:00
|
|
|
|
2020-11-11 21:00:55 +11:00
|
|
|
if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2020-09-07 08:44:13 +10:00
|
|
|
cursor_notify_key_press(seat->cursor);
|
|
|
|
}
|
|
|
|
|
2018-06-01 09:35:17 +10:00
|
|
|
// Identify new keycode, raw keysym(s), and translated keysym(s)
|
2020-06-14 01:45:50 +10:00
|
|
|
struct key_info keyinfo;
|
|
|
|
update_keyboard_state(keyboard, event->keycode, event->state, &keyinfo);
|
2018-06-01 09:35:17 +10:00
|
|
|
|
|
|
|
bool handled = false;
|
2018-06-13 01:07:11 +10:00
|
|
|
// Identify active release binding
|
|
|
|
struct sway_binding *binding_released = NULL;
|
|
|
|
get_active_binding(&keyboard->state_keycodes,
|
|
|
|
config->current_mode->keycode_bindings, &binding_released,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.code_modifiers, true, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
2019-11-04 06:20:05 +11:00
|
|
|
exact_identifier, keyboard->effective_layout);
|
2018-06-13 01:07:11 +10:00
|
|
|
get_active_binding(&keyboard->state_keysyms_raw,
|
|
|
|
config->current_mode->keysym_bindings, &binding_released,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.raw_modifiers, true, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
2019-11-04 06:20:05 +11:00
|
|
|
exact_identifier, keyboard->effective_layout);
|
2019-03-11 07:26:50 +11:00
|
|
|
get_active_binding(&keyboard->state_keysyms_translated,
|
|
|
|
config->current_mode->keysym_bindings, &binding_released,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.translated_modifiers, true, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
2019-11-04 06:20:05 +11:00
|
|
|
exact_identifier, keyboard->effective_layout);
|
2018-06-13 01:07:11 +10:00
|
|
|
|
|
|
|
// Execute stored release binding once no longer active
|
|
|
|
if (keyboard->held_binding && binding_released != keyboard->held_binding &&
|
2020-11-11 21:00:55 +11:00
|
|
|
event->state == WL_KEYBOARD_KEY_STATE_RELEASED) {
|
2018-07-24 11:38:29 +10:00
|
|
|
seat_execute_command(seat, keyboard->held_binding);
|
2018-06-01 09:35:17 +10:00
|
|
|
handled = true;
|
|
|
|
}
|
2018-06-13 01:07:11 +10:00
|
|
|
if (binding_released != keyboard->held_binding) {
|
2018-06-01 09:35:17 +10:00
|
|
|
keyboard->held_binding = NULL;
|
|
|
|
}
|
2020-11-11 21:00:55 +11:00
|
|
|
if (binding_released && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2018-06-13 01:07:11 +10:00
|
|
|
keyboard->held_binding = binding_released;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Identify and execute active pressed binding
|
2018-10-08 21:40:47 +11:00
|
|
|
struct sway_binding *binding = NULL;
|
2020-11-11 21:00:55 +11:00
|
|
|
if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2018-06-13 01:07:11 +10:00
|
|
|
get_active_binding(&keyboard->state_keycodes,
|
2018-10-08 21:40:47 +11:00
|
|
|
config->current_mode->keycode_bindings, &binding,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.code_modifiers, false, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
2019-11-04 06:20:05 +11:00
|
|
|
exact_identifier, keyboard->effective_layout);
|
2019-03-11 07:26:50 +11:00
|
|
|
get_active_binding(&keyboard->state_keysyms_raw,
|
|
|
|
config->current_mode->keysym_bindings, &binding,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.raw_modifiers, false, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
2019-11-04 06:20:05 +11:00
|
|
|
exact_identifier, keyboard->effective_layout);
|
2018-06-13 01:07:11 +10:00
|
|
|
get_active_binding(&keyboard->state_keysyms_translated,
|
2018-10-08 21:40:47 +11:00
|
|
|
config->current_mode->keysym_bindings, &binding,
|
2020-06-14 01:45:50 +10:00
|
|
|
keyinfo.translated_modifiers, false, input_inhibited,
|
2020-02-16 06:55:33 +11:00
|
|
|
shortcuts_inhibited, device_identifier,
|
|
|
|
exact_identifier, keyboard->effective_layout);
|
2018-07-30 06:25:43 +10:00
|
|
|
}
|
|
|
|
|
2019-01-09 16:52:47 +11:00
|
|
|
// Set up (or clear) keyboard repeat for a pressed binding. Since the
|
|
|
|
// binding may remove the keyboard, the timer needs to be updated first
|
2020-03-23 22:34:04 +11:00
|
|
|
if (binding && !(binding->flags & BINDING_NOREPEAT) &&
|
|
|
|
wlr_device->keyboard->repeat_info.delay > 0) {
|
2018-10-08 21:40:47 +11:00
|
|
|
keyboard->repeat_binding = binding;
|
2018-07-30 06:25:43 +10:00
|
|
|
if (wl_event_source_timer_update(keyboard->key_repeat_source,
|
2018-07-30 08:50:20 +10:00
|
|
|
wlr_device->keyboard->repeat_info.delay) < 0) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "failed to set key repeat timer");
|
2018-07-30 06:25:43 +10:00
|
|
|
}
|
|
|
|
} else if (keyboard->repeat_binding) {
|
2019-01-15 06:06:35 +11:00
|
|
|
sway_keyboard_disarm_key_repeat(keyboard);
|
2017-12-28 11:07:17 +11:00
|
|
|
}
|
|
|
|
|
2019-01-09 16:52:47 +11:00
|
|
|
if (binding) {
|
|
|
|
seat_execute_command(seat, binding);
|
|
|
|
handled = true;
|
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
if (!handled && wlr_device->keyboard->group) {
|
|
|
|
// Only handle device specific bindings for keyboards in a group
|
|
|
|
free(device_identifier);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-28 11:07:17 +11:00
|
|
|
// Compositor bindings
|
2020-11-11 21:00:55 +11:00
|
|
|
if (!handled && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2018-06-01 09:35:17 +10:00
|
|
|
handled = keyboard_execute_compositor_binding(
|
2020-06-14 01:45:50 +10:00
|
|
|
keyboard, keyinfo.translated_keysyms,
|
|
|
|
keyinfo.translated_modifiers, keyinfo.translated_keysyms_len);
|
2017-12-28 11:07:17 +11:00
|
|
|
}
|
2020-11-11 21:00:55 +11:00
|
|
|
if (!handled && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2018-06-01 09:35:17 +10:00
|
|
|
handled = keyboard_execute_compositor_binding(
|
2020-06-14 01:45:50 +10:00
|
|
|
keyboard, keyinfo.raw_keysyms, keyinfo.raw_modifiers,
|
|
|
|
keyinfo.raw_keysyms_len);
|
2017-12-28 05:20:28 +11:00
|
|
|
}
|
|
|
|
|
2020-11-11 21:00:55 +11:00
|
|
|
if (!handled || event->state == WL_KEYBOARD_KEY_STATE_RELEASED) {
|
2019-08-15 14:59:39 +10:00
|
|
|
bool pressed_sent = update_shortcut_state(
|
2020-06-14 01:45:50 +10:00
|
|
|
&keyboard->state_pressed_sent, event->keycode, event->state,
|
|
|
|
keyinfo.keycode, 0);
|
2020-11-11 21:00:55 +11:00
|
|
|
if (pressed_sent || event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
2019-08-15 14:59:39 +10:00
|
|
|
wlr_seat_set_keyboard(wlr_seat, wlr_device);
|
|
|
|
wlr_seat_keyboard_notify_key(wlr_seat, event->time_msec,
|
|
|
|
event->keycode, event->state);
|
|
|
|
}
|
2017-12-28 05:20:28 +11:00
|
|
|
}
|
2018-07-24 11:38:29 +10:00
|
|
|
|
|
|
|
transaction_commit_dirty();
|
2018-10-19 04:13:40 +11:00
|
|
|
|
|
|
|
free(device_identifier);
|
2017-12-11 05:59:04 +11:00
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
static void handle_keyboard_key(struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_keyboard *keyboard =
|
|
|
|
wl_container_of(listener, keyboard, keyboard_key);
|
|
|
|
handle_key_event(keyboard, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_keyboard_group_key(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_keyboard_group *sway_group =
|
|
|
|
wl_container_of(listener, sway_group, keyboard_key);
|
|
|
|
handle_key_event(sway_group->seat_device->keyboard, data);
|
|
|
|
}
|
|
|
|
|
2020-06-14 01:45:50 +10:00
|
|
|
static void handle_keyboard_group_enter(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_keyboard_group *sway_group =
|
|
|
|
wl_container_of(listener, sway_group, enter);
|
|
|
|
struct sway_keyboard *keyboard = sway_group->seat_device->keyboard;
|
|
|
|
struct wl_array *keycodes = data;
|
|
|
|
|
|
|
|
uint32_t *keycode;
|
|
|
|
wl_array_for_each(keycode, keycodes) {
|
|
|
|
struct key_info keyinfo;
|
2020-11-11 21:00:55 +11:00
|
|
|
update_keyboard_state(keyboard, *keycode, WL_KEYBOARD_KEY_STATE_PRESSED, &keyinfo);
|
2020-06-14 01:45:50 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_keyboard_group_leave(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_keyboard_group *sway_group =
|
|
|
|
wl_container_of(listener, sway_group, leave);
|
|
|
|
struct sway_keyboard *keyboard = sway_group->seat_device->keyboard;
|
|
|
|
struct wl_array *keycodes = data;
|
|
|
|
|
|
|
|
bool pressed_sent = false;
|
|
|
|
|
|
|
|
uint32_t *keycode;
|
|
|
|
wl_array_for_each(keycode, keycodes) {
|
|
|
|
struct key_info keyinfo;
|
2020-11-11 21:00:55 +11:00
|
|
|
update_keyboard_state(keyboard, *keycode, WL_KEYBOARD_KEY_STATE_RELEASED, &keyinfo);
|
2020-06-14 01:45:50 +10:00
|
|
|
|
|
|
|
pressed_sent |= update_shortcut_state(&keyboard->state_pressed_sent,
|
2020-11-11 21:00:55 +11:00
|
|
|
*keycode, WL_KEYBOARD_KEY_STATE_RELEASED, keyinfo.keycode, 0);
|
2020-06-14 01:45:50 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pressed_sent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Refocus the focused node, layer surface, or unmanaged surface so that
|
|
|
|
// it picks up the current keyboard state.
|
|
|
|
struct sway_seat *seat = keyboard->seat_device->sway_seat;
|
|
|
|
struct sway_node *focus = seat_get_focus(seat);
|
|
|
|
if (focus) {
|
|
|
|
seat_set_focus(seat, NULL);
|
|
|
|
seat_set_focus(seat, focus);
|
|
|
|
} else if (seat->focused_layer) {
|
|
|
|
struct wlr_layer_surface_v1 *layer = seat->focused_layer;
|
|
|
|
seat_set_focus_layer(seat, NULL);
|
|
|
|
seat_set_focus_layer(seat, layer);
|
|
|
|
} else {
|
|
|
|
struct wlr_surface *unmanaged = seat->wlr_seat->keyboard_state.focused_surface;
|
|
|
|
seat_set_focus_surface(seat, NULL, false);
|
|
|
|
seat_set_focus_surface(seat, unmanaged, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-30 06:25:43 +10:00
|
|
|
static int handle_keyboard_repeat(void *data) {
|
|
|
|
struct sway_keyboard *keyboard = (struct sway_keyboard *)data;
|
2018-07-30 08:50:20 +10:00
|
|
|
struct wlr_keyboard *wlr_device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device->keyboard;
|
2018-07-30 06:25:43 +10:00
|
|
|
if (keyboard->repeat_binding) {
|
2018-07-30 08:50:20 +10:00
|
|
|
if (wlr_device->repeat_info.rate > 0) {
|
|
|
|
// We queue the next event first, as the command might cancel it
|
|
|
|
if (wl_event_source_timer_update(keyboard->key_repeat_source,
|
|
|
|
1000 / wlr_device->repeat_info.rate) < 0) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "failed to update key repeat timer");
|
2018-07-30 08:50:20 +10:00
|
|
|
}
|
2018-07-30 06:25:43 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
seat_execute_command(keyboard->seat_device->sway_seat,
|
|
|
|
keyboard->repeat_binding);
|
|
|
|
transaction_commit_dirty();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-13 07:14:52 +11:00
|
|
|
static void determine_bar_visibility(uint32_t modifiers) {
|
|
|
|
for (int i = 0; i < config->bars->length; ++i) {
|
|
|
|
struct bar_config *bar = config->bars->items[i];
|
2019-04-20 13:12:35 +10:00
|
|
|
if (bar->modifier == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool vis_by_mod = (~modifiers & bar->modifier) == 0;
|
|
|
|
if (bar->visible_by_modifier != vis_by_mod) {
|
|
|
|
// If visible by modifier is set, send that it is no longer visible
|
|
|
|
// by modifier (regardless of bar mode and state). Otherwise, only
|
|
|
|
// send the visible by modifier status if mode and state are hide
|
|
|
|
if (bar->visible_by_modifier
|
|
|
|
|| strcmp(bar->mode, bar->hidden_state) == 0) {
|
|
|
|
bar->visible_by_modifier = vis_by_mod;
|
2018-10-13 07:14:52 +11:00
|
|
|
ipc_event_bar_state_update(bar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
static void handle_modifier_event(struct sway_keyboard *keyboard) {
|
2017-12-15 03:11:56 +11:00
|
|
|
struct wlr_input_device *wlr_device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
2019-11-04 06:20:05 +11:00
|
|
|
if (!wlr_device->keyboard->group) {
|
|
|
|
struct wlr_seat *wlr_seat = keyboard->seat_device->sway_seat->wlr_seat;
|
|
|
|
wlr_seat_set_keyboard(wlr_seat, wlr_device);
|
|
|
|
wlr_seat_keyboard_notify_modifiers(wlr_seat,
|
|
|
|
&wlr_device->keyboard->modifiers);
|
2018-10-13 07:14:52 +11:00
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
uint32_t modifiers = wlr_keyboard_get_modifiers(wlr_device->keyboard);
|
|
|
|
determine_bar_visibility(modifiers);
|
|
|
|
}
|
2019-07-18 07:12:20 +10:00
|
|
|
|
2020-11-12 13:13:38 +11:00
|
|
|
if (wlr_device->keyboard->modifiers.group != keyboard->effective_layout) {
|
2019-07-18 07:12:20 +10:00
|
|
|
keyboard->effective_layout = wlr_device->keyboard->modifiers.group;
|
2020-11-12 13:13:38 +11:00
|
|
|
|
|
|
|
if (!wlr_keyboard_group_from_wlr_keyboard(wlr_device->keyboard)) {
|
|
|
|
ipc_event_input("xkb_layout", keyboard->seat_device->input_device);
|
|
|
|
}
|
2019-07-18 07:12:20 +10:00
|
|
|
}
|
2017-12-11 05:59:04 +11:00
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
static void handle_keyboard_modifiers(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_keyboard *keyboard =
|
|
|
|
wl_container_of(listener, keyboard, keyboard_modifiers);
|
|
|
|
handle_modifier_event(keyboard);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_keyboard_group_modifiers(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_keyboard_group *group =
|
|
|
|
wl_container_of(listener, group, keyboard_modifiers);
|
|
|
|
handle_modifier_event(group->seat_device->keyboard);
|
|
|
|
}
|
|
|
|
|
2017-12-11 05:59:04 +11:00
|
|
|
struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,
|
2017-12-15 03:11:56 +11:00
|
|
|
struct sway_seat_device *device) {
|
2017-12-11 05:59:04 +11:00
|
|
|
struct sway_keyboard *keyboard =
|
|
|
|
calloc(1, sizeof(struct sway_keyboard));
|
|
|
|
if (!sway_assert(keyboard, "could not allocate sway keyboard")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
keyboard->seat_device = device;
|
|
|
|
device->keyboard = keyboard;
|
2017-12-11 05:59:04 +11:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
wl_list_init(&keyboard->keyboard_key.link);
|
|
|
|
wl_list_init(&keyboard->keyboard_modifiers.link);
|
|
|
|
|
2018-07-30 06:25:43 +10:00
|
|
|
keyboard->key_repeat_source = wl_event_loop_add_timer(server.wl_event_loop,
|
|
|
|
handle_keyboard_repeat, keyboard);
|
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
return keyboard;
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:06:28 +10:00
|
|
|
static void handle_xkb_context_log(struct xkb_context *context,
|
|
|
|
enum xkb_log_level level, const char *format, va_list args) {
|
|
|
|
va_list args_copy;
|
|
|
|
va_copy(args_copy, args);
|
|
|
|
size_t length = vsnprintf(NULL, 0, format, args_copy) + 1;
|
|
|
|
va_end(args_copy);
|
|
|
|
|
|
|
|
char *error = malloc(length);
|
|
|
|
if (!error) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate libxkbcommon log message");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_copy(args_copy, args);
|
|
|
|
vsnprintf(error, length, format, args_copy);
|
|
|
|
va_end(args_copy);
|
|
|
|
|
|
|
|
if (error[length - 2] == '\n') {
|
|
|
|
error[length - 2] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
sway_log_importance_t importance = SWAY_DEBUG;
|
|
|
|
if (level <= XKB_LOG_LEVEL_ERROR) { // Critical and Error
|
|
|
|
importance = SWAY_ERROR;
|
|
|
|
} else if (level <= XKB_LOG_LEVEL_INFO) { // Warning and Info
|
|
|
|
importance = SWAY_INFO;
|
|
|
|
}
|
|
|
|
sway_log(importance, "[xkbcommon] %s", error);
|
|
|
|
|
|
|
|
char **data = xkb_context_get_user_data(context);
|
|
|
|
if (importance == SWAY_ERROR && data && !*data) {
|
|
|
|
*data = error;
|
|
|
|
} else {
|
|
|
|
free(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct xkb_keymap *sway_keyboard_compile_keymap(struct input_config *ic,
|
|
|
|
char **error) {
|
2017-12-11 05:59:04 +11:00
|
|
|
struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
|
|
|
if (!sway_assert(context, "cannot create XKB context")) {
|
2019-05-14 13:56:59 +10:00
|
|
|
return NULL;
|
2017-12-11 05:59:04 +11:00
|
|
|
}
|
2019-05-23 17:06:28 +10:00
|
|
|
xkb_context_set_user_data(context, error);
|
|
|
|
xkb_context_set_log_fn(context, handle_xkb_context_log);
|
2017-12-11 05:59:04 +11:00
|
|
|
|
2019-07-13 12:04:29 +10:00
|
|
|
struct xkb_keymap *keymap = NULL;
|
|
|
|
|
|
|
|
if (ic && ic->xkb_file) {
|
|
|
|
FILE *keymap_file = fopen(ic->xkb_file, "r");
|
|
|
|
if (!keymap_file) {
|
2019-11-21 14:41:41 +11:00
|
|
|
sway_log_errno(SWAY_ERROR, "cannot read xkb file %s", ic->xkb_file);
|
2019-07-13 12:04:29 +10:00
|
|
|
if (error) {
|
2019-11-21 14:41:41 +11:00
|
|
|
size_t len = snprintf(NULL, 0, "cannot read xkb file %s: %s",
|
2019-07-13 12:04:29 +10:00
|
|
|
ic->xkb_file, strerror(errno)) + 1;
|
|
|
|
*error = malloc(len);
|
|
|
|
if (*error) {
|
2019-11-21 14:41:41 +11:00
|
|
|
snprintf(*error, len, "cannot read xkb_file %s: %s",
|
2019-07-13 12:04:29 +10:00
|
|
|
ic->xkb_file, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
keymap = xkb_keymap_new_from_file(context, keymap_file,
|
|
|
|
XKB_KEYMAP_FORMAT_TEXT_V1, XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
|
2019-11-21 14:41:41 +11:00
|
|
|
if (fclose(keymap_file) != 0) {
|
|
|
|
sway_log_errno(SWAY_ERROR, "Failed to close xkb file %s",
|
|
|
|
ic->xkb_file);
|
2019-07-13 12:04:29 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
struct xkb_rule_names rules = {0};
|
|
|
|
if (ic) {
|
|
|
|
input_config_fill_rule_names(ic, &rules);
|
|
|
|
}
|
|
|
|
keymap = xkb_keymap_new_from_names(context, &rules,
|
|
|
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
2019-05-23 17:06:28 +10:00
|
|
|
xkb_context_set_user_data(context, NULL);
|
2019-05-14 13:56:59 +10:00
|
|
|
xkb_context_unref(context);
|
|
|
|
return keymap;
|
|
|
|
}
|
|
|
|
|
2019-12-15 17:33:33 +11:00
|
|
|
static bool repeat_info_match(struct sway_keyboard *a, struct wlr_keyboard *b) {
|
|
|
|
return a->repeat_rate == b->repeat_info.rate &&
|
|
|
|
a->repeat_delay == b->repeat_info.delay;
|
|
|
|
}
|
|
|
|
|
2019-12-13 16:06:48 +11:00
|
|
|
static void destroy_empty_wlr_keyboard_group(void *data) {
|
|
|
|
wlr_keyboard_group_destroy(data);
|
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
static void sway_keyboard_group_remove(struct sway_keyboard *keyboard) {
|
|
|
|
struct sway_input_device *device = keyboard->seat_device->input_device;
|
|
|
|
struct wlr_keyboard *wlr_keyboard = device->wlr_device->keyboard;
|
|
|
|
struct wlr_keyboard_group *wlr_group = wlr_keyboard->group;
|
|
|
|
|
|
|
|
sway_log(SWAY_DEBUG, "Removing keyboard %s from group %p",
|
|
|
|
device->identifier, wlr_group);
|
|
|
|
|
|
|
|
wlr_keyboard_group_remove_keyboard(wlr_keyboard->group, wlr_keyboard);
|
|
|
|
|
|
|
|
if (wl_list_empty(&wlr_group->devices)) {
|
|
|
|
sway_log(SWAY_DEBUG, "Destroying empty keyboard group %p",
|
|
|
|
wlr_group);
|
|
|
|
struct sway_keyboard_group *sway_group = wlr_group->data;
|
|
|
|
wlr_group->data = NULL;
|
|
|
|
wl_list_remove(&sway_group->link);
|
2019-12-13 15:39:00 +11:00
|
|
|
wl_list_remove(&sway_group->keyboard_key.link);
|
|
|
|
wl_list_remove(&sway_group->keyboard_modifiers.link);
|
2020-06-14 01:45:50 +10:00
|
|
|
wl_list_remove(&sway_group->enter.link);
|
|
|
|
wl_list_remove(&sway_group->leave.link);
|
2019-11-28 12:57:44 +11:00
|
|
|
sway_keyboard_destroy(sway_group->seat_device->keyboard);
|
2019-11-04 06:20:05 +11:00
|
|
|
free(sway_group->seat_device->input_device);
|
|
|
|
free(sway_group->seat_device);
|
|
|
|
free(sway_group);
|
2019-12-13 16:06:48 +11:00
|
|
|
|
|
|
|
// To prevent use-after-free conditions when handling key events, defer
|
|
|
|
// freeing the wlr_keyboard_group until idle
|
|
|
|
wl_event_loop_add_idle(server.wl_event_loop,
|
|
|
|
destroy_empty_wlr_keyboard_group, wlr_group);
|
2019-11-04 06:20:05 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sway_keyboard_group_remove_invalid(struct sway_keyboard *keyboard) {
|
|
|
|
struct sway_input_device *device = keyboard->seat_device->input_device;
|
|
|
|
struct wlr_keyboard *wlr_keyboard = device->wlr_device->keyboard;
|
|
|
|
if (!wlr_keyboard->group) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_seat *seat = keyboard->seat_device->sway_seat;
|
|
|
|
struct seat_config *sc = seat_get_config(seat);
|
|
|
|
if (!sc) {
|
|
|
|
sc = seat_get_config_by_name("*");
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (sc ? sc->keyboard_grouping : KEYBOARD_GROUP_DEFAULT) {
|
|
|
|
case KEYBOARD_GROUP_NONE:
|
|
|
|
sway_keyboard_group_remove(keyboard);
|
|
|
|
break;
|
|
|
|
case KEYBOARD_GROUP_DEFAULT: /* fallthrough */
|
2019-12-15 17:33:33 +11:00
|
|
|
case KEYBOARD_GROUP_SMART:;
|
2019-11-04 06:20:05 +11:00
|
|
|
struct wlr_keyboard_group *group = wlr_keyboard->group;
|
2020-05-09 03:21:15 +10:00
|
|
|
if (!wlr_keyboard_keymaps_match(keyboard->keymap, group->keyboard.keymap) ||
|
2019-12-15 17:33:33 +11:00
|
|
|
!repeat_info_match(keyboard, &group->keyboard)) {
|
2019-11-04 06:20:05 +11:00
|
|
|
sway_keyboard_group_remove(keyboard);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sway_keyboard_group_add(struct sway_keyboard *keyboard) {
|
|
|
|
struct sway_input_device *device = keyboard->seat_device->input_device;
|
|
|
|
struct wlr_keyboard *wlr_keyboard = device->wlr_device->keyboard;
|
|
|
|
struct sway_seat *seat = keyboard->seat_device->sway_seat;
|
|
|
|
struct seat_config *sc = seat_get_config(seat);
|
2020-04-11 07:28:47 +10:00
|
|
|
|
|
|
|
if (device->is_virtual) {
|
|
|
|
// Virtual devices should not be grouped
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
if (!sc) {
|
|
|
|
sc = seat_get_config_by_name("*");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc && sc->keyboard_grouping == KEYBOARD_GROUP_NONE) {
|
|
|
|
// Keyboard grouping is disabled for the seat
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_keyboard_group *group;
|
|
|
|
wl_list_for_each(group, &seat->keyboard_groups, link) {
|
|
|
|
switch (sc ? sc->keyboard_grouping : KEYBOARD_GROUP_DEFAULT) {
|
|
|
|
case KEYBOARD_GROUP_NONE:
|
|
|
|
// Nothing to do. This shouldn't even be reached
|
|
|
|
return;
|
|
|
|
case KEYBOARD_GROUP_DEFAULT: /* fallthrough */
|
2019-12-15 17:33:33 +11:00
|
|
|
case KEYBOARD_GROUP_SMART:;
|
2019-11-04 06:20:05 +11:00
|
|
|
struct wlr_keyboard_group *wlr_group = group->wlr_group;
|
2020-05-09 03:21:15 +10:00
|
|
|
if (wlr_keyboard_keymaps_match(keyboard->keymap,
|
|
|
|
wlr_group->keyboard.keymap) &&
|
2019-12-15 17:33:33 +11:00
|
|
|
repeat_info_match(keyboard, &wlr_group->keyboard)) {
|
2019-11-04 06:20:05 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Adding keyboard %s to group %p",
|
|
|
|
device->identifier, wlr_group);
|
|
|
|
wlr_keyboard_group_add_keyboard(wlr_group, wlr_keyboard);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_keyboard_group *sway_group =
|
|
|
|
calloc(1, sizeof(struct sway_keyboard_group));
|
|
|
|
if (!sway_group) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate sway_keyboard_group");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sway_group->wlr_group = wlr_keyboard_group_create();
|
|
|
|
if (!sway_group->wlr_group) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to create keyboard group");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
sway_group->wlr_group->data = sway_group;
|
|
|
|
wlr_keyboard_set_keymap(&sway_group->wlr_group->keyboard, keyboard->keymap);
|
2019-12-15 17:33:33 +11:00
|
|
|
wlr_keyboard_set_repeat_info(&sway_group->wlr_group->keyboard,
|
|
|
|
keyboard->repeat_rate, keyboard->repeat_delay);
|
2019-11-04 06:20:05 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Created keyboard group %p", sway_group->wlr_group);
|
|
|
|
|
|
|
|
sway_group->seat_device = calloc(1, sizeof(struct sway_seat_device));
|
|
|
|
if (!sway_group->seat_device) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate sway_seat_device for group");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
sway_group->seat_device->sway_seat = seat;
|
|
|
|
|
|
|
|
sway_group->seat_device->input_device =
|
|
|
|
calloc(1, sizeof(struct sway_input_device));
|
|
|
|
if (!sway_group->seat_device->input_device) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate sway_input_device for group");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
sway_group->seat_device->input_device->wlr_device =
|
|
|
|
sway_group->wlr_group->input_device;
|
|
|
|
|
|
|
|
if (!sway_keyboard_create(seat, sway_group->seat_device)) {
|
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate sway_keyboard for group");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
sway_log(SWAY_DEBUG, "Adding keyboard %s to group %p",
|
|
|
|
device->identifier, sway_group->wlr_group);
|
|
|
|
wlr_keyboard_group_add_keyboard(sway_group->wlr_group, wlr_keyboard);
|
|
|
|
|
|
|
|
wl_list_insert(&seat->keyboard_groups, &sway_group->link);
|
|
|
|
|
|
|
|
wl_signal_add(&sway_group->wlr_group->keyboard.events.key,
|
|
|
|
&sway_group->keyboard_key);
|
|
|
|
sway_group->keyboard_key.notify = handle_keyboard_group_key;
|
|
|
|
|
|
|
|
wl_signal_add(&sway_group->wlr_group->keyboard.events.modifiers,
|
|
|
|
&sway_group->keyboard_modifiers);
|
|
|
|
sway_group->keyboard_modifiers.notify = handle_keyboard_group_modifiers;
|
2020-06-14 01:45:50 +10:00
|
|
|
|
|
|
|
wl_signal_add(&sway_group->wlr_group->events.enter, &sway_group->enter);
|
|
|
|
sway_group->enter.notify = handle_keyboard_group_enter;
|
|
|
|
|
|
|
|
wl_signal_add(&sway_group->wlr_group->events.leave, &sway_group->leave);
|
|
|
|
sway_group->leave.notify = handle_keyboard_group_leave;
|
2019-11-04 06:20:05 +11:00
|
|
|
return;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (sway_group && sway_group->wlr_group) {
|
|
|
|
wlr_keyboard_group_destroy(sway_group->wlr_group);
|
|
|
|
}
|
|
|
|
free(sway_group->seat_device->keyboard);
|
|
|
|
free(sway_group->seat_device->input_device);
|
|
|
|
free(sway_group->seat_device);
|
|
|
|
free(sway_group);
|
|
|
|
}
|
|
|
|
|
2019-05-14 13:56:59 +10:00
|
|
|
void sway_keyboard_configure(struct sway_keyboard *keyboard) {
|
|
|
|
struct input_config *input_config =
|
|
|
|
input_device_get_config(keyboard->seat_device->input_device);
|
|
|
|
struct wlr_input_device *wlr_device =
|
|
|
|
keyboard->seat_device->input_device->wlr_device;
|
2017-12-19 21:36:17 +11:00
|
|
|
|
2020-05-19 07:52:13 +10:00
|
|
|
if (!sway_assert(!wlr_keyboard_group_from_wlr_keyboard(wlr_device->keyboard),
|
|
|
|
"sway_keyboard_configure should not be called with a "
|
|
|
|
"keyboard group's keyboard")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:06:28 +10:00
|
|
|
struct xkb_keymap *keymap = sway_keyboard_compile_keymap(input_config, NULL);
|
2017-12-19 21:36:17 +11:00
|
|
|
if (!keymap) {
|
2019-05-14 13:56:59 +10:00
|
|
|
sway_log(SWAY_ERROR, "Failed to compile keymap. Attempting defaults");
|
2019-05-23 17:06:28 +10:00
|
|
|
keymap = sway_keyboard_compile_keymap(NULL, NULL);
|
2019-05-14 13:56:59 +10:00
|
|
|
if (!keymap) {
|
|
|
|
sway_log(SWAY_ERROR,
|
|
|
|
"Failed to compile default keymap. Aborting configure");
|
|
|
|
return;
|
|
|
|
}
|
2017-12-19 21:36:17 +11:00
|
|
|
}
|
|
|
|
|
2020-05-09 03:21:15 +10:00
|
|
|
bool keymap_changed = keyboard->keymap ?
|
|
|
|
!wlr_keyboard_keymaps_match(keyboard->keymap, keymap) : true;
|
2019-07-18 07:12:20 +10:00
|
|
|
bool effective_layout_changed = keyboard->effective_layout != 0;
|
|
|
|
|
2019-12-15 17:33:33 +11:00
|
|
|
int repeat_rate = 25;
|
|
|
|
if (input_config && input_config->repeat_rate != INT_MIN) {
|
|
|
|
repeat_rate = input_config->repeat_rate;
|
|
|
|
}
|
|
|
|
int repeat_delay = 600;
|
|
|
|
if (input_config && input_config->repeat_delay != INT_MIN) {
|
|
|
|
repeat_delay = input_config->repeat_delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool repeat_info_changed = keyboard->repeat_rate != repeat_rate ||
|
|
|
|
keyboard->repeat_delay != repeat_delay;
|
|
|
|
|
|
|
|
if (keymap_changed || repeat_info_changed || config->reloading) {
|
2019-08-02 01:23:08 +10:00
|
|
|
xkb_keymap_unref(keyboard->keymap);
|
|
|
|
keyboard->keymap = keymap;
|
|
|
|
keyboard->effective_layout = 0;
|
2019-12-15 17:33:33 +11:00
|
|
|
keyboard->repeat_rate = repeat_rate;
|
|
|
|
keyboard->repeat_delay = repeat_delay;
|
2019-11-04 06:20:05 +11:00
|
|
|
|
|
|
|
sway_keyboard_group_remove_invalid(keyboard);
|
|
|
|
|
2019-08-02 01:23:08 +10:00
|
|
|
wlr_keyboard_set_keymap(wlr_device->keyboard, keyboard->keymap);
|
2019-12-15 17:33:33 +11:00
|
|
|
wlr_keyboard_set_repeat_info(wlr_device->keyboard,
|
|
|
|
keyboard->repeat_rate, keyboard->repeat_delay);
|
2019-08-02 01:23:08 +10:00
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
if (!wlr_device->keyboard->group) {
|
|
|
|
sway_keyboard_group_add(keyboard);
|
|
|
|
}
|
|
|
|
|
2019-08-02 01:23:08 +10:00
|
|
|
xkb_mod_mask_t locked_mods = 0;
|
|
|
|
if (input_config && input_config->xkb_numlock > 0) {
|
|
|
|
xkb_mod_index_t mod_index = xkb_map_mod_get_index(keymap,
|
|
|
|
XKB_MOD_NAME_NUM);
|
|
|
|
if (mod_index != XKB_MOD_INVALID) {
|
2020-05-09 03:21:15 +10:00
|
|
|
locked_mods |= (uint32_t)1 << mod_index;
|
2019-08-02 01:23:08 +10:00
|
|
|
}
|
2018-07-23 05:16:19 +10:00
|
|
|
}
|
2019-08-02 01:23:08 +10:00
|
|
|
if (input_config && input_config->xkb_capslock > 0) {
|
|
|
|
xkb_mod_index_t mod_index = xkb_map_mod_get_index(keymap,
|
|
|
|
XKB_MOD_NAME_CAPS);
|
|
|
|
if (mod_index != XKB_MOD_INVALID) {
|
2020-05-09 03:21:15 +10:00
|
|
|
locked_mods |= (uint32_t)1 << mod_index;
|
2019-08-02 01:23:08 +10:00
|
|
|
}
|
2018-07-23 05:16:19 +10:00
|
|
|
}
|
2019-08-02 01:23:08 +10:00
|
|
|
if (locked_mods) {
|
|
|
|
wlr_keyboard_notify_modifiers(wlr_device->keyboard, 0, 0,
|
|
|
|
locked_mods, 0);
|
|
|
|
uint32_t leds = 0;
|
|
|
|
for (uint32_t i = 0; i < WLR_LED_COUNT; ++i) {
|
|
|
|
if (xkb_state_led_index_is_active(
|
|
|
|
wlr_device->keyboard->xkb_state,
|
|
|
|
wlr_device->keyboard->led_indexes[i])) {
|
|
|
|
leds |= (1 << i);
|
|
|
|
}
|
2018-07-26 01:09:34 +10:00
|
|
|
}
|
2019-11-04 06:20:05 +11:00
|
|
|
if (wlr_device->keyboard->group) {
|
|
|
|
wlr_keyboard_led_update(
|
|
|
|
&wlr_device->keyboard->group->keyboard, leds);
|
|
|
|
} else {
|
|
|
|
wlr_keyboard_led_update(wlr_device->keyboard, leds);
|
|
|
|
}
|
2018-07-26 01:09:34 +10:00
|
|
|
}
|
2019-08-02 01:23:08 +10:00
|
|
|
} else {
|
|
|
|
xkb_keymap_unref(keymap);
|
2019-11-04 06:20:05 +11:00
|
|
|
sway_keyboard_group_remove_invalid(keyboard);
|
|
|
|
if (!wlr_device->keyboard->group) {
|
|
|
|
sway_keyboard_group_add(keyboard);
|
|
|
|
}
|
2018-07-23 05:16:19 +10:00
|
|
|
}
|
|
|
|
|
2017-12-19 02:44:51 +11:00
|
|
|
struct wlr_seat *seat = keyboard->seat_device->sway_seat->wlr_seat;
|
|
|
|
wlr_seat_set_keyboard(seat, wlr_device);
|
2017-12-11 05:59:04 +11:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
wl_list_remove(&keyboard->keyboard_key.link);
|
2017-12-15 21:57:28 +11:00
|
|
|
wl_signal_add(&wlr_device->keyboard->events.key, &keyboard->keyboard_key);
|
2017-12-11 05:59:04 +11:00
|
|
|
keyboard->keyboard_key.notify = handle_keyboard_key;
|
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
wl_list_remove(&keyboard->keyboard_modifiers.link);
|
2018-10-13 07:14:52 +11:00
|
|
|
wl_signal_add(&wlr_device->keyboard->events.modifiers,
|
2017-12-13 00:29:37 +11:00
|
|
|
&keyboard->keyboard_modifiers);
|
2017-12-11 05:59:04 +11:00
|
|
|
keyboard->keyboard_modifiers.notify = handle_keyboard_modifiers;
|
2019-07-18 07:12:20 +10:00
|
|
|
|
|
|
|
if (keymap_changed) {
|
|
|
|
ipc_event_input("xkb_keymap",
|
|
|
|
keyboard->seat_device->input_device);
|
|
|
|
} else if (effective_layout_changed) {
|
|
|
|
ipc_event_input("xkb_layout",
|
|
|
|
keyboard->seat_device->input_device);
|
|
|
|
}
|
2017-12-11 05:59:04 +11:00
|
|
|
}
|
2017-12-11 07:37:17 +11:00
|
|
|
|
|
|
|
void sway_keyboard_destroy(struct sway_keyboard *keyboard) {
|
2017-12-17 11:16:00 +11:00
|
|
|
if (!keyboard) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-26 13:36:26 +11:00
|
|
|
if (keyboard->seat_device->input_device->wlr_device->keyboard->group) {
|
|
|
|
sway_keyboard_group_remove(keyboard);
|
|
|
|
}
|
2019-11-28 12:57:44 +11:00
|
|
|
struct wlr_seat *wlr_seat = keyboard->seat_device->sway_seat->wlr_seat;
|
|
|
|
struct sway_input_device *device = keyboard->seat_device->input_device;
|
|
|
|
if (wlr_seat_get_keyboard(wlr_seat) == device->wlr_device->keyboard) {
|
|
|
|
wlr_seat_set_keyboard(wlr_seat, NULL);
|
|
|
|
}
|
2018-07-04 16:10:23 +10:00
|
|
|
if (keyboard->keymap) {
|
|
|
|
xkb_keymap_unref(keyboard->keymap);
|
|
|
|
}
|
2017-12-11 07:37:17 +11:00
|
|
|
wl_list_remove(&keyboard->keyboard_key.link);
|
|
|
|
wl_list_remove(&keyboard->keyboard_modifiers.link);
|
2019-01-15 06:06:35 +11:00
|
|
|
sway_keyboard_disarm_key_repeat(keyboard);
|
2018-07-30 06:25:43 +10:00
|
|
|
wl_event_source_remove(keyboard->key_repeat_source);
|
2017-12-11 07:37:17 +11:00
|
|
|
free(keyboard);
|
|
|
|
}
|