aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-20 19:01:02 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-20 19:01:02 -0500
commit66a975038c2f6cc3d2ebb5210d182b0440bc0a88 (patch)
treeb620c323c402595de66e47989666cf3a46edd1ab /include/sway/input/seat.h
parentbugfix: get right layout box for rendering views (diff)
downloadsway-66a975038c2f6cc3d2ebb5210d182b0440bc0a88.tar.gz
sway-66a975038c2f6cc3d2ebb5210d182b0440bc0a88.tar.zst
sway-66a975038c2f6cc3d2ebb5210d182b0440bc0a88.zip
add doc to sway_seat_get_focus_inactive()
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index f9244f43..1d55bec7 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -58,6 +58,15 @@ void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container);
58 58
59swayc_t *sway_seat_get_focus(struct sway_seat *seat); 59swayc_t *sway_seat_get_focus(struct sway_seat *seat);
60 60
61/**
62 * Return the last container to be focused for the seat (or the most recently
63 * opened if no container has received focused) that is a child of the given
64 * container. The focus-inactive container of the root window is the focused
65 * container for the seat (if the seat does have focus). This function can be
66 * used to determine what container gets focused next if the focused container
67 * is destroyed, or focus moves to a container with children and we need to
68 * descend into the next leaf in focus order.
69 */
61swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container); 70swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container);
62 71
63swayc_t *sway_seat_get_focus_by_type(struct sway_seat *seat, 72swayc_t *sway_seat_get_focus_by_type(struct sway_seat *seat,