]> git.sur5r.net Git - i3/i3/blobdiff - include/all.h
Remove compatibility definitions for xcb-util < 0.3.8 (#2473)
[i3/i3] / include / all.h
index 9c08ebef8e8067c241dfb5f087b45374a5c64cbf..e39e27b9fdf308b23ce659fd727e4ef9e31bb689 100644 (file)
@@ -1,12 +1,17 @@
 /*
+ * vim:ts=4:sw=4:expandtab
+ *
+ * i3 - an improved dynamic tiling window manager
+ * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
+ *
  * This header file includes all relevant files of i3 and the most often used
  * system header files. This reduces boilerplate (the amount of code duplicated
  * at the beginning of each source file) and is not significantly slower at
  * compile-time.
  *
  */
-#ifndef _ALL_H
-#define _ALL_H
+#ifndef I3_ALL_H
+#define I3_ALL_H
 
 #include <assert.h>
 #include <stdbool.h>
 #include <xcb/xcb_keysyms.h>
 #include <xcb/xcb_icccm.h>
 
-/* Contains compatibility definitions for old libxcb versions */
-#ifdef XCB_COMPAT
-#include "xcb_compat.h"
-#endif
+#include <yajl/yajl_gen.h>
+#include <yajl/yajl_version.h>
 
 #include "data.h"
 #include "util.h"
@@ -46,6 +49,7 @@
 #include "i3.h"
 #include "x.h"
 #include "click.h"
+#include "key_press.h"
 #include "floating.h"
 #include "config.h"
 #include "handlers.h"
 #include "ewmh.h"
 #include "assignments.h"
 #include "regex.h"
+#include "libi3.h"
+#include "startup.h"
+#include "scratchpad.h"
+#include "commands.h"
+#include "commands_parser.h"
+#include "bindings.h"
+#include "config_directives.h"
+#include "config_parser.h"
+#include "fake_outputs.h"
+#include "display_version.h"
+#include "restore_layout.h"
+#include "main.h"
 
 #endif