]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkxid.c
Clean up gdkx.h a bit
[~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
29 #include "gdkprivate-x11.h"
30 #include "gdkdisplay-x11.h"
31
32 #include <stdio.h>
33
34 static guint
35 gdk_xid_hash (XID *xid)
36 {
37   return *xid;
38 }
39
40 static gboolean
41 gdk_xid_equal (XID *a, XID *b)
42 {
43   return (*a == *b);
44 }
45
46 void
47 _gdk_xid_table_insert (GdkDisplay *display,
48                        XID        *xid,
49                        gpointer    data)
50 {
51   GdkDisplayX11 *display_x11;
52
53   g_return_if_fail (xid != NULL);
54   g_return_if_fail (GDK_IS_DISPLAY (display));
55
56   display_x11 = GDK_DISPLAY_X11 (display);
57
58   if (!display_x11->xid_ht)
59     display_x11->xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash,
60                                             (GEqualFunc) gdk_xid_equal);
61
62   if (g_hash_table_lookup (display_x11->xid_ht, xid))
63     g_warning ("XID collision, trouble ahead");
64
65   g_hash_table_insert (display_x11->xid_ht, xid, data);
66 }
67
68 void
69 _gdk_xid_table_remove (GdkDisplay *display,
70                        XID         xid)
71 {
72   GdkDisplayX11 *display_x11;
73
74   g_return_if_fail (GDK_IS_DISPLAY (display));
75
76   display_x11 = GDK_DISPLAY_X11 (display);
77
78   if (display_x11->xid_ht)
79     g_hash_table_remove (display_x11->xid_ht, &xid);
80 }
81
82 gpointer
83 _gdk_xid_table_lookup (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 }