mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Refactor rootston keyboard
This commit is contained in:
parent
900d9dc05e
commit
53d4cb47ff
2 changed files with 90 additions and 72 deletions
|
@ -16,7 +16,8 @@ struct roots_keyboard {
|
||||||
struct wl_listener keyboard_key;
|
struct wl_listener keyboard_key;
|
||||||
struct wl_listener keyboard_modifiers;
|
struct wl_listener keyboard_modifiers;
|
||||||
|
|
||||||
xkb_keysym_t pressed_keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
xkb_keysym_t pressed_keysyms_translated[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
||||||
|
xkb_keysym_t pressed_keysyms_raw[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device,
|
struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device,
|
||||||
|
|
|
@ -13,16 +13,35 @@
|
||||||
#include "rootston/seat.h"
|
#include "rootston/seat.h"
|
||||||
#include "rootston/keyboard.h"
|
#include "rootston/keyboard.h"
|
||||||
|
|
||||||
static ssize_t keyboard_pressed_keysym_index(struct roots_keyboard *keyboard,
|
static ssize_t pressed_keysyms_index(xkb_keysym_t *pressed_keysyms,
|
||||||
xkb_keysym_t keysym) {
|
xkb_keysym_t keysym) {
|
||||||
for (size_t i = 0; i < ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP; i++) {
|
for (size_t i = 0; i < ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP; ++i) {
|
||||||
if (keyboard->pressed_keysyms[i] == keysym) {
|
if (pressed_keysyms[i] == keysym) {
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pressed_keysyms_add(xkb_keysym_t *pressed_keysyms,
|
||||||
|
xkb_keysym_t keysym) {
|
||||||
|
ssize_t i = pressed_keysyms_index(pressed_keysyms, keysym);
|
||||||
|
if (i < 0) {
|
||||||
|
i = pressed_keysyms_index(pressed_keysyms, XKB_KEY_NoSymbol);
|
||||||
|
if (i >= 0) {
|
||||||
|
pressed_keysyms[i] = keysym;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void pressed_keysyms_remove(xkb_keysym_t *pressed_keysyms,
|
||||||
|
xkb_keysym_t keysym) {
|
||||||
|
ssize_t i = pressed_keysyms_index(pressed_keysyms, keysym);
|
||||||
|
if (i >= 0) {
|
||||||
|
pressed_keysyms[i] = XKB_KEY_NoSymbol;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static const char *exec_prefix = "exec ";
|
static const char *exec_prefix = "exec ";
|
||||||
|
|
||||||
static void keyboard_binding_execute(struct roots_keyboard *keyboard,
|
static void keyboard_binding_execute(struct roots_keyboard *keyboard,
|
||||||
|
@ -56,21 +75,13 @@ static void keyboard_binding_execute(struct roots_keyboard *keyboard,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process a keypress from the keyboard.
|
* Execute a built-in, hardcoded compositor action when a keysym is pressed.
|
||||||
*
|
*
|
||||||
* Returns true if the keysym was handled by a binding and false if the event
|
* Returns true if the keysym was handled by a binding and false if the event
|
||||||
* should be propagated to clients.
|
* should be propagated to clients.
|
||||||
*/
|
*/
|
||||||
static bool keyboard_keysym_press(struct roots_keyboard *keyboard,
|
static bool keyboard_press_keysym(struct roots_keyboard *keyboard,
|
||||||
xkb_keysym_t keysym) {
|
xkb_keysym_t keysym) {
|
||||||
ssize_t i = keyboard_pressed_keysym_index(keyboard, keysym);
|
|
||||||
if (i < 0) {
|
|
||||||
i = keyboard_pressed_keysym_index(keyboard, XKB_KEY_NoSymbol);
|
|
||||||
if (i >= 0) {
|
|
||||||
keyboard->pressed_keysyms[i] = keysym;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (keysym >= XKB_KEY_XF86Switch_VT_1 &&
|
if (keysym >= XKB_KEY_XF86Switch_VT_1 &&
|
||||||
keysym <= XKB_KEY_XF86Switch_VT_12) {
|
keysym <= XKB_KEY_XF86Switch_VT_12) {
|
||||||
struct roots_server *server = keyboard->input->server;
|
struct roots_server *server = keyboard->input->server;
|
||||||
|
@ -90,7 +101,35 @@ static bool keyboard_keysym_press(struct roots_keyboard *keyboard,
|
||||||
wlr_seat_keyboard_end_grab(keyboard->seat->seat);
|
wlr_seat_keyboard_end_grab(keyboard->seat->seat);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Press or release keysyms.
|
||||||
|
*
|
||||||
|
* Returns true if the keysym was handled by a binding and false if the event
|
||||||
|
* should be propagated to clients.
|
||||||
|
*/
|
||||||
|
static bool keyboard_handle_keysyms(struct roots_keyboard *keyboard,
|
||||||
|
xkb_keysym_t *pressed_keysyms, uint32_t modifiers,
|
||||||
|
const xkb_keysym_t *keysyms, size_t keysyms_len,
|
||||||
|
enum wlr_key_state state) {
|
||||||
|
bool handled = false;
|
||||||
|
for (size_t i = 0; i < keysyms_len; ++i) {
|
||||||
|
if (state == WLR_KEY_PRESSED) {
|
||||||
|
pressed_keysyms_add(pressed_keysyms, keysyms[i]);
|
||||||
|
handled |= keyboard_press_keysym(keyboard, keysyms[i]);
|
||||||
|
} else { // WLR_KEY_RELEASED
|
||||||
|
pressed_keysyms_remove(pressed_keysyms, keysyms[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (handled) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (state != WLR_KEY_PRESSED) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
struct wl_list *bindings = &keyboard->input->server->config->bindings;
|
struct wl_list *bindings = &keyboard->input->server->config->bindings;
|
||||||
struct roots_binding_config *bc;
|
struct roots_binding_config *bc;
|
||||||
wl_list_for_each(bc, bindings, link) {
|
wl_list_for_each(bc, bindings, link) {
|
||||||
|
@ -100,7 +139,7 @@ static bool keyboard_keysym_press(struct roots_keyboard *keyboard,
|
||||||
|
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
for (size_t i = 0; i < bc->keysyms_len; i++) {
|
for (size_t i = 0; i < bc->keysyms_len; i++) {
|
||||||
ssize_t j = keyboard_pressed_keysym_index(keyboard, bc->keysyms[i]);
|
ssize_t j = pressed_keysyms_index(pressed_keysyms, bc->keysyms[i]);
|
||||||
if (j < 0) {
|
if (j < 0) {
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
|
@ -116,86 +155,64 @@ static bool keyboard_keysym_press(struct roots_keyboard *keyboard,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void keyboard_keysym_release(struct roots_keyboard *keyboard,
|
|
||||||
xkb_keysym_t keysym) {
|
|
||||||
ssize_t i = keyboard_pressed_keysym_index(keyboard, keysym);
|
|
||||||
if (i >= 0) {
|
|
||||||
keyboard->pressed_keysyms[i] = XKB_KEY_NoSymbol;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* Process keypresses from the keyboard as xkb sees them.
|
* Get keysyms and modifiers from the keyboard as xkb sees them.
|
||||||
*
|
*
|
||||||
* This uses the xkb keysyms translation based on pressed modifiers and clears
|
* This uses the xkb keysyms translation based on pressed modifiers and clears
|
||||||
* the consumed modifiers from the list of modifiers passed to keybind
|
* the consumed modifiers from the list of modifiers passed to keybind
|
||||||
* detection.
|
* detection.
|
||||||
*
|
*
|
||||||
* (On US layout) this will trigger: [Alt]+[at]
|
* On US layout, this will trigger: Alt + @
|
||||||
*/
|
*/
|
||||||
static bool keyboard_keysyms_xkb(struct roots_keyboard *keyboard,
|
static size_t keyboard_keysyms_translated(struct roots_keyboard *keyboard,
|
||||||
uint32_t keycode, enum wlr_key_state state) {
|
xkb_keycode_t keycode, const xkb_keysym_t **keysyms,
|
||||||
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
uint32_t *modifiers) {
|
||||||
const xkb_keysym_t *syms;
|
*modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
||||||
int syms_len = xkb_state_key_get_syms(keyboard->device->keyboard->xkb_state,
|
xkb_mod_mask_t consumed = xkb_state_key_get_consumed_mods2(
|
||||||
keycode, &syms);
|
|
||||||
uint32_t consumed = xkb_state_key_get_consumed_mods2(
|
|
||||||
keyboard->device->keyboard->xkb_state, keycode, XKB_CONSUMED_MODE_XKB);
|
keyboard->device->keyboard->xkb_state, keycode, XKB_CONSUMED_MODE_XKB);
|
||||||
|
*modifiers = *modifiers & ~consumed;
|
||||||
|
|
||||||
// TODO: actually use this value
|
return xkb_state_key_get_syms(keyboard->device->keyboard->xkb_state,
|
||||||
modifiers = modifiers & ~consumed;
|
keycode, keysyms);
|
||||||
|
|
||||||
bool handled = false;
|
|
||||||
for (int i = 0; i < syms_len; i++) {
|
|
||||||
if (state) {
|
|
||||||
bool keysym_handled =
|
|
||||||
keyboard_keysym_press(keyboard, syms[i]);
|
|
||||||
handled = handled || keysym_handled;
|
|
||||||
} else { // WLR_KEY_RELEASED
|
|
||||||
keyboard_keysym_release(keyboard, syms[i]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return handled;
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* Process keypresses from the keyboard as if modifiers didn't change keysyms.
|
* 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
|
* This avoids the xkb keysym translation based on modifiers considered pressed
|
||||||
* in the state and uses the list of modifiers saved on the rootston side.
|
* in the state.
|
||||||
*
|
*
|
||||||
* This will trigger the keybind: [Alt]+[Shift]+2
|
* This will trigger the keybind: Alt + Shift + 2
|
||||||
*/
|
*/
|
||||||
static bool keyboard_keysyms_simple(struct roots_keyboard *keyboard,
|
static size_t keyboard_keysyms_raw(struct roots_keyboard *keyboard,
|
||||||
uint32_t keycode, enum wlr_key_state state) {
|
xkb_keycode_t keycode, const xkb_keysym_t **keysyms,
|
||||||
const xkb_keysym_t *syms;
|
uint32_t *modifiers) {
|
||||||
|
*modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
||||||
|
|
||||||
xkb_layout_index_t layout_index = xkb_state_key_get_layout(
|
xkb_layout_index_t layout_index = xkb_state_key_get_layout(
|
||||||
keyboard->device->keyboard->xkb_state, keycode);
|
keyboard->device->keyboard->xkb_state, keycode);
|
||||||
int syms_len = xkb_keymap_key_get_syms_by_level(
|
return xkb_keymap_key_get_syms_by_level(keyboard->device->keyboard->keymap,
|
||||||
keyboard->device->keyboard->keymap, keycode, layout_index, 0, &syms);
|
keycode, layout_index, 0, keysyms);
|
||||||
|
|
||||||
bool handled = false;
|
|
||||||
for (int i = 0; i < syms_len; i++) {
|
|
||||||
if (state) {
|
|
||||||
bool keysym_handled = keyboard_keysym_press(keyboard, syms[i]);
|
|
||||||
handled = handled || keysym_handled;
|
|
||||||
} else { // WLR_KEY_RELEASED
|
|
||||||
keyboard_keysym_release(keyboard, syms[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return handled;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void roots_keyboard_handle_key(struct roots_keyboard *keyboard,
|
void roots_keyboard_handle_key(struct roots_keyboard *keyboard,
|
||||||
struct wlr_event_keyboard_key *event) {
|
struct wlr_event_keyboard_key *event) {
|
||||||
uint32_t keycode = event->keycode + 8;
|
xkb_keycode_t keycode = event->keycode + 8;
|
||||||
|
|
||||||
bool handled = keyboard_keysyms_xkb(keyboard, keycode, event->state);
|
uint32_t modifiers;
|
||||||
|
const xkb_keysym_t *keysyms;
|
||||||
if (!handled) {
|
size_t keysyms_len = keyboard_keysyms_translated(keyboard, keycode,
|
||||||
bool key_handled = keyboard_keysyms_simple(keyboard, keycode,
|
&keysyms, &modifiers);
|
||||||
|
bool handled = keyboard_handle_keysyms(keyboard,
|
||||||
|
keyboard->pressed_keysyms_translated, modifiers, keysyms, keysyms_len,
|
||||||
|
event->state);
|
||||||
|
if (!handled) {
|
||||||
|
keysyms_len = keyboard_keysyms_raw(keyboard, keycode, &keysyms,
|
||||||
|
&modifiers);
|
||||||
|
handled = keyboard_handle_keysyms(keyboard,
|
||||||
|
keyboard->pressed_keysyms_raw, modifiers, keysyms, keysyms_len,
|
||||||
event->state);
|
event->state);
|
||||||
handled = handled || key_handled;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!handled) {
|
if (!handled) {
|
||||||
|
|
Loading…
Reference in a new issue