aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-18 16:13:28 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-22 23:10:19 +1000
commit9fbe13b9be18c732b58033a57a22a299af91a170 (patch)
treea24901c1bb4eff87877c0d9fb96767b662a9d533 /include/sway/tree/container.h
parentMerge pull request #2320 from RedSoxFan/reset-outputs-on-reload (diff)
downloadsway-9fbe13b9be18c732b58033a57a22a299af91a170.tar.gz
sway-9fbe13b9be18c732b58033a57a22a299af91a170.tar.zst
sway-9fbe13b9be18c732b58033a57a22a299af91a170.zip
Implement floating_modifier and mouse operations for floating views
This implements the following: * `floating_modifier` configuration directive * Drag a floating window by its title bar * Hold mod + drag a floating window from anywhere * Resize a floating view by dragging the border * Resize a floating view by holding mod and right clicking anywhere on the view * Resize a floating view and keep aspect ratio by holding shift while resizing using either method * Mouse cursor turns into resize when hovering floating border or corner
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index ca7a3288..59c5b4c7 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -305,6 +305,12 @@ bool container_is_floating(struct sway_container *container);
305void container_get_box(struct sway_container *container, struct wlr_box *box); 305void container_get_box(struct sway_container *container, struct wlr_box *box);
306 306
307/** 307/**
308 * Move a floating container by the specified amount.
309 */
310void container_floating_translate(struct sway_container *con,
311 double x_amount, double y_amount);
312
313/**
308 * Move a floating container to a new layout-local position. 314 * Move a floating container to a new layout-local position.
309 */ 315 */
310void container_floating_move_to(struct sway_container *con, 316void container_floating_move_to(struct sway_container *con,
@@ -318,4 +324,10 @@ void container_set_dirty(struct sway_container *container);
318 324
319bool container_has_urgent_child(struct sway_container *container); 325bool container_has_urgent_child(struct sway_container *container);
320 326
327/**
328 * If the container is involved in a drag or resize operation via a mouse, this
329 * ends the operation.
330 */
331void container_end_mouse_operation(struct sway_container *container);
332
321#endif 333#endif