]> git.lizzy.rs Git - bspwm.git/blob - events.h
Cosmetic changes
[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 enter_notify(xcb_generic_event_t *);
15 void button_press(xcb_generic_event_t *);
16 void motion_notify(xcb_generic_event_t *);
17 void button_release(void);
18 void handle_state(monitor_t *, desktop_t *, node_t *, xcb_atom_t, unsigned int);
19
20 #endif