aboutsummaryrefslogtreecommitdiffstats
path: root/include/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/layout.h b/include/layout.h
index a136f917..38a1f24b 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -10,16 +10,19 @@ extern swayc_t root_container;
10void init_layout(void); 10void init_layout(void);
11 11
12void add_child(swayc_t *parent, swayc_t *child); 12void add_child(swayc_t *parent, swayc_t *child);
13//Returns parent container wihch needs to be rearranged. 13//Returns parent container which needs to be rearranged.
14swayc_t *add_sibling(swayc_t *sibling, swayc_t *child); 14swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
15swayc_t *replace_child(swayc_t *child, swayc_t *new_child); 15swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
16swayc_t *remove_child(swayc_t *parent, swayc_t *child); 16swayc_t *remove_child(swayc_t *parent, swayc_t *child);
17 17
18//Layout
19void arrange_windows(swayc_t *container, int width, int height);
20
21//Focus
18void unfocus_all(swayc_t *container); 22void unfocus_all(swayc_t *container);
19void focus_view(swayc_t *view); 23void focus_view(swayc_t *view);
20void arrange_windows(swayc_t *container, int width, int height); 24void focus_view_for(swayc_t *ancestor, swayc_t *container);
21swayc_t *get_focused_container(swayc_t *parent); 25swayc_t *get_focused_container(swayc_t *parent);
22
23swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent); 26swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
24 27
25#endif 28#endif