]> git.lizzy.rs Git - bspwm.git/blobdiff - events.h
Revert "Revert "Try not to point to an unlinked desktop""
[bspwm.git] / events.h
index 5dd5d922d2b91dc1025aa38eb4f7040ab60c7daa..58fdf8ba08aa1b376fdb55379aa6ece8774a5357 100644 (file)
--- a/events.h
+++ b/events.h
@@ -4,6 +4,20 @@
 #include <xcb/xcb.h>
 #include <xcb/xcb_event.h>
 
-void handle_event(xcb_generic_event_t*);
+uint8_t randr_base;
+
+void handle_event(xcb_generic_event_t *);
+void map_request(xcb_generic_event_t *);
+void destroy_notify(xcb_generic_event_t *);
+void unmap_notify(xcb_generic_event_t *);
+void configure_request(xcb_generic_event_t *);
+void client_message(xcb_generic_event_t *);
+void property_notify(xcb_generic_event_t *);
+void enter_notify(xcb_generic_event_t *);
+void motion_notify(void);
+void handle_state(monitor_t *, desktop_t *, node_t *, xcb_atom_t, unsigned int);
+void grab_pointer(pointer_action_t);
+void track_pointer(int, int);
+void ungrab_pointer(void);
 
 #endif