1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 extensions.h for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
20 #ifndef __extensions_h
21 #define __extensions_h
26 #include <X11/Xutil.h> /* shape.h uses Region which is in here */
28 #include <X11/XKBlib.h>
31 #include <X11/extensions/shape.h>
34 #include <X11/extensions/Xinerama.h>
37 #include <X11/extensions/Xrandr.h>
42 /*! Does the display have the XKB extension? */
43 extern gboolean extensions_xkb;
44 /*! Base for events for the XKB extension */
45 extern gint extensions_xkb_event_basep;
47 /*! Does the display have the Shape extension? */
48 extern gboolean extensions_shape;
49 /*! Base for events for the Shape extension */
50 extern gint extensions_shape_event_basep;
52 /*! Does the display have the Xinerama extension? */
53 extern gboolean extensions_xinerama;
54 /*! Base for events for the Xinerama extension */
55 extern gint extensions_xinerama_event_basep;
57 /*! Does the display have the RandR extension? */
58 extern gboolean extensions_randr;
59 /*! Base for events for the Randr extension */
60 extern gint extensions_randr_event_basep;
62 void extensions_query_all();
64 void extensions_xinerama_screens(Rect **areas, guint *nxin);