2017-11-19 17:04:28 -05:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
2017-12-12 20:02:01 +01:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
|
|
|
2017-11-19 17:04:28 -05:00
|
|
|
struct sway_container;
|
|
|
|
|
2017-12-12 20:02:01 +01:00
|
|
|
struct sway_root {
|
|
|
|
struct wlr_output_layout *output_layout;
|
|
|
|
|
|
|
|
struct wl_listener output_layout_change;
|
|
|
|
};
|
|
|
|
|
2017-11-19 17:04:28 -05:00
|
|
|
void init_layout(void);
|
|
|
|
void add_child(struct sway_container *parent, struct sway_container *child);
|
2017-11-25 16:30:15 -05:00
|
|
|
struct sway_container *remove_child(struct sway_container *child);
|
2017-11-22 20:39:27 -05:00
|
|
|
enum swayc_layouts default_layout(struct sway_container *output);
|
|
|
|
void sort_workspaces(struct sway_container *output);
|
2017-11-25 10:59:49 -05:00
|
|
|
void arrange_windows(struct sway_container *container, double width, double height);
|
2017-11-19 17:04:28 -05:00
|
|
|
|
|
|
|
#endif
|