aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-15 21:06:24 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-15 21:06:24 +1000
commit26278b694c5eeff38512cfe8156567718db73c65 (patch)
tree7c7a5226543817d6c723a9b698458934ee905735 /include/sway/input/seat.h
parentMerge pull request #2831 from swaywm/move-output-docs (diff)
downloadsway-26278b694c5eeff38512cfe8156567718db73c65.tar.gz
sway-26278b694c5eeff38512cfe8156567718db73c65.tar.zst
sway-26278b694c5eeff38512cfe8156567718db73c65.zip
Introduce seat_set_raw_focus and remove notify argument from seat_set_focus_warp
This introduces seat_set_raw_focus: a function that manipulates the focus stack without doing any other behaviour whatsoever. There are a few places where this is useful, such as where we set focus_inactive followed by another call to set the real focus again. With this change, the notify argument to seat_set_focus_warp is also removed as these cases now use the raw function instead. A bonus of this is we are no longer emitting window::focus IPC events when setting focus_inactive, nor are we sending focus/unfocus events to the surface. This also fixes the following: * When running `move workspace to output <name>` and moving the last workspace from the source output, the workspace::focus IPC event is no longer emitted for the newly created workspace. * When splitting the currently focused container, unfocus/focus events will not be sent to the surface when giving focus_inactive to the newly created parent, and window::focus events will not be emitted.
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index ebb0cd43..921373d4 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -112,8 +112,16 @@ void seat_set_focus_container(struct sway_seat *seat,
112void seat_set_focus_workspace(struct sway_seat *seat, 112void seat_set_focus_workspace(struct sway_seat *seat,
113 struct sway_workspace *ws); 113 struct sway_workspace *ws);
114 114
115/**
116 * Manipulate the focus stack without triggering any other behaviour.
117 *
118 * This can be used to set focus_inactive by calling the function a second time
119 * with the real focus.
120 */
121void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node);
122
115void seat_set_focus_warp(struct sway_seat *seat, 123void seat_set_focus_warp(struct sway_seat *seat,
116 struct sway_node *node, bool warp, bool notify); 124 struct sway_node *node, bool warp);
117 125
118void seat_set_focus_surface(struct sway_seat *seat, 126void seat_set_focus_surface(struct sway_seat *seat,
119 struct wlr_surface *surface, bool unfocus); 127 struct wlr_surface *surface, bool unfocus);