sway-patched-tray-menu-github/include/sway/layout.h

14 lines
451 B
C
Raw Normal View History

2017-11-19 23:04:28 +01: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-25 22:30:15 +01:00
struct sway_container *remove_child(struct sway_container *child);
2017-11-23 02:39:27 +01:00
enum swayc_layouts default_layout(struct sway_container *output);
void sort_workspaces(struct sway_container *output);
2017-11-25 16:59:49 +01:00
void arrange_windows(struct sway_container *container, double width, double height);
2017-11-19 23:04:28 +01:00
#endif