diff options
author | taiyu <taiyu.len@gmail.com> | 2015-08-18 00:28:44 -0700 |
---|---|---|
committer | taiyu <taiyu.len@gmail.com> | 2015-08-18 00:28:44 -0700 |
commit | 11321ca2dd355be82175213795d88dcbfd0540ee (patch) | |
tree | b0f9bb55eb8c2448139dc63447edf01ffab7fb58 /include/handlers.h | |
parent | 780893a9338fe948cbb12c3b0ce3942ec8001ccf (diff) |
changed handling of focus, handling of view by type
Diffstat (limited to 'include/handlers.h')
-rw-r--r-- | include/handlers.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/handlers.h b/include/handlers.h index d1742cce..6ea4bbf1 100644 --- a/include/handlers.h +++ b/include/handlers.h @@ -1,12 +1,11 @@ #ifndef _SWAY_HANDLERS_H #define _SWAY_HANDLERS_H - +#include "container.h" #include <stdbool.h> #include <wlc/wlc.h> extern struct wlc_interface interface; -//set focus to current pointer location and return focused container -swayc_t *focus_pointer(void); +swayc_t *container_under_pointer(void); #endif |