2015-08-06 12:24:14 +00:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
2015-11-28 13:49:02 +00:00
|
|
|
#include "log.h"
|
2015-08-06 12:24:14 +00:00
|
|
|
#include "list.h"
|
2015-08-14 19:42:19 +00:00
|
|
|
#include "container.h"
|
2015-08-20 03:22:15 +00:00
|
|
|
#include "focus.h"
|
2015-08-08 21:44:51 +00:00
|
|
|
|
2015-08-29 04:39:12 +00:00
|
|
|
extern list_t *scratchpad;
|
|
|
|
|
2015-08-22 03:26:11 +00:00
|
|
|
extern int min_sane_w;
|
|
|
|
extern int min_sane_h;
|
|
|
|
|
2015-08-26 20:35:22 +00:00
|
|
|
// Set initial values for root_container
|
2015-08-11 00:32:50 +00:00
|
|
|
void init_layout(void);
|
2015-08-14 19:42:19 +00:00
|
|
|
|
2015-08-26 20:35:22 +00: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-08 22:17:08 +00:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-26 20:35:22 +00:00
|
|
|
|
2015-12-18 00:01:02 +00:00
|
|
|
// Adds child to parent at index, if parent has no focus, it is set to child
|
|
|
|
// parent must be of type C_WORKSPACE or C_CONTAINER
|
|
|
|
void insert_child(swayc_t *parent, swayc_t *child, int index);
|
|
|
|
|
2015-08-26 20:35:22 +00: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 07:28:53 +00:00
|
|
|
void add_floating(swayc_t *ws, swayc_t *child);
|
2015-08-26 20:35:22 +00:00
|
|
|
|
|
|
|
// insert child after sibling in parents children.
|
2015-08-14 19:42:19 +00:00
|
|
|
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
|
2015-08-26 20:35:22 +00: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 19:42:19 +00:00
|
|
|
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
2015-08-26 20:35:22 +00: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 09:46:14 +00:00
|
|
|
swayc_t *remove_child(swayc_t *child);
|
2015-08-26 20:35:22 +00:00
|
|
|
|
2015-08-28 18:03:10 +00:00
|
|
|
// 2 containers are swapped, they inherit eachothers focus
|
2015-08-23 01:01:38 +00:00
|
|
|
void swap_container(swayc_t *a, swayc_t *b);
|
2015-08-14 19:42:19 +00:00
|
|
|
|
2015-08-28 18:03:10 +00:00
|
|
|
// 2 Containers geometry are swapped, used with `swap_container`
|
|
|
|
void swap_geometry(swayc_t *a, swayc_t *b);
|
|
|
|
|
2017-02-28 03:30:58 +00:00
|
|
|
void move_container(swayc_t* container, enum movement_direction direction, int move_amt);
|
2015-08-25 16:25:36 +00:00
|
|
|
void move_container_to(swayc_t* container, swayc_t* destination);
|
2015-10-24 22:38:33 +00:00
|
|
|
void move_workspace_to(swayc_t* workspace, swayc_t* destination);
|
2015-08-20 20:27:38 +00:00
|
|
|
|
2015-08-18 11:19:20 +00:00
|
|
|
// Layout
|
2016-04-19 22:22:15 +00:00
|
|
|
/**
|
|
|
|
* Update child container geometries when switching between layouts.
|
|
|
|
*/
|
|
|
|
void update_layout_geometry(swayc_t *parent, enum swayc_layouts prev_layout);
|
2015-08-23 01:01:38 +00:00
|
|
|
void update_geometry(swayc_t *view);
|
2015-08-21 05:17:26 +00:00
|
|
|
void arrange_windows(swayc_t *container, double width, double height);
|
2016-07-21 19:47:35 +00:00
|
|
|
void arrange_backgrounds(void);
|
2015-08-17 00:28:06 +00:00
|
|
|
|
2015-08-09 13:23:10 +00:00
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
2015-08-20 03:22:15 +00:00
|
|
|
swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
|
2015-08-24 08:11:21 +00:00
|
|
|
swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_direction dir, swayc_t *limit);
|
2015-08-06 12:24:14 +00:00
|
|
|
|
2015-08-21 02:37:59 +00:00
|
|
|
void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge);
|
2015-08-20 16:30:11 +00:00
|
|
|
|
2015-11-28 13:49:02 +00:00
|
|
|
void layout_log(const swayc_t *c, int depth);
|
|
|
|
void swayc_log(log_importance_t verbosity, swayc_t *cont, const char* format, ...) __attribute__((format(printf,3,4)));
|
|
|
|
|
2016-04-01 13:58:29 +00:00
|
|
|
/**
|
|
|
|
* Get default layout.
|
|
|
|
*/
|
|
|
|
enum swayc_layouts default_layout(swayc_t *output);
|
|
|
|
|
2017-01-01 17:36:47 +00:00
|
|
|
bool is_auto_layout(enum swayc_layouts layout);
|
2017-01-07 19:26:46 +00:00
|
|
|
int auto_group_start_index(const swayc_t *container, int index);
|
|
|
|
int auto_group_end_index(const swayc_t *container, int index);
|
|
|
|
size_t auto_group_count(const swayc_t *container);
|
|
|
|
size_t auto_group_index(const swayc_t *container, int index);
|
|
|
|
bool auto_group_bounds(const swayc_t *container, size_t group_index, int *start, int *end);
|
2017-01-01 17:36:47 +00:00
|
|
|
|
2015-08-06 12:24:14 +00:00
|
|
|
#endif
|