]> icculus.org git repositories - dana/openbox.git/blob - openbox/extensions.h
more focus cleanups. ignored focusin's were not working right recursively.
[dana/openbox.git] / openbox / extensions.h
1 #ifndef __extensions_h
2 #define __extensions_h
3
4 #include <X11/Xlib.h>
5 #ifdef    XKB
6 #include <X11/XKBlib.h>
7 #endif
8 #ifdef    SHAPE
9 #include <X11/extensions/shape.h>
10 #endif
11 #ifdef    XINERAMA
12 #include <X11/extensions/Xinerama.h>
13 #endif
14 #include <glib.h>
15
16 /*! Does the display have the XKB extension? */
17 extern gboolean extensions_xkb;
18 /*! Base for events for the XKB extension */
19 extern int extensions_xkb_event_basep;
20
21 /*! Does the display have the Shape extension? */
22 extern gboolean extensions_shape;
23 /*! Base for events for the Shape extension */
24 extern int extensions_shape_event_basep;
25
26 /*! Does the display have the Xinerama extension? */
27 extern gboolean extensions_xinerama;
28 /*! Base for events for the Xinerama extension */
29 extern int extensions_xinerama_event_basep;
30
31 void extensions_query_all();
32   
33 #endif