i3
i3.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * i3.h: global variables that are used all over i3.
8  *
9  */
10 #pragma once
11 
12 #include <sys/time.h>
13 #include <sys/resource.h>
14 
15 #include <xcb/xcb_keysyms.h>
16 #include <xcb/xkb.h>
17 
18 #include <X11/XKBlib.h>
19 
20 #define SN_API_NOT_YET_FROZEN 1
21 #include <libsn/sn-launcher.h>
22 
23 #include "queue.h"
24 #include "data.h"
25 #include "xcb.h"
26 
30 extern struct rlimit original_rlimit_core;
32 extern bool debug_build;
34 extern int listen_fds;
35 extern xcb_connection_t *conn;
36 extern int conn_screen;
40 extern xcb_timestamp_t last_timestamp;
41 extern SnDisplay *sndisplay;
42 extern xcb_key_symbols_t *keysyms;
43 extern char **start_argv;
44 extern Display *xlibdpy, *xkbdpy;
45 extern int xkb_current_group;
46 extern TAILQ_HEAD(bindings_head, Binding) * bindings;
47 extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
48 extern TAILQ_HEAD(autostarts_always_head, Autostart) autostarts_always;
49 extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments;
50 extern TAILQ_HEAD(assignments_head, Assignment) assignments;
51 extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
52 extern xcb_screen_t *root_screen;
53 
54 /* Color depth, visual id and colormap to use when creating windows and
55  * pixmaps. Will use 32 bit depth and an appropriate visual, if available,
56  * otherwise the root window’s default (usually 24 bit TrueColor). */
57 extern uint8_t root_depth;
58 extern xcb_visualid_t visual_id;
59 extern xcb_colormap_t colormap;
60 
61 extern bool xcursor_supported, xkb_supported;
62 extern xcb_window_t root;
63 extern struct ev_loop *main_loop;
64 extern bool only_check_config;
TAILQ_HEAD(bindings_head, Binding)*bindings
bool only_check_config
Stores which workspace (by name or number) goes to which output.
Definition: data.h:180
char ** start_argv
Definition: main.c:41
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:458
SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins
bool xkb_supported
xcb_visualid_t visual_id
Definition: main.c:62
uint8_t root_depth
Definition: main.c:61
xcb_timestamp_t last_timestamp
The last timestamp we got from X11 (timestamps are included in some events and are used for some thin...
Definition: main.c:53
Holds a keybinding, consisting of a keycode combined with modifiers and the command which is executed...
Definition: data.h:239
xcb_colormap_t colormap
Definition: main.c:63
int conn_screen
Definition: main.c:45
bool debug_build
Whether this version of i3 is a debug build or a release build.
xcb_screen_t * root_screen
Definition: main.c:55
int xkb_current_group
Definition: handlers.c:25
struct ev_loop * main_loop
Definition: main.c:65
struct autostarts_head autostarts
Definition: main.c:76
Display * xlibdpy
struct assignments_head assignments
Definition: main.c:82
Display * xkbdpy
struct bindings_head * bindings
Definition: main.c:73
xcb_window_t root
Definition: main.c:56
SnDisplay * sndisplay
Definition: main.c:48
int listen_fds
The number of file descriptors passed via socket activation.
Definition: main.c:33
xcb_key_symbols_t * keysyms
Definition: main.c:67
bool xcursor_supported
Definition: main.c:89
struct rlimit original_rlimit_core
The original value of RLIMIT_CORE when i3 was started.
Definition: main.c:30
struct autostarts_always_head autostarts_always
Definition: main.c:79
Holds a command specified by either an:
Definition: data.h:296
struct ws_assignments_head ws_assignments
Definition: main.c:86
xcb_connection_t * conn
Definition: main.c:43