You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
379 B
20 lines
379 B
#ifndef _SWAY_ARRANGE_H
|
|
#define _SWAY_ARRANGE_H
|
|
|
|
struct sway_output;
|
|
struct sway_workspace;
|
|
struct sway_container;
|
|
struct sway_node;
|
|
|
|
void arrange_container(struct sway_container *container);
|
|
|
|
void arrange_workspace(struct sway_workspace *workspace);
|
|
|
|
void arrange_output(struct sway_output *output);
|
|
|
|
void arrange_root(void);
|
|
|
|
void arrange_node(struct sway_node *node);
|
|
|
|
#endif
|