do not die on unknown placement: take the first one
[awesome.git] / event.h
blob8b2da492f6d4abde380078253ab42a5926f18735
1 /*
2 * event.h - event handlers header
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef AWESOME_EVENT_H
23 #define AWESOME_EVENT_H
25 #include <X11/Xlib.h>
27 #define CLEANMASK(mask) (mask & ~(globalconf.numlockmask | LockMask))
29 void grabkeys(int);
31 void handle_event_buttonpress(XEvent *);
32 void handle_event_configurerequest(XEvent *);
33 void handle_event_configurenotify(XEvent *);
34 void handle_event_destroynotify(XEvent *);
35 void handle_event_enternotify(XEvent *);
36 void handle_event_expose(XEvent *);
37 void handle_event_keypress(XEvent *);
38 void handle_event_leavenotify(XEvent *);
39 void handle_event_mappingnotify(XEvent *);
40 void handle_event_maprequest(XEvent *);
41 void handle_event_propertynotify(XEvent *);
42 void handle_event_unmapnotify(XEvent *);
43 void handle_event_shape(XEvent *);
44 void handle_event_randr_screen_change_notify(XEvent *);
45 void handle_event_clientmessage(XEvent *);
47 #endif
48 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80