ime: wip: add text-input object to seat

This commit is contained in:
Daniel Eklöf 2020-10-10 22:14:35 +02:00
parent d58d0601f6
commit 148bb1ff13
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 147 additions and 0 deletions

View file

@ -220,6 +220,11 @@ struct seat {
struct wl_clipboard clipboard;
struct wl_primary primary;
/* Input Method Editor */
struct zwp_text_input_v3 *wl_text_input;
//struct {
//} ime;
};
enum csd_surface {
@ -374,6 +379,8 @@ struct wayland {
struct wp_presentation *presentation;
uint32_t presentation_clock_id;
struct zwp_text_input_manager_v3 *text_input_manager;
bool have_argb8888;
tll(struct monitor) monitors; /* All available outputs */
tll(struct seat) seats;