aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/matchbox.h
blob: 0a745ebfb1351d551cfb7ab059eacb37bf4ca36c (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 *  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 <matchbox/mb-wm-config.h>
#include <matchbox/xas.h>    		/* async stuff not needed for xlib on xcb */

#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

#include <matchbox/mb-wm-macros.h>
#include <matchbox/mb-wm-debug.h>
#include <matchbox/mb-wm-types.h>
#include <matchbox/mb-wm-util.h>
#include <matchbox/mb-wm-object.h>
#include <matchbox/mb-wm-atoms.h>
#include <matchbox/mb-wm-props.h>
#include <matchbox/mb-wm-keys.h>
#include <matchbox/mb-wm-decor.h>
#include <matchbox/mb-wm-client-window.h>
#include <matchbox/mb-wm-root-window.h>
#include <matchbox/mb-wm-client.h>
#include <matchbox/mb-wm-client-base.h>
#include <matchbox/mb-wm-client-app.h>
#include <matchbox/mb-wm-client-desktop.h>
#include <matchbox/mb-wm-client-dialog.h>
#include <matchbox/mb-wm-client-input.h>
#include <matchbox/mb-wm-client-menu.h>
#include <matchbox/mb-wm-client-note.h>
#include <matchbox/mb-wm-client-override.h>
#include <matchbox/mb-wm-client-panel.h>
#include <matchbox/mb-wm-layout.h>
#include <matchbox/mb-wm-stack.h>
#include <matchbox/mb-wm-manager.h>
#include <matchbox/mb-wm-main-context.h>
#endif