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-20 05:22:15 +02:00
|
|
|
#include "focus.h"
|
2015-08-08 23:44:51 +02:00
|
|
|
|
|
|
|
extern swayc_t root_container;
|
2015-08-06 14:40:16 +02:00
|
|
|
|
2015-08-22 05:26:11 +02:00
|
|
|
extern int min_sane_w;
|
|
|
|
extern int min_sane_h;
|
|
|
|
|
2015-08-26 22:35:22 +02:00
|
|
|
// Set initial values for root_container
|
2015-08-11 02:32:50 +02:00
|
|
|
void init_layout(void);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-26 22:35:22 +02:00
|
|
|
// Returns the index of child for its parent
|
|
|
|
int index_child(const swayc_t *child);
|
|
|
|
|
|
|
|
// Adds child to parent, if parent has no focus, it is set to child
|
|
|
|
// parent must be of type C_WORKSPACE or C_CONTAINER
|
2015-08-09 00:17:08 +02:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-26 22:35:22 +02:00
|
|
|
|
|
|
|
// Adds child as floating window to ws, if there is no focus it is set to child.
|
|
|
|
// ws must be of type C_WORKSPACE
|
2015-08-19 09:28:53 +02:00
|
|
|
void add_floating(swayc_t *ws, swayc_t *child);
|
2015-08-26 22:35:22 +02:00
|
|
|
|
|
|
|
// insert child after sibling in parents children.
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
|
2015-08-26 22:35:22 +02:00
|
|
|
|
|
|
|
// Replace child with new_child in parents children
|
|
|
|
// new_child will inherit childs geometry, childs geometry will be reset
|
|
|
|
// if parents focus is on child, it will be changed to new_child
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
2015-08-26 22:35:22 +02:00
|
|
|
|
|
|
|
// Remove child from its parent, if focus is on child, focus will be changed to
|
|
|
|
// a sibling, or to a floating window, or NULL
|
2015-08-18 11:46:14 +02:00
|
|
|
swayc_t *remove_child(swayc_t *child);
|
2015-08-26 22:35:22 +02:00
|
|
|
|
2015-08-28 20:03:10 +02:00
|
|
|
// 2 containers are swapped, they inherit eachothers focus
|
2015-08-23 03:01:38 +02:00
|
|
|
void swap_container(swayc_t *a, swayc_t *b);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-28 20:03:10 +02:00
|
|
|
// 2 Containers geometry are swapped, used with `swap_container`
|
|
|
|
void swap_geometry(swayc_t *a, swayc_t *b);
|
|
|
|
|
|
|
|
void move_container(swayc_t* container, enum movement_direction direction);
|
2015-08-25 18:25:36 +02:00
|
|
|
void move_container_to(swayc_t* container, swayc_t* destination);
|
2015-08-20 22:27:38 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Layout
|
2015-08-23 03:01:38 +02:00
|
|
|
void update_geometry(swayc_t *view);
|
2015-08-21 07:17:26 +02:00
|
|
|
void arrange_windows(swayc_t *container, double width, double height);
|
2015-08-17 02:28:06 +02:00
|
|
|
|
2015-08-09 15:23:10 +02:00
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
2015-08-20 05:22:15 +02:00
|
|
|
swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
|
2015-08-24 10:11:21 +02:00
|
|
|
swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_direction dir, swayc_t *limit);
|
2015-08-06 14:24:14 +02:00
|
|
|
|
2015-08-21 04:37:59 +02:00
|
|
|
void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge);
|
2015-08-20 18:30:11 +02:00
|
|
|
|
2015-08-06 14:24:14 +02:00
|
|
|
#endif
|