]> git.decadent.org.uk Git - ion3.git/blob - ioncore/eventh.h
[svn-inject] Installing original source of ion3
[ion3.git] / ioncore / eventh.h
1 /*
2  * ion/ioncore/eventh.h
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2006. 
5  *
6  * Ion is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  */
11
12 #ifndef ION_IONCORE_EVENTH_H
13 #define ION_IONCORE_EVENTH_H
14
15 #include "common.h"
16
17 extern bool ioncore_handle_event(XEvent *ev);
18 extern void ioncore_handle_expose(const XExposeEvent *ev);
19 extern void ioncore_handle_map_request(const XMapRequestEvent *ev);
20 extern void ioncore_handle_configure_request(XConfigureRequestEvent *ev);
21 extern void ioncore_handle_enter_window(XEvent *ev);
22 extern void ioncore_handle_unmap_notify(const XUnmapEvent *ev);
23 extern void ioncore_handle_destroy_notify(const XDestroyWindowEvent *ev);
24 extern void ioncore_handle_client_message(const XClientMessageEvent *ev);
25 extern void ioncore_handle_focus_in(const XFocusChangeEvent *ev, bool skip);
26 extern void ioncore_handle_focus_out(const XFocusChangeEvent *ev);
27 extern void ioncore_handle_property(const XPropertyEvent *ev);
28 extern void ioncore_handle_buttonpress(XEvent *ev);
29 extern void ioncore_handle_keyboard(XEvent *ev);
30 extern void ioncore_handle_mapping_notify(XEvent *ev);
31
32 #endif /* ION_IONCORE_EVENTH_H */