]> Pileus Git - ~andy/gtk/blob - gdk/gdkxid.c
forward declaration for gtk_window_paint declare xid_ht static get the
[~andy/gtk] / gdk / 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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #include "gdkprivate.h"
20 #include <stdio.h>
21
22 static guint gdk_xid_hash    (XID *xid);
23 static gint  gdk_xid_compare (XID *a,
24                               XID *b);
25
26
27 static GHashTable *xid_ht = NULL;
28
29
30 void
31 gdk_xid_table_insert (XID      *xid,
32                       gpointer  data)
33 {
34   g_return_if_fail (xid != NULL);
35
36   if (!xid_ht)
37     xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash,
38                                (GCompareFunc) gdk_xid_compare);
39
40   g_hash_table_insert (xid_ht, xid, data);
41 }
42
43 void
44 gdk_xid_table_remove (XID xid)
45 {
46   if (!xid_ht)
47     xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash,
48                                (GCompareFunc) gdk_xid_compare);
49
50   g_hash_table_remove (xid_ht, &xid);
51 }
52
53 gpointer
54 gdk_xid_table_lookup (XID xid)
55 {
56   gpointer data = NULL;
57
58   if (xid_ht)
59     data = g_hash_table_lookup (xid_ht, &xid);
60   
61   return data;
62 }
63
64
65 static guint
66 gdk_xid_hash (XID *xid)
67 {
68   return *xid;
69 }
70
71 static gint
72 gdk_xid_compare (XID *a,
73                  XID *b)
74 {
75   return (*a == *b);
76 }