aboutsummaryrefslogtreecommitdiff
path: root/sway/handlers.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-13 11:00:00 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-13 11:00:00 -0400
commit94e81fd64c4f63815047fa1ad895cade9afa8bd4 (patch)
tree9770eded52cae4f9d3d033123e1470d7873624c5 /sway/handlers.h
parent9475548f2426b3892a6d14961af36edc49b72182 (diff)
parent0a205776d7023cb8dea0d62994dff7b01d19dbcf (diff)
Merge pull request #23 from taiyu-len/master
moving things around + statics + forking + exec cleanup + fixed cmd_focus return + keep exec programs out of logs
Diffstat (limited to 'sway/handlers.h')
-rw-r--r--sway/handlers.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/sway/handlers.h b/sway/handlers.h
index 9792b6d7..798b3b50 100644
--- a/sway/handlers.h
+++ b/sway/handlers.h
@@ -4,21 +4,6 @@
#include <stdbool.h>
#include <wlc/wlc.h>
-bool handle_output_created(wlc_handle output);
-void handle_output_destroyed(wlc_handle output);
-void handle_output_resolution_change(wlc_handle output, const struct wlc_size *from, const struct wlc_size *to);
-void handle_output_focused(wlc_handle output, bool focus);
-
-bool handle_view_created(wlc_handle view);
-void handle_view_destroyed(wlc_handle view);
-void handle_view_focus(wlc_handle view, bool focus);
-void handle_view_geometry_request(wlc_handle view, const struct wlc_geometry* geometry);
-
-bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifiers
- *modifiers, uint32_t key, uint32_t sym, enum wlc_key_state state);
-
-bool handle_pointer_motion(wlc_handle view, uint32_t time, const struct wlc_origin *origin);
-bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
- uint32_t button, enum wlc_button_state state);
+extern struct wlc_interface interface;
#endif