aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:41:33 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:41:33 -0400
commitdc8c9fbeb664518c76066cc28ee29452c6c30128 (patch)
tree88c2de0d08e00b2a30cb20cdfadfa6e53f5c59b4 /include/sway/input/seat.h
parentMerge pull request #1653 from swaywm/revert-1647-refactor-tree (diff)
downloadsway-dc8c9fbeb664518c76066cc28ee29452c6c30128.tar.gz
sway-dc8c9fbeb664518c76066cc28ee29452c6c30128.tar.zst
sway-dc8c9fbeb664518c76066cc28ee29452c6c30128.zip
Revert "Merge pull request #1653 from swaywm/revert-1647-refactor-tree"
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 1d55bec7..496bfd5d 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -14,7 +14,7 @@ struct sway_seat_device {
14 14
15struct sway_seat_container { 15struct sway_seat_container {
16 struct sway_seat *seat; 16 struct sway_seat *seat;
17 swayc_t *container; 17 struct sway_container *container;
18 18
19 struct wl_list link; // sway_seat::focus_stack 19 struct wl_list link; // sway_seat::focus_stack
20 20
@@ -54,9 +54,9 @@ void sway_seat_remove_device(struct sway_seat *seat,
54 54
55void sway_seat_configure_xcursor(struct sway_seat *seat); 55void 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, struct sway_container *container);
58 58
59swayc_t *sway_seat_get_focus(struct sway_seat *seat); 59struct sway_container *sway_seat_get_focus(struct sway_seat *seat);
60 60
61/** 61/**
62 * Return the last container to be focused for the seat (or the most recently 62 * Return the last container to be focused for the seat (or the most recently
@@ -67,10 +67,11 @@ swayc_t *sway_seat_get_focus(struct sway_seat *seat);
67 * is destroyed, or focus moves to a container with children and we need to 67 * is destroyed, or focus moves to a container with children and we need to
68 * descend into the next leaf in focus order. 68 * descend into the next leaf in focus order.
69 */ 69 */
70swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container); 70struct sway_container *sway_seat_get_focus_inactive(struct sway_seat *seat,
71 struct sway_container *container);
71 72
72swayc_t *sway_seat_get_focus_by_type(struct sway_seat *seat, 73struct sway_container *sway_seat_get_focus_by_type(struct sway_seat *seat,
73 enum swayc_types type); 74 enum sway_container_type type);
74 75
75void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config); 76void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config);
76 77