]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkxid.c
Include "config.h" instead of <config.h> Command used: find -name
[~andy/gtk] / gdk / x11 / gdkxid.c
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 #include "config.h"
28 #include "gdkx.h"
29 #include "gdkprivate-x11.h"
30 #include "gdkdisplay-x11.h"
31 #include "gdkalias.h"
32 #include <stdio.h>
33
34 static guint     gdk_xid_hash  (XID *xid);
35 static gboolean  gdk_xid_equal (XID *a,
36                                 XID *b);
37
38
39 /* The 3 high bits of XIDs are unused. We use one to mark fonts, 
40  * since we must be able to skip fonts when iterating over all XIDs.
41  */
42 #define XID_FONT_BIT (1<<31)
43
44 void
45 _gdk_xid_table_insert (GdkDisplay *display,
46                        XID        *xid,
47                        gpointer    data)
48 {
49   GdkDisplayX11 *display_x11;
50   
51   g_return_if_fail (xid != NULL);
52   g_return_if_fail (GDK_IS_DISPLAY (display));
53   
54   display_x11 = GDK_DISPLAY_X11 (display);
55
56   if (!display_x11->xid_ht)
57     display_x11->xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash,
58                                             (GEqualFunc) gdk_xid_equal);
59
60   g_hash_table_insert (display_x11->xid_ht, xid, data);
61 }
62
63 void
64 _gdk_xid_table_remove (GdkDisplay *display,
65                        XID         xid)
66 {
67   GdkDisplayX11 *display_x11;
68   
69   g_return_if_fail (GDK_IS_DISPLAY (display));
70   
71   display_x11 = GDK_DISPLAY_X11 (display);
72   
73   if (display_x11->xid_ht)
74     g_hash_table_remove (display_x11->xid_ht, &xid);
75 }
76
77 /** 
78  * gdk_xid_table_lookup_for_display:
79  * @display: the #GdkDisplay.
80  * @xid: an X id.
81  *
82  * Returns the GDK object associated with the given X id.
83  *
84  * Returns: a GDK object associated with the given X id.
85  *
86  * Since: 2.2
87  */
88 gpointer
89 gdk_xid_table_lookup_for_display (GdkDisplay  *display,
90                                   XID          xid)
91 {
92   GdkDisplayX11 *display_x11;
93   gpointer data = NULL;
94   
95   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
96   
97   display_x11 = GDK_DISPLAY_X11 (display);
98
99   if (display_x11->xid_ht)
100     data = g_hash_table_lookup (display_x11->xid_ht, &xid);
101   
102   return data;
103 }
104
105
106 /**
107  * gdk_xid_table_lookup:
108  * @xid: an X id.
109  * 
110  * Returns the Gdk object associated with the given X id.
111  * 
112  * Return value: the associated Gdk object, which may be a #GdkPixmap,
113  * a #GdkWindow or a #GdkFont.
114  **/
115 gpointer
116 gdk_xid_table_lookup (XID xid)
117 {
118   return gdk_xid_table_lookup_for_display (gdk_display_get_default (), xid);
119 }
120
121 static guint
122 gdk_xid_hash (XID *xid)
123 {
124   return *xid;
125 }
126
127 static gboolean
128 gdk_xid_equal (XID *a,
129                XID *b)
130 {
131   return ((*a & ~XID_FONT_BIT) == (*b & ~XID_FONT_BIT));
132 }
133
134 #define __GDK_XID_C__
135 #include "gdkaliasdef.c"