summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-28 10:03:52 -0400
committerLibravatar GitHub <noreply@github.com>2018-08-28 10:03:52 -0400
commit83230435f72dd73838bd064c22268ef4ee25e3e6 (patch)
tree7cdac6c37f6ad87c056690bdeac3d5ea0489668d /include
parentMerge pull request #2523 from RedSoxFan/fix-floating-drag-outputs (diff)
parentFix gaps issues (diff)
downloadsway-83230435f72dd73838bd064c22268ef4ee25e3e6.tar.gz
sway-83230435f72dd73838bd064c22268ef4ee25e3e6.tar.zst
sway-83230435f72dd73838bd064c22268ef4ee25e3e6.zip
Merge pull request #2511 from RyanDwyer/refactor-arrange
Prepare arrange code for type safe arguments
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