aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree/arrange.h
diff options
context:
space:
mode:
authorNate Symer <nate@symer.io>2018-06-09 09:34:56 -0400
committerNate Symer <nate@symer.io>2018-06-09 09:34:56 -0400
commit6a910b9ba5443aa31f7cc2468c943c2f9da4854b (patch)
tree24e4ea6634a734ed303c7aaf611df682adbf746c /include/sway/tree/arrange.h
parent21d98d5bfb19491f8fd486a2eddc8efe9fb3de6c (diff)
Implement gaps (PR #2047)
Diffstat (limited to 'include/sway/tree/arrange.h')
-rw-r--r--include/sway/tree/arrange.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/tree/arrange.h b/include/sway/tree/arrange.h
index ce95cfe9..a14bc5dc 100644
--- a/include/sway/tree/arrange.h
+++ b/include/sway/tree/arrange.h
@@ -3,6 +3,12 @@
struct sway_container;
+// Remove gaps around container
+void remove_gaps(struct sway_container *c);
+
+// Add gaps around container
+void add_gaps(struct sway_container *c);
+
// Determine the root container's geometry, then iterate to everything below
void arrange_root(void);