]> git.lizzy.rs Git - bspwm.git/blob - events.h
dd2787669fa930b9e5c6ef526e8dd446292e08dc
[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 void handle_event(xcb_generic_event_t *);
8 void map_request(xcb_generic_event_t *);
9 void destroy_notify(xcb_generic_event_t *);
10 void unmap_notify(xcb_generic_event_t *);
11 void configure_request(xcb_generic_event_t *);
12 void client_message(xcb_generic_event_t *);
13 void property_notify(xcb_generic_event_t *);
14 void button_press(xcb_generic_event_t *);
15 void motion_notify(xcb_generic_event_t *);
16 void button_release(xcb_generic_event_t *);
17 void handle_state(node_t *, xcb_atom_t, unsigned int);
18
19 #endif