contrib
debian
docs
i3-config-wizard
i3-dump-log
i3-input
i3-msg
i3-nagbar
i3bar
include
i3
all.h
assignments.h
atoms.xmacro
click.h
cmdparse.h
commands.h
commands_parser.h
con.h
config.h
data.h
debug.h
display_version.h
ewmh.h
fake_outputs.h
floating.h
handlers.h
i3.h
ipc.h
key_press.h
libi3.h
load_layout.h
log.h
manage.h
match.h
move.h
output.h
queue.h
randr.h
regex.h
render.h
resize.h
scratchpad.h
sd-daemon.h
shmlog.h
sighandler.h
startup.h
tree.h
util.h
window.h
workspace.h
x.h
xcb.h
xcb_compat.h
xcursor.h
xinerama.h
libi3
man
parser-specs
src
testcases
tests
yajl-fallback
.gitignore
DEPENDS
LICENSE
Makefile
PACKAGE-MAINTAINER
RELEASE-NOTES-4.2
RELEASE-NOTES-4.3
common.mk
generate-command-parser.pl
i3-migrate-config-to-v4
i3-sensible-editor
i3-sensible-pager
i3-sensible-terminal
i3.applications.desktop
i3.config
i3.config.keycodes
i3.xsession.desktop
logo.svg
pseudo-doc.doxygen
Done with: sed -in 's/\(ifndef\|define\) _\([0-9A-Z_]*\)$/\1 I3_\2/' include/**/*.h fixes #804
67 lines
2.1 KiB
C
67 lines
2.1 KiB
C
/*
|
||
* vim:ts=4:sw=4:expandtab
|
||
*
|
||
* i3 - an improved dynamic tiling window manager
|
||
* © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
|
||
*
|
||
* i3.h: global variables that are used all over i3.
|
||
*
|
||
*/
|
||
#ifndef I3_I3_H
|
||
#define I3_I3_H
|
||
|
||
#include <sys/time.h>
|
||
#include <sys/resource.h>
|
||
|
||
#include <xcb/xcb_keysyms.h>
|
||
|
||
#include <X11/XKBlib.h>
|
||
|
||
#define SN_API_NOT_YET_FROZEN 1
|
||
#include <libsn/sn-launcher.h>
|
||
|
||
#include "queue.h"
|
||
#include "data.h"
|
||
#include "xcb.h"
|
||
|
||
/** The original value of RLIMIT_CORE when i3 was started. We need to restore
|
||
* this before starting any other process, since we set RLIMIT_CORE to
|
||
* RLIM_INFINITY for i3 debugging versions. */
|
||
extern struct rlimit original_rlimit_core;
|
||
/** Whether this version of i3 is a debug build or a release build. */
|
||
extern bool debug_build;
|
||
/** The number of file descriptors passed via socket activation. */
|
||
extern int listen_fds;
|
||
extern xcb_connection_t *conn;
|
||
extern int conn_screen;
|
||
/** The last timestamp we got from X11 (timestamps are included in some events
|
||
* and are used for some things, like determining a unique ID in startup
|
||
* notification). */
|
||
extern xcb_timestamp_t last_timestamp;
|
||
extern SnDisplay *sndisplay;
|
||
extern xcb_key_symbols_t *keysyms;
|
||
extern char **start_argv;
|
||
extern Display *xlibdpy, *xkbdpy;
|
||
extern int xkb_current_group;
|
||
extern TAILQ_HEAD(bindings_head, Binding) *bindings;
|
||
extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
|
||
extern TAILQ_HEAD(autostarts_always_head, Autostart) autostarts_always;
|
||
extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments;
|
||
extern TAILQ_HEAD(assignments_head, Assignment) assignments;
|
||
extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
|
||
extern xcb_screen_t *root_screen;
|
||
|
||
/* Color depth, visual id and colormap to use when creating windows and
|
||
* pixmaps. Will use 32 bit depth and an appropriate visual, if available,
|
||
* otherwise the root window’s default (usually 24 bit TrueColor). */
|
||
extern uint8_t root_depth;
|
||
extern xcb_visualid_t visual_id;
|
||
extern xcb_colormap_t colormap;
|
||
|
||
extern bool xcursor_supported, xkb_supported;
|
||
extern xcb_window_t root;
|
||
extern struct ev_loop *main_loop;
|
||
extern bool only_check_config;
|
||
|
||
#endif
|