aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index ff3f9599..5c368df2 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -210,10 +210,17 @@ void container_set_geometry_from_content(struct sway_container *con);
210/** 210/**
211 * Determine if the given container is itself floating. 211 * Determine if the given container is itself floating.
212 * This will return false for any descendants of a floating container. 212 * This will return false for any descendants of a floating container.
213 *
214 * Uses pending container state.
213 */ 215 */
214bool container_is_floating(struct sway_container *container); 216bool container_is_floating(struct sway_container *container);
215 217
216/** 218/**
219 * Same as above, but for current container state.
220 */
221bool container_is_current_floating(struct sway_container *container);
222
223/**
217 * Get a container's box in layout coordinates. 224 * Get a container's box in layout coordinates.
218 */ 225 */
219void container_get_box(struct sway_container *container, struct wlr_box *box); 226void container_get_box(struct sway_container *container, struct wlr_box *box);