aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/core/mb-wm.h
blob: ec51a4915a487e05d3aceccc3f4231506bd93235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 *  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
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *
 */

#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 <matchbox/mb-wm-config.h>
#include <matchbox/core/xas.h>    		/* async stuff not needed for xlib on xcb */

#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

#include <matchbox/core/mb-wm-macros.h>
#include <matchbox/core/mb-wm-debug.h>
#include <matchbox/core/mb-wm-types.h>
#include <matchbox/core/mb-wm-util.h>
#include <matchbox/core/mb-wm-object.h>
#include <matchbox/core/mb-wm-atoms.h>
#include <matchbox/core/mb-wm-props.h>
#include <matchbox/core/mb-wm-keys.h>
#include <matchbox/core/mb-wm-decor.h>
#include <matchbox/core/mb-wm-client-window.h>
#include <matchbox/core/mb-wm-root-window.h>
#include <matchbox/core/mb-wm-client.h>
#include <matchbox/core/mb-wm-client-base.h>
#include <matchbox/core/mb-wm-layout.h>
#include <matchbox/core/mb-wm-stack.h>
#include <matchbox/core/mb-window-manager.h>
#include <matchbox/core/mb-wm-main-context.h>
#endif