]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkx.h
Rename GdkDragContextX11 to GdkX11DragContext
[~andy/gtk] / gdk / x11 / gdkx.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GDK_X_H__
28 #define __GDK_X_H__
29
30 #include <gdk/gdk.h>
31
32 #include <X11/Xlib.h>
33 #include <X11/Xutil.h>
34
35 /**
36  * SECTION:x_interaction
37  * @Short_description: X backend-specific functions
38  * @Title: X Window System Interaction
39  *
40  * The functions in this section are specific to the GDK X11 backend.
41  * To use them, you need to include the <literal>&lt;gdk/gdkx.h&gt;</literal>
42  * header and use the X11-specific pkg-config files to build your
43  * application (either <literal>gdk-x11-3.0</literal> or
44  * <literal>gtk+-x11-3.0</literal>).
45  *
46  * To make your code compile with other GDK backends, guard backend-specific
47  * calls by an ifdef as follows:
48  * <informalexample><programlisting>
49  * #ifdef GDK_WINDOWING_X11
50  *   /<!---->* X11-specific calls here... *<!---->/
51  * #endif
52  * </programlisting></informalexample>
53  */
54
55
56 #define __GDKX_H_INSIDE__
57
58 #include <gdk/x11/gdkx11cursor.h>
59 #include <gdk/x11/gdkx11device-core.h>
60 #include <gdk/x11/gdkx11device-xi.h>
61 #include <gdk/x11/gdkx11device-xi2.h>
62 #include <gdk/x11/gdkx11devicemanager-core.h>
63 #include <gdk/x11/gdkx11devicemanager-xi.h>
64 #include <gdk/x11/gdkx11devicemanager-xi2.h>
65 #include <gdk/x11/gdkx11display.h>
66 #include <gdk/x11/gdkx11displaymanager.h>
67 #include <gdk/x11/gdkx11dnd.h>
68 #include <gdk/x11/gdkx11keys.h>
69 #include <gdk/x11/gdkx11property.h>
70 #include <gdk/x11/gdkx11screen.h>
71 #include <gdk/x11/gdkx11selection.h>
72 #include <gdk/x11/gdkx11utils.h>
73 #include <gdk/x11/gdkx11visual.h>
74 #include <gdk/x11/gdkx11window.h>
75
76 #undef __GDKX_H_INSIDE__
77
78 #endif /* __GDK_X_H__ */