diff options
author | Drew DeVault <[email protected]> | 2015-08-16 11:02:56 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-16 11:02:56 -0400 |
commit | 7f8ebb7d0dcb687574554b877a0e84f48718df37 (patch) | |
tree | 9a58f9276059d3c88cb3a92d8229a911b33b0faf /sway/layout.h | |
parent | 360b3d67b0457016e4cc32dfd378fd01d30f48df (diff) |
Move headers to include/
Diffstat (limited to 'sway/layout.h')
-rw-r--r-- | sway/layout.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sway/layout.h b/sway/layout.h deleted file mode 100644 index a136f917..00000000 --- a/sway/layout.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _SWAY_LAYOUT_H -#define _SWAY_LAYOUT_H - -#include <wlc/wlc.h> -#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 |