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.
|
#ifndef _SWAY_ARRANGE_H
|
|
#define _SWAY_ARRANGE_H
|
|
#include "sway/desktop/transaction.h"
|
|
|
|
struct sway_container;
|
|
|
|
/**
|
|
* Arrange layout for all the children of the given container.
|
|
*/
|
|
void arrange_windows(struct sway_container *container);
|
|
|
|
#endif
|