]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkxid.c
3950eede7fc4738b5d50e9ec40a6a06452b39f3b
[~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_x11_display_add_window (GdkDisplay *display,
48                              XID        *xid,
49                              GdkWindow  *data)
50 {
51   GdkX11Display *display_x11;
52
53   g_return_if_fail (xid != NULL);
54   g_return_if_fail (GDK_IS_DISPLAY (display));
55
56   display_x11 = GDK_X11_DISPLAY (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_x11_display_remove_window (GdkDisplay *display,
70                                 XID         xid)
71 {
72   GdkX11Display *display_x11;
73
74   g_return_if_fail (GDK_IS_DISPLAY (display));
75
76   display_x11 = GDK_X11_DISPLAY (display);
77
78   if (display_x11->xid_ht)
79     g_hash_table_remove (display_x11->xid_ht, &xid);
80 }
81
82 /**
83  * gdk_x11_window_lookup_for_display:
84  * @display: (type GdkX11Window): the #GdkDisplay corresponding to the
85  *           window handle
86  * @window: an XLib <type>Window</type>
87  *
88  * Looks up the #GdkWindow that wraps the given native window handle.
89  *
90  * Return value: (transfer none): the #GdkWindow wrapper for the native
91  *    window, or %NULL if there is none.
92  *
93  * Since: 2.24
94  */
95 GdkWindow *
96 gdk_x11_window_lookup_for_display (GdkDisplay *display,
97                                    Window      window)
98 {
99   GdkX11Display *display_x11;
100   GdkWindow *data = NULL;
101
102   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
103
104   display_x11 = GDK_X11_DISPLAY (display);
105
106   if (display_x11->xid_ht)
107     data = g_hash_table_lookup (display_x11->xid_ht, &window);
108
109   return data;
110 }