2017-11-20 09:04:28 +11:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
struct sway_container;
|
|
|
|
|
|
|
|
void init_layout(void);
|
|
|
|
void add_child(struct sway_container *parent, struct sway_container *child);
|
2017-11-23 12:39:27 +11:00
|
|
|
enum swayc_layouts default_layout(struct sway_container *output);
|
|
|
|
void sort_workspaces(struct sway_container *output);
|
2017-11-20 09:04:28 +11:00
|
|
|
|
|
|
|
#endif
|