/* * Matchbox Window Manager II - A lightweight window manager not for the * desktop. * * Authored By Matthew Allum * * 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 #include #include #include #include /* for XA_ATOM etc */ #include /* key mask defines */ #include "xas.h" /* async stuff not needed for xlib on xcb */ #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #include "mb-wm-macros.h" #include "mb-wm-debug.h" #include "mb-wm-types.h" #include "mb-wm-util.h" #include "mb-wm-object.h" #include "mb-wm-atoms.h" #include "mb-wm-props.h" #include "mb-wm-keys.h" #include "mb-wm-decor.h" #include "mb-wm-client-window.h" #include "mb-wm-root-window.h" #include "mb-wm-client.h" #include "mb-wm-client-base.h" #include "mb-wm-layout.h" #include "mb-wm-stack.h" #include "mb-window-manager.h" #include "mb-wm-main-context.h" #endif