diff --git a/protocol/wayland.xml b/protocol/wayland.xml index 3979d97c..eb098494 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -872,6 +872,19 @@ + + + + Notifies clients that the modifier and/or group state has + changed, and it should update its local state. + + + + + + + + diff --git a/src/wayland-server.c b/src/wayland-server.c index d4a70cfa..323d32da 100644 --- a/src/wayland-server.c +++ b/src/wayland-server.c @@ -532,9 +532,26 @@ default_grab_key(struct wl_keyboard_grab *grab, } } +static void +default_grab_modifiers(struct wl_keyboard_grab *grab, uint32_t serial, + uint32_t mods_depressed, uint32_t mods_latched, + uint32_t mods_locked, uint32_t group) +{ + struct wl_keyboard *keyboard = grab->keyboard; + struct wl_resource *resource; + + resource = keyboard->focus_resource; + if (!resource) + return; + + wl_keyboard_send_modifiers(resource, serial, mods_depressed, + mods_latched, mods_locked, group); +} + static const struct wl_keyboard_grab_interface default_keyboard_grab_interface = { - default_grab_key + default_grab_key, + default_grab_modifiers, }; WL_EXPORT void diff --git a/src/wayland-server.h b/src/wayland-server.h index b1962eaa..266b4579 100644 --- a/src/wayland-server.h +++ b/src/wayland-server.h @@ -210,6 +210,9 @@ struct wl_keyboard_grab; struct wl_keyboard_grab_interface { void (*key)(struct wl_keyboard_grab *grab, uint32_t time, uint32_t key, uint32_t state); + void (*modifiers)(struct wl_keyboard_grab *grab, uint32_t serial, + uint32_t mods_depressed, uint32_t mods_latched, + uint32_t mods_locked, uint32_t group); }; struct wl_keyboard_grab {