summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2019-03-16 17:47:39 +1000
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-03-17 10:02:04 -0600
commit7b9ae42331e49fea0f566fa7592855dee5da1991 (patch)
treeba03e7826af566f871580cd2a1ec344013cebd4f /include
parentReplace seatup allows_events with button callback (diff)
downloadsway-7b9ae42331e49fea0f566fa7592855dee5da1991.tar.gz
sway-7b9ae42331e49fea0f566fa7592855dee5da1991.tar.zst
sway-7b9ae42331e49fea0f566fa7592855dee5da1991.zip
Introduce default seatop
This introduces a `default` seat operation which is used when no mouse buttons are being held. This means there is now always a seat operation in progress. It allows us to separate `default` code from the standard cursor management code. The sway_seatop_impl struct has gained callbacks `axis`, `rebase` and `end`, and lost callbacks `finish` and `abort`. `axis` and `rebase` are only used by the default seatop. `end` is called when a seatop is being replaced by another one and allows the seatop to free any resources, though no seatop currently needs to do this. `finish` is no longer required, as each seatop can gracefully finish in their `button` callback. And `abort` is not needed, as calling `end` would achieve the same thing. The struct has also gained a bool named allow_set_cursor which allows the client to set a new cursor during `default` and `down` seatops. Seatops would previously store which button they were started with and stop when that button was released. This behaviour is changed so that it only ends once all buttons are released. So you can start a drag with $mod+left, then click and hold right, release left and it'll continue dragging while the right button is held. The motion callback now accepts dx and dy. Most seatops don't use this as they store the cursor position when the seatop is started and compare it with the current cursor position. This approach doesn't make sense for the default seatop though, hence why dx and dy are needed. The pressed_buttons array has been moved from the sway_cursor struct to the default seatop's data. This is only used for the default seatop to check bindings. The total pressed button count remains in the sway_cursor struct though, because all the other seatops check it to know if they should end. The `down` seatop no longer has a `moved` property. This was used to track if the cursor moved and to recheck focus_follows_mouse, but seems to work without it. The logic for focus_follows_mouse has been refactored. As part of this I've removed the call to wlr_seat_keyboard_has_grab as we don't appear to use keyboard grabs. The functions for handling relative motion, absolute motion and tool axis have been changed. Previously the handler functions were handle_cursor_motion, handle_cursor_motion_absolute and handle_tool_axis. The latter two both called cursor_motion_absolute. Both handle_cursor_motion and cursor_motion_absolute did very similar things. These are now simplified into three handlers and a single common function called cursor_motion. All three handlers call cursor_motion. As cursor_motion works with relative distances, the absolute and tool axis handlers convert them to relative first.
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/cursor.h9
-rw-r--r--include/sway/input/seat.h44
2 files changed, 25 insertions, 28 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index 98eb4679..516718c9 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -52,8 +52,6 @@ struct sway_cursor {
52 struct wl_event_source *hide_source; 52 struct wl_event_source *hide_source;
53 bool hidden; 53 bool hidden;
54 54
55 // Mouse binding state
56 uint32_t pressed_buttons[SWAY_CURSOR_PRESSED_BUTTONS_CAP];
57 size_t pressed_button_count; 55 size_t pressed_button_count;
58}; 56};
59 57
@@ -78,13 +76,6 @@ void cursor_handle_activity(struct sway_cursor *cursor);
78void cursor_unhide(struct sway_cursor *cursor); 76void cursor_unhide(struct sway_cursor *cursor);
79int cursor_get_timeout(struct sway_cursor *cursor); 77int cursor_get_timeout(struct sway_cursor *cursor);
80 78
81/**
82 * Like cursor_rebase, but also allows focus to change when the cursor enters a
83 * new container.
84 */
85void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
86 struct sway_node *node, struct wlr_surface *surface, double sx, double sy);
87
88void dispatch_cursor_button(struct sway_cursor *cursor, 79void dispatch_cursor_button(struct sway_cursor *cursor,
89 struct wlr_input_device *device, uint32_t time_msec, uint32_t button, 80 struct wlr_input_device *device, uint32_t time_msec, uint32_t button,
90 enum wlr_button_state state); 81 enum wlr_button_state state);
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index ff4476d1..a5361e8c 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -12,12 +12,15 @@ struct sway_seatop_impl {
12 void (*button)(struct sway_seat *seat, uint32_t time_msec, 12 void (*button)(struct sway_seat *seat, uint32_t time_msec,
13 struct wlr_input_device *device, uint32_t button, 13 struct wlr_input_device *device, uint32_t button,
14 enum wlr_button_state state); 14 enum wlr_button_state state);
15 void (*motion)(struct sway_seat *seat, uint32_t time_msec); 15 void (*motion)(struct sway_seat *seat, uint32_t time_msec,
16 void (*finish)(struct sway_seat *seat, uint32_t time_msec); 16 double dx, double dy);
17 void (*abort)(struct sway_seat *seat); 17 void (*axis)(struct sway_seat *seat, struct wlr_event_pointer_axis *event);
18 void (*rebase)(struct sway_seat *seat, uint32_t time_msec);
19 void (*end)(struct sway_seat *seat);
18 void (*unref)(struct sway_seat *seat, struct sway_container *con); 20 void (*unref)(struct sway_seat *seat, struct sway_container *con);
19 void (*render)(struct sway_seat *seat, struct sway_output *output, 21 void (*render)(struct sway_seat *seat, struct sway_output *output,
20 pixman_region32_t *damage); 22 pixman_region32_t *damage);
23 bool allow_set_cursor;
21}; 24};
22 25
23struct sway_seat_device { 26struct sway_seat_device {
@@ -71,9 +74,7 @@ struct sway_seat {
71 // Seat operations (drag and resize) 74 // Seat operations (drag and resize)
72 const struct sway_seatop_impl *seatop_impl; 75 const struct sway_seatop_impl *seatop_impl;
73 void *seatop_data; 76 void *seatop_data;
74 uint32_t seatop_button;
75 77
76 uint32_t last_button;
77 uint32_t last_button_serial; 78 uint32_t last_button_serial;
78 79
79 struct wl_listener focus_destroy; 80 struct wl_listener focus_destroy;
@@ -188,23 +189,25 @@ bool seat_is_input_allowed(struct sway_seat *seat, struct wlr_surface *surface);
188 189
189void drag_icon_update_position(struct sway_drag_icon *icon); 190void drag_icon_update_position(struct sway_drag_icon *icon);
190 191
192void seatop_begin_default(struct sway_seat *seat);
193
191void seatop_begin_down(struct sway_seat *seat, struct sway_container *con, 194void seatop_begin_down(struct sway_seat *seat, struct sway_container *con,
192 uint32_t time_msec, uint32_t button, int sx, int sy); 195 uint32_t time_msec, int sx, int sy);
193 196
194void seatop_begin_move_floating(struct sway_seat *seat, 197void seatop_begin_move_floating(struct sway_seat *seat,
195 struct sway_container *con, uint32_t button); 198 struct sway_container *con);
196 199
197void seatop_begin_move_tiling_threshold(struct sway_seat *seat, 200void seatop_begin_move_tiling_threshold(struct sway_seat *seat,
198 struct sway_container *con, uint32_t button); 201 struct sway_container *con);
199 202
200void seatop_begin_move_tiling(struct sway_seat *seat, 203void seatop_begin_move_tiling(struct sway_seat *seat,
201 struct sway_container *con, uint32_t button); 204 struct sway_container *con);
202 205
203void seatop_begin_resize_floating(struct sway_seat *seat, 206void seatop_begin_resize_floating(struct sway_seat *seat,
204 struct sway_container *con, uint32_t button, enum wlr_edges edge); 207 struct sway_container *con, enum wlr_edges edge);
205 208
206void seatop_begin_resize_tiling(struct sway_seat *seat, 209void seatop_begin_resize_tiling(struct sway_seat *seat,
207 struct sway_container *con, uint32_t button, enum wlr_edges edge); 210 struct sway_container *con, enum wlr_edges edge);
208 211
209struct sway_container *seat_get_focus_inactive_floating(struct sway_seat *seat, 212struct sway_container *seat_get_focus_inactive_floating(struct sway_seat *seat,
210 struct sway_workspace *workspace); 213 struct sway_workspace *workspace);
@@ -214,23 +217,24 @@ void seat_pointer_notify_button(struct sway_seat *seat, uint32_t time_msec,
214 217
215void seat_consider_warp_to_focus(struct sway_seat *seat); 218void seat_consider_warp_to_focus(struct sway_seat *seat);
216 219
217bool seat_doing_seatop(struct sway_seat *seat);
218
219void seatop_button(struct sway_seat *seat, uint32_t time_msec, 220void seatop_button(struct sway_seat *seat, uint32_t time_msec,
220 struct wlr_input_device *device, uint32_t button, 221 struct wlr_input_device *device, uint32_t button,
221 enum wlr_button_state state); 222 enum wlr_button_state state);
222 223
223void seatop_motion(struct sway_seat *seat, uint32_t time_msec);
224
225/** 224/**
226 * End a seatop and apply the affects. 225 * dx and dy are distances relative to previous position.
227 */ 226 */
228void seatop_finish(struct sway_seat *seat, uint32_t time_msec); 227void seatop_motion(struct sway_seat *seat, uint32_t time_msec,
228 double dx, double dy);
229
230void seatop_axis(struct sway_seat *seat, struct wlr_event_pointer_axis *event);
231
232void seatop_rebase(struct sway_seat *seat, uint32_t time_msec);
229 233
230/** 234/**
231 * End a seatop without applying the affects. 235 * End a seatop (ie. free any seatop specific resources).
232 */ 236 */
233void seatop_abort(struct sway_seat *seat); 237void seatop_end(struct sway_seat *seat);
234 238
235/** 239/**
236 * Instructs the seatop implementation to drop any references to the given 240 * Instructs the seatop implementation to drop any references to the given
@@ -246,4 +250,6 @@ void seatop_unref(struct sway_seat *seat, struct sway_container *con);
246void seatop_render(struct sway_seat *seat, struct sway_output *output, 250void seatop_render(struct sway_seat *seat, struct sway_output *output,
247 pixman_region32_t *damage); 251 pixman_region32_t *damage);
248 252
253bool seatop_allows_set_cursor(struct sway_seat *seat);
254
249#endif 255#endif