aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-03-29 23:29:29 -0400
committerLibravatar GitHub <noreply@github.com>2018-03-29 23:29:29 -0400
commitd0c7f66e950689b70196a890b62b82ff3c66e103 (patch)
treeb8b52173a9791e3b13a0316ab9d316a80a6adc20 /include/sway/input
parentMerge pull request #1647 from acrisci/refactor-tree (diff)
downloadsway-d0c7f66e950689b70196a890b62b82ff3c66e103.tar.gz
sway-d0c7f66e950689b70196a890b62b82ff3c66e103.tar.zst
sway-d0c7f66e950689b70196a890b62b82ff3c66e103.zip
Revert "Refactor tree"
Diffstat (limited to 'include/sway/input')
-rw-r--r--include/sway/input/input-manager.h4
-rw-r--r--include/sway/input/seat.h13
2 files changed, 8 insertions, 9 deletions
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h
index c6c73dba..eab7dc90 100644
--- a/include/sway/input/input-manager.h
+++ b/include/sway/input/input-manager.h
@@ -31,10 +31,10 @@ struct sway_input_manager *sway_input_manager_create(
31 struct sway_server *server); 31 struct sway_server *server);
32 32
33bool sway_input_manager_has_focus(struct sway_input_manager *input, 33bool sway_input_manager_has_focus(struct sway_input_manager *input,
34 struct sway_container *container); 34 swayc_t *container);
35 35
36void sway_input_manager_set_focus(struct sway_input_manager *input, 36void sway_input_manager_set_focus(struct sway_input_manager *input,
37 struct sway_container *container); 37 swayc_t *container);
38 38
39void sway_input_manager_configure_xcursor(struct sway_input_manager *input); 39void sway_input_manager_configure_xcursor(struct sway_input_manager *input);
40 40
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 496bfd5d..1d55bec7 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 struct sway_container *container; 17 swayc_t *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, struct sway_container *container); 57void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container);
58 58
59struct sway_container *sway_seat_get_focus(struct sway_seat *seat); 59swayc_t *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,11 +67,10 @@ struct sway_container *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 */
70struct sway_container *sway_seat_get_focus_inactive(struct sway_seat *seat, 70swayc_t *sway_seat_get_focus_inactive(struct sway_seat *seat, swayc_t *container);
71 struct sway_container *container);
72 71
73struct sway_container *sway_seat_get_focus_by_type(struct sway_seat *seat, 72swayc_t *sway_seat_get_focus_by_type(struct sway_seat *seat,
74 enum sway_container_type type); 73 enum swayc_types type);
75 74
76void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config); 75void sway_seat_set_config(struct sway_seat *seat, struct seat_config *seat_config);
77 76