summaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index c7be58b5..05fff6f7 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -87,8 +87,12 @@ struct sway_container *seat_get_focus(struct sway_seat *seat);
87struct sway_container *seat_get_focus_inactive(struct sway_seat *seat, 87struct sway_container *seat_get_focus_inactive(struct sway_seat *seat,
88 struct sway_container *container); 88 struct sway_container *container);
89 89
90struct sway_container *seat_get_focus_by_type(struct sway_seat *seat, 90/**
91 struct sway_container *container, enum sway_container_type type); 91 * Descend into the focus stack to find the focus-inactive view. Useful for
92 * container placement when they change position in the tree.
93 */
94struct sway_container *seat_get_focus_inactive_view(struct sway_seat *seat,
95 struct sway_container *container);
92 96
93void seat_apply_config(struct sway_seat *seat, struct seat_config *seat_config); 97void seat_apply_config(struct sway_seat *seat, struct seat_config *seat_config);
94 98