diff options
Diffstat (limited to 'include/sway/tree')
-rw-r--r-- | include/sway/tree/container.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h index 2c973f71..ddb2d683 100644 --- a/include/sway/tree/container.h +++ b/include/sway/tree/container.h @@ -164,6 +164,11 @@ void container_for_each_child(struct sway_container *container, void (*f)(struct sway_container *container, void *data), void *data); /** + * Returns the fullscreen container obstructing this container if it exists. + */ +struct sway_container *container_obstructing_fullscreen_container(struct sway_container *container); + +/** * Returns true if the given container is an ancestor of this container. */ bool container_has_ancestor(struct sway_container *container, |