aboutsummaryrefslogtreecommitdiffstats
path: root/include/layout.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-16 11:02:56 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-16 11:02:56 -0400
commit7f8ebb7d0dcb687574554b877a0e84f48718df37 (patch)
tree9a58f9276059d3c88cb3a92d8229a911b33b0faf /include/layout.h
parentAdd split [h|v|horizontal|vertical] command (diff)
downloadsway-7f8ebb7d0dcb687574554b877a0e84f48718df37.tar.gz
sway-7f8ebb7d0dcb687574554b877a0e84f48718df37.tar.zst
sway-7f8ebb7d0dcb687574554b877a0e84f48718df37.zip
Move headers to include/
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h
new file mode 100644
index 00000000..a136f917
--- /dev/null
+++ b/include/layout.h
@@ -0,0 +1,25 @@
1#ifndef _SWAY_LAYOUT_H
2#define _SWAY_LAYOUT_H
3
4#include <wlc/wlc.h>
5#include "list.h"
6#include "container.h"
7
8extern swayc_t root_container;
9
10void init_layout(void);
11
12void add_child(swayc_t *parent, swayc_t *child);
13//Returns parent container wihch needs to be rearranged.
14swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
15swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
16swayc_t *remove_child(swayc_t *parent, swayc_t *child);
17
18void unfocus_all(swayc_t *container);
19void focus_view(swayc_t *view);
20void arrange_windows(swayc_t *container, int width, int height);
21swayc_t *get_focused_container(swayc_t *parent);
22
23swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
24
25#endif