]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkdisplay-x11.c
x11: _gdk_x11_drawable_update_size() => _gdk_x11_window_update_size()
[~andy/gtk] / gdk / x11 / gdkdisplay-x11.c
1 /* GDK - The GIMP Drawing Kit
2  * gdkdisplay-x11.c
3  * 
4  * Copyright 2001 Sun Microsystems Inc.
5  * Copyright (C) 2004 Nokia Corporation
6  *
7  * Erwann Chenede <erwann.chenede@sun.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #include "config.h"
26
27 #include "gdkdisplay-x11.h"
28
29 #include "gdkx.h"
30 #include "gdkasync.h"
31 #include "gdkdisplay.h"
32 #include "gdkeventsource.h"
33 #include "gdkeventtranslator.h"
34 #include "gdkscreen.h"
35 #include "gdkscreen-x11.h"
36 #include "gdkinternals.h"
37 #include "gdkdeviceprivate.h"
38 #include "gdkdevicemanager.h"
39 #include "xsettings-client.h"
40
41 #include <glib.h>
42 #include <glib/gprintf.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <errno.h>
46 #include <unistd.h>
47
48 #include <X11/Xatom.h>
49
50 #ifdef HAVE_XKB
51 #include <X11/XKBlib.h>
52 #endif
53
54 #ifdef HAVE_XFIXES
55 #include <X11/extensions/Xfixes.h>
56 #endif
57
58 #include <X11/extensions/shape.h>
59
60 #ifdef HAVE_XCOMPOSITE
61 #include <X11/extensions/Xcomposite.h>
62 #endif
63
64 #ifdef HAVE_XDAMAGE
65 #include <X11/extensions/Xdamage.h>
66 #endif
67
68 #ifdef HAVE_RANDR
69 #include <X11/extensions/Xrandr.h>
70 #endif
71
72 typedef struct _GdkErrorTrap  GdkErrorTrap;
73
74 struct _GdkErrorTrap
75 {
76   /* Next sequence when trap was pushed, i.e. first sequence to
77    * ignore
78    */
79   gulong start_sequence;
80
81   /* Next sequence when trap was popped, i.e. first sequence
82    * to not ignore. 0 if trap is still active.
83    */
84   gulong end_sequence;
85
86   /* Most recent error code within the sequence */
87   int error_code;
88 };
89
90 static void   gdk_display_x11_dispose            (GObject            *object);
91 static void   gdk_display_x11_finalize           (GObject            *object);
92
93 static void     gdk_display_x11_event_translator_init (GdkEventTranslatorIface *iface);
94
95 static gboolean gdk_display_x11_translate_event (GdkEventTranslator *translator,
96                                                  GdkDisplay         *display,
97                                                  GdkEvent           *event,
98                                                  XEvent             *xevent);
99
100 #ifdef HAVE_X11R6
101 static void gdk_internal_connection_watch (Display  *display,
102                                            XPointer  arg,
103                                            gint      fd,
104                                            gboolean  opening,
105                                            XPointer *watch_data);
106 #endif /* HAVE_X11R6 */
107
108 typedef struct _GdkEventTypeX11 GdkEventTypeX11;
109
110 struct _GdkEventTypeX11
111 {
112   gint base;
113   gint n_events;
114 };
115
116 /* Note that we never *directly* use WM_LOCALE_NAME, WM_PROTOCOLS,
117  * but including them here has the side-effect of getting them
118  * into the internal Xlib cache
119  */
120 static const char *const precache_atoms[] = {
121   "UTF8_STRING",
122   "WM_CLIENT_LEADER",
123   "WM_DELETE_WINDOW",
124   "WM_ICON_NAME",
125   "WM_LOCALE_NAME",
126   "WM_NAME",
127   "WM_PROTOCOLS",
128   "WM_TAKE_FOCUS",
129   "WM_WINDOW_ROLE",
130   "_NET_ACTIVE_WINDOW",
131   "_NET_CURRENT_DESKTOP",
132   "_NET_FRAME_EXTENTS",
133   "_NET_STARTUP_ID",
134   "_NET_WM_CM_S0",
135   "_NET_WM_DESKTOP",
136   "_NET_WM_ICON",
137   "_NET_WM_ICON_NAME",
138   "_NET_WM_NAME",
139   "_NET_WM_PID",
140   "_NET_WM_PING",
141   "_NET_WM_STATE",
142   "_NET_WM_STATE_ABOVE",
143   "_NET_WM_STATE_BELOW",
144   "_NET_WM_STATE_FULLSCREEN",
145   "_NET_WM_STATE_MODAL",
146   "_NET_WM_STATE_MAXIMIZED_VERT",
147   "_NET_WM_STATE_MAXIMIZED_HORZ",
148   "_NET_WM_STATE_SKIP_TASKBAR",
149   "_NET_WM_STATE_SKIP_PAGER",
150   "_NET_WM_STATE_STICKY",
151   "_NET_WM_SYNC_REQUEST",
152   "_NET_WM_SYNC_REQUEST_COUNTER",
153   "_NET_WM_WINDOW_TYPE",
154   "_NET_WM_WINDOW_TYPE_NORMAL",
155   "_NET_WM_USER_TIME",
156   "_NET_VIRTUAL_ROOTS"
157 };
158
159 G_DEFINE_TYPE_WITH_CODE (GdkDisplayX11, _gdk_display_x11, GDK_TYPE_DISPLAY,
160                          G_IMPLEMENT_INTERFACE (GDK_TYPE_EVENT_TRANSLATOR,
161                                                 gdk_display_x11_event_translator_init))
162
163
164 static void
165 _gdk_display_x11_class_init (GdkDisplayX11Class * class)
166 {
167   GObjectClass *object_class = G_OBJECT_CLASS (class);
168   
169   object_class->dispose = gdk_display_x11_dispose;
170   object_class->finalize = gdk_display_x11_finalize;
171 }
172
173 static void
174 _gdk_display_x11_init (GdkDisplayX11 *display)
175 {
176 }
177
178 static void
179 gdk_display_x11_event_translator_init (GdkEventTranslatorIface *iface)
180 {
181   iface->translate_event = gdk_display_x11_translate_event;
182 }
183
184 static void
185 do_net_wm_state_changes (GdkWindow *window)
186 {
187   GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
188   GdkWindowState old_state;
189
190   if (GDK_WINDOW_DESTROYED (window) ||
191       gdk_window_get_window_type (window) != GDK_WINDOW_TOPLEVEL)
192     return;
193
194   old_state = gdk_window_get_state (window);
195
196   /* For found_sticky to remain TRUE, we have to also be on desktop
197    * 0xFFFFFFFF
198    */
199   if (old_state & GDK_WINDOW_STATE_STICKY)
200     {
201       if (!(toplevel->have_sticky && toplevel->on_all_desktops))
202         gdk_synthesize_window_state (window,
203                                      GDK_WINDOW_STATE_STICKY,
204                                      0);
205     }
206   else
207     {
208       if (toplevel->have_sticky || toplevel->on_all_desktops)
209         gdk_synthesize_window_state (window,
210                                      0,
211                                      GDK_WINDOW_STATE_STICKY);
212     }
213
214   if (old_state & GDK_WINDOW_STATE_FULLSCREEN)
215     {
216       if (!toplevel->have_fullscreen)
217         gdk_synthesize_window_state (window,
218                                      GDK_WINDOW_STATE_FULLSCREEN,
219                                      0);
220     }
221   else
222     {
223       if (toplevel->have_fullscreen)
224         gdk_synthesize_window_state (window,
225                                      0,
226                                      GDK_WINDOW_STATE_FULLSCREEN);
227     }
228
229   /* Our "maximized" means both vertical and horizontal; if only one,
230    * we don't expose that via GDK
231    */
232   if (old_state & GDK_WINDOW_STATE_MAXIMIZED)
233     {
234       if (!(toplevel->have_maxvert && toplevel->have_maxhorz))
235         gdk_synthesize_window_state (window,
236                                      GDK_WINDOW_STATE_MAXIMIZED,
237                                      0);
238     }
239   else
240     {
241       if (toplevel->have_maxvert && toplevel->have_maxhorz)
242         gdk_synthesize_window_state (window,
243                                      0,
244                                      GDK_WINDOW_STATE_MAXIMIZED);
245     }
246 }
247
248 static void
249 gdk_check_wm_desktop_changed (GdkWindow *window)
250 {
251   GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
252   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
253
254   Atom type;
255   gint format;
256   gulong nitems;
257   gulong bytes_after;
258   guchar *data;
259   gulong *desktop;
260
261   type = None;
262   gdk_error_trap_push ();
263   XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display),
264                       GDK_WINDOW_XID (window),
265                       gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP"),
266                       0, G_MAXLONG, False, XA_CARDINAL, &type,
267                       &format, &nitems,
268                       &bytes_after, &data);
269   gdk_error_trap_pop_ignored ();
270
271   if (type != None)
272     {
273       desktop = (gulong *)data;
274       toplevel->on_all_desktops = (*desktop == 0xFFFFFFFF);
275       XFree (desktop);
276     }
277   else
278     toplevel->on_all_desktops = FALSE;
279
280   do_net_wm_state_changes (window);
281 }
282
283 static void
284 gdk_check_wm_state_changed (GdkWindow *window)
285 {
286   GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
287   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
288
289   Atom type;
290   gint format;
291   gulong nitems;
292   gulong bytes_after;
293   guchar *data;
294   Atom *atoms = NULL;
295   gulong i;
296
297   gboolean had_sticky = toplevel->have_sticky;
298
299   toplevel->have_sticky = FALSE;
300   toplevel->have_maxvert = FALSE;
301   toplevel->have_maxhorz = FALSE;
302   toplevel->have_fullscreen = FALSE;
303
304   type = None;
305   gdk_error_trap_push ();
306   XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
307                       gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"),
308                       0, G_MAXLONG, False, XA_ATOM, &type, &format, &nitems,
309                       &bytes_after, &data);
310   gdk_error_trap_pop_ignored ();
311
312   if (type != None)
313     {
314       Atom sticky_atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE_STICKY");
315       Atom maxvert_atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE_MAXIMIZED_VERT");
316       Atom maxhorz_atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE_MAXIMIZED_HORZ");
317       Atom fullscreen_atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE_FULLSCREEN");
318
319       atoms = (Atom *)data;
320
321       i = 0;
322       while (i < nitems)
323         {
324           if (atoms[i] == sticky_atom)
325             toplevel->have_sticky = TRUE;
326           else if (atoms[i] == maxvert_atom)
327             toplevel->have_maxvert = TRUE;
328           else if (atoms[i] == maxhorz_atom)
329             toplevel->have_maxhorz = TRUE;
330           else if (atoms[i] == fullscreen_atom)
331             toplevel->have_fullscreen = TRUE;
332
333           ++i;
334         }
335
336       XFree (atoms);
337     }
338
339   /* When have_sticky is turned on, we have to check the DESKTOP property
340    * as well.
341    */
342   if (toplevel->have_sticky && !had_sticky)
343     gdk_check_wm_desktop_changed (window);
344   else
345     do_net_wm_state_changes (window);
346 }
347
348 static GdkWindow *
349 get_event_window (GdkEventTranslator *translator,
350                   XEvent             *xevent)
351 {
352   GdkDisplay *display;
353   Window xwindow;
354
355   display = (GdkDisplay *) translator;
356
357   switch (xevent->type)
358     {
359     case DestroyNotify:
360       xwindow = xevent->xdestroywindow.window;
361       break;
362     case UnmapNotify:
363       xwindow = xevent->xunmap.window;
364       break;
365     case MapNotify:
366       xwindow = xevent->xmap.window;
367       break;
368     case ConfigureNotify:
369       xwindow = xevent->xconfigure.window;
370       break;
371     default:
372       xwindow = xevent->xany.window;
373     }
374
375   return gdk_window_lookup_for_display (display, xwindow);
376 }
377
378 static gboolean
379 gdk_display_x11_translate_event (GdkEventTranslator *translator,
380                                  GdkDisplay         *display,
381                                  GdkEvent           *event,
382                                  XEvent             *xevent)
383 {
384   GdkWindow *window;
385   GdkWindowObject *window_private;
386   GdkWindowImplX11 *window_impl = NULL;
387   GdkScreen *screen = NULL;
388   GdkScreenX11 *screen_x11 = NULL;
389   GdkToplevelX11 *toplevel = NULL;
390   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
391   gboolean return_val;
392   Window xwindow = None;
393
394   /* Find the GdkWindow that this event relates to.
395    * Basically this means substructure events
396    * are reported same as structure events
397    */
398   window = get_event_window (translator, xevent);
399   window_private = (GdkWindowObject *) window;
400
401   if (window)
402     {
403       /* We may receive events such as NoExpose/GraphicsExpose
404        * and ShmCompletion for pixmaps
405        */
406       if (!GDK_IS_WINDOW (window))
407         return FALSE;
408
409       screen = GDK_WINDOW_SCREEN (window);
410       screen_x11 = GDK_SCREEN_X11 (screen);
411       toplevel = _gdk_x11_window_get_toplevel (window);
412       window_impl = GDK_WINDOW_IMPL_X11 (window_private->impl);
413       xwindow = GDK_WINDOW_XID (window);
414
415       g_object_ref (window);
416     }
417
418   event->any.window = window;
419   event->any.send_event = xevent->xany.send_event ? TRUE : FALSE;
420
421   if (window_private && GDK_WINDOW_DESTROYED (window))
422     {
423       if (xevent->type != DestroyNotify)
424         {
425           return_val = FALSE;
426           goto done;
427         }
428     }
429
430   if (xevent->type == DestroyNotify)
431     {
432       int i, n;
433
434       n = gdk_display_get_n_screens (display);
435       for (i = 0; i < n; i++)
436         {
437           screen = gdk_display_get_screen (display, i);
438           screen_x11 = GDK_SCREEN_X11 (screen);
439
440           if (screen_x11->wmspec_check_window == xwindow)
441             {
442               screen_x11->wmspec_check_window = None;
443               screen_x11->last_wmspec_check_time = 0;
444               g_free (screen_x11->window_manager_name);
445               screen_x11->window_manager_name = g_strdup ("unknown");
446
447               /* careful, reentrancy */
448               _gdk_x11_screen_window_manager_changed (screen);
449
450               return_val = FALSE;
451               goto done;
452             }
453         }
454     }
455
456   /* We do a "manual" conversion of the XEvent to a
457    *  GdkEvent. The structures are mostly the same so
458    *  the conversion is fairly straightforward. We also
459    *  optionally print debugging info regarding events
460    *  received.
461    */
462
463   return_val = TRUE;
464
465   switch (xevent->type)
466     {
467     case KeymapNotify:
468       GDK_NOTE (EVENTS,
469                 g_message ("keymap notify"));
470
471       /* Not currently handled */
472       return_val = FALSE;
473       break;
474
475     case Expose:
476       GDK_NOTE (EVENTS,
477                 g_message ("expose:\t\twindow: %ld  %d  x,y: %d %d  w,h: %d %d%s",
478                            xevent->xexpose.window, xevent->xexpose.count,
479                            xevent->xexpose.x, xevent->xexpose.y,
480                            xevent->xexpose.width, xevent->xexpose.height,
481                            event->any.send_event ? " (send)" : ""));
482
483       if (window_private == NULL)
484         {
485           return_val = FALSE;
486           break;
487         }
488
489       {
490         GdkRectangle expose_rect;
491
492         expose_rect.x = xevent->xexpose.x;
493         expose_rect.y = xevent->xexpose.y;
494         expose_rect.width = xevent->xexpose.width;
495         expose_rect.height = xevent->xexpose.height;
496
497         _gdk_window_process_expose (window, xevent->xexpose.serial, &expose_rect);
498         return_val = FALSE;
499       }
500
501       break;
502
503     case GraphicsExpose:
504       {
505         GdkRectangle expose_rect;
506
507         GDK_NOTE (EVENTS,
508                   g_message ("graphics expose:\tdrawable: %ld",
509                              xevent->xgraphicsexpose.drawable));
510
511         if (window_private == NULL)
512           {
513             return_val = FALSE;
514             break;
515           }
516
517         expose_rect.x = xevent->xgraphicsexpose.x;
518         expose_rect.y = xevent->xgraphicsexpose.y;
519         expose_rect.width = xevent->xgraphicsexpose.width;
520         expose_rect.height = xevent->xgraphicsexpose.height;
521
522         _gdk_window_process_expose (window, xevent->xgraphicsexpose.serial, &expose_rect);
523         return_val = FALSE;
524       }
525       break;
526
527     case NoExpose:
528       GDK_NOTE (EVENTS,
529                 g_message ("no expose:\t\tdrawable: %ld",
530                            xevent->xnoexpose.drawable));
531
532       event->no_expose.type = GDK_NO_EXPOSE;
533       event->no_expose.window = window;
534
535       break;
536
537     case VisibilityNotify:
538 #ifdef G_ENABLE_DEBUG
539       if (_gdk_debug_flags & GDK_DEBUG_EVENTS)
540         switch (xevent->xvisibility.state)
541           {
542           case VisibilityFullyObscured:
543             g_message ("visibility notify:\twindow: %ld  none",
544                        xevent->xvisibility.window);
545             break;
546           case VisibilityPartiallyObscured:
547             g_message ("visibility notify:\twindow: %ld  partial",
548                        xevent->xvisibility.window);
549             break;
550           case VisibilityUnobscured:
551             g_message ("visibility notify:\twindow: %ld  full",
552                        xevent->xvisibility.window);
553             break;
554           }
555 #endif /* G_ENABLE_DEBUG */
556
557       if (window_private == NULL)
558         {
559           return_val = FALSE;
560           break;
561         }
562
563       event->visibility.type = GDK_VISIBILITY_NOTIFY;
564       event->visibility.window = window;
565
566       switch (xevent->xvisibility.state)
567         {
568         case VisibilityFullyObscured:
569           event->visibility.state = GDK_VISIBILITY_FULLY_OBSCURED;
570           break;
571
572         case VisibilityPartiallyObscured:
573           event->visibility.state = GDK_VISIBILITY_PARTIAL;
574           break;
575
576         case VisibilityUnobscured:
577           event->visibility.state = GDK_VISIBILITY_UNOBSCURED;
578           break;
579         }
580
581       break;
582
583     case CreateNotify:
584       GDK_NOTE (EVENTS,
585                 g_message ("create notify:\twindow: %ld  x,y: %d %d     w,h: %d %d  b-w: %d  parent: %ld         ovr: %d",
586                            xevent->xcreatewindow.window,
587                            xevent->xcreatewindow.x,
588                            xevent->xcreatewindow.y,
589                            xevent->xcreatewindow.width,
590                            xevent->xcreatewindow.height,
591                            xevent->xcreatewindow.border_width,
592                            xevent->xcreatewindow.parent,
593                            xevent->xcreatewindow.override_redirect));
594       /* not really handled */
595       break;
596
597     case DestroyNotify:
598       GDK_NOTE (EVENTS,
599                 g_message ("destroy notify:\twindow: %ld",
600                            xevent->xdestroywindow.window));
601
602       /* Ignore DestroyNotify from SubstructureNotifyMask */
603       if (xevent->xdestroywindow.window == xevent->xdestroywindow.event)
604         {
605           event->any.type = GDK_DESTROY;
606           event->any.window = window;
607
608           return_val = window_private && !GDK_WINDOW_DESTROYED (window);
609
610           if (window && GDK_WINDOW_XID (window) != screen_x11->xroot_window)
611             gdk_window_destroy_notify (window);
612         }
613       else
614         return_val = FALSE;
615
616       break;
617
618     case UnmapNotify:
619       GDK_NOTE (EVENTS,
620                 g_message ("unmap notify:\t\twindow: %ld",
621                            xevent->xmap.window));
622
623       event->any.type = GDK_UNMAP;
624       event->any.window = window;
625
626       /* If we are shown (not withdrawn) and get an unmap, it means we
627        * were iconified in the X sense. If we are withdrawn, and get
628        * an unmap, it means we hid the window ourselves, so we
629        * will have already flipped the iconified bit off.
630        */
631       if (window)
632         {
633           if (GDK_WINDOW_IS_MAPPED (window))
634             gdk_synthesize_window_state (window,
635                                          0,
636                                          GDK_WINDOW_STATE_ICONIFIED);
637
638           _gdk_xgrab_check_unmap (window, xevent->xany.serial);
639         }
640
641       break;
642
643     case MapNotify:
644       GDK_NOTE (EVENTS,
645                 g_message ("map notify:\t\twindow: %ld",
646                            xevent->xmap.window));
647
648       event->any.type = GDK_MAP;
649       event->any.window = window;
650
651       /* Unset iconified if it was set */
652       if (window && (((GdkWindowObject*)window)->state & GDK_WINDOW_STATE_ICONIFIED))
653         gdk_synthesize_window_state (window,
654                                      GDK_WINDOW_STATE_ICONIFIED,
655                                      0);
656
657       break;
658
659     case ReparentNotify:
660       GDK_NOTE (EVENTS,
661                 g_message ("reparent notify:\twindow: %ld  x,y: %d %d  parent: %ld      ovr: %d",
662                            xevent->xreparent.window,
663                            xevent->xreparent.x,
664                            xevent->xreparent.y,
665                            xevent->xreparent.parent,
666                            xevent->xreparent.override_redirect));
667
668       /* Not currently handled */
669       return_val = FALSE;
670       break;
671
672     case ConfigureNotify:
673       GDK_NOTE (EVENTS,
674                 g_message ("configure notify:\twindow: %ld  x,y: %d %d  w,h: %d %d  b-w: %d  above: %ld  ovr: %d%s",
675                            xevent->xconfigure.window,
676                            xevent->xconfigure.x,
677                            xevent->xconfigure.y,
678                            xevent->xconfigure.width,
679                            xevent->xconfigure.height,
680                            xevent->xconfigure.border_width,
681                            xevent->xconfigure.above,
682                            xevent->xconfigure.override_redirect,
683                            !window
684                            ? " (discarding)"
685                            : GDK_WINDOW_TYPE (window) == GDK_WINDOW_CHILD
686                            ? " (discarding child)"
687                            : xevent->xconfigure.event != xevent->xconfigure.window
688                            ? " (discarding substructure)"
689                            : ""));
690       if (window && GDK_WINDOW_TYPE (window) == GDK_WINDOW_ROOT)
691         {
692           window_private->width = xevent->xconfigure.width;
693           window_private->height = xevent->xconfigure.height;
694
695           _gdk_window_update_size (window);
696           _gdk_x11_window_update_size (GDK_WINDOW_IMPL_X11 (window_private->impl));
697           _gdk_x11_screen_size_changed (screen, xevent);
698         }
699
700 #ifdef HAVE_XSYNC
701       if (toplevel && display_x11->use_sync && !XSyncValueIsZero (toplevel->pending_counter_value))
702         {
703           toplevel->current_counter_value = toplevel->pending_counter_value;
704           XSyncIntToValue (&toplevel->pending_counter_value, 0);
705         }
706 #endif
707
708     if (!window ||
709           xevent->xconfigure.event != xevent->xconfigure.window ||
710           GDK_WINDOW_TYPE (window) == GDK_WINDOW_CHILD ||
711           GDK_WINDOW_TYPE (window) == GDK_WINDOW_ROOT)
712         return_val = FALSE;
713       else
714         {
715           event->configure.type = GDK_CONFIGURE;
716           event->configure.window = window;
717           event->configure.width = xevent->xconfigure.width;
718           event->configure.height = xevent->xconfigure.height;
719
720           if (!xevent->xconfigure.send_event &&
721               !xevent->xconfigure.override_redirect &&
722               !GDK_WINDOW_DESTROYED (window))
723             {
724               gint tx = 0;
725               gint ty = 0;
726               Window child_window = 0;
727
728               gdk_error_trap_push ();
729               if (XTranslateCoordinates (GDK_WINDOW_XDISPLAY (window),
730                                          GDK_WINDOW_XID (window),
731                                          screen_x11->xroot_window,
732                                          0, 0,
733                                          &tx, &ty,
734                                          &child_window))
735                 {
736                   event->configure.x = tx;
737                   event->configure.y = ty;
738                 }
739               gdk_error_trap_pop_ignored ();
740             }
741           else
742             {
743               event->configure.x = xevent->xconfigure.x;
744               event->configure.y = xevent->xconfigure.y;
745             }
746           window_private->x = event->configure.x;
747           window_private->y = event->configure.y;
748           window_private->width = xevent->xconfigure.width;
749           window_private->height = xevent->xconfigure.height;
750
751           _gdk_window_update_size (window);
752           _gdk_x11_window_update_size (GDK_WINDOW_IMPL_X11 (window_private->impl));
753
754           if (window_private->resize_count >= 1)
755             {
756               window_private->resize_count -= 1;
757
758               if (window_private->resize_count == 0)
759                 _gdk_moveresize_configure_done (display, window);
760             }
761         }
762       break;
763
764     case PropertyNotify:
765       GDK_NOTE (EVENTS,
766                 g_message ("property notify:\twindow: %ld, atom(%ld): %s%s%s",
767                            xevent->xproperty.window,
768                            xevent->xproperty.atom,
769                            "\"",
770                            gdk_x11_get_xatom_name_for_display (display, xevent->xproperty.atom),
771                            "\""));
772
773       if (window_private == NULL)
774         {
775           return_val = FALSE;
776           break;
777         }
778
779       /* We compare with the serial of the last time we mapped the
780        * window to avoid refetching properties that we set ourselves
781        */
782       if (toplevel &&
783           xevent->xproperty.serial >= toplevel->map_serial)
784         {
785           if (xevent->xproperty.atom == gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"))
786             gdk_check_wm_state_changed (window);
787
788           if (xevent->xproperty.atom == gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP"))
789             gdk_check_wm_desktop_changed (window);
790         }
791
792       if (window_private->event_mask & GDK_PROPERTY_CHANGE_MASK)
793         {
794           event->property.type = GDK_PROPERTY_NOTIFY;
795           event->property.window = window;
796           event->property.atom = gdk_x11_xatom_to_atom_for_display (display, xevent->xproperty.atom);
797           event->property.time = xevent->xproperty.time;
798           event->property.state = xevent->xproperty.state;
799         }
800       else
801         return_val = FALSE;
802
803       break;
804
805     case SelectionClear:
806       GDK_NOTE (EVENTS,
807                 g_message ("selection clear:\twindow: %ld",
808                            xevent->xproperty.window));
809
810       if (_gdk_selection_filter_clear_event (&xevent->xselectionclear))
811         {
812           event->selection.type = GDK_SELECTION_CLEAR;
813           event->selection.window = window;
814           event->selection.selection = gdk_x11_xatom_to_atom_for_display (display, xevent->xselectionclear.selection);
815           event->selection.time = xevent->xselectionclear.time;
816         }
817       else
818         return_val = FALSE;
819
820       break;
821
822     case SelectionRequest:
823       GDK_NOTE (EVENTS,
824                 g_message ("selection request:\twindow: %ld",
825                            xevent->xproperty.window));
826
827       event->selection.type = GDK_SELECTION_REQUEST;
828       event->selection.window = window;
829       event->selection.selection = gdk_x11_xatom_to_atom_for_display (display, xevent->xselectionrequest.selection);
830       event->selection.target = gdk_x11_xatom_to_atom_for_display (display, xevent->xselectionrequest.target);
831       event->selection.property = gdk_x11_xatom_to_atom_for_display (display, xevent->xselectionrequest.property);
832       event->selection.requestor = xevent->xselectionrequest.requestor;
833       event->selection.time = xevent->xselectionrequest.time;
834
835       break;
836
837     case SelectionNotify:
838       GDK_NOTE (EVENTS,
839                 g_message ("selection notify:\twindow: %ld",
840                            xevent->xproperty.window));
841
842       event->selection.type = GDK_SELECTION_NOTIFY;
843       event->selection.window = window;
844       event->selection.selection = gdk_x11_xatom_to_atom_for_display (display, xevent->xselection.selection);
845       event->selection.target = gdk_x11_xatom_to_atom_for_display (display, xevent->xselection.target);
846       if (xevent->xselection.property == None)
847         event->selection.property = GDK_NONE;
848       else
849         event->selection.property = gdk_x11_xatom_to_atom_for_display (display, xevent->xselection.property);
850       event->selection.time = xevent->xselection.time;
851
852       break;
853
854     case ColormapNotify:
855       GDK_NOTE (EVENTS,
856                 g_message ("colormap notify:\twindow: %ld",
857                            xevent->xcolormap.window));
858
859       /* Not currently handled */
860       return_val = FALSE;
861       break;
862
863     case ClientMessage:
864       {
865         GList *tmp_list;
866         GdkFilterReturn result = GDK_FILTER_CONTINUE;
867         GdkAtom message_type = gdk_x11_xatom_to_atom_for_display (display, xevent->xclient.message_type);
868
869         GDK_NOTE (EVENTS,
870                   g_message ("client message:\twindow: %ld",
871                              xevent->xclient.window));
872
873         tmp_list = display_x11->client_filters;
874         while (tmp_list)
875           {
876             GdkClientFilter *filter = tmp_list->data;
877             tmp_list = tmp_list->next;
878
879             if (filter->type == message_type)
880               {
881                 result = (*filter->function) (xevent, event, filter->data);
882                 if (result != GDK_FILTER_CONTINUE)
883                   break;
884               }
885           }
886
887         switch (result)
888           {
889           case GDK_FILTER_REMOVE:
890             return_val = FALSE;
891             break;
892           case GDK_FILTER_TRANSLATE:
893             return_val = TRUE;
894             break;
895           case GDK_FILTER_CONTINUE:
896             /* Send unknown ClientMessage's on to Gtk for it to use */
897             if (window_private == NULL)
898               {
899                 return_val = FALSE;
900               }
901             else
902               {
903                 event->client.type = GDK_CLIENT_EVENT;
904                 event->client.window = window;
905                 event->client.message_type = message_type;
906                 event->client.data_format = xevent->xclient.format;
907                 memcpy(&event->client.data, &xevent->xclient.data,
908                        sizeof(event->client.data));
909               }
910             break;
911           }
912       }
913
914       break;
915
916     case MappingNotify:
917       GDK_NOTE (EVENTS,
918                 g_message ("mapping notify"));
919
920       /* Let XLib know that there is a new keyboard mapping.
921        */
922       XRefreshKeyboardMapping (&xevent->xmapping);
923       _gdk_keymap_keys_changed (display);
924       return_val = FALSE;
925       break;
926
927     default:
928 #ifdef HAVE_XFIXES
929       if (xevent->type - display_x11->xfixes_event_base == XFixesSelectionNotify)
930         {
931           XFixesSelectionNotifyEvent *selection_notify = (XFixesSelectionNotifyEvent *)xevent;
932
933           _gdk_x11_screen_process_owner_change (screen, xevent);
934           
935           event->owner_change.type = GDK_OWNER_CHANGE;
936           event->owner_change.window = window;
937           event->owner_change.owner = selection_notify->owner;
938           event->owner_change.reason = selection_notify->subtype;
939           event->owner_change.selection = 
940             gdk_x11_xatom_to_atom_for_display (display, 
941                                                selection_notify->selection);
942           event->owner_change.time = selection_notify->timestamp;
943           event->owner_change.selection_time = selection_notify->selection_timestamp;
944           
945           return_val = TRUE;
946         }
947       else
948 #endif
949 #ifdef HAVE_RANDR
950       if (xevent->type - display_x11->xrandr_event_base == RRScreenChangeNotify ||
951           xevent->type - display_x11->xrandr_event_base == RRNotify)
952         {
953           if (screen)
954             _gdk_x11_screen_size_changed (screen, xevent);
955         }
956       else
957 #endif
958 #if defined(HAVE_XCOMPOSITE) && defined (HAVE_XDAMAGE) && defined (HAVE_XFIXES)
959       if (display_x11->have_xdamage && window_private && window_private->composited &&
960           xevent->type == display_x11->xdamage_event_base + XDamageNotify &&
961           ((XDamageNotifyEvent *) xevent)->damage == window_impl->damage)
962         {
963           XDamageNotifyEvent *damage_event = (XDamageNotifyEvent *) xevent;
964           XserverRegion repair;
965           GdkRectangle rect;
966
967           rect.x = window_private->x + damage_event->area.x;
968           rect.y = window_private->y + damage_event->area.y;
969           rect.width = damage_event->area.width;
970           rect.height = damage_event->area.height;
971
972           repair = XFixesCreateRegion (display_x11->xdisplay,
973                                        &damage_event->area, 1);
974           XDamageSubtract (display_x11->xdisplay,
975                            window_impl->damage,
976                            repair, None);
977           XFixesDestroyRegion (display_x11->xdisplay, repair);
978
979           if (window_private->parent != NULL)
980             _gdk_window_process_expose (GDK_WINDOW (window_private->parent),
981                                         damage_event->serial, &rect);
982
983           return_val = TRUE;
984         }
985       else
986 #endif
987 #ifdef HAVE_XKB
988       if (xevent->type == display_x11->xkb_event_type)
989         {
990           XkbEvent *xkb_event = (XkbEvent *) xevent;
991
992           switch (xkb_event->any.xkb_type)
993             {
994             case XkbNewKeyboardNotify:
995             case XkbMapNotify:
996               _gdk_keymap_keys_changed (display);
997
998               return_val = FALSE;
999               break;
1000
1001             case XkbStateNotify:
1002               _gdk_keymap_state_changed (display, xevent);
1003               break;
1004             }
1005         }
1006       else
1007 #endif
1008         return_val = FALSE;
1009     }
1010
1011  done:
1012   if (return_val)
1013     {
1014       if (event->any.window)
1015         g_object_ref (event->any.window);
1016     }
1017   else
1018     {
1019       /* Mark this event as having no resources to be freed */
1020       event->any.window = NULL;
1021       event->any.type = GDK_NOTHING;
1022     }
1023
1024   if (window)
1025     g_object_unref (window);
1026
1027   return return_val;
1028 }
1029
1030 static GdkFilterReturn
1031 gdk_wm_protocols_filter (GdkXEvent *xev,
1032                          GdkEvent  *event,
1033                          gpointer data)
1034 {
1035   XEvent *xevent = (XEvent *)xev;
1036   GdkWindow *win = event->any.window;
1037   GdkDisplay *display;
1038   Atom atom;
1039
1040   if (!win)
1041       return GDK_FILTER_REMOVE;
1042
1043   display = GDK_WINDOW_DISPLAY (win);
1044   atom = (Atom)xevent->xclient.data.l[0];
1045
1046   if (atom == gdk_x11_get_xatom_by_name_for_display (display, "WM_DELETE_WINDOW"))
1047     {
1048   /* The delete window request specifies a window
1049    *  to delete. We don't actually destroy the
1050    *  window because "it is only a request". (The
1051    *  window might contain vital data that the
1052    *  program does not want destroyed). Instead
1053    *  the event is passed along to the program,
1054    *  which should then destroy the window.
1055    */
1056       GDK_NOTE (EVENTS,
1057                 g_message ("delete window:\t\twindow: %ld",
1058                            xevent->xclient.window));
1059
1060       event->any.type = GDK_DELETE;
1061
1062       gdk_x11_window_set_user_time (win, xevent->xclient.data.l[1]);
1063
1064       return GDK_FILTER_TRANSLATE;
1065     }
1066   else if (atom == gdk_x11_get_xatom_by_name_for_display (display, "WM_TAKE_FOCUS"))
1067     {
1068       GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (event->any.window);
1069       GdkWindowObject *private = (GdkWindowObject *)win;
1070
1071       /* There is no way of knowing reliably whether we are viewable;
1072        * _gdk_x11_set_input_focus_safe() traps errors asynchronously.
1073        */
1074       if (toplevel && private->accept_focus)
1075         _gdk_x11_set_input_focus_safe (display, toplevel->focus_window,
1076                                        RevertToParent,
1077                                        xevent->xclient.data.l[1]);
1078
1079       return GDK_FILTER_REMOVE;
1080     }
1081   else if (atom == gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_PING") &&
1082            !_gdk_x11_display_is_root_window (display,
1083                                              xevent->xclient.window))
1084     {
1085       XClientMessageEvent xclient = xevent->xclient;
1086
1087       xclient.window = GDK_WINDOW_XROOTWIN (win);
1088       XSendEvent (GDK_WINDOW_XDISPLAY (win),
1089                   xclient.window,
1090                   False,
1091                   SubstructureRedirectMask | SubstructureNotifyMask, (XEvent *)&xclient);
1092
1093       return GDK_FILTER_REMOVE;
1094     }
1095   else if (atom == gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_SYNC_REQUEST") &&
1096            GDK_DISPLAY_X11 (display)->use_sync)
1097     {
1098       GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (event->any.window);
1099       if (toplevel)
1100         {
1101 #ifdef HAVE_XSYNC
1102           XSyncIntsToValue (&toplevel->pending_counter_value,
1103                             xevent->xclient.data.l[2],
1104                             xevent->xclient.data.l[3]);
1105 #endif
1106         }
1107       return GDK_FILTER_REMOVE;
1108     }
1109
1110   return GDK_FILTER_CONTINUE;
1111 }
1112
1113 static void
1114 _gdk_event_init (GdkDisplay *display)
1115 {
1116   GdkDisplayX11 *display_x11;
1117   GdkDeviceManager *device_manager;
1118
1119   display_x11 = GDK_DISPLAY_X11 (display);
1120   display_x11->event_source = gdk_event_source_new (display);
1121
1122   gdk_event_source_add_translator ((GdkEventSource *) display_x11->event_source,
1123                                    GDK_EVENT_TRANSLATOR (display));
1124
1125   device_manager = gdk_display_get_device_manager (display);
1126   gdk_event_source_add_translator ((GdkEventSource *) display_x11->event_source,
1127                                    GDK_EVENT_TRANSLATOR (device_manager));
1128
1129   gdk_display_add_client_message_filter (display,
1130                                          gdk_atom_intern_static_string ("WM_PROTOCOLS"),
1131                                          gdk_wm_protocols_filter,
1132                                          NULL);
1133 }
1134
1135 static void
1136 _gdk_input_init (GdkDisplay *display)
1137 {
1138   GdkDisplayX11 *display_x11;
1139   GdkDeviceManager *device_manager;
1140   GdkDevice *device;
1141   GList *list, *l;
1142
1143   display_x11 = GDK_DISPLAY_X11 (display);
1144   device_manager = gdk_display_get_device_manager (display);
1145
1146   /* For backwards compatibility, just add
1147    * floating devices that are not keyboards.
1148    */
1149   list = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_FLOATING);
1150
1151   for (l = list; l; l = l->next)
1152     {
1153       device = l->data;
1154
1155       if (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
1156         continue;
1157
1158       display_x11->input_devices = g_list_prepend (display_x11->input_devices,
1159                                                    g_object_ref (l->data));
1160     }
1161
1162   g_list_free (list);
1163
1164   /* Now set "core" pointer to the first
1165    * master device that is a pointer.
1166    */
1167   list = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
1168
1169   for (l = list; l; l = l->next)
1170     {
1171       device = list->data;
1172
1173       if (gdk_device_get_source (device) != GDK_SOURCE_MOUSE)
1174         continue;
1175
1176       display->core_pointer = device;
1177       break;
1178     }
1179
1180   /* Add the core pointer to the devices list */
1181   display_x11->input_devices = g_list_prepend (display_x11->input_devices,
1182                                                g_object_ref (display->core_pointer));
1183
1184   g_list_free (list);
1185 }
1186
1187 /**
1188  * gdk_display_open:
1189  * @display_name: the name of the display to open
1190  *
1191  * Opens a display.
1192  *
1193  * Return value: (transfer none): a #GdkDisplay, or %NULL if the display
1194  *               could not be opened.
1195  *
1196  * Since: 2.2
1197  */
1198 GdkDisplay *
1199 gdk_display_open (const gchar *display_name)
1200 {
1201   Display *xdisplay;
1202   GdkDisplay *display;
1203   GdkDisplayX11 *display_x11;
1204   GdkWindowAttr attr;
1205   gint argc;
1206   gchar *argv[1];
1207   const char *sm_client_id;
1208   
1209   XClassHint *class_hint;
1210   gulong pid;
1211   gint i;
1212   gint ignore;
1213   gint maj, min;
1214
1215   xdisplay = XOpenDisplay (display_name);
1216   if (!xdisplay)
1217     return NULL;
1218   
1219   display = g_object_new (GDK_TYPE_DISPLAY_X11, NULL);
1220   display_x11 = GDK_DISPLAY_X11 (display);
1221
1222   display_x11->xdisplay = xdisplay;
1223
1224 #ifdef HAVE_X11R6  
1225   /* Set up handlers for Xlib internal connections */
1226   XAddConnectionWatch (xdisplay, gdk_internal_connection_watch, NULL);
1227 #endif /* HAVE_X11R6 */
1228   
1229   _gdk_x11_precache_atoms (display, precache_atoms, G_N_ELEMENTS (precache_atoms));
1230
1231   /* RandR must be initialized before we initialize the screens */
1232   display_x11->have_randr13 = FALSE;
1233 #ifdef HAVE_RANDR
1234   if (XRRQueryExtension (display_x11->xdisplay,
1235                          &display_x11->xrandr_event_base, &ignore))
1236   {
1237       int major, minor;
1238       
1239       XRRQueryVersion (display_x11->xdisplay, &major, &minor);
1240
1241       if ((major == 1 && minor >= 3) || major > 1)
1242           display_x11->have_randr13 = TRUE;
1243
1244        gdk_x11_register_standard_event_type (display, display_x11->xrandr_event_base, RRNumberEvents);
1245   }
1246 #endif
1247   
1248   /* initialize the display's screens */ 
1249   display_x11->screens = g_new (GdkScreen *, ScreenCount (display_x11->xdisplay));
1250   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1251     display_x11->screens[i] = _gdk_x11_screen_new (display, i);
1252
1253   /* We need to initialize events after we have the screen
1254    * structures in places
1255    */
1256   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1257     _gdk_screen_x11_events_init (display_x11->screens[i]);
1258
1259   /*set the default screen */
1260   display_x11->default_screen = display_x11->screens[DefaultScreen (display_x11->xdisplay)];
1261
1262   display->device_manager = _gdk_device_manager_new (display);
1263
1264   _gdk_event_init (display);
1265
1266   attr.window_type = GDK_WINDOW_TOPLEVEL;
1267   attr.wclass = GDK_INPUT_OUTPUT;
1268   attr.x = 10;
1269   attr.y = 10;
1270   attr.width = 10;
1271   attr.height = 10;
1272   attr.event_mask = 0;
1273
1274   display_x11->leader_gdk_window = gdk_window_new (GDK_SCREEN_X11 (display_x11->default_screen)->root_window, 
1275                                                    &attr, GDK_WA_X | GDK_WA_Y);
1276   (_gdk_x11_window_get_toplevel (display_x11->leader_gdk_window))->is_leader = TRUE;
1277
1278   display_x11->leader_window = GDK_WINDOW_XID (display_x11->leader_gdk_window);
1279
1280   display_x11->leader_window_title_set = FALSE;
1281
1282 #ifdef HAVE_XFIXES
1283   if (XFixesQueryExtension (display_x11->xdisplay, 
1284                             &display_x11->xfixes_event_base, 
1285                             &ignore))
1286     {
1287       display_x11->have_xfixes = TRUE;
1288
1289       gdk_x11_register_standard_event_type (display,
1290                                             display_x11->xfixes_event_base, 
1291                                             XFixesNumberEvents);
1292     }
1293   else
1294 #endif
1295     display_x11->have_xfixes = FALSE;
1296
1297 #ifdef HAVE_XCOMPOSITE
1298   if (XCompositeQueryExtension (display_x11->xdisplay,
1299                                 &ignore, &ignore))
1300     {
1301       int major, minor;
1302
1303       XCompositeQueryVersion (display_x11->xdisplay, &major, &minor);
1304
1305       /* Prior to Composite version 0.4, composited windows clipped their
1306        * parents, so you had to use IncludeInferiors to draw to the parent
1307        * This isn't useful for our purposes, so require 0.4
1308        */
1309       display_x11->have_xcomposite = major > 0 || (major == 0 && minor >= 4);
1310     }
1311   else
1312 #endif
1313     display_x11->have_xcomposite = FALSE;
1314
1315 #ifdef HAVE_XDAMAGE
1316   if (XDamageQueryExtension (display_x11->xdisplay,
1317                              &display_x11->xdamage_event_base,
1318                              &ignore))
1319     {
1320       display_x11->have_xdamage = TRUE;
1321
1322       gdk_x11_register_standard_event_type (display,
1323                                             display_x11->xdamage_event_base,
1324                                             XDamageNumberEvents);
1325     }
1326   else
1327 #endif
1328     display_x11->have_xdamage = FALSE;
1329
1330   display_x11->have_shapes = FALSE;
1331   display_x11->have_input_shapes = FALSE;
1332
1333   if (XShapeQueryExtension (GDK_DISPLAY_XDISPLAY (display), &display_x11->shape_event_base, &ignore))
1334     {
1335       display_x11->have_shapes = TRUE;
1336 #ifdef ShapeInput
1337       if (XShapeQueryVersion (GDK_DISPLAY_XDISPLAY (display), &maj, &min))
1338         display_x11->have_input_shapes = (maj == 1 && min >= 1);
1339 #endif
1340     }
1341
1342   display_x11->trusted_client = TRUE;
1343   {
1344     Window root, child;
1345     int rootx, rooty, winx, winy;
1346     unsigned int xmask;
1347
1348     gdk_error_trap_push ();
1349     XQueryPointer (display_x11->xdisplay, 
1350                    GDK_SCREEN_X11 (display_x11->default_screen)->xroot_window,
1351                    &root, &child, &rootx, &rooty, &winx, &winy, &xmask);
1352     if (G_UNLIKELY (gdk_error_trap_pop () == BadWindow)) 
1353       {
1354         g_warning ("Connection to display %s appears to be untrusted. Pointer and keyboard grabs and inter-client communication may not work as expected.", gdk_display_get_name (display));
1355         display_x11->trusted_client = FALSE;
1356       }
1357   }
1358
1359   if (_gdk_synchronize)
1360     XSynchronize (display_x11->xdisplay, True);
1361   
1362   class_hint = XAllocClassHint();
1363   class_hint->res_name = g_get_prgname ();
1364   
1365   class_hint->res_class = (char *)gdk_get_program_class ();
1366
1367   /* XmbSetWMProperties sets the RESOURCE_NAME environment variable
1368    * from argv[0], so we just synthesize an argument array here.
1369    */
1370   argc = 1;
1371   argv[0] = g_get_prgname ();
1372   
1373   XmbSetWMProperties (display_x11->xdisplay,
1374                       display_x11->leader_window,
1375                       NULL, NULL, argv, argc, NULL, NULL,
1376                       class_hint);
1377   XFree (class_hint);
1378
1379   sm_client_id = _gdk_get_sm_client_id ();
1380   if (sm_client_id)
1381     _gdk_windowing_display_set_sm_client_id (display, sm_client_id);
1382
1383   pid = getpid ();
1384   XChangeProperty (display_x11->xdisplay,
1385                    display_x11->leader_window,
1386                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_PID"),
1387                    XA_CARDINAL, 32, PropModeReplace, (guchar *) & pid, 1);
1388
1389   /* We don't yet know a valid time. */
1390   display_x11->user_time = 0;
1391   
1392 #ifdef HAVE_XKB
1393   {
1394     gint xkb_major = XkbMajorVersion;
1395     gint xkb_minor = XkbMinorVersion;
1396     if (XkbLibraryVersion (&xkb_major, &xkb_minor))
1397       {
1398         xkb_major = XkbMajorVersion;
1399         xkb_minor = XkbMinorVersion;
1400             
1401         if (XkbQueryExtension (display_x11->xdisplay, 
1402                                NULL, &display_x11->xkb_event_type, NULL,
1403                                &xkb_major, &xkb_minor))
1404           {
1405             Bool detectable_autorepeat_supported;
1406             
1407             display_x11->use_xkb = TRUE;
1408
1409             XkbSelectEvents (display_x11->xdisplay,
1410                              XkbUseCoreKbd,
1411                              XkbNewKeyboardNotifyMask | XkbMapNotifyMask | XkbStateNotifyMask,
1412                              XkbNewKeyboardNotifyMask | XkbMapNotifyMask | XkbStateNotifyMask);
1413
1414             /* keep this in sync with _gdk_keymap_state_changed() */ 
1415             XkbSelectEventDetails (display_x11->xdisplay,
1416                                    XkbUseCoreKbd, XkbStateNotify,
1417                                    XkbAllStateComponentsMask,
1418                                    XkbGroupLockMask|XkbModifierLockMask);
1419
1420             XkbSetDetectableAutoRepeat (display_x11->xdisplay,
1421                                         True,
1422                                         &detectable_autorepeat_supported);
1423
1424             GDK_NOTE (MISC, g_message ("Detectable autorepeat %s.",
1425                                        detectable_autorepeat_supported ? 
1426                                        "supported" : "not supported"));
1427             
1428             display_x11->have_xkb_autorepeat = detectable_autorepeat_supported;
1429           }
1430       }
1431   }
1432 #endif
1433
1434   display_x11->use_sync = FALSE;
1435 #ifdef HAVE_XSYNC
1436   {
1437     int major, minor;
1438     int error_base, event_base;
1439     
1440     if (XSyncQueryExtension (display_x11->xdisplay,
1441                              &event_base, &error_base) &&
1442         XSyncInitialize (display_x11->xdisplay,
1443                          &major, &minor))
1444       display_x11->use_sync = TRUE;
1445   }
1446 #endif
1447
1448   _gdk_input_init (display);
1449   _gdk_dnd_init (display);
1450
1451   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1452     _gdk_x11_screen_setup (display_x11->screens[i]);
1453
1454   g_signal_emit_by_name (display, "opened");
1455   g_signal_emit_by_name (gdk_display_manager_get (), "display-opened", display);
1456
1457   return display;
1458 }
1459
1460 #ifdef HAVE_X11R6
1461 /*
1462  * XLib internal connection handling
1463  */
1464 typedef struct _GdkInternalConnection GdkInternalConnection;
1465
1466 struct _GdkInternalConnection
1467 {
1468   gint           fd;
1469   GSource       *source;
1470   Display       *display;
1471 };
1472
1473 static gboolean
1474 process_internal_connection (GIOChannel  *gioc,
1475                              GIOCondition cond,
1476                              gpointer     data)
1477 {
1478   GdkInternalConnection *connection = (GdkInternalConnection *)data;
1479
1480   GDK_THREADS_ENTER ();
1481
1482   XProcessInternalConnection ((Display*)connection->display, connection->fd);
1483
1484   GDK_THREADS_LEAVE ();
1485
1486   return TRUE;
1487 }
1488
1489 gulong
1490 _gdk_windowing_window_get_next_serial (GdkDisplay *display)
1491 {
1492   return NextRequest (GDK_DISPLAY_XDISPLAY (display));
1493 }
1494
1495
1496 static GdkInternalConnection *
1497 gdk_add_connection_handler (Display *display,
1498                             guint    fd)
1499 {
1500   GIOChannel *io_channel;
1501   GdkInternalConnection *connection;
1502
1503   connection = g_new (GdkInternalConnection, 1);
1504
1505   connection->fd = fd;
1506   connection->display = display;
1507   
1508   io_channel = g_io_channel_unix_new (fd);
1509   
1510   connection->source = g_io_create_watch (io_channel, G_IO_IN);
1511   g_source_set_callback (connection->source,
1512                          (GSourceFunc)process_internal_connection, connection, NULL);
1513   g_source_attach (connection->source, NULL);
1514   
1515   g_io_channel_unref (io_channel);
1516   
1517   return connection;
1518 }
1519
1520 static void
1521 gdk_remove_connection_handler (GdkInternalConnection *connection)
1522 {
1523   g_source_destroy (connection->source);
1524   g_free (connection);
1525 }
1526
1527 static void
1528 gdk_internal_connection_watch (Display  *display,
1529                                XPointer  arg,
1530                                gint      fd,
1531                                gboolean  opening,
1532                                XPointer *watch_data)
1533 {
1534   if (opening)
1535     *watch_data = (XPointer)gdk_add_connection_handler (display, fd);
1536   else
1537     gdk_remove_connection_handler ((GdkInternalConnection *)*watch_data);
1538 }
1539 #endif /* HAVE_X11R6 */
1540
1541 /**
1542  * gdk_display_get_name:
1543  * @display: a #GdkDisplay
1544  *
1545  * Gets the name of the display.
1546  * 
1547  * Returns: a string representing the display name. This string is owned
1548  * by GDK and should not be modified or freed.
1549  * 
1550  * Since: 2.2
1551  */
1552 G_CONST_RETURN gchar *
1553 gdk_display_get_name (GdkDisplay *display)
1554 {
1555   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1556   
1557   return (gchar *) DisplayString (GDK_DISPLAY_X11 (display)->xdisplay);
1558 }
1559
1560 /**
1561  * gdk_display_get_n_screens:
1562  * @display: a #GdkDisplay
1563  *
1564  * Gets the number of screen managed by the @display.
1565  * 
1566  * Returns: number of screens.
1567  * 
1568  * Since: 2.2
1569  */
1570 gint
1571 gdk_display_get_n_screens (GdkDisplay *display)
1572 {
1573   g_return_val_if_fail (GDK_IS_DISPLAY (display), 0);
1574   
1575   return ScreenCount (GDK_DISPLAY_X11 (display)->xdisplay);
1576 }
1577
1578 /**
1579  * gdk_display_get_screen:
1580  * @display: a #GdkDisplay
1581  * @screen_num: the screen number
1582  *
1583  * Returns a screen object for one of the screens of the display.
1584  *
1585  * Returns: (transfer none): the #GdkScreen object
1586  *
1587  * Since: 2.2
1588  */
1589 GdkScreen *
1590 gdk_display_get_screen (GdkDisplay *display, 
1591                         gint        screen_num)
1592 {
1593   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1594   g_return_val_if_fail (ScreenCount (GDK_DISPLAY_X11 (display)->xdisplay) > screen_num, NULL);
1595   
1596   return GDK_DISPLAY_X11 (display)->screens[screen_num];
1597 }
1598
1599 /**
1600  * gdk_display_get_default_screen:
1601  * @display: a #GdkDisplay
1602  *
1603  * Get the default #GdkScreen for @display.
1604  * 
1605  * Returns: (transfer none): the default #GdkScreen object for @display
1606  *
1607  * Since: 2.2
1608  */
1609 GdkScreen *
1610 gdk_display_get_default_screen (GdkDisplay *display)
1611 {
1612   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1613   
1614   return GDK_DISPLAY_X11 (display)->default_screen;
1615 }
1616
1617 gboolean
1618 _gdk_x11_display_is_root_window (GdkDisplay *display,
1619                                  Window      xroot_window)
1620 {
1621   GdkDisplayX11 *display_x11;
1622   gint i;
1623   
1624   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1625   
1626   display_x11 = GDK_DISPLAY_X11 (display);
1627   
1628   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1629     {
1630       if (GDK_SCREEN_XROOTWIN (display_x11->screens[i]) == xroot_window)
1631         return TRUE;
1632     }
1633   return FALSE;
1634 }
1635
1636 struct XPointerUngrabInfo {
1637   GdkDisplay *display;
1638   guint32 time;
1639 };
1640
1641 static void
1642 device_ungrab_callback (GdkDisplay *display,
1643                         gpointer    data,
1644                         gulong      serial)
1645 {
1646   GdkDevice *device = data;
1647
1648   _gdk_display_device_grab_update (display, device, serial);
1649 }
1650
1651
1652 #define XSERVER_TIME_IS_LATER(time1, time2)                        \
1653   ( (( time1 > time2 ) && ( time1 - time2 < ((guint32)-1)/2 )) ||  \
1654     (( time1 < time2 ) && ( time2 - time1 > ((guint32)-1)/2 ))     \
1655   )
1656
1657 /**
1658  * gdk_device_ungrab:
1659  * @device: a #GdkDevice
1660  * @time_: a timestap (e.g. %GDK_CURRENT_TIME).
1661  *
1662  * Release any grab on @device.
1663  *
1664  * Since: 3.0
1665  */
1666 void
1667 gdk_device_ungrab (GdkDevice  *device,
1668                    guint32     time_)
1669 {
1670   GdkDisplay *display;
1671   Display *xdisplay;
1672   GdkDeviceGrabInfo *grab;
1673   unsigned long serial;
1674
1675   g_return_if_fail (GDK_IS_DEVICE (device));
1676
1677   display = gdk_device_get_display (device);
1678   xdisplay = GDK_DISPLAY_XDISPLAY (display);
1679
1680   serial = NextRequest (xdisplay);
1681
1682   GDK_DEVICE_GET_CLASS (device)->ungrab (device, time_);
1683   XFlush (xdisplay);
1684
1685   grab = _gdk_display_get_last_device_grab (display, device);
1686   if (grab &&
1687       (time_ == GDK_CURRENT_TIME ||
1688        grab->time == GDK_CURRENT_TIME ||
1689        !XSERVER_TIME_IS_LATER (grab->time, time_)))
1690     {
1691       grab->serial_end = serial;
1692       _gdk_x11_roundtrip_async (display,
1693                                 device_ungrab_callback,
1694                                 device);
1695     }
1696 }
1697
1698 /**
1699  * gdk_display_beep:
1700  * @display: a #GdkDisplay
1701  *
1702  * Emits a short beep on @display
1703  *
1704  * Since: 2.2
1705  */
1706 void
1707 gdk_display_beep (GdkDisplay *display)
1708 {
1709   g_return_if_fail (GDK_IS_DISPLAY (display));
1710
1711 #ifdef HAVE_XKB
1712   XkbBell (GDK_DISPLAY_XDISPLAY (display), None, 0, None);
1713 #else
1714   XBell (GDK_DISPLAY_XDISPLAY (display), 0);
1715 #endif
1716 }
1717
1718 /**
1719  * gdk_display_sync:
1720  * @display: a #GdkDisplay
1721  *
1722  * Flushes any requests queued for the windowing system and waits until all
1723  * requests have been handled. This is often used for making sure that the
1724  * display is synchronized with the current state of the program. Calling
1725  * gdk_display_sync() before gdk_error_trap_pop() makes sure that any errors
1726  * generated from earlier requests are handled before the error trap is 
1727  * removed.
1728  *
1729  * This is most useful for X11. On windowing systems where requests are
1730  * handled synchronously, this function will do nothing.
1731  *
1732  * Since: 2.2
1733  */
1734 void
1735 gdk_display_sync (GdkDisplay *display)
1736 {
1737   g_return_if_fail (GDK_IS_DISPLAY (display));
1738   
1739   XSync (GDK_DISPLAY_XDISPLAY (display), False);
1740 }
1741
1742 /**
1743  * gdk_display_flush:
1744  * @display: a #GdkDisplay
1745  *
1746  * Flushes any requests queued for the windowing system; this happens automatically
1747  * when the main loop blocks waiting for new events, but if your application
1748  * is drawing without returning control to the main loop, you may need
1749  * to call this function explicitely. A common case where this function
1750  * needs to be called is when an application is executing drawing commands
1751  * from a thread other than the thread where the main loop is running.
1752  *
1753  * This is most useful for X11. On windowing systems where requests are
1754  * handled synchronously, this function will do nothing.
1755  *
1756  * Since: 2.4
1757  */
1758 void 
1759 gdk_display_flush (GdkDisplay *display)
1760 {
1761   g_return_if_fail (GDK_IS_DISPLAY (display));
1762
1763   if (!display->closed)
1764     XFlush (GDK_DISPLAY_XDISPLAY (display));
1765 }
1766
1767 /**
1768  * gdk_display_get_default_group:
1769  * @display: a #GdkDisplay
1770  * 
1771  * Returns the default group leader window for all toplevel windows
1772  * on @display. This window is implicitly created by GDK. 
1773  * See gdk_window_set_group().
1774  * 
1775  * Return value: (transfer none): The default group leader window
1776  * for @display
1777  *
1778  * Since: 2.4
1779  **/
1780 GdkWindow *
1781 gdk_display_get_default_group (GdkDisplay *display)
1782 {
1783   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1784
1785   return GDK_DISPLAY_X11 (display)->leader_gdk_window;
1786 }
1787
1788 /**
1789  * gdk_x11_display_grab:
1790  * @display: a #GdkDisplay 
1791  * 
1792  * Call XGrabServer() on @display. 
1793  * To ungrab the display again, use gdk_x11_display_ungrab(). 
1794  *
1795  * gdk_x11_display_grab()/gdk_x11_display_ungrab() calls can be nested.
1796  *
1797  * Since: 2.2
1798  **/
1799 void
1800 gdk_x11_display_grab (GdkDisplay *display)
1801 {
1802   GdkDisplayX11 *display_x11;
1803   
1804   g_return_if_fail (GDK_IS_DISPLAY (display));
1805   
1806   display_x11 = GDK_DISPLAY_X11 (display);
1807   
1808   if (display_x11->grab_count == 0)
1809     XGrabServer (display_x11->xdisplay);
1810   display_x11->grab_count++;
1811 }
1812
1813 /**
1814  * gdk_x11_display_ungrab:
1815  * @display: a #GdkDisplay
1816  * 
1817  * Ungrab @display after it has been grabbed with 
1818  * gdk_x11_display_grab(). 
1819  *
1820  * Since: 2.2
1821  **/
1822 void
1823 gdk_x11_display_ungrab (GdkDisplay *display)
1824 {
1825   GdkDisplayX11 *display_x11;
1826   
1827   g_return_if_fail (GDK_IS_DISPLAY (display));
1828   
1829   display_x11 = GDK_DISPLAY_X11 (display);;
1830   g_return_if_fail (display_x11->grab_count > 0);
1831   
1832   display_x11->grab_count--;
1833   if (display_x11->grab_count == 0)
1834     {
1835       XUngrabServer (display_x11->xdisplay);
1836       XFlush (display_x11->xdisplay);
1837     }
1838 }
1839
1840 static void
1841 gdk_display_x11_dispose (GObject *object)
1842 {
1843   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (object);
1844   gint           i;
1845
1846   g_list_foreach (display_x11->input_devices, (GFunc) g_object_run_dispose, NULL);
1847
1848   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1849     _gdk_screen_close (display_x11->screens[i]);
1850
1851   if (display_x11->event_source)
1852     {
1853       g_source_destroy (display_x11->event_source);
1854       g_source_unref (display_x11->event_source);
1855       display_x11->event_source = NULL;
1856     }
1857
1858   G_OBJECT_CLASS (_gdk_display_x11_parent_class)->dispose (object);
1859 }
1860
1861 static void
1862 gdk_display_x11_finalize (GObject *object)
1863 {
1864   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (object);
1865   gint           i;
1866
1867   /* Keymap */
1868   if (display_x11->keymap)
1869     g_object_unref (display_x11->keymap);
1870
1871   /* Free motif Dnd */
1872   if (display_x11->motif_target_lists)
1873     {
1874       for (i = 0; i < display_x11->motif_n_target_lists; i++)
1875         g_list_free (display_x11->motif_target_lists[i]);
1876       g_free (display_x11->motif_target_lists);
1877     }
1878
1879   _gdk_x11_cursor_display_finalize (GDK_DISPLAY_OBJECT(display_x11));
1880
1881   /* Atom Hashtable */
1882   g_hash_table_destroy (display_x11->atom_from_virtual);
1883   g_hash_table_destroy (display_x11->atom_to_virtual);
1884
1885   /* Leader Window */
1886   XDestroyWindow (display_x11->xdisplay, display_x11->leader_window);
1887
1888   /* list of filters for client messages */
1889   g_list_foreach (display_x11->client_filters, (GFunc) g_free, NULL);
1890   g_list_free (display_x11->client_filters);
1891
1892   /* List of event window extraction functions */
1893   g_slist_foreach (display_x11->event_types, (GFunc)g_free, NULL);
1894   g_slist_free (display_x11->event_types);
1895
1896   /* input GdkDevice list */
1897   g_list_foreach (display_x11->input_devices, (GFunc) g_object_unref, NULL);
1898   g_list_free (display_x11->input_devices);
1899
1900   /* input GdkWindow list */
1901   g_list_foreach (display_x11->input_windows, (GFunc) g_free, NULL);
1902   g_list_free (display_x11->input_windows);
1903
1904   /* Free all GdkScreens */
1905   for (i = 0; i < ScreenCount (display_x11->xdisplay); i++)
1906     g_object_unref (display_x11->screens[i]);
1907   g_free (display_x11->screens);
1908
1909   g_free (display_x11->startup_notification_id);
1910
1911   /* X ID hashtable */
1912   g_hash_table_destroy (display_x11->xid_ht);
1913
1914   XCloseDisplay (display_x11->xdisplay);
1915
1916   /* error traps */
1917   while (display_x11->error_traps != NULL)
1918     {
1919       GdkErrorTrap *trap = display_x11->error_traps->data;
1920
1921       display_x11->error_traps =
1922         g_slist_delete_link (display_x11->error_traps,
1923                              display_x11->error_traps);
1924
1925       if (trap->end_sequence == 0)
1926         g_warning ("Display finalized with an unpopped error trap");
1927
1928       g_slice_free (GdkErrorTrap, trap);
1929     }
1930
1931   G_OBJECT_CLASS (_gdk_display_x11_parent_class)->finalize (object);
1932 }
1933
1934 /**
1935  * gdk_x11_lookup_xdisplay:
1936  * @xdisplay: a pointer to an X Display
1937  * 
1938  * Find the #GdkDisplay corresponding to @display, if any exists.
1939  * 
1940  * Return value: (transfer none): the #GdkDisplay, if found, otherwise %NULL.
1941  *
1942  * Since: 2.2
1943  **/
1944 GdkDisplay *
1945 gdk_x11_lookup_xdisplay (Display *xdisplay)
1946 {
1947   GSList *tmp_list;
1948
1949   for (tmp_list = _gdk_displays; tmp_list; tmp_list = tmp_list->next)
1950     {
1951       if (GDK_DISPLAY_XDISPLAY (tmp_list->data) == xdisplay)
1952         return tmp_list->data;
1953     }
1954   
1955   return NULL;
1956 }
1957
1958 /**
1959  * _gdk_x11_display_screen_for_xrootwin:
1960  * @display: a #GdkDisplay
1961  * @xrootwin: window ID for one of of the screen's of the display.
1962  * 
1963  * Given the root window ID of one of the screen's of a #GdkDisplay,
1964  * finds the screen.
1965  * 
1966  * Return value: the #GdkScreen corresponding to @xrootwin, or %NULL.
1967  **/
1968 GdkScreen *
1969 _gdk_x11_display_screen_for_xrootwin (GdkDisplay *display,
1970                                       Window      xrootwin)
1971 {
1972   gint i;
1973
1974   for (i = 0; i < ScreenCount (GDK_DISPLAY_X11 (display)->xdisplay); i++)
1975     {
1976       GdkScreen *screen = gdk_display_get_screen (display, i);
1977       if (GDK_SCREEN_XROOTWIN (screen) == xrootwin)
1978         return screen;
1979     }
1980
1981   return NULL;
1982 }
1983
1984 /**
1985  * gdk_x11_display_get_xdisplay:
1986  * @display: a #GdkDisplay
1987  * @returns: an X display.
1988  *
1989  * Returns the X display of a #GdkDisplay.
1990  *
1991  * Since: 2.2
1992  */
1993 Display *
1994 gdk_x11_display_get_xdisplay (GdkDisplay *display)
1995 {
1996   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1997   return GDK_DISPLAY_X11 (display)->xdisplay;
1998 }
1999
2000 void
2001 _gdk_windowing_set_default_display (GdkDisplay *display)
2002 {
2003   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
2004   const gchar *startup_id;
2005   
2006   if (!display)
2007     return;
2008
2009   g_free (display_x11->startup_notification_id);
2010   display_x11->startup_notification_id = NULL;
2011   
2012   startup_id = g_getenv ("DESKTOP_STARTUP_ID");
2013   if (startup_id && *startup_id != '\0')
2014     {
2015       if (!g_utf8_validate (startup_id, -1, NULL))
2016         g_warning ("DESKTOP_STARTUP_ID contains invalid UTF-8");
2017       else
2018         gdk_x11_display_set_startup_notification_id (display, startup_id);
2019       
2020       /* Clear the environment variable so it won't be inherited by
2021        * child processes and confuse things.  
2022        */
2023       g_unsetenv ("DESKTOP_STARTUP_ID");
2024     }
2025 }
2026
2027 static void
2028 broadcast_xmessage (GdkDisplay *display,
2029                     const char *message_type,
2030                     const char *message_type_begin,
2031                     const char *message)
2032 {
2033   Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
2034   GdkScreen *screen = gdk_display_get_default_screen (display);
2035   GdkWindow *root_window = gdk_screen_get_root_window (screen);
2036   Window xroot_window = GDK_WINDOW_XID (root_window);
2037   
2038   Atom type_atom;
2039   Atom type_atom_begin;
2040   Window xwindow;
2041
2042   if (!G_LIKELY (GDK_DISPLAY_X11 (display)->trusted_client))
2043     return;
2044
2045   {
2046     XSetWindowAttributes attrs;
2047
2048     attrs.override_redirect = True;
2049     attrs.event_mask = PropertyChangeMask | StructureNotifyMask;
2050
2051     xwindow =
2052       XCreateWindow (xdisplay,
2053                      xroot_window,
2054                      -100, -100, 1, 1,
2055                      0,
2056                      CopyFromParent,
2057                      CopyFromParent,
2058                      (Visual *)CopyFromParent,
2059                      CWOverrideRedirect | CWEventMask,
2060                      &attrs);
2061   }
2062
2063   type_atom = gdk_x11_get_xatom_by_name_for_display (display,
2064                                                      message_type);
2065   type_atom_begin = gdk_x11_get_xatom_by_name_for_display (display,
2066                                                            message_type_begin);
2067   
2068   {
2069     XClientMessageEvent xclient;
2070     const char *src;
2071     const char *src_end;
2072     char *dest;
2073     char *dest_end;
2074     
2075                 memset(&xclient, 0, sizeof (xclient));
2076     xclient.type = ClientMessage;
2077     xclient.message_type = type_atom_begin;
2078     xclient.display =xdisplay;
2079     xclient.window = xwindow;
2080     xclient.format = 8;
2081
2082     src = message;
2083     src_end = message + strlen (message) + 1; /* +1 to include nul byte */
2084     
2085     while (src != src_end)
2086       {
2087         dest = &xclient.data.b[0];
2088         dest_end = dest + 20;        
2089         
2090         while (dest != dest_end &&
2091                src != src_end)
2092           {
2093             *dest = *src;
2094             ++dest;
2095             ++src;
2096           }
2097
2098         while (dest != dest_end)
2099           {
2100             *dest = 0;
2101             ++dest;
2102           }
2103         
2104         XSendEvent (xdisplay,
2105                     xroot_window,
2106                     False,
2107                     PropertyChangeMask,
2108                     (XEvent *)&xclient);
2109
2110         xclient.message_type = type_atom;
2111       }
2112   }
2113
2114   XDestroyWindow (xdisplay, xwindow);
2115   XFlush (xdisplay);
2116 }
2117
2118 /**
2119  * gdk_x11_display_broadcast_startup_message:
2120  * @display: a #GdkDisplay
2121  * @message_type: startup notification message type ("new", "change",
2122  * or "remove")
2123  * @...: a list of key/value pairs (as strings), terminated by a
2124  * %NULL key. (A %NULL value for a key will cause that key to be
2125  * skipped in the output.)
2126  *
2127  * Sends a startup notification message of type @message_type to
2128  * @display. 
2129  *
2130  * This is a convenience function for use by code that implements the
2131  * freedesktop startup notification specification. Applications should
2132  * not normally need to call it directly. See the <ulink
2133  * url="http://standards.freedesktop.org/startup-notification-spec/startup-notification-latest.txt">Startup
2134  * Notification Protocol specification</ulink> for
2135  * definitions of the message types and keys that can be used.
2136  *
2137  * Since: 2.12
2138  **/
2139 void
2140 gdk_x11_display_broadcast_startup_message (GdkDisplay *display,
2141                                            const char *message_type,
2142                                            ...)
2143 {
2144   GString *message;
2145   va_list ap;
2146   const char *key, *value, *p;
2147
2148   message = g_string_new (message_type);
2149   g_string_append_c (message, ':');
2150
2151   va_start (ap, message_type);
2152   while ((key = va_arg (ap, const char *)))
2153     {
2154       value = va_arg (ap, const char *);
2155       if (!value)
2156         continue;
2157
2158       g_string_append_printf (message, " %s=\"", key);
2159       for (p = value; *p; p++)
2160         {
2161           switch (*p)
2162             {
2163             case ' ':
2164             case '"':
2165             case '\\':
2166               g_string_append_c (message, '\\');
2167               break;
2168             }
2169
2170           g_string_append_c (message, *p);
2171         }
2172       g_string_append_c (message, '\"');
2173     }
2174   va_end (ap);
2175
2176   broadcast_xmessage (display,
2177                       "_NET_STARTUP_INFO",
2178                       "_NET_STARTUP_INFO_BEGIN",
2179                       message->str);
2180
2181   g_string_free (message, TRUE);
2182 }
2183
2184 /**
2185  * gdk_notify_startup_complete:
2186  * 
2187  * Indicates to the GUI environment that the application has finished
2188  * loading. If the applications opens windows, this function is
2189  * normally called after opening the application's initial set of
2190  * windows.
2191  * 
2192  * GTK+ will call this function automatically after opening the first
2193  * #GtkWindow unless gtk_window_set_auto_startup_notification() is called 
2194  * to disable that feature.
2195  *
2196  * Since: 2.2
2197  **/
2198 void
2199 gdk_notify_startup_complete (void)
2200 {
2201   GdkDisplay *display;
2202   GdkDisplayX11 *display_x11;
2203
2204   display = gdk_display_get_default ();
2205   if (!display)
2206     return;
2207   
2208   display_x11 = GDK_DISPLAY_X11 (display);
2209
2210   if (display_x11->startup_notification_id == NULL)
2211     return;
2212
2213   gdk_notify_startup_complete_with_id (display_x11->startup_notification_id);
2214 }
2215
2216 /**
2217  * gdk_notify_startup_complete_with_id:
2218  * @startup_id: a startup-notification identifier, for which notification
2219  *              process should be completed
2220  * 
2221  * Indicates to the GUI environment that the application has finished
2222  * loading, using a given identifier.
2223  * 
2224  * GTK+ will call this function automatically for #GtkWindow with custom
2225  * startup-notification identifier unless
2226  * gtk_window_set_auto_startup_notification() is called to disable
2227  * that feature.
2228  *
2229  * Since: 2.12
2230  **/
2231 void
2232 gdk_notify_startup_complete_with_id (const gchar* startup_id)
2233 {
2234   GdkDisplay *display;
2235
2236   display = gdk_display_get_default ();
2237   if (!display)
2238     return;
2239
2240   gdk_x11_display_broadcast_startup_message (display, "remove",
2241                                              "ID", startup_id,
2242                                              NULL);
2243 }
2244
2245 /**
2246  * gdk_display_supports_selection_notification:
2247  * @display: a #GdkDisplay
2248  * 
2249  * Returns whether #GdkEventOwnerChange events will be 
2250  * sent when the owner of a selection changes.
2251  * 
2252  * Return value: whether #GdkEventOwnerChange events will 
2253  *               be sent.
2254  *
2255  * Since: 2.6
2256  **/
2257 gboolean 
2258 gdk_display_supports_selection_notification (GdkDisplay *display)
2259 {
2260   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
2261
2262   return display_x11->have_xfixes;
2263 }
2264
2265 /**
2266  * gdk_display_request_selection_notification:
2267  * @display: a #GdkDisplay
2268  * @selection: the #GdkAtom naming the selection for which
2269  *             ownership change notification is requested
2270  * 
2271  * Request #GdkEventOwnerChange events for ownership changes
2272  * of the selection named by the given atom.
2273  * 
2274  * Return value: whether #GdkEventOwnerChange events will 
2275  *               be sent.
2276  *
2277  * Since: 2.6
2278  **/
2279 gboolean
2280 gdk_display_request_selection_notification (GdkDisplay *display,
2281                                             GdkAtom     selection)
2282
2283 {
2284 #ifdef HAVE_XFIXES
2285   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
2286   Atom atom;
2287
2288   if (display_x11->have_xfixes)
2289     {
2290       atom = gdk_x11_atom_to_xatom_for_display (display, 
2291                                                 selection);
2292       XFixesSelectSelectionInput (display_x11->xdisplay, 
2293                                   display_x11->leader_window,
2294                                   atom,
2295                                   XFixesSetSelectionOwnerNotifyMask |
2296                                   XFixesSelectionWindowDestroyNotifyMask |
2297                                   XFixesSelectionClientCloseNotifyMask);
2298       return TRUE;
2299     }
2300   else
2301 #endif
2302     return FALSE;
2303 }
2304
2305 /**
2306  * gdk_display_supports_clipboard_persistence
2307  * @display: a #GdkDisplay
2308  *
2309  * Returns whether the speicifed display supports clipboard
2310  * persistance; i.e. if it's possible to store the clipboard data after an
2311  * application has quit. On X11 this checks if a clipboard daemon is
2312  * running.
2313  *
2314  * Returns: %TRUE if the display supports clipboard persistance.
2315  *
2316  * Since: 2.6
2317  */
2318 gboolean
2319 gdk_display_supports_clipboard_persistence (GdkDisplay *display)
2320 {
2321   Atom clipboard_manager;
2322
2323   /* It might make sense to cache this */
2324   clipboard_manager = gdk_x11_get_xatom_by_name_for_display (display, "CLIPBOARD_MANAGER");
2325   return XGetSelectionOwner (GDK_DISPLAY_X11 (display)->xdisplay, clipboard_manager) != None;
2326 }
2327
2328 /**
2329  * gdk_display_store_clipboard
2330  * @display:          a #GdkDisplay
2331  * @clipboard_window: a #GdkWindow belonging to the clipboard owner
2332  * @time_:            a timestamp
2333  * @targets:          an array of targets that should be saved, or %NULL 
2334  *                    if all available targets should be saved.
2335  * @n_targets:        length of the @targets array
2336  *
2337  * Issues a request to the clipboard manager to store the
2338  * clipboard data. On X11, this is a special program that works
2339  * according to the freedesktop clipboard specification, available at
2340  * <ulink url="http://www.freedesktop.org/Standards/clipboard-manager-spec">
2341  * http://www.freedesktop.org/Standards/clipboard-manager-spec</ulink>.
2342  *
2343  * Since: 2.6
2344  */
2345 void
2346 gdk_display_store_clipboard (GdkDisplay    *display,
2347                              GdkWindow     *clipboard_window,
2348                              guint32        time_,
2349                              const GdkAtom *targets,
2350                              gint           n_targets)
2351 {
2352   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
2353   Atom clipboard_manager, save_targets;
2354
2355   g_return_if_fail (GDK_WINDOW_IS_X11 (clipboard_window));
2356
2357   clipboard_manager = gdk_x11_get_xatom_by_name_for_display (display, "CLIPBOARD_MANAGER");
2358   save_targets = gdk_x11_get_xatom_by_name_for_display (display, "SAVE_TARGETS");
2359
2360   gdk_error_trap_push ();
2361
2362   if (XGetSelectionOwner (display_x11->xdisplay, clipboard_manager) != None)
2363     {
2364       Atom property_name = None;
2365       Atom *xatoms;
2366       int i;
2367       
2368       if (n_targets > 0)
2369         {
2370           property_name = gdk_x11_atom_to_xatom_for_display (display, _gdk_selection_property);
2371
2372           xatoms = g_new (Atom, n_targets);
2373           for (i = 0; i < n_targets; i++)
2374             xatoms[i] = gdk_x11_atom_to_xatom_for_display (display, targets[i]);
2375
2376           XChangeProperty (display_x11->xdisplay, GDK_WINDOW_XID (clipboard_window),
2377                            property_name, XA_ATOM,
2378                            32, PropModeReplace, (guchar *)xatoms, n_targets);
2379           g_free (xatoms);
2380
2381         }
2382       
2383       XConvertSelection (display_x11->xdisplay,
2384                          clipboard_manager, save_targets, property_name,
2385                          GDK_WINDOW_XID (clipboard_window), time_);
2386       
2387     }
2388   gdk_error_trap_pop_ignored ();
2389
2390 }
2391
2392 /**
2393  * gdk_x11_display_get_user_time:
2394  * @display: a #GdkDisplay
2395  *
2396  * Returns the timestamp of the last user interaction on 
2397  * @display. The timestamp is taken from events caused
2398  * by user interaction such as key presses or pointer 
2399  * movements. See gdk_x11_window_set_user_time().
2400  *
2401  * Returns: the timestamp of the last user interaction 
2402  *
2403  * Since: 2.8
2404  */
2405 guint32
2406 gdk_x11_display_get_user_time (GdkDisplay *display)
2407 {
2408   return GDK_DISPLAY_X11 (display)->user_time;
2409 }
2410
2411 /**
2412  * gdk_display_supports_shapes:
2413  * @display: a #GdkDisplay
2414  *
2415  * Returns %TRUE if gdk_window_shape_combine_mask() can
2416  * be used to create shaped windows on @display.
2417  *
2418  * Returns: %TRUE if shaped windows are supported 
2419  *
2420  * Since: 2.10
2421  */
2422 gboolean 
2423 gdk_display_supports_shapes (GdkDisplay *display)
2424 {
2425   return GDK_DISPLAY_X11 (display)->have_shapes;
2426 }
2427
2428 /**
2429  * gdk_display_supports_input_shapes:
2430  * @display: a #GdkDisplay
2431  *
2432  * Returns %TRUE if gdk_window_input_shape_combine_mask() can
2433  * be used to modify the input shape of windows on @display.
2434  *
2435  * Returns: %TRUE if windows with modified input shape are supported 
2436  *
2437  * Since: 2.10
2438  */
2439 gboolean 
2440 gdk_display_supports_input_shapes (GdkDisplay *display)
2441 {
2442   return GDK_DISPLAY_X11 (display)->have_input_shapes;
2443 }
2444
2445
2446 /**
2447  * gdk_x11_display_get_startup_notification_id:
2448  * @display: a #GdkDisplay
2449  *
2450  * Gets the startup notification ID for a display.
2451  * 
2452  * Returns: the startup notification ID for @display
2453  *
2454  * Since: 2.12
2455  */
2456 G_CONST_RETURN gchar *
2457 gdk_x11_display_get_startup_notification_id (GdkDisplay *display)
2458 {
2459   return GDK_DISPLAY_X11 (display)->startup_notification_id;
2460 }
2461
2462 /**
2463  * gdk_x11_display_set_startup_notification_id:
2464  * @display: a #GdkDisplay
2465  * @startup_id: the startup notification ID (must be valid utf8)
2466  *
2467  * Sets the startup notification ID for a display.
2468  *
2469  * This is usually taken from the value of the DESKTOP_STARTUP_ID
2470  * environment variable, but in some cases (such as the application not
2471  * being launched using exec()) it can come from other sources.
2472  *
2473  * If the ID contains the string "_TIME" then the portion following that
2474  * string is taken to be the X11 timestamp of the event that triggered
2475  * the application to be launched and the GDK current event time is set
2476  * accordingly.
2477  *
2478  * The startup ID is also what is used to signal that the startup is
2479  * complete (for example, when opening a window or when calling
2480  * gdk_notify_startup_complete()).
2481  *
2482  * Since: 3.0
2483  **/
2484 void
2485 gdk_x11_display_set_startup_notification_id (GdkDisplay  *display,
2486                                              const gchar *startup_id)
2487 {
2488   GdkDisplayX11 *display_x11;
2489   gchar *time_str;
2490
2491   display_x11 = GDK_DISPLAY_X11 (display);
2492
2493   g_free (display_x11->startup_notification_id);
2494   display_x11->startup_notification_id = g_strdup (startup_id);
2495
2496   /* Find the launch time from the startup_id, if it's there.  Newer spec
2497    * states that the startup_id is of the form <unique>_TIME<timestamp>
2498    */
2499   time_str = g_strrstr (startup_id, "_TIME");
2500   if (time_str != NULL)
2501     {
2502       gulong retval;
2503       gchar *end;
2504       errno = 0;
2505
2506       /* Skip past the "_TIME" part */
2507       time_str += 5;
2508
2509       retval = strtoul (time_str, &end, 0);
2510       if (end != time_str && errno == 0)
2511         display_x11->user_time = retval;
2512     }
2513
2514   /* Set the startup id on the leader window so it
2515    * applies to all windows we create on this display
2516    */
2517   XChangeProperty (display_x11->xdisplay,
2518                    display_x11->leader_window,
2519                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_STARTUP_ID"),
2520                    gdk_x11_get_xatom_by_name_for_display (display, "UTF8_STRING"), 8,
2521                    PropModeReplace,
2522                    (guchar *)startup_id, strlen (startup_id));
2523 }
2524
2525 /**
2526  * gdk_display_supports_composite:
2527  * @display: a #GdkDisplay
2528  *
2529  * Returns %TRUE if gdk_window_set_composited() can be used
2530  * to redirect drawing on the window using compositing.
2531  *
2532  * Currently this only works on X11 with XComposite and
2533  * XDamage extensions available.
2534  *
2535  * Returns: %TRUE if windows may be composited.
2536  *
2537  * Since: 2.12
2538  */
2539 gboolean
2540 gdk_display_supports_composite (GdkDisplay *display)
2541 {
2542   GdkDisplayX11 *x11_display = GDK_DISPLAY_X11 (display);
2543
2544   return x11_display->have_xcomposite &&
2545          x11_display->have_xdamage &&
2546          x11_display->have_xfixes;
2547 }
2548
2549 /**
2550  * gdk_display_list_devices:
2551  * @display: a #GdkDisplay
2552  *
2553  * Returns the list of available input devices attached to @display.
2554  * The list is statically allocated and should not be freed.
2555  *
2556  * Return value: (transfer none) (element-type GdkDevice):
2557  *     a list of #GdkDevice
2558  *
2559  * Since: 2.2
2560  *
2561  * Deprecated: 3.0: Use gdk_device_manager_list_devices() instead.
2562  **/
2563 GList *
2564 gdk_display_list_devices (GdkDisplay *display)
2565 {
2566   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
2567
2568   return GDK_DISPLAY_X11 (display)->input_devices;
2569 }
2570
2571 /**
2572  * gdk_event_send_client_message_for_display:
2573  * @display: the #GdkDisplay for the window where the message is to be sent.
2574  * @event: the #GdkEvent to send, which should be a #GdkEventClient.
2575  * @winid: the window to send the client message to.
2576  *
2577  * On X11, sends an X ClientMessage event to a given window. On
2578  * Windows, sends a message registered with the name
2579  * GDK_WIN32_CLIENT_MESSAGE.
2580  *
2581  * This could be used for communicating between different
2582  * applications, though the amount of data is limited to 20 bytes on
2583  * X11, and to just four bytes on Windows.
2584  *
2585  * Returns: non-zero on success.
2586  *
2587  * Since: 2.2
2588  */
2589 gboolean
2590 gdk_event_send_client_message_for_display (GdkDisplay     *display,
2591                                            GdkEvent       *event,
2592                                            GdkNativeWindow winid)
2593 {
2594   XEvent sev;
2595
2596   g_return_val_if_fail(event != NULL, FALSE);
2597
2598   /* Set up our event to send, with the exception of its target window */
2599   sev.xclient.type = ClientMessage;
2600   sev.xclient.display = GDK_DISPLAY_XDISPLAY (display);
2601   sev.xclient.format = event->client.data_format;
2602   sev.xclient.window = winid;
2603   memcpy(&sev.xclient.data, &event->client.data, sizeof (sev.xclient.data));
2604   sev.xclient.message_type = gdk_x11_atom_to_xatom_for_display (display, event->client.message_type);
2605
2606   return _gdk_send_xevent (display, winid, False, NoEventMask, &sev);
2607 }
2608
2609 /**
2610  * gdk_display_add_client_message_filter:
2611  * @display: a #GdkDisplay for which this message filter applies
2612  * @message_type: the type of ClientMessage events to receive.
2613  *   This will be checked against the @message_type field
2614  *   of the XClientMessage event struct.
2615  * @func: the function to call to process the event.
2616  * @data: user data to pass to @func.
2617  *
2618  * Adds a filter to be called when X ClientMessage events are received.
2619  * See gdk_window_add_filter() if you are interested in filtering other
2620  * types of events.
2621  *
2622  * Since: 2.2
2623  **/
2624 void
2625 gdk_display_add_client_message_filter (GdkDisplay   *display,
2626                                        GdkAtom       message_type,
2627                                        GdkFilterFunc func,
2628                                        gpointer      data)
2629 {
2630   GdkClientFilter *filter;
2631   g_return_if_fail (GDK_IS_DISPLAY (display));
2632   filter = g_new (GdkClientFilter, 1);
2633
2634   filter->type = message_type;
2635   filter->function = func;
2636   filter->data = data;
2637
2638   GDK_DISPLAY_X11(display)->client_filters =
2639     g_list_append (GDK_DISPLAY_X11 (display)->client_filters,
2640                    filter);
2641 }
2642
2643 /**
2644  * gdk_add_client_message_filter:
2645  * @message_type: the type of ClientMessage events to receive. This will be
2646  *     checked against the <structfield>message_type</structfield> field of the
2647  *     XClientMessage event struct.
2648  * @func: the function to call to process the event.
2649  * @data: user data to pass to @func.
2650  *
2651  * Adds a filter to the default display to be called when X ClientMessage events
2652  * are received. See gdk_display_add_client_message_filter().
2653  **/
2654 void
2655 gdk_add_client_message_filter (GdkAtom       message_type,
2656                                GdkFilterFunc func,
2657                                gpointer      data)
2658 {
2659   gdk_display_add_client_message_filter (gdk_display_get_default (),
2660                                          message_type, func, data);
2661 }
2662
2663 /*
2664  *--------------------------------------------------------------
2665  * gdk_flush
2666  *
2667  *   Flushes the Xlib output buffer and then waits
2668  *   until all requests have been received and processed
2669  *   by the X server. The only real use for this function
2670  *   is in dealing with XShm.
2671  *
2672  * Arguments:
2673  *
2674  * Results:
2675  *
2676  * Side effects:
2677  *
2678  *--------------------------------------------------------------
2679  */
2680 void
2681 gdk_flush (void)
2682 {
2683   GSList *tmp_list = _gdk_displays;
2684
2685   while (tmp_list)
2686     {
2687       XSync (GDK_DISPLAY_XDISPLAY (tmp_list->data), False);
2688       tmp_list = tmp_list->next;
2689     }
2690 }
2691
2692 /**
2693  * gdk_x11_register_standard_event_type:
2694  * @display: a #GdkDisplay
2695  * @event_base: first event type code to register
2696  * @n_events: number of event type codes to register
2697  *
2698  * Registers interest in receiving extension events with type codes
2699  * between @event_base and <literal>event_base + n_events - 1</literal>.
2700  * The registered events must have the window field in the same place
2701  * as core X events (this is not the case for e.g. XKB extension events).
2702  *
2703  * If an event type is registered, events of this type will go through
2704  * global and window-specific filters (see gdk_window_add_filter()).
2705  * Unregistered events will only go through global filters.
2706  * GDK may register the events of some X extensions on its own.
2707  *
2708  * This function should only be needed in unusual circumstances, e.g.
2709  * when filtering XInput extension events on the root window.
2710  *
2711  * Since: 2.4
2712  **/
2713 void
2714 gdk_x11_register_standard_event_type (GdkDisplay *display,
2715                                       gint        event_base,
2716                                       gint        n_events)
2717 {
2718   GdkEventTypeX11 *event_type;
2719   GdkDisplayX11 *display_x11;
2720
2721   display_x11 = GDK_DISPLAY_X11 (display);
2722   event_type = g_new (GdkEventTypeX11, 1);
2723
2724   event_type->base = event_base;
2725   event_type->n_events = n_events;
2726
2727   display_x11->event_types = g_slist_prepend (display_x11->event_types, event_type);
2728 }
2729
2730 /* compare X sequence numbers handling wraparound */
2731 #define SEQUENCE_COMPARE(a,op,b) (((long) (a) - (long) (b)) op 0)
2732
2733 /* delivers an error event from the error handler in gdkmain-x11.c */
2734 void
2735 _gdk_x11_display_error_event (GdkDisplay  *display,
2736                               XErrorEvent *error)
2737 {
2738   GdkDisplayX11 *display_x11;
2739   GSList *tmp_list;
2740   gboolean ignore;
2741
2742   display_x11 = GDK_DISPLAY_X11 (display);
2743
2744   ignore = FALSE;
2745   for (tmp_list = display_x11->error_traps;
2746        tmp_list != NULL;
2747        tmp_list = tmp_list->next)
2748     {
2749       GdkErrorTrap *trap;
2750
2751       trap = tmp_list->data;
2752
2753       if (SEQUENCE_COMPARE (trap->start_sequence, <=, error->serial) &&
2754           (trap->end_sequence == 0 ||
2755            SEQUENCE_COMPARE (trap->end_sequence, >, error->serial)))
2756         {
2757           ignore = TRUE;
2758           trap->error_code = error->error_code;
2759           break; /* only innermost trap gets the error code */
2760         }
2761     }
2762
2763   if (!ignore)
2764     {
2765       gchar buf[64];
2766       gchar *msg;
2767
2768       XGetErrorText (display_x11->xdisplay, error->error_code, buf, 63);
2769
2770       msg =
2771         g_strdup_printf ("The program '%s' received an X Window System error.\n"
2772                          "This probably reflects a bug in the program.\n"
2773                          "The error was '%s'.\n"
2774                          "  (Details: serial %ld error_code %d request_code %d minor_code %d)\n"
2775                          "  (Note to programmers: normally, X errors are reported asynchronously;\n"
2776                          "   that is, you will receive the error a while after causing it.\n"
2777                          "   To debug your program, run it with the --sync command line\n"
2778                          "   option to change this behavior. You can then get a meaningful\n"
2779                          "   backtrace from your debugger if you break on the gdk_x_error() function.)",
2780                          g_get_prgname (),
2781                          buf,
2782                          error->serial,
2783                          error->error_code,
2784                          error->request_code,
2785                          error->minor_code);
2786
2787 #ifdef G_ENABLE_DEBUG
2788       g_error ("%s", msg);
2789 #else /* !G_ENABLE_DEBUG */
2790       g_warning ("%s\n", msg);
2791
2792       exit (1);
2793 #endif /* G_ENABLE_DEBUG */
2794     }
2795 }
2796
2797 static void
2798 delete_outdated_error_traps (GdkDisplayX11 *display_x11)
2799 {
2800   GSList *tmp_list;
2801   gulong processed_sequence;
2802
2803   processed_sequence = XLastKnownRequestProcessed (display_x11->xdisplay);
2804
2805   tmp_list = display_x11->error_traps;
2806   while (tmp_list != NULL)
2807     {
2808       GdkErrorTrap *trap = tmp_list->data;
2809
2810       if (trap->end_sequence != 0 &&
2811           SEQUENCE_COMPARE (trap->end_sequence, <=, processed_sequence))
2812         {
2813           GSList *free_me = tmp_list;
2814
2815           tmp_list = tmp_list->next;
2816           display_x11->error_traps =
2817             g_slist_delete_link (display_x11->error_traps, free_me);
2818           g_slice_free (GdkErrorTrap, trap);
2819         }
2820       else
2821         {
2822           tmp_list = tmp_list->next;
2823         }
2824     }
2825 }
2826
2827 /**
2828  * gdk_x11_display_error_trap_push:
2829  * @display: a #GdkDisplay
2830  *
2831  * Begins a range of X requests on @display for which X error events
2832  * will be ignored. Unignored errors (when no trap is pushed) will abort
2833  * the application. Use gdk_x11_display_error_trap_pop() or
2834  * gdk_x11_display_error_trap_pop_ignored()to lift a trap pushed
2835  * with this function.
2836  *
2837  * See also gdk_error_trap_push() to push a trap on all displays.
2838  *
2839  * Since: 3.0
2840  */
2841 void
2842 gdk_x11_display_error_trap_push (GdkDisplay *display)
2843 {
2844   GdkDisplayX11 *display_x11;
2845   GdkErrorTrap *trap;
2846
2847   display_x11 = GDK_DISPLAY_X11 (display);
2848
2849   delete_outdated_error_traps (display_x11);
2850
2851   /* set up the Xlib callback to tell us about errors */
2852   _gdk_x11_error_handler_push ();
2853
2854   trap = g_slice_new0 (GdkErrorTrap);
2855
2856   trap->start_sequence = XNextRequest (display_x11->xdisplay);
2857   trap->error_code = Success;
2858
2859   display_x11->error_traps =
2860     g_slist_prepend (display_x11->error_traps, trap);
2861 }
2862
2863 static gint
2864 gdk_x11_display_error_trap_pop_internal (GdkDisplay *display,
2865                                          gboolean    need_code)
2866 {
2867   GdkDisplayX11 *display_x11;
2868   GdkErrorTrap *trap;
2869   GSList *tmp_list;
2870   int result;
2871
2872   display_x11 = GDK_DISPLAY_X11 (display);
2873
2874   g_return_val_if_fail (display_x11->error_traps != NULL, Success);
2875
2876   /* Find the first trap that hasn't been popped already */
2877   trap = NULL; /* quiet gcc */
2878   for (tmp_list = display_x11->error_traps;
2879        tmp_list != NULL;
2880        tmp_list = tmp_list->next)
2881     {
2882       trap = tmp_list->data;
2883
2884       if (trap->end_sequence == 0)
2885         break;
2886     }
2887
2888   g_return_val_if_fail (trap != NULL, Success);
2889   g_assert (trap->end_sequence == 0);
2890
2891   /* May need to sync to fill in trap->error_code if we care about
2892    * getting an error code.
2893    */
2894   if (need_code)
2895     {
2896       gulong processed_sequence;
2897       gulong next_sequence;
2898
2899       next_sequence = XNextRequest (display_x11->xdisplay);
2900       processed_sequence = XLastKnownRequestProcessed (display_x11->xdisplay);
2901
2902       /* If our last request was already processed, there is no point
2903        * in syncing. i.e. if last request was a round trip (or even if
2904        * we got an event with the serial of a non-round-trip)
2905        */
2906       if ((next_sequence - 1) != processed_sequence)
2907         {
2908           XSync (display_x11->xdisplay, False);
2909         }
2910
2911       result = trap->error_code;
2912     }
2913   else
2914     {
2915       result = Success;
2916     }
2917
2918   /* record end of trap, giving us a range of
2919    * error sequences we'll ignore.
2920    */
2921   trap->end_sequence = XNextRequest (display_x11->xdisplay);
2922
2923   /* remove the Xlib callback */
2924   _gdk_x11_error_handler_pop ();
2925
2926   /* we may already be outdated */
2927   delete_outdated_error_traps (display_x11);
2928
2929   return result;
2930 }
2931
2932 /**
2933  * gdk_x11_display_error_trap_pop:
2934  * @display: the display
2935  *
2936  * Pops the error trap pushed by gdk_x11_display_error_trap_push().
2937  * Will XSync() if necessary and will always block until
2938  * the error is known to have occurred or not occurred,
2939  * so the error code can be returned.
2940  *
2941  * If you don't need to use the return value,
2942  * gdk_x11_display_error_trap_pop_ignored() would be more efficient.
2943  *
2944  * See gdk_error_trap_pop() for the all-displays-at-once
2945  * equivalent.
2946  *
2947  * Since: 3.0
2948  *
2949  * Return value: X error code or 0 on success
2950  */
2951 gint
2952 gdk_x11_display_error_trap_pop (GdkDisplay *display)
2953 {
2954   g_return_val_if_fail (GDK_IS_DISPLAY_X11 (display), Success);
2955
2956   return gdk_x11_display_error_trap_pop_internal (display, TRUE);
2957 }
2958
2959 /**
2960  * gdk_x11_display_error_trap_pop_ignored:
2961  * @display: the display
2962  *
2963  * Pops the error trap pushed by gdk_x11_display_error_trap_push().
2964  * Does not block to see if an error occurred; merely records the
2965  * range of requests to ignore errors for, and ignores those errors
2966  * if they arrive asynchronously.
2967  *
2968  * See gdk_error_trap_pop_ignored() for the all-displays-at-once
2969  * equivalent.
2970  *
2971  * Since: 3.0
2972  */
2973 void
2974 gdk_x11_display_error_trap_pop_ignored (GdkDisplay *display)
2975 {
2976   g_return_if_fail (GDK_IS_DISPLAY_X11 (display));
2977
2978   gdk_x11_display_error_trap_pop_internal (display, FALSE);
2979 }