aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-11 16:56:05 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-11 16:56:05 +1000
commitd4e80cf301d77f69370cc81657c433990986cfa6 (patch)
tree189c14237b1ce6f24af40d3e8bbc3e776e5f19c6 /include/sway/input/seat.h
parentMerge pull request #2617 from wmww/cursor-enter-on-focus-change (diff)
downloadsway-d4e80cf301d77f69370cc81657c433990986cfa6.tar.gz
sway-d4e80cf301d77f69370cc81657c433990986cfa6.tar.zst
sway-d4e80cf301d77f69370cc81657c433990986cfa6.zip
Rename OP_MOVE to OP_MOVE_FLOATING
In preparation for introducing OP_MOVE_TILING.
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index b07d200d..1ae34be5 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -38,7 +38,7 @@ struct sway_drag_icon {
38enum sway_seat_operation { 38enum sway_seat_operation {
39 OP_NONE, 39 OP_NONE,
40 OP_DOWN, 40 OP_DOWN,
41 OP_MOVE, 41 OP_MOVE_FLOATING,
42 OP_RESIZE_FLOATING, 42 OP_RESIZE_FLOATING,
43 OP_RESIZE_TILING, 43 OP_RESIZE_TILING,
44}; 44};
@@ -172,8 +172,8 @@ void drag_icon_update_position(struct sway_drag_icon *icon);
172void seat_begin_down(struct sway_seat *seat, struct sway_container *con, 172void seat_begin_down(struct sway_seat *seat, struct sway_container *con,
173 uint32_t button, double sx, double sy); 173 uint32_t button, double sx, double sy);
174 174
175void seat_begin_move(struct sway_seat *seat, struct sway_container *con, 175void seat_begin_move_floating(struct sway_seat *seat,
176 uint32_t button); 176 struct sway_container *con, uint32_t button);
177 177
178void seat_begin_resize_floating(struct sway_seat *seat, 178void seat_begin_resize_floating(struct sway_seat *seat,
179 struct sway_container *con, uint32_t button, enum wlr_edges edge); 179 struct sway_container *con, uint32_t button, enum wlr_edges edge);