mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
This fixes an issue where entering unicode-mode in one foot client, also enabled unicode-mode on other foot clients. Both visually (although glitchy), and in effect. The reason the state was originally in the seat objects, was to fully support multi-seat. That is, one seat/keyboard entering unicode-mode should not affect other seats/keyboards. The issue with this is that seat objects are Wayland global. Thus, in server mode, all seat objects are shared between the foot clients. There is a similarity with IME, which also keeps state in the seat. There's one big difference, however, and that is IME has Wayland native enter/leave events, that the compositor emits when windows are focused/unfocused. These events allow us to reset IME state. For our own Unicode mode, there is nothing similar. This patch moves the Unicode state from seats, to the terminal struct. This does mean that if one seat/keyboard enters Unicode mode, then *all* seats/keyboards will affect the unicode state. This potential downside is outweighed by the fact that different foot clients no longer affect each other. Closes #1717
11 lines
342 B
C
11 lines
342 B
C
#pragma once
|
|
|
|
#include <xkbcommon/xkbcommon-keysyms.h>
|
|
|
|
#include "terminal.h"
|
|
|
|
void unicode_mode_activate(struct terminal *term);
|
|
void unicode_mode_deactivate(struct terminal *term);
|
|
void unicode_mode_updated(struct terminal *term);
|
|
void unicode_mode_input(struct seat *seat, struct terminal *term,
|
|
xkb_keysym_t sym);
|