awesome/event.h

24 lines
941 B
C
Raw Normal View History

2007-09-05 20:15:00 +02:00
/* See LICENSE file for copyright and license details. */
#ifndef JDWM_EVENT_H
#define JDWM_EVENT_H
#include "config.h"
2007-09-10 12:06:54 +02:00
void grabkeys(Display *, awesome_config *); /* grab all keys defined in config */
2007-09-05 20:15:00 +02:00
2007-09-10 12:06:54 +02:00
void handle_event_buttonpress(XEvent *, awesome_config *);
void handle_event_configurerequest(XEvent *, awesome_config *);
void handle_event_configurenotify(XEvent *, awesome_config *);
void handle_event_destroynotify(XEvent *, awesome_config *);
void handle_event_enternotify(XEvent *, awesome_config *);
void handle_event_expose(XEvent *, awesome_config *);
void handle_event_keypress(XEvent *, awesome_config *);
void handle_event_leavenotify(XEvent *, awesome_config *);
void handle_event_mappingnotify(XEvent *, awesome_config *);
void handle_event_maprequest(XEvent *, awesome_config *);
void handle_event_propertynotify(XEvent *, awesome_config *);
void handle_event_unmapnotify(XEvent *, awesome_config *);
2007-09-05 20:15:00 +02:00
#endif