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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index be95567e..b3b98e8d 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -52,6 +52,7 @@ struct sway_seat {
52 bool has_focus; 52 bool has_focus;
53 struct wl_list focus_stack; // list of containers in focus order 53 struct wl_list focus_stack; // list of containers in focus order
54 struct sway_workspace *workspace; 54 struct sway_workspace *workspace;
55 struct sway_node *prev_focus;
55 56
56 // If the focused layer is set, views cannot receive keyboard focus 57 // If the focused layer is set, views cannot receive keyboard focus
57 struct wlr_layer_surface_v1 *focused_layer; 58 struct wlr_layer_surface_v1 *focused_layer;
@@ -121,9 +122,6 @@ void seat_set_focus_workspace(struct sway_seat *seat,
121 */ 122 */
122void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node); 123void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node);
123 124
124void seat_set_focus_warp(struct sway_seat *seat,
125 struct sway_node *node, bool warp);
126
127void seat_set_focus_surface(struct sway_seat *seat, 125void seat_set_focus_surface(struct sway_seat *seat,
128 struct wlr_surface *surface, bool unfocus); 126 struct wlr_surface *surface, bool unfocus);
129 127