aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-07 18:17:57 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-07 18:17:57 -0500
commita7d49da23956c245f0e6b8f7dc9cb532eb14c4b9 (patch)
tree83f3d132a16e69deb4dbbdb8b4f8d1cda5964c27 /include/sway/input/seat.h
parentmake index_child static (diff)
downloadsway-a7d49da23956c245f0e6b8f7dc9cb532eb14c4b9.tar.gz
sway-a7d49da23956c245f0e6b8f7dc9cb532eb14c4b9.tar.zst
sway-a7d49da23956c245f0e6b8f7dc9cb532eb14c4b9.zip
separate seat get focus and seat get focus inactive
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 8d5d6b75..26a7e5dc 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -56,7 +56,9 @@ void sway_seat_configure_xcursor(struct sway_seat *seat);
56 56
57void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container); 57void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container);
58 58
59swayc_t *sway_seat_get_focus(struct sway_seat *seat, swayc_t *container); 59swayc_t *sway_seat_get_focus(struct sway_seat *seat);
60
61swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container);
60 62
61void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config); 63void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config);
62 64