diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-18 07:02:31 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-18 07:02:31 -0400 |
commit | 2f6dd0687bac748f414e5deb090f38d755f66d29 (patch) | |
tree | 098ea31107357e0ebedd5435d870f11fe4b60836 /include/handlers.h | |
parent | debb0d6bc198e13ef019b141029cdc62a7087532 (diff) | |
parent | b132f67e7bb5017c73658cec8d297060033890e8 (diff) |
Merge pull request #65 from taiyu-len/focus_v2
Focus v2
Diffstat (limited to 'include/handlers.h')
-rw-r--r-- | include/handlers.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/handlers.h b/include/handlers.h index d1742cce..6b642419 100644 --- a/include/handlers.h +++ b/include/handlers.h @@ -1,12 +1,13 @@ #ifndef _SWAY_HANDLERS_H #define _SWAY_HANDLERS_H - +#include "container.h" #include <stdbool.h> #include <wlc/wlc.h> extern struct wlc_interface interface; +extern uint32_t keys_pressed[32]; //set focus to current pointer location and return focused container -swayc_t *focus_pointer(void); +swayc_t *container_under_pointer(void); #endif |