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