summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/arrange.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/sway/tree/arrange.h b/include/sway/tree/arrange.h
index 346103d3..f47e8db5 100644
--- a/include/sway/tree/arrange.h
+++ b/include/sway/tree/arrange.h
@@ -1,12 +1,16 @@
1#ifndef _SWAY_ARRANGE_H 1#ifndef _SWAY_ARRANGE_H
2#define _SWAY_ARRANGE_H 2#define _SWAY_ARRANGE_H
3#include "sway/desktop/transaction.h"
4 3
5struct sway_container; 4struct sway_container;
6 5
7/** 6void arrange_container(struct sway_container *container);
8 * Arrange layout for all the children of the given container. 7
9 */ 8void arrange_workspace(struct sway_container *workspace);
9
10void arrange_output(struct sway_container *output);
11
12void arrange_root(void);
13
10void arrange_windows(struct sway_container *container); 14void arrange_windows(struct sway_container *container);
11 15
12#endif 16#endif