aboutsummaryrefslogtreecommitdiffstats
path: root/sway/layout.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-09 19:27:25 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-09 19:27:25 -0400
commit22315865696264aeef296364c7fc420b972a10fb (patch)
tree97c2650060252b5966f9f6ec68b51e84e84e40be /sway/layout.h
parentMerge pull request #3 from jdiez17/log_colors_option (diff)
downloadsway-22315865696264aeef296364c7fc420b972a10fb.tar.gz
sway-22315865696264aeef296364c7fc420b972a10fb.tar.zst
sway-22315865696264aeef296364c7fc420b972a10fb.zip
Implement splith/splitv
Ref #2
Diffstat (limited to 'sway/layout.h')
-rw-r--r--sway/layout.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/layout.h b/sway/layout.h
index 0e34cb5c..08f3f78b 100644
--- a/sway/layout.h
+++ b/sway/layout.h
@@ -53,7 +53,8 @@ void focus_view(swayc_t *view);
53void arrange_windows(swayc_t *container, int width, int height); 53void arrange_windows(swayc_t *container, int width, int height);
54swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data); 54swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data);
55swayc_t *get_focused_container(swayc_t *parent); 55swayc_t *get_focused_container(swayc_t *parent);
56 56int remove_container_from_parent(swayc_t *parent, swayc_t *container);
57swayc_t *create_container(swayc_t *parent, wlc_handle handle);
57swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent); 58swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
58 59
59#endif 60#endif