diff options
author | Drew DeVault <[email protected]> | 2015-08-09 09:23:10 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-09 09:23:10 -0400 |
commit | f97a48d5b75fd80a578af14f19d0b1d954f82fdd (patch) | |
tree | c99dcdd46754915d18445281d2778ea61be05f3b /sway/layout.h | |
parent | 086691016e7cbe9794b73c174eaefa77e2d56498 (diff) |
Implement focus_follows_mouse
Diffstat (limited to 'sway/layout.h')
-rw-r--r-- | sway/layout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/layout.h b/sway/layout.h index 801faf90..0e34cb5c 100644 --- a/sway/layout.h +++ b/sway/layout.h @@ -51,6 +51,8 @@ void destroy_view(swayc_t *view); void add_view(wlc_handle view); void focus_view(swayc_t *view); void arrange_windows(swayc_t *container, int width, int height); +swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data); +swayc_t *get_focused_container(swayc_t *parent); swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent); |