diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-03 16:16:42 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-03 16:16:42 -0400 |
| commit | 4d2940bf41c0f05fae749043cb1dd68f8d67d0a4 (patch) | |
| tree | c1890f3554621ad8f1d44a054e88f72f065644ee /include | |
| parent | e4b25dca8fc0be8387deb997257cf77f0d5addea (diff) | |
Add input inhibitor to input manager
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/input/input-manager.h | 5 | ||||
| -rw-r--r-- | include/sway/input/seat.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h index 8e39a4a7..89a3ac71 100644 --- a/include/sway/input/input-manager.h +++ b/include/sway/input/input-manager.h @@ -1,6 +1,7 @@ #ifndef _SWAY_INPUT_INPUT_MANAGER_H #define _SWAY_INPUT_INPUT_MANAGER_H #include <libinput.h> +#include <wlr/types/wlr_input_inhibitor.h> #include "sway/server.h" #include "sway/config.h" #include "list.h" @@ -23,7 +24,11 @@ struct sway_input_manager { struct wl_list devices; struct wl_list seats; + struct wlr_input_inhibit_manager *inhibit; + struct wl_listener new_input; + struct wl_listener inhibit_activate; + struct wl_listener inhibit_deactivate; }; struct sway_input_manager *input_manager_create(struct sway_server *server); diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h index 137fcd22..53031d70 100644 --- a/include/sway/input/seat.h +++ b/include/sway/input/seat.h @@ -64,6 +64,9 @@ void seat_set_focus_warp(struct sway_seat *seat, void seat_set_focus_layer(struct sway_seat *seat, struct wlr_layer_surface *layer); +void seat_set_exclusive_client(struct sway_seat *seat, + struct wl_client *client); + struct sway_container *seat_get_focus(struct sway_seat *seat); /** |
