aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-08-28 10:03:52 -0400
committerGitHub <noreply@github.com>2018-08-28 10:03:52 -0400
commit83230435f72dd73838bd064c22268ef4ee25e3e6 (patch)
tree7cdac6c37f6ad87c056690bdeac3d5ea0489668d /include/sway/tree
parent98ef29c22878c256dea5b4f0d1eaf556bfcb145f (diff)
parent126a82f14ff47925c7f88523ed9abe0ae9aeb7e8 (diff)
Merge pull request #2511 from RyanDwyer/refactor-arrange
Prepare arrange code for type safe arguments
Diffstat (limited to 'include/sway/tree')
-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 @@
#ifndef _SWAY_ARRANGE_H
#define _SWAY_ARRANGE_H
-#include "sway/desktop/transaction.h"
struct sway_container;
-/**
- * Arrange layout for all the children of the given container.
- */
+void arrange_container(struct sway_container *container);
+
+void arrange_workspace(struct sway_container *workspace);
+
+void arrange_output(struct sway_container *output);
+
+void arrange_root(void);
+
void arrange_windows(struct sway_container *container);
#endif