aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-08-16 17:28:06 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-08-16 17:28:06 -0700
commitc024f0663176239c8b97e2957e5a7a45be5bceef (patch)
treeacc5c67090bea80843188ad3b3acc048c2b33de2 /include
parentMerge pull request #46 from Luminarys/master (diff)
downloadsway-c024f0663176239c8b97e2957e5a7a45be5bceef.tar.gz
sway-c024f0663176239c8b97e2957e5a7a45be5bceef.tar.zst
sway-c024f0663176239c8b97e2957e5a7a45be5bceef.zip
handle_view_state_request
Diffstat (limited to 'include')
-rw-r--r--include/layout.h9
-rw-r--r--include/log.h4
2 files changed, 8 insertions, 5 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;
10void init_layout(void); 10void init_layout(void);
11 11
12void add_child(swayc_t *parent, swayc_t *child); 12void add_child(swayc_t *parent, swayc_t *child);
13//Returns parent container wihch needs to be rearranged. 13//Returns parent container which needs to be rearranged.
14swayc_t *add_sibling(swayc_t *sibling, swayc_t *child); 14swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
15swayc_t *replace_child(swayc_t *child, swayc_t *new_child); 15swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
16swayc_t *remove_child(swayc_t *parent, swayc_t *child); 16swayc_t *remove_child(swayc_t *parent, swayc_t *child);
17 17
18//Layout
19void arrange_windows(swayc_t *container, int width, int height);
20
21//Focus
18void unfocus_all(swayc_t *container); 22void unfocus_all(swayc_t *container);
19void focus_view(swayc_t *view); 23void focus_view(swayc_t *view);
20void arrange_windows(swayc_t *container, int width, int height); 24void focus_view_for(swayc_t *ancestor, swayc_t *container);
21swayc_t *get_focused_container(swayc_t *parent); 25swayc_t *get_focused_container(swayc_t *parent);
22
23swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent); 26swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
24 27
25#endif 28#endif
diff --git a/include/log.h b/include/log.h
index e5075a39..d35b2a54 100644
--- a/include/log.h
+++ b/include/log.h
@@ -10,7 +10,7 @@ typedef enum {
10 10
11void init_log(int verbosity); 11void init_log(int verbosity);
12void sway_log_colors(int mode); 12void sway_log_colors(int mode);
13void sway_log(int verbosity, char* format, ...); 13void sway_log(int verbosity, char* format, ...) __attribute__((format(printf,2,3)));
14void sway_abort(char* format, ...); 14void sway_abort(char* format, ...)__attribute__((format(printf,1,2)));
15 15
16#endif 16#endif