]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkxid.c
Merge branch 'master' into client-side-windows
[~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   if (g_hash_table_lookup (display_x11->xid_ht, xid))
61     g_warning ("XID collision, trouble ahead");
62
63   g_hash_table_insert (display_x11->xid_ht, xid, data);
64 }
65
66 void
67 _gdk_xid_table_remove (GdkDisplay *display,
68                        XID         xid)
69 {
70   GdkDisplayX11 *display_x11;
71
72   g_return_if_fail (GDK_IS_DISPLAY (display));
73
74   display_x11 = GDK_DISPLAY_X11 (display);
75
76   if (display_x11->xid_ht)
77     g_hash_table_remove (display_x11->xid_ht, &xid);
78 }
79
80 /** 
81  * gdk_xid_table_lookup_for_display:
82  * @display: the #GdkDisplay.
83  * @xid: an X id.
84  *
85  * Returns the GDK object associated with the given X id.
86  *
87  * Returns: a GDK object associated with the given X id.
88  *
89  * Since: 2.2
90  */
91 gpointer
92 gdk_xid_table_lookup_for_display (GdkDisplay  *display,
93                                   XID          xid)
94 {
95   GdkDisplayX11 *display_x11;
96   gpointer data = NULL;
97   
98   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
99   
100   display_x11 = GDK_DISPLAY_X11 (display);
101
102   if (display_x11->xid_ht)
103     data = g_hash_table_lookup (display_x11->xid_ht, &xid);
104   
105   return data;
106 }
107
108
109 /**
110  * gdk_xid_table_lookup:
111  * @xid: an X id.
112  * 
113  * Returns the Gdk object associated with the given X id.
114  * 
115  * Return value: the associated Gdk object, which may be a #GdkPixmap,
116  * a #GdkWindow or a #GdkFont.
117  **/
118 gpointer
119 gdk_xid_table_lookup (XID xid)
120 {
121   return gdk_xid_table_lookup_for_display (gdk_display_get_default (), xid);
122 }
123
124 static guint
125 gdk_xid_hash (XID *xid)
126 {
127   return *xid;
128 }
129
130 static gboolean
131 gdk_xid_equal (XID *a,
132                XID *b)
133 {
134   return ((*a & ~XID_FONT_BIT) == (*b & ~XID_FONT_BIT));
135 }
136
137 #define __GDK_XID_C__
138 #include "gdkaliasdef.c"