aboutsummaryrefslogtreecommitdiff
path: root/include/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h
index 282f92ee..c1d7d8b4 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -4,17 +4,22 @@
#include <wlc/wlc.h>
#include "list.h"
#include "container.h"
+#include "focus.h"
extern swayc_t root_container;
void init_layout(void);
void add_child(swayc_t *parent, swayc_t *child);
+void add_floating(swayc_t *ws, swayc_t *child);
// Returns parent container which 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 *child);
+void move_container(swayc_t* container,swayc_t* root,int direction);
+
+
// Layout
void arrange_windows(swayc_t *container, int width, int height);
@@ -25,5 +30,6 @@ void focus_view_for(swayc_t *ancestor, swayc_t *container);
swayc_t *get_focused_container(swayc_t *parent);
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
+swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
#endif