diff options
| author | Tony Crisci <tony@dubstepdish.com> | 2018-04-04 22:36:09 -0400 | 
|---|---|---|
| committer | Tony Crisci <tony@dubstepdish.com> | 2018-04-04 22:36:09 -0400 | 
| commit | 65f254f3fbc83d006d4ec29170ec8a8695345d6c (patch) | |
| tree | 3044fb62120ca23499d31275076af50db09a9850 /include/sway/input/seat.h | |
| parent | deda37469ad4e21ad86b7c83c7c8a966301b9d5e (diff) | |
| parent | 21aedf15052df4e7f8ee72922fa0e214d690facc (diff) | |
| download | sway-65f254f3fbc83d006d4ec29170ec8a8695345d6c.tar.xz | |
Merge branch 'wlroots' into fix-focus-inactive
Diffstat (limited to 'include/sway/input/seat.h')
| -rw-r--r-- | include/sway/input/seat.h | 8 | 
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 {  	// If the focused layer is set, views cannot receive keyboard focus  	struct wlr_layer_surface *focused_layer; +	// If exclusive_client is set, no other clients will receive input events +	struct wl_client *exclusive_client; +  	struct wl_listener focus_destroy;  	struct wl_listener new_container; @@ -64,6 +67,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);  /** @@ -85,4 +91,6 @@ void seat_apply_config(struct sway_seat *seat, struct seat_config *seat_config);  struct seat_config *seat_get_config(struct sway_seat *seat); +bool seat_is_input_allowed(struct sway_seat *seat, struct wlr_surface *surface); +  #endif | 
