aboutsummaryrefslogtreecommitdiff
path: root/include/layout.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-20 07:38:04 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-20 07:38:04 -0400
commit14947c92aad2ff72d20fbf875957571cd8f69168 (patch)
treebba3293f642a0d60e48b11574c18b6d03990a5d5 /include/layout.h
parent616d630fb028e44359bc6f14d16f94564341c092 (diff)
parentba6034e8c8cd2bbe15f318e511817e0904633bb3 (diff)
Merge pull request #94 from taiyu-len/master
input_state.ch, and command conflicts resolved
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h
index 98fdb531..75e72d2f 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -4,6 +4,7 @@
#include <wlc/wlc.h>
#include "list.h"
#include "container.h"
+#include "focus.h"
extern swayc_t root_container;
@@ -26,5 +27,6 @@ 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);
+swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir);
#endif