aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/arrange.h
blob: 346103d3975976bd7d5c5e6386e4b52718ff5a1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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