]> git.decadent.org.uk Git - ion3.git/blob - ioncore/eventh.h
af10eb28e75deb278cf240a59b7269824120ee2e
[ion3.git] / ioncore / eventh.h
1 /*
2  * ion/ioncore/eventh.h
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2008. 
5  *
6  * See the included file LICENSE for details.
7  */
8
9 #ifndef ION_IONCORE_EVENTH_H
10 #define ION_IONCORE_EVENTH_H
11
12 #include "common.h"
13
14 extern bool ioncore_handle_event(XEvent *ev);
15 extern void ioncore_handle_expose(const XExposeEvent *ev);
16 extern void ioncore_handle_map_request(const XMapRequestEvent *ev);
17 extern void ioncore_handle_configure_request(XConfigureRequestEvent *ev);
18 extern void ioncore_handle_enter_window(XEvent *ev);
19 extern void ioncore_handle_unmap_notify(const XUnmapEvent *ev);
20 extern void ioncore_handle_destroy_notify(const XDestroyWindowEvent *ev);
21 extern void ioncore_handle_client_message(const XClientMessageEvent *ev);
22 extern void ioncore_handle_focus_in(const XFocusChangeEvent *ev);
23 extern void ioncore_handle_focus_out(const XFocusChangeEvent *ev);
24 extern void ioncore_handle_property(const XPropertyEvent *ev);
25 extern void ioncore_handle_buttonpress(XEvent *ev);
26 extern void ioncore_handle_keyboard(XEvent *ev);
27 extern void ioncore_handle_mapping_notify(XEvent *ev);
28
29 #endif /* ION_IONCORE_EVENTH_H */