summaryrefslogtreecommitdiff
path: root/include/layout.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-16 20:38:38 -0400
committerDrew DeVault <[email protected]>2015-08-16 20:38:38 -0400
commitcf6df324a8a12aef4573628d9c5de84119933d5a (patch)
treeacc5c67090bea80843188ad3b3acc048c2b33de2 /include/layout.h
parentd64bff69bbc13c15ed0d2d1cdbce9709046ff818 (diff)
parentc024f0663176239c8b97e2957e5a7a45be5bceef (diff)
Merge pull request #49 from taiyu-len/master
handle_view_state_request
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/layout.h b/include/layout.h
index a136f917..38a1f24b 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -10,16 +10,19 @@ extern swayc_t root_container;
void init_layout(void);
void add_child(swayc_t *parent, swayc_t *child);
-//Returns parent container wihch needs to be rearranged.
+//Returns parent container which needs to be rearranged.
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
swayc_t *remove_child(swayc_t *parent, swayc_t *child);
+//Layout
+void arrange_windows(swayc_t *container, int width, int height);
+
+//Focus
void unfocus_all(swayc_t *container);
void focus_view(swayc_t *view);
-void arrange_windows(swayc_t *container, int width, int height);
+void focus_view_for(swayc_t *ancestor, swayc_t *container);
swayc_t *get_focused_container(swayc_t *parent);
-
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
#endif