aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox2/core/mb-wm.h
diff options
context:
space:
mode:
Diffstat (limited to 'matchbox2/core/mb-wm.h')
-rw-r--r--matchbox2/core/mb-wm.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/matchbox2/core/mb-wm.h b/matchbox2/core/mb-wm.h
new file mode 100644
index 0000000..0643510
--- /dev/null
+++ b/matchbox2/core/mb-wm.h
@@ -0,0 +1,62 @@
+/*
+ * Matchbox Window Manager II - A lightweight window manager not for the
+ * desktop.
+ *
+ * Authored By Matthew Allum <mallum@o-hand.com>
+ *
+ * Copyright (c) 2005 OpenedHand Ltd - http://o-hand.com
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef _HAVE_MB_WM_H
+#define _HAVE_MB_WM_H
+
+#define _GNU_SOURCE /* For vasprintf */
+
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <X11/Xlib.h>
+#include <X11/Xatom.h> /* for XA_ATOM etc */
+#include <X11/keysym.h> /* key mask defines */
+
+#include <matchbox2/mb-wm-config.h>
+#include <matchbox2/core/xas.h> /* async stuff not needed for xlib on xcb */
+
+#ifndef TRUE
+#define TRUE 1
+#endif
+
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+#include <matchbox2/core/mb-wm-macros.h>
+#include <matchbox2/core/mb-wm-debug.h>
+#include <matchbox2/core/mb-wm-types.h>
+#include <matchbox2/core/mb-wm-util.h>
+#include <matchbox2/core/mb-wm-object.h>
+#include <matchbox2/core/mb-wm-atoms.h>
+#include <matchbox2/core/mb-wm-props.h>
+#include <matchbox2/core/mb-wm-keys.h>
+#include <matchbox2/core/mb-wm-decor.h>
+#include <matchbox2/core/mb-wm-client-window.h>
+#include <matchbox2/core/mb-wm-root-window.h>
+#include <matchbox2/core/mb-wm-client.h>
+#include <matchbox2/core/mb-wm-client-base.h>
+#include <matchbox2/core/mb-wm-layout.h>
+#include <matchbox2/core/mb-wm-stack.h>
+#include <matchbox2/core/mb-window-manager.h>
+#include <matchbox2/core/mb-wm-main-context.h>
+#endif