2009-02-14 02:33:31 +01:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_event.h>
|
|
|
|
|
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
|
|
|
|
#include "queue.h"
|
|
|
|
|
|
|
|
#ifndef _I3_H
|
|
|
|
#define _I3_H
|
|
|
|
|
|
|
|
extern Display *xkbdpy;
|
|
|
|
extern TAILQ_HEAD(bindings_head, Binding) bindings;
|
|
|
|
extern xcb_event_handlers_t evenths;
|
|
|
|
extern char *pattern;
|
|
|
|
extern int num_screens;
|
2009-02-14 08:38:07 +01:00
|
|
|
extern xcb_atom_t atoms[6];
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
|
|
#endif
|