i3
include/all.h
Go to the documentation of this file.
00001 /*
00002  * This header file includes all relevant files of i3 and the most often used
00003  * system header files. This reduces boilerplate (the amount of code duplicated
00004  * at the beginning of each source file) and is not significantly slower at
00005  * compile-time.
00006  *
00007  */
00008 #ifndef _ALL_H
00009 #define _ALL_H
00010 
00011 #include <assert.h>
00012 #include <stdbool.h>
00013 #include <stdlib.h>
00014 #include <stdio.h>
00015 #include <string.h>
00016 #include <locale.h>
00017 #include <getopt.h>
00018 #include <unistd.h>
00019 #include <sys/stat.h>
00020 #include <sys/types.h>
00021 #include <glob.h>
00022 #include <errno.h>
00023 #include <err.h>
00024 #include <stdint.h>
00025 #include <math.h>
00026 
00027 #include <xcb/xcb.h>
00028 #include <xcb/xcb_aux.h>
00029 #include <xcb/xcb_keysyms.h>
00030 #include <xcb/xcb_icccm.h>
00031 
00032 /* Contains compatibility definitions for old libxcb versions */
00033 #ifdef XCB_COMPAT
00034 #include "xcb_compat.h"
00035 #endif
00036 
00037 #include "data.h"
00038 #include "util.h"
00039 #include "ipc.h"
00040 #include "tree.h"
00041 #include "log.h"
00042 #include "xcb.h"
00043 #include "manage.h"
00044 #include "workspace.h"
00045 #include "i3.h"
00046 #include "x.h"
00047 #include "click.h"
00048 #include "floating.h"
00049 #include "config.h"
00050 #include "handlers.h"
00051 #include "randr.h"
00052 #include "xinerama.h"
00053 #include "con.h"
00054 #include "load_layout.h"
00055 #include "render.h"
00056 #include "window.h"
00057 #include "match.h"
00058 #include "cmdparse.h"
00059 #include "xcursor.h"
00060 #include "resize.h"
00061 #include "sighandler.h"
00062 #include "move.h"
00063 #include "output.h"
00064 #include "ewmh.h"
00065 #include "assignments.h"
00066 
00067 #endif