2015-08-06 22:24:14 +10:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
2015-11-29 00:49:02 +11:00
|
|
|
#include "log.h"
|
2015-08-06 22:24:14 +10:00
|
|
|
#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
|
|
|
|
2015-08-29 14:39:12 +10:00
|
|
|
extern list_t *scratchpad;
|
|
|
|
|
2015-08-22 13:26:11 +10:00
|
|
|
extern int min_sane_w;
|
|
|
|
extern int min_sane_h;
|
|
|
|
|
2015-08-27 06:35:22 +10:00
|
|
|
// Set initial values for root_container
|
2015-08-11 10:32:50 +10:00
|
|
|
void init_layout(void);
|
2015-08-15 05:42:19 +10:00
|
|
|
|
2015-08-27 06:35:22 +10: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 08:17:08 +10:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-27 06:35:22 +10:00
|
|
|
|
2015-12-18 11:01:02 +11: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-27 06:35:22 +10: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 17:28:53 +10:00
|
|
|
void add_floating(swayc_t *ws, swayc_t *child);
|
2015-08-27 06:35:22 +10:00
|
|
|
|
|
|
|
// insert child after sibling in parents children.
|
2015-08-15 05:42:19 +10:00
|
|
|
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
|
2015-08-27 06:35:22 +10: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-15 05:42:19 +10:00
|
|
|
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
2015-08-27 06:35:22 +10: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 19:46:14 +10:00
|
|
|
swayc_t *remove_child(swayc_t *child);
|
2015-08-27 06:35:22 +10:00
|
|
|
|
2015-08-29 04:03:10 +10:00
|
|
|
// 2 containers are swapped, they inherit eachothers focus
|
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-29 04:03:10 +10: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-26 02:25:36 +10:00
|
|
|
void move_container_to(swayc_t* container, swayc_t* destination);
|
2015-10-25 09:38:33 +11:00
|
|
|
void move_workspace_to(swayc_t* workspace, swayc_t* destination);
|
2015-08-21 06:27:38 +10:00
|
|
|
|
2015-08-18 21:19:20 +10:00
|
|
|
// Layout
|
2016-04-20 08:22:15 +10:00
|
|
|
/**
|
|
|
|
* Update child container geometries when switching between layouts.
|
|
|
|
*/
|
|
|
|
void update_layout_geometry(swayc_t *parent, enum swayc_layouts prev_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-24 18:11:21 +10:00
|
|
|
swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_direction dir, swayc_t *limit);
|
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-11-29 00:49:02 +11: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-02 00:58:29 +11:00
|
|
|
/**
|
|
|
|
* Get default layout.
|
|
|
|
*/
|
|
|
|
enum swayc_layouts default_layout(swayc_t *output);
|
|
|
|
|
2015-08-06 22:24:14 +10:00
|
|
|
#endif
|