2015-08-06 14:24:14 +02:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
2015-08-14 21:42:19 +02:00
|
|
|
#include "container.h"
|
2015-08-08 23:44:51 +02:00
|
|
|
|
|
|
|
extern swayc_t root_container;
|
2015-08-06 14:40:16 +02:00
|
|
|
|
2015-08-11 02:32:50 +02:00
|
|
|
void init_layout(void);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-09 00:17:08 +02:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-19 09:28:53 +02:00
|
|
|
void add_floating(swayc_t *ws, swayc_t *child);
|
2015-08-18 13:19:20 +02:00
|
|
|
// Returns parent container which needs to be rearranged.
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
|
|
|
|
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
2015-08-18 11:46:14 +02:00
|
|
|
swayc_t *remove_child(swayc_t *child);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Layout
|
2015-08-17 02:28:06 +02:00
|
|
|
void arrange_windows(swayc_t *container, int width, int height);
|
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Focus
|
2015-08-10 02:10:26 +02:00
|
|
|
void unfocus_all(swayc_t *container);
|
2015-08-08 23:44:51 +02:00
|
|
|
void focus_view(swayc_t *view);
|
2015-08-17 02:28:06 +02:00
|
|
|
void focus_view_for(swayc_t *ancestor, swayc_t *container);
|
2015-08-17 04:06:31 +02:00
|
|
|
|
2015-08-09 15:23:10 +02:00
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
2015-08-08 23:44:51 +02:00
|
|
|
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
|
2015-08-06 14:24:14 +02:00
|
|
|
|
|
|
|
#endif
|