From 7f8ebb7d0dcb687574554b877a0e84f48718df37 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 16 Aug 2015 11:02:56 -0400 Subject: Move headers to include/ --- include/layout.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/layout.h (limited to 'include/layout.h') 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 @@ +#ifndef _SWAY_LAYOUT_H +#define _SWAY_LAYOUT_H + +#include +#include "list.h" +#include "container.h" + +extern swayc_t root_container; + +void init_layout(void); + +void add_child(swayc_t *parent, swayc_t *child); +//Returns parent container wihch needs to be rearranged. +swayc_t *add_sibling(swayc_t *sibling, swayc_t *child); +swayc_t *replace_child(swayc_t *child, swayc_t *new_child); +swayc_t *remove_child(swayc_t *parent, swayc_t *child); + +void unfocus_all(swayc_t *container); +void focus_view(swayc_t *view); +void arrange_windows(swayc_t *container, int width, int height); +swayc_t *get_focused_container(swayc_t *parent); + +swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent); + +#endif -- cgit v1.2.3