]> git.lizzy.rs Git - bspwm.git/blob - events.h
Revert "Revert "Try not to point to an unlinked desktop""
[bspwm.git] / events.h
1 #ifndef _EVENTS_H
2 #define _EVENTS_H
3
4 #include <xcb/xcb.h>
5 #include <xcb/xcb_event.h>
6
7 uint8_t randr_base;
8
9 void handle_event(xcb_generic_event_t *);
10 void map_request(xcb_generic_event_t *);
11 void destroy_notify(xcb_generic_event_t *);
12 void unmap_notify(xcb_generic_event_t *);
13 void configure_request(xcb_generic_event_t *);
14 void client_message(xcb_generic_event_t *);
15 void property_notify(xcb_generic_event_t *);
16 void enter_notify(xcb_generic_event_t *);
17 void motion_notify(void);
18 void handle_state(monitor_t *, desktop_t *, node_t *, xcb_atom_t, unsigned int);
19 void grab_pointer(pointer_action_t);
20 void track_pointer(int, int);
21 void ungrab_pointer(void);
22
23 #endif