2015-08-06 22:24:14 +10:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
2015-08-15 05:42:19 +10:00
|
|
|
#include "container.h"
|
2015-08-20 13:22:15 +10:00
|
|
|
#include "focus.h"
|
2015-08-09 07:44:51 +10:00
|
|
|
|
|
|
|
extern swayc_t root_container;
|
2015-08-06 22:40:16 +10:00
|
|
|
|
2015-08-22 13:26:11 +10:00
|
|
|
extern int min_sane_w;
|
|
|
|
extern int min_sane_h;
|
|
|
|
|
2015-08-11 10:32:50 +10:00
|
|
|
void init_layout(void);
|
2015-08-15 05:42:19 +10:00
|
|
|
|
2015-08-09 08:17:08 +10:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-19 17:28:53 +10:00
|
|
|
void add_floating(swayc_t *ws, swayc_t *child);
|
2015-08-18 21:19:20 +10:00
|
|
|
// Returns parent container which needs to be rearranged.
|
2015-08-15 05:42:19 +10: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 19:46:14 +10:00
|
|
|
swayc_t *remove_child(swayc_t *child);
|
2015-08-23 11:01:38 +10:00
|
|
|
void swap_container(swayc_t *a, swayc_t *b);
|
2015-08-15 05:42:19 +10:00
|
|
|
|
2015-08-21 06:45:00 +10:00
|
|
|
void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction);
|
2015-08-21 06:27:38 +10:00
|
|
|
|
2015-08-18 21:19:20 +10:00
|
|
|
// Layout
|
2015-08-23 11:01:38 +10:00
|
|
|
void update_geometry(swayc_t *view);
|
2015-08-21 15:17:26 +10:00
|
|
|
void arrange_windows(swayc_t *container, double width, double height);
|
2015-08-17 10:28:06 +10:00
|
|
|
|
2015-08-09 23:23:10 +10:00
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
2015-08-20 13:22:15 +10:00
|
|
|
swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
|
2015-08-06 22:24:14 +10:00
|
|
|
|
2015-08-21 12:37:59 +10:00
|
|
|
void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge);
|
2015-08-21 02:30:11 +10:00
|
|
|
|
2015-08-06 22:24:14 +10:00
|
|
|
#endif
|