mirror of
https://github.com/tiyn/dwl.git
synced 2026-01-11 17:39:45 +01:00
Compare commits
3 Commits
attachtop
...
en-keycode
| Author | SHA1 | Date | |
|---|---|---|---|
| ac3dbb1bba | |||
| 217ef375c9 | |||
| 5e17486ea9 |
@@ -1,36 +0,0 @@
|
|||||||
From 42a66d6e06c38e913766ce625f049fdbc3dd0d12 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nikita Ivanov <nikita.vyach.ivanov@gmail.com>
|
|
||||||
Date: Sun, 7 Apr 2024 21:10:17 +0200
|
|
||||||
Subject: [PATCH] New client are attached on top of the stack
|
|
||||||
|
|
||||||
---
|
|
||||||
dwl.c | 13 ++++++++++++-
|
|
||||||
1 file changed, 12 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/dwl.c b/dwl.c
|
|
||||||
index bf763df..c0a3d74 100644
|
|
||||||
--- a/dwl.c
|
|
||||||
+++ b/dwl.c
|
|
||||||
@@ -1605,7 +1605,18 @@ mapnotify(struct wl_listener *listener, void *data)
|
|
||||||
c->geom.height += 2 * c->bw;
|
|
||||||
|
|
||||||
/* Insert this client into client lists. */
|
|
||||||
- wl_list_insert(&clients, &c->link);
|
|
||||||
+ i = 0;
|
|
||||||
+ wl_list_for_each(w, &clients, link) {
|
|
||||||
+ if (!VISIBLEON(w, selmon) || c->isfloating)
|
|
||||||
+ continue;
|
|
||||||
+ p = w;
|
|
||||||
+ if (++i >= selmon->nmaster)
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ if (i > 0)
|
|
||||||
+ wl_list_insert(&p->link, &c->link);
|
|
||||||
+ else
|
|
||||||
+ wl_list_insert(&clients, &c->link);
|
|
||||||
wl_list_insert(&fstack, &c->flink);
|
|
||||||
|
|
||||||
/* Set initial monitor, tags, floating status, and focus:
|
|
||||||
--
|
|
||||||
2.44.0
|
|
||||||
|
|
||||||
36
dwl.c
36
dwl.c
@@ -436,6 +436,11 @@ static struct wl_listener request_start_drag = {.notify = requeststartdrag};
|
|||||||
static struct wl_listener start_drag = {.notify = startdrag};
|
static struct wl_listener start_drag = {.notify = startdrag};
|
||||||
static struct wl_listener new_session_lock = {.notify = locksession};
|
static struct wl_listener new_session_lock = {.notify = locksession};
|
||||||
|
|
||||||
|
static const struct xkb_rule_names en_rules = {.layout = "de"};
|
||||||
|
static struct xkb_context *en_context;
|
||||||
|
static struct xkb_keymap *en_keymap;
|
||||||
|
static struct xkb_state *en_state;
|
||||||
|
|
||||||
#ifdef XWAYLAND
|
#ifdef XWAYLAND
|
||||||
static void activatex11(struct wl_listener *listener, void *data);
|
static void activatex11(struct wl_listener *listener, void *data);
|
||||||
static void associatex11(struct wl_listener *listener, void *data);
|
static void associatex11(struct wl_listener *listener, void *data);
|
||||||
@@ -717,6 +722,9 @@ cleanup(void)
|
|||||||
wlr_backend_destroy(backend);
|
wlr_backend_destroy(backend);
|
||||||
|
|
||||||
wl_display_destroy(dpy);
|
wl_display_destroy(dpy);
|
||||||
|
xkb_state_unref(en_state);
|
||||||
|
xkb_keymap_unref(en_keymap);
|
||||||
|
xkb_context_unref(en_context);
|
||||||
/* Destroy after the wayland display (when the monitors are already destroyed)
|
/* Destroy after the wayland display (when the monitors are already destroyed)
|
||||||
to avoid destroying them with an invalid scene output. */
|
to avoid destroying them with an invalid scene output. */
|
||||||
wlr_scene_node_destroy(&scene->tree.node);
|
wlr_scene_node_destroy(&scene->tree.node);
|
||||||
@@ -1628,16 +1636,19 @@ keypress(struct wl_listener *listener, void *data)
|
|||||||
/* This event is raised when a key is pressed or released. */
|
/* This event is raised when a key is pressed or released. */
|
||||||
KeyboardGroup *group = wl_container_of(listener, group, key);
|
KeyboardGroup *group = wl_container_of(listener, group, key);
|
||||||
struct wlr_keyboard_key_event *event = data;
|
struct wlr_keyboard_key_event *event = data;
|
||||||
|
int nsyms, handled;
|
||||||
|
|
||||||
/* Translate libinput keycode -> xkbcommon */
|
/* Translate libinput keycode -> xkbcommon */
|
||||||
uint32_t keycode = event->keycode + 8;
|
uint32_t keycode = event->keycode + 8;
|
||||||
/* Get a list of keysyms based on the keymap for this keyboard */
|
/* Get a list of keysyms based on the keymap for this keyboard */
|
||||||
const xkb_keysym_t *syms;
|
const xkb_keysym_t *syms;
|
||||||
int nsyms = xkb_state_key_get_syms(
|
|
||||||
group->wlr_group->keyboard.xkb_state, keycode, &syms);
|
|
||||||
|
|
||||||
int handled = 0;
|
|
||||||
uint32_t mods = wlr_keyboard_get_modifiers(&group->wlr_group->keyboard);
|
uint32_t mods = wlr_keyboard_get_modifiers(&group->wlr_group->keyboard);
|
||||||
|
xkb_state_update_key(en_state, keycode,
|
||||||
|
(event->state == WL_KEYBOARD_KEY_STATE_PRESSED)
|
||||||
|
? XKB_KEY_DOWN : XKB_KEY_UP);
|
||||||
|
nsyms = xkb_state_key_get_syms(en_state, keycode, &syms);
|
||||||
|
|
||||||
|
handled = 0;
|
||||||
|
|
||||||
wlr_idle_notifier_v1_notify_activity(idle_notifier, seat);
|
wlr_idle_notifier_v1_notify_activity(idle_notifier, seat);
|
||||||
|
|
||||||
@@ -1775,18 +1786,7 @@ mapnotify(struct wl_listener *listener, void *data)
|
|||||||
c->geom.height += 2 * c->bw;
|
c->geom.height += 2 * c->bw;
|
||||||
|
|
||||||
/* Insert this client into client lists. */
|
/* Insert this client into client lists. */
|
||||||
i = 0;
|
wl_list_insert(&clients, &c->link);
|
||||||
wl_list_for_each(w, &clients, link) {
|
|
||||||
if (!VISIBLEON(w, selmon) || c->isfloating)
|
|
||||||
continue;
|
|
||||||
p = w;
|
|
||||||
if (++i >= selmon->nmaster)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (i > 0)
|
|
||||||
wl_list_insert(&p->link, &c->link);
|
|
||||||
else
|
|
||||||
wl_list_insert(&clients, &c->link);
|
|
||||||
wl_list_insert(&fstack, &c->flink);
|
wl_list_insert(&fstack, &c->flink);
|
||||||
|
|
||||||
/* Set initial monitor, tags, floating status, and focus:
|
/* Set initial monitor, tags, floating status, and focus:
|
||||||
@@ -2630,6 +2630,10 @@ setup(void)
|
|||||||
* pointer, touch, and drawing tablet device. We also rig up a listener to
|
* pointer, touch, and drawing tablet device. We also rig up a listener to
|
||||||
* let us know when new input devices are available on the backend.
|
* let us know when new input devices are available on the backend.
|
||||||
*/
|
*/
|
||||||
|
en_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||||
|
en_keymap = xkb_keymap_new_from_names(en_context, &en_rules,
|
||||||
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||||
|
en_state = xkb_state_new(en_keymap);
|
||||||
wl_signal_add(&backend->events.new_input, &new_input_device);
|
wl_signal_add(&backend->events.new_input, &new_input_device);
|
||||||
virtual_keyboard_mgr = wlr_virtual_keyboard_manager_v1_create(dpy);
|
virtual_keyboard_mgr = wlr_virtual_keyboard_manager_v1_create(dpy);
|
||||||
wl_signal_add(&virtual_keyboard_mgr->events.new_virtual_keyboard,
|
wl_signal_add(&virtual_keyboard_mgr->events.new_virtual_keyboard,
|
||||||
|
|||||||
73
en-keycodes.patch
Normal file
73
en-keycodes.patch
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
From cd61fac9cb6e9d0172e2f7a01e6a514d676ba5f0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Nikita Ivanov <nikita.vyach.ivanov@gmail.com>
|
||||||
|
Date: Tue, 4 Feb 2025 23:53:11 +0100
|
||||||
|
Subject: [PATCH] Always use the English keymap to get keycodes
|
||||||
|
|
||||||
|
---
|
||||||
|
dwl.c | 23 +++++++++++++++++++----
|
||||||
|
1 file changed, 19 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/dwl.c b/dwl.c
|
||||||
|
index def2562..c299365 100644
|
||||||
|
--- a/dwl.c
|
||||||
|
+++ b/dwl.c
|
||||||
|
@@ -413,6 +413,11 @@ static struct wlr_box sgeom;
|
||||||
|
static struct wl_list mons;
|
||||||
|
static Monitor *selmon;
|
||||||
|
|
||||||
|
+static const struct xkb_rule_names en_rules = {.layout = "us"};
|
||||||
|
+static struct xkb_context *en_context;
|
||||||
|
+static struct xkb_keymap *en_keymap;
|
||||||
|
+static struct xkb_state *en_state;
|
||||||
|
+
|
||||||
|
#ifdef XWAYLAND
|
||||||
|
static void activatex11(struct wl_listener *listener, void *data);
|
||||||
|
static void associatex11(struct wl_listener *listener, void *data);
|
||||||
|
@@ -694,6 +699,9 @@ cleanup(void)
|
||||||
|
wlr_backend_destroy(backend);
|
||||||
|
|
||||||
|
wl_display_destroy(dpy);
|
||||||
|
+ xkb_state_unref(en_state);
|
||||||
|
+ xkb_keymap_unref(en_keymap);
|
||||||
|
+ xkb_context_unref(en_context);
|
||||||
|
/* Destroy after the wayland display (when the monitors are already destroyed)
|
||||||
|
to avoid destroying them with an invalid scene output. */
|
||||||
|
wlr_scene_node_destroy(&scene->tree.node);
|
||||||
|
@@ -1582,16 +1590,19 @@ keypress(struct wl_listener *listener, void *data)
|
||||||
|
/* This event is raised when a key is pressed or released. */
|
||||||
|
KeyboardGroup *group = wl_container_of(listener, group, key);
|
||||||
|
struct wlr_keyboard_key_event *event = data;
|
||||||
|
+ int nsyms, handled;
|
||||||
|
|
||||||
|
/* Translate libinput keycode -> xkbcommon */
|
||||||
|
uint32_t keycode = event->keycode + 8;
|
||||||
|
/* Get a list of keysyms based on the keymap for this keyboard */
|
||||||
|
const xkb_keysym_t *syms;
|
||||||
|
- int nsyms = xkb_state_key_get_syms(
|
||||||
|
- group->wlr_group->keyboard.xkb_state, keycode, &syms);
|
||||||
|
-
|
||||||
|
- int handled = 0;
|
||||||
|
uint32_t mods = wlr_keyboard_get_modifiers(&group->wlr_group->keyboard);
|
||||||
|
+ xkb_state_update_key(en_state, keycode,
|
||||||
|
+ (event->state == WL_KEYBOARD_KEY_STATE_PRESSED)
|
||||||
|
+ ? XKB_KEY_DOWN : XKB_KEY_UP);
|
||||||
|
+ nsyms = xkb_state_key_get_syms(en_state, keycode, &syms);
|
||||||
|
+
|
||||||
|
+ handled = 0;
|
||||||
|
|
||||||
|
wlr_idle_notifier_v1_notify_activity(idle_notifier, seat);
|
||||||
|
|
||||||
|
@@ -2607,6 +2618,10 @@ setup(void)
|
||||||
|
* pointer, touch, and drawing tablet device. We also rig up a listener to
|
||||||
|
* let us know when new input devices are available on the backend.
|
||||||
|
*/
|
||||||
|
+ en_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||||
|
+ en_keymap = xkb_keymap_new_from_names(en_context, &en_rules,
|
||||||
|
+ XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||||
|
+ en_state = xkb_state_new(en_keymap);
|
||||||
|
LISTEN_STATIC(&backend->events.new_input, inputdevice);
|
||||||
|
virtual_keyboard_mgr = wlr_virtual_keyboard_manager_v1_create(dpy);
|
||||||
|
LISTEN_STATIC(&virtual_keyboard_mgr->events.new_virtual_keyboard, virtualkeyboard);
|
||||||
|
--
|
||||||
|
2.48.1
|
||||||
|
|
||||||
Reference in New Issue
Block a user