2009-02-14 04:33:31 +03:00
|
|
|
/*
|
2011-03-14 02:44:16 +03:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-02-14 04:33:31 +03:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
2009-06-19 14:05:55 +04:00
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-02-14 04:33:31 +03:00
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
*/
|
2009-08-07 17:35:12 +04:00
|
|
|
#include <xcb/xcb_keysyms.h>
|
2009-02-13 21:04:45 +03:00
|
|
|
|
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
|
|
|
|
#include "queue.h"
|
2009-04-19 22:44:34 +04:00
|
|
|
#include "data.h"
|
2011-03-14 02:44:16 +03:00
|
|
|
#include "xcb.h"
|
2009-02-13 21:04:45 +03:00
|
|
|
|
|
|
|
#ifndef _I3_H
|
|
|
|
#define _I3_H
|
|
|
|
|
2010-03-27 17:25:51 +03:00
|
|
|
extern xcb_connection_t *conn;
|
2009-08-07 17:35:12 +04:00
|
|
|
extern xcb_key_symbols_t *keysyms;
|
2009-05-01 18:10:02 +04:00
|
|
|
extern char **start_argv;
|
2010-11-27 02:26:51 +03:00
|
|
|
extern Display *xlibdpy, *xkbdpy;
|
2010-03-15 00:35:51 +03:00
|
|
|
extern int xkb_current_group;
|
2009-09-27 20:45:39 +04:00
|
|
|
extern TAILQ_HEAD(bindings_head, Binding) *bindings;
|
2009-03-29 16:53:48 +04:00
|
|
|
extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
|
2011-05-03 01:29:26 +04:00
|
|
|
extern TAILQ_HEAD(assignments_head, Match) assignments;
|
2011-05-15 00:13:29 +04:00
|
|
|
extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments;
|
2009-02-24 02:30:04 +03:00
|
|
|
extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
|
2009-07-17 20:32:40 +04:00
|
|
|
extern uint8_t root_depth;
|
2010-11-27 02:26:51 +03:00
|
|
|
extern bool xcursor_supported, xkb_supported;
|
2009-07-23 20:14:24 +04:00
|
|
|
extern xcb_window_t root;
|
2009-02-13 21:04:45 +03:00
|
|
|
|
|
|
|
#endif
|