simplify manage(), remove screen arg
[awesome.git] / event.h
blob627f4d521a8cc7015e77336ea036d9c053d43126
1 /*
2 * event.h - event handlers header
3 *
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
5 *
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 "config.h"
27 void grabkeys(Display *, int, awesome_config *); /* grab all keys defined in config */
29 void handle_event_buttonpress(XEvent *, awesome_config *);
30 void handle_event_configurerequest(XEvent *, awesome_config *);
31 void handle_event_configurenotify(XEvent *, awesome_config *);
32 void handle_event_destroynotify(XEvent *, awesome_config *);
33 void handle_event_enternotify(XEvent *, awesome_config *);
34 void handle_event_expose(XEvent *, awesome_config *);
35 void handle_event_keypress(XEvent *, awesome_config *);
36 void handle_event_leavenotify(XEvent *, awesome_config *);
37 void handle_event_mappingnotify(XEvent *, awesome_config *);
38 void handle_event_maprequest(XEvent *, awesome_config *);
39 void handle_event_propertynotify(XEvent *, awesome_config *);
40 void handle_event_unmapnotify(XEvent *, awesome_config *);
41 void handle_event_shape(XEvent *, awesome_config *);
42 void handle_event_randr_screen_change_notify(XEvent *, awesome_config *);
44 #endif