aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-26 18:36:46 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-28 22:41:04 +1000
commit08cfba2192f5770d975c5fe70789a81aaee4dc7e (patch)
tree7f07e32020649ae5c049e8533f0cf040dc80e166 /include/sway/tree/container.h
parentMerge pull request #2372 from RyanDwyer/fix-use-after-free-v2 (diff)
downloadsway-08cfba2192f5770d975c5fe70789a81aaee4dc7e.tar.gz
sway-08cfba2192f5770d975c5fe70789a81aaee4dc7e.tar.zst
sway-08cfba2192f5770d975c5fe70789a81aaee4dc7e.zip
Allow containers to float
Things worth noting: * When a fullscreen view unmaps, the check to unset fullscreen on the workspace has been moved out of view_unmap and into container_destroy, because containers can be fullscreen too * The calls to `container_reap_empty_recursive(workspace)` have been removed from `container_set_floating`. That function reaps upwards so it wouldn't do anything. I'm probably the one who originally added it... * My fix (b14bd1b0b1536039e4f46fe94515c7c44e7afc61) for the tabbed child crash has a side effect where when you close a floating container, focus is not given to the tiled container again. I've removed my fix and removed the call to `send_cursor_motion` from `seat_set_focus_warp`. We should consider calling it from somewhere earlier in the call stack.
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index c584cd92..d91b3bf1 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -297,6 +297,11 @@ void container_notify_subtree_changed(struct sway_container *container);
297 */ 297 */
298size_t container_titlebar_height(void); 298size_t container_titlebar_height(void);
299 299
300/**
301 * Resize and center the container in its workspace.
302 */
303void container_init_floating(struct sway_container *container);
304
300void container_set_floating(struct sway_container *container, bool enable); 305void container_set_floating(struct sway_container *container, bool enable);
301 306
302void container_set_geometry_from_floating_view(struct sway_container *con); 307void container_set_geometry_from_floating_view(struct sway_container *con);
@@ -341,6 +346,12 @@ void container_end_mouse_operation(struct sway_container *container);
341void container_set_fullscreen(struct sway_container *container, bool enable); 346void container_set_fullscreen(struct sway_container *container, bool enable);
342 347
343/** 348/**
349 * Return true if the container is floating, or a child of a floating split
350 * container.
351 */
352bool container_is_floating_or_child(struct sway_container *container);
353
354/**
344 * Return true if the container is fullscreen, or a child of a fullscreen split 355 * Return true if the container is fullscreen, or a child of a fullscreen split
345 * container. 356 * container.
346 */ 357 */