Cleanups, first strike. Move stuff to separate files, eliminate warnings

This commit is contained in:
Michael Stapelberg
2009-02-13 19:04:45 +01:00
parent af6aee4f4f
commit 7c0317c8a3
18 changed files with 1263 additions and 1128 deletions

17
handlers.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef _HANDLERS_H
#define _HANDLERS_H
int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event);
int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event);
int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event);
int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_event_t *event);
int handle_map_notify_event(void *prophs, xcb_connection_t *conn, xcb_map_notify_event_t *event);
int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop);
int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event);
#endif