diff options
Diffstat (limited to 'include/sway/tree/arrange.h')
-rw-r--r-- | include/sway/tree/arrange.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/include/sway/tree/arrange.h b/include/sway/tree/arrange.h index d6abcc81..f47e8db5 100644 --- a/include/sway/tree/arrange.h +++ b/include/sway/tree/arrange.h @@ -1,18 +1,16 @@ #ifndef _SWAY_ARRANGE_H #define _SWAY_ARRANGE_H -#include "sway/desktop/transaction.h" struct sway_container; -// Remove gaps around container -void remove_gaps(struct sway_container *c); +void arrange_container(struct sway_container *container); -// Add gaps around container -void add_gaps(struct sway_container *c); +void arrange_workspace(struct sway_container *workspace); + +void arrange_output(struct sway_container *output); + +void arrange_root(void); -/** - * Arrange layout for all the children of the given container. - */ void arrange_windows(struct sway_container *container); #endif |