]> git.sur5r.net Git - i3/i3/blob - include/handlers.h
7c82ca462bd6875e5adcd29210121c246a53ec42
[i3/i3] / include / handlers.h
1 #ifndef _HANDLERS_H
2 #define _HANDLERS_H
3
4 int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event);
5 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event);
6 int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event);
7 int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_event_t *event);
8 int handle_map_notify_event(void *prophs, xcb_connection_t *conn, xcb_map_notify_event_t *event);
9 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
10                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop);
11 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event);
12
13
14
15
16
17 #endif