]> git.sur5r.net Git - i3/i3/blob - include/i3.h
Remove dependency on xcb-event (Thanks Felicitus)
[i3/i3] / include / i3.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <xcb/xcb.h>
12 #include <xcb/xcb_keysyms.h>
13
14 #include <X11/XKBlib.h>
15
16 #include "queue.h"
17 #include "data.h"
18
19 #ifndef _I3_H
20 #define _I3_H
21
22 extern xcb_connection_t *global_conn;
23 extern xcb_key_symbols_t *keysyms;
24 extern char **start_argv;
25 extern Display *xkbdpy;
26 extern int xkb_current_group;
27 extern TAILQ_HEAD(bindings_head, Binding) *bindings;
28 extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
29 extern TAILQ_HEAD(assignments_head, Assignment) assignments;
30 extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
31 extern uint8_t root_depth;
32 extern bool xkb_supported;
33 extern xcb_window_t root;
34
35 #endif