aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-04-04 20:16:35 -0400
committerLibravatar GitHub <noreply@github.com>2018-04-04 20:16:35 -0400
commitf2153f3f28c8aa2e6738610abf09b2e2396d891a (patch)
tree4702abb406a59fb8588cbd2019741e99d40bcbfe /include/sway/input/seat.h
parentMerge pull request #1731 from acrisci/ipc-window-events (diff)
parentAddress review feedback from @emersion (diff)
downloadsway-f2153f3f28c8aa2e6738610abf09b2e2396d891a.tar.gz
sway-f2153f3f28c8aa2e6738610abf09b2e2396d891a.tar.zst
sway-f2153f3f28c8aa2e6738610abf09b2e2396d891a.zip
Merge pull request #1705 from swaywm/swaylock-layers
Port swaylock to layer shell
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 137fcd22..d1cfbe4c 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -32,6 +32,9 @@ struct sway_seat {
32 // If the focused layer is set, views cannot receive keyboard focus 32 // If the focused layer is set, views cannot receive keyboard focus
33 struct wlr_layer_surface *focused_layer; 33 struct wlr_layer_surface *focused_layer;
34 34
35 // If exclusive_client is set, no other clients will receive input events
36 struct wl_client *exclusive_client;
37
35 struct wl_listener focus_destroy; 38 struct wl_listener focus_destroy;
36 struct wl_listener new_container; 39 struct wl_listener new_container;
37 40
@@ -64,6 +67,9 @@ void seat_set_focus_warp(struct sway_seat *seat,
64void seat_set_focus_layer(struct sway_seat *seat, 67void seat_set_focus_layer(struct sway_seat *seat,
65 struct wlr_layer_surface *layer); 68 struct wlr_layer_surface *layer);
66 69
70void seat_set_exclusive_client(struct sway_seat *seat,
71 struct wl_client *client);
72
67struct sway_container *seat_get_focus(struct sway_seat *seat); 73struct sway_container *seat_get_focus(struct sway_seat *seat);
68 74
69/** 75/**
@@ -85,4 +91,6 @@ void seat_apply_config(struct sway_seat *seat, struct seat_config *seat_config);
85 91
86struct seat_config *seat_get_config(struct sway_seat *seat); 92struct seat_config *seat_get_config(struct sway_seat *seat);
87 93
94bool seat_is_input_allowed(struct sway_seat *seat, struct wlr_surface *surface);
95
88#endif 96#endif