]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkxid.c
92c8cecb475016066643a52cc0d4f1c7a5eab4d3
[~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 "gdkprivate-x11.h"
28 #include "gdkdisplay-x11.h"
29 #include <stdio.h>
30
31 static guint     gdk_xid_hash  (XID *xid);
32 static gboolean  gdk_xid_equal (XID *a,
33                                 XID *b);
34
35
36 void
37 _gdk_xid_table_insert (GdkDisplay *display,
38                        XID        *xid,
39                        gpointer    data)
40 {
41   GdkDisplayX11 *display_x11;
42   
43   g_return_if_fail (xid != NULL);
44   g_return_if_fail (GDK_IS_DISPLAY (display));
45   
46   display_x11 = GDK_DISPLAY_X11 (display);
47
48   if (!display_x11->xid_ht)
49     display_x11->xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash,
50                                             (GEqualFunc) gdk_xid_equal);
51
52   g_hash_table_insert (display_x11->xid_ht, xid, data);
53 }
54
55 void
56 _gdk_xid_table_remove (GdkDisplay *display,
57                        XID         xid)
58 {
59   GdkDisplayX11 *display_x11;
60   
61   g_return_if_fail (GDK_IS_DISPLAY (display));
62   
63   display_x11 = GDK_DISPLAY_X11 (display);
64   
65   if (display_x11->xid_ht)
66     g_hash_table_remove (display_x11->xid_ht, &xid);
67 }
68
69 /** 
70  * gdk_xid_table_lookup_for_display:
71  * @display : the #GdkDisplay.
72  * @xid : an X id.
73  *
74  * Returns the Gdk object associated with the given X id.
75  *
76  * Returns: an GdkObject associated with the given X id.
77  */
78 gpointer
79 gdk_xid_table_lookup_for_display (GdkDisplay  *display,
80                                   XID          xid)
81 {
82   GdkDisplayX11 *display_x11;
83   gpointer data = NULL;
84   
85   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
86   
87   display_x11 = GDK_DISPLAY_X11 (display);
88
89   if (display_x11->xid_ht)
90     data = g_hash_table_lookup (display_x11->xid_ht, &xid);
91   
92   return data;
93 }
94
95
96 /**
97  * gdk_xid_table_lookup:
98  * @xid: an X id.
99  * 
100  * Returns the Gdk object associated with the given X id.
101  * 
102  * Return value: the associated Gdk object, which may be a #GdkPixmap,
103  * a #GdkWindow or a #GdkFont.
104  **/
105 gpointer
106 gdk_xid_table_lookup (XID xid)
107 {
108   return gdk_xid_table_lookup_for_display (gdk_display_get_default (), xid);
109 }
110
111 static guint
112 gdk_xid_hash (XID *xid)
113 {
114   return *xid;
115 }
116
117 static gboolean
118 gdk_xid_equal (XID *a,
119                XID *b)
120 {
121   return (*a == *b);
122 }