]> git.sur5r.net Git - i3/i3/blob - include/i3.h
7eb48ecc1ce8a6f994b7e62d30811d18d10a00d4
[i3/i3] / include / i3.h
1 /*
2  * vim:ts=4:sw=4: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_keysyms.h>
12
13 #include <X11/XKBlib.h>
14
15 #include "queue.h"
16 #include "data.h"
17 #include "xcb.h"
18
19 #ifndef _I3_H
20 #define _I3_H
21
22 extern xcb_connection_t *conn;
23 extern xcb_key_symbols_t *keysyms;
24 extern char **start_argv;
25 extern Display *xlibdpy, *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(ws_assignments_head, Workspace_Assignment) ws_assignments;
30 extern TAILQ_HEAD(assignments_head, Assignment) assignments;
31 extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
32 extern uint8_t root_depth;
33 extern bool xcursor_supported, xkb_supported;
34 extern xcb_window_t root;
35
36 #endif