summaryrefslogtreecommitdiffstats
path: root/include/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/layout.h b/include/layout.h
index 84552754..c05e9e69 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -7,8 +7,6 @@
7#include "container.h" 7#include "container.h"
8#include "focus.h" 8#include "focus.h"
9 9
10extern swayc_t root_container;
11
12extern list_t *scratchpad; 10extern list_t *scratchpad;
13 11
14extern int min_sane_w; 12extern int min_sane_w;
@@ -55,6 +53,10 @@ void move_container_to(swayc_t* container, swayc_t* destination);
55void move_workspace_to(swayc_t* workspace, swayc_t* destination); 53void move_workspace_to(swayc_t* workspace, swayc_t* destination);
56 54
57// Layout 55// Layout
56/**
57 * Update child container geometries when switching between layouts.
58 */
59void update_layout_geometry(swayc_t *parent, enum swayc_layouts prev_layout);
58void update_geometry(swayc_t *view); 60void update_geometry(swayc_t *view);
59void arrange_windows(swayc_t *container, double width, double height); 61void arrange_windows(swayc_t *container, double width, double height);
60 62