]> Pileus Git - ~andy/gtk/blob - gdk/gdkdisplay.c
Move single-include guards inside include guards
[~andy/gtk] / gdk / gdkdisplay.c
1 /* GDK - The GIMP Drawing Kit
2  * gdkdisplay.c
3  * 
4  * Copyright 2001 Sun Microsystems Inc. 
5  *
6  * Erwann Chenede <erwann.chenede@sun.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include "config.h"
23
24 #include "gdkdisplay.h"
25 #include "gdkdisplayprivate.h"
26
27 #include "gdkdeviceprivate.h"
28 #include "gdkevents.h"
29 #include "gdkwindowimpl.h"
30 #include "gdkinternals.h"
31 #include "gdkmarshalers.h"
32 #include "gdkscreen.h"
33
34 #include <glib.h>
35
36
37 /**
38  * SECTION:gdkdisplay
39  * @Short_description: Controls a set of GdkScreens and their associated input devices
40  * @Title: GdkDisplay
41  *
42  * #GdkDisplay objects purpose are two fold:
43  * <itemizedlist>
44  * <listitem>
45  *   To manage and provide information about input devices (pointers
46  *   and keyboards)
47  * </listitem>
48  * <listitem>
49  *   To manage and provide information about the available #GdkScreens
50  * </listitem>
51  * </itemizedlist>
52  *
53  * GdkDisplay objects are the GDK representation of an X Display,
54  * which can be described as <emphasis>a workstation consisting of
55  * a keyboard, a pointing device (such as a mouse) and one or more
56  * screens</emphasis>.
57  * It is used to open and keep track of various GdkScreen objects
58  * currently instantiated by the application. It is also used to
59  * access the keyboard(s) and mouse pointer(s) of the display.
60  *
61  * Most of the input device handling has been factored out into
62  * the separate #GdkDeviceManager object. Every display has a
63  * device manager, which you can obtain using
64  * gdk_display_get_device_manager().
65  */
66
67
68 enum {
69   OPENED,
70   CLOSED,
71   LAST_SIGNAL
72 };
73
74 static void gdk_display_dispose     (GObject         *object);
75 static void gdk_display_finalize    (GObject         *object);
76
77
78 static GdkAppLaunchContext *gdk_display_real_get_app_launch_context (GdkDisplay *display);
79
80 static guint signals[LAST_SIGNAL] = { 0 };
81
82 G_DEFINE_TYPE (GdkDisplay, gdk_display, G_TYPE_OBJECT)
83
84 static void
85 gdk_display_class_init (GdkDisplayClass *class)
86 {
87   GObjectClass *object_class = G_OBJECT_CLASS (class);
88
89   object_class->finalize = gdk_display_finalize;
90   object_class->dispose = gdk_display_dispose;
91
92   class->get_app_launch_context = gdk_display_real_get_app_launch_context;
93   class->window_type = GDK_TYPE_WINDOW;
94
95   /**
96    * GdkDisplay::opened:
97    * @display: the object on which the signal is emitted
98    *
99    * The ::opened signal is emitted when the connection to the windowing
100    * system for @display is opened.
101    */
102   signals[OPENED] =
103     g_signal_new (g_intern_static_string ("opened"),
104                   G_OBJECT_CLASS_TYPE (object_class),
105                   G_SIGNAL_RUN_LAST,
106                   0, NULL, NULL,
107                   g_cclosure_marshal_VOID__VOID,
108                   G_TYPE_NONE, 0);
109
110   /**
111    * GdkDisplay::closed:
112    * @display: the object on which the signal is emitted
113    * @is_error: %TRUE if the display was closed due to an error
114    *
115    * The ::closed signal is emitted when the connection to the windowing
116    * system for @display is closed.
117    *
118    * Since: 2.2
119    */   
120   signals[CLOSED] =
121     g_signal_new (g_intern_static_string ("closed"),
122                   G_OBJECT_CLASS_TYPE (object_class),
123                   G_SIGNAL_RUN_LAST,
124                   G_STRUCT_OFFSET (GdkDisplayClass, closed),
125                   NULL, NULL,
126                   _gdk_marshal_VOID__BOOLEAN,
127                   G_TYPE_NONE,
128                   1,
129                   G_TYPE_BOOLEAN);
130 }
131
132 static void
133 free_pointer_info (GdkPointerWindowInfo *info)
134 {
135   if (info->toplevel_under_pointer)
136     g_object_unref (info->toplevel_under_pointer);
137   g_slice_free (GdkPointerWindowInfo, info);
138 }
139
140 static void
141 free_device_grab (GdkDeviceGrabInfo *info)
142 {
143   g_object_unref (info->window);
144   g_object_unref (info->native_window);
145   g_free (info);
146 }
147
148 static gboolean
149 free_device_grabs_foreach (gpointer key,
150                            gpointer value,
151                            gpointer user_data)
152 {
153   GList *list = value;
154
155   g_list_free_full (list, (GDestroyNotify) free_device_grab);
156
157   return TRUE;
158 }
159
160 static void
161 device_removed_cb (GdkDeviceManager *device_manager,
162                    GdkDevice        *device,
163                    GdkDisplay       *display)
164 {
165   g_hash_table_remove (display->multiple_click_info, device);
166   g_hash_table_remove (display->device_grabs, device);
167   g_hash_table_remove (display->pointers_info, device);
168
169   /* FIXME: change core pointer and remove from device list */
170 }
171
172 static void
173 gdk_display_opened (GdkDisplay *display)
174 {
175   GdkDeviceManager *device_manager;
176
177   device_manager = gdk_display_get_device_manager (display);
178
179   g_signal_connect (device_manager, "device-removed",
180                     G_CALLBACK (device_removed_cb), display);
181 }
182
183 static void
184 gdk_display_init (GdkDisplay *display)
185 {
186   display->double_click_time = 250;
187   display->double_click_distance = 5;
188
189   display->touch_implicit_grabs = g_array_new (FALSE, FALSE, sizeof (GdkTouchGrabInfo));
190   display->device_grabs = g_hash_table_new (NULL, NULL);
191   display->motion_hint_info = g_hash_table_new_full (NULL, NULL, NULL,
192                                                      (GDestroyNotify) g_free);
193
194   display->pointers_info = g_hash_table_new_full (NULL, NULL, NULL,
195                                                   (GDestroyNotify) free_pointer_info);
196
197   display->multiple_click_info = g_hash_table_new_full (NULL, NULL, NULL,
198                                                         (GDestroyNotify) g_free);
199
200   g_signal_connect (display, "opened",
201                     G_CALLBACK (gdk_display_opened), NULL);
202 }
203
204 static void
205 gdk_display_dispose (GObject *object)
206 {
207   GdkDisplay *display = GDK_DISPLAY (object);
208   GdkDeviceManager *device_manager;
209
210   device_manager = gdk_display_get_device_manager (GDK_DISPLAY (object));
211
212   g_list_free_full (display->queued_events, (GDestroyNotify) gdk_event_free);
213   display->queued_events = NULL;
214   display->queued_tail = NULL;
215
216   if (device_manager)
217     {
218       /* this is to make it drop devices which may require using the X
219        * display and therefore can't be cleaned up in finalize.
220        * It will also disconnect device_removed_cb
221        */
222       g_object_run_dispose (G_OBJECT (display->device_manager));
223     }
224
225   G_OBJECT_CLASS (gdk_display_parent_class)->dispose (object);
226 }
227
228 static void
229 gdk_display_finalize (GObject *object)
230 {
231   GdkDisplay *display = GDK_DISPLAY (object);
232
233   g_hash_table_foreach_remove (display->device_grabs,
234                                free_device_grabs_foreach,
235                                NULL);
236   g_hash_table_destroy (display->device_grabs);
237
238   g_array_free (display->touch_implicit_grabs, TRUE);
239
240   g_hash_table_destroy (display->motion_hint_info);
241   g_hash_table_destroy (display->pointers_info);
242   g_hash_table_destroy (display->multiple_click_info);
243
244   if (display->device_manager)
245     g_object_unref (display->device_manager);
246
247   G_OBJECT_CLASS (gdk_display_parent_class)->finalize (object);
248 }
249
250 /**
251  * gdk_display_close:
252  * @display: a #GdkDisplay
253  *
254  * Closes the connection to the windowing system for the given display,
255  * and cleans up associated resources.
256  *
257  * Since: 2.2
258  */
259 void
260 gdk_display_close (GdkDisplay *display)
261 {
262   g_return_if_fail (GDK_IS_DISPLAY (display));
263
264   if (!display->closed)
265     {
266       display->closed = TRUE;
267       
268       g_signal_emit (display, signals[CLOSED], 0, FALSE);
269       g_object_run_dispose (G_OBJECT (display));
270       
271       g_object_unref (display);
272     }
273 }
274
275 /**
276  * gdk_display_is_closed:
277  * @display: a #GdkDisplay
278  *
279  * Finds out if the display has been closed.
280  *
281  * Returns: %TRUE if the display is closed.
282  *
283  * Since: 2.22
284  */
285 gboolean
286 gdk_display_is_closed  (GdkDisplay  *display)
287 {
288   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
289
290   return display->closed;
291 }
292
293 /**
294  * gdk_display_get_event:
295  * @display: a #GdkDisplay
296  * 
297  * Gets the next #GdkEvent to be processed for @display, fetching events from the
298  * windowing system if necessary.
299  * 
300  * Return value: the next #GdkEvent to be processed, or %NULL if no events
301  * are pending. The returned #GdkEvent should be freed with gdk_event_free().
302  *
303  * Since: 2.2
304  **/
305 GdkEvent*
306 gdk_display_get_event (GdkDisplay *display)
307 {
308   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
309
310   GDK_DISPLAY_GET_CLASS (display)->queue_events (display);
311   return _gdk_event_unqueue (display);
312 }
313
314 /**
315  * gdk_display_peek_event:
316  * @display: a #GdkDisplay 
317  * 
318  * Gets a copy of the first #GdkEvent in the @display's event queue, without
319  * removing the event from the queue.  (Note that this function will
320  * not get more events from the windowing system.  It only checks the events
321  * that have already been moved to the GDK event queue.)
322  * 
323  * Return value: a copy of the first #GdkEvent on the event queue, or %NULL 
324  * if no events are in the queue. The returned #GdkEvent should be freed with
325  * gdk_event_free().
326  *
327  * Since: 2.2
328  **/
329 GdkEvent*
330 gdk_display_peek_event (GdkDisplay *display)
331 {
332   GList *tmp_list;
333
334   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
335
336   tmp_list = _gdk_event_queue_find_first (display);
337   
338   if (tmp_list)
339     return gdk_event_copy (tmp_list->data);
340   else
341     return NULL;
342 }
343
344 /**
345  * gdk_display_put_event:
346  * @display: a #GdkDisplay
347  * @event: a #GdkEvent.
348  *
349  * Appends a copy of the given event onto the front of the event
350  * queue for @display.
351  *
352  * Since: 2.2
353  **/
354 void
355 gdk_display_put_event (GdkDisplay     *display,
356                        const GdkEvent *event)
357 {
358   g_return_if_fail (GDK_IS_DISPLAY (display));
359   g_return_if_fail (event != NULL);
360
361   _gdk_event_queue_append (display, gdk_event_copy (event));
362   /* If the main loop is blocking in a different thread, wake it up */
363   g_main_context_wakeup (NULL); 
364 }
365
366 /**
367  * gdk_display_pointer_ungrab:
368  * @display: a #GdkDisplay.
369  * @time_: a timestap (e.g. %GDK_CURRENT_TIME).
370  *
371  * Release any pointer grab.
372  *
373  * Since: 2.2
374  *
375  * Deprecated: 3.0: Use gdk_device_ungrab(), together with gdk_device_grab()
376  *             instead.
377  */
378 void
379 gdk_display_pointer_ungrab (GdkDisplay *display,
380                             guint32     time_)
381 {
382   GdkDeviceManager *device_manager;
383   GList *devices, *dev;
384   GdkDevice *device;
385
386   g_return_if_fail (GDK_IS_DISPLAY (display));
387
388   device_manager = gdk_display_get_device_manager (display);
389   devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
390
391   /* FIXME: Should this be generic to all backends? */
392   /* FIXME: What happens with extended devices? */
393   for (dev = devices; dev; dev = dev->next)
394     {
395       device = dev->data;
396
397       if (gdk_device_get_source (device) != GDK_SOURCE_MOUSE)
398         continue;
399
400       gdk_device_ungrab (device, time_);
401     }
402
403   g_list_free (devices);
404 }
405
406 /**
407  * gdk_display_keyboard_ungrab:
408  * @display: a #GdkDisplay.
409  * @time_: a timestap (e.g #GDK_CURRENT_TIME).
410  *
411  * Release any keyboard grab
412  *
413  * Since: 2.2
414  *
415  * Deprecated: 3.0: Use gdk_device_ungrab(), together with gdk_device_grab()
416  *             instead.
417  */
418 void
419 gdk_display_keyboard_ungrab (GdkDisplay *display,
420                              guint32     time)
421 {
422   GdkDeviceManager *device_manager;
423   GList *devices, *dev;
424   GdkDevice *device;
425
426   g_return_if_fail (GDK_IS_DISPLAY (display));
427
428   device_manager = gdk_display_get_device_manager (display);
429   devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
430
431   /* FIXME: Should this be generic to all backends? */
432   /* FIXME: What happens with extended devices? */
433   for (dev = devices; dev; dev = dev->next)
434     {
435       device = dev->data;
436
437       if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
438         continue;
439
440       gdk_device_ungrab (device, time);
441     }
442
443   g_list_free (devices);
444 }
445
446 /**
447  * gdk_beep:
448  * 
449  * Emits a short beep on the default display.
450  **/
451 void
452 gdk_beep (void)
453 {
454   gdk_display_beep (gdk_display_get_default ());
455 }
456
457 /**
458  * gdk_flush:
459  *
460  * Flushes the output buffers of all display connections and waits
461  * until all requests have been processed.
462  * This is rarely needed by applications.
463  */
464 void
465 gdk_flush (void)
466 {
467   GSList *list, *l;
468
469   list = gdk_display_manager_list_displays (gdk_display_manager_get ());
470   for (l = list; l; l = l->next)
471     {
472       GdkDisplay *display = l->data;
473
474       GDK_DISPLAY_GET_CLASS (display)->sync (display);
475     }
476
477   g_slist_free (list);
478 }
479
480 void
481 _gdk_display_enable_motion_hints (GdkDisplay *display,
482                                   GdkDevice  *device)
483 {
484   gulong *device_serial, serial;
485
486   device_serial = g_hash_table_lookup (display->motion_hint_info, device);
487
488   if (!device_serial)
489     {
490       device_serial = g_new0 (gulong, 1);
491       *device_serial = G_MAXULONG;
492       g_hash_table_insert (display->motion_hint_info, device, device_serial);
493     }
494
495   if (*device_serial != 0)
496     {
497       serial = _gdk_display_get_next_serial (display);
498       /* We might not actually generate the next request, so
499          make sure this triggers always, this may cause it to
500          trigger slightly too early, but this is just a hint
501          anyway. */
502       if (serial > 0)
503         serial--;
504       if (serial < *device_serial)
505         *device_serial = serial;
506     }
507 }
508
509 /**
510  * gdk_display_get_pointer:
511  * @display: a #GdkDisplay
512  * @screen: (out) (allow-none) (transfer none): location to store the screen that the
513  *          cursor is on, or %NULL.
514  * @x: (out) (allow-none): location to store root window X coordinate of pointer, or %NULL.
515  * @y: (out) (allow-none): location to store root window Y coordinate of pointer, or %NULL.
516  * @mask: (out) (allow-none): location to store current modifier mask, or %NULL
517  *
518  * Gets the current location of the pointer and the current modifier
519  * mask for a given display.
520  *
521  * Since: 2.2
522  *
523  * Deprecated: 3.0: Use gdk_device_get_position() instead.
524  **/
525 void
526 gdk_display_get_pointer (GdkDisplay      *display,
527                          GdkScreen      **screen,
528                          gint            *x,
529                          gint            *y,
530                          GdkModifierType *mask)
531 {
532   GdkScreen *default_screen;
533   GdkWindow *root;
534   gint tmp_x, tmp_y;
535   GdkModifierType tmp_mask;
536
537   g_return_if_fail (GDK_IS_DISPLAY (display));
538
539   if (gdk_display_is_closed (display))
540     return;
541
542   default_screen = gdk_display_get_default_screen (display);
543
544   /* We call _gdk_device_query_state() here manually instead of
545    * gdk_device_get_position() because we care about the modifier mask */
546
547   _gdk_device_query_state (display->core_pointer,
548                            gdk_screen_get_root_window (default_screen),
549                            &root, NULL,
550                            &tmp_x, &tmp_y,
551                            NULL, NULL,
552                            &tmp_mask);
553
554   if (screen)
555     *screen = gdk_window_get_screen (root);
556   if (x)
557     *x = tmp_x;
558   if (y)
559     *y = tmp_y;
560   if (mask)
561     *mask = tmp_mask;
562 }
563
564 /**
565  * gdk_display_get_window_at_pointer:
566  * @display: a #GdkDisplay
567  * @win_x: (out) (allow-none): return location for x coordinate of the pointer location relative
568  *    to the window origin, or %NULL
569  * @win_y: (out) (allow-none): return location for y coordinate of the pointer location relative
570  &    to the window origin, or %NULL
571  *
572  * Obtains the window underneath the mouse pointer, returning the location
573  * of the pointer in that window in @win_x, @win_y for @screen. Returns %NULL
574  * if the window under the mouse pointer is not known to GDK (for example, 
575  * belongs to another application).
576  *
577  * Returns: (transfer none): the window under the mouse pointer, or %NULL
578  *
579  * Since: 2.2
580  *
581  * Deprecated: 3.0: Use gdk_device_get_window_at_position() instead.
582  **/
583 GdkWindow *
584 gdk_display_get_window_at_pointer (GdkDisplay *display,
585                                    gint       *win_x,
586                                    gint       *win_y)
587 {
588   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
589
590   return gdk_device_get_window_at_position (display->core_pointer, win_x, win_y);
591 }
592
593 static void
594 generate_grab_broken_event (GdkWindow *window,
595                             GdkDevice *device,
596                             gboolean   implicit,
597                             GdkWindow *grab_window)
598 {
599   g_return_if_fail (window != NULL);
600
601   if (!GDK_WINDOW_DESTROYED (window))
602     {
603       GdkEvent *event;
604
605       event = gdk_event_new (GDK_GRAB_BROKEN);
606       event->grab_broken.window = g_object_ref (window);
607       event->grab_broken.send_event = FALSE;
608       event->grab_broken.implicit = implicit;
609       event->grab_broken.grab_window = grab_window;
610       gdk_event_set_device (event, device);
611       event->grab_broken.keyboard = (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD) ? TRUE : FALSE;
612
613       gdk_event_put (event);
614       gdk_event_free (event);
615     }
616 }
617
618 GdkDeviceGrabInfo *
619 _gdk_display_get_last_device_grab (GdkDisplay *display,
620                                    GdkDevice  *device)
621 {
622   GList *l;
623
624   l = g_hash_table_lookup (display->device_grabs, device);
625
626   if (l)
627     {
628       l = g_list_last (l);
629       return l->data;
630     }
631
632   return NULL;
633 }
634
635 GdkDeviceGrabInfo *
636 _gdk_display_add_device_grab (GdkDisplay       *display,
637                               GdkDevice        *device,
638                               GdkWindow        *window,
639                               GdkWindow        *native_window,
640                               GdkGrabOwnership  grab_ownership,
641                               gboolean          owner_events,
642                               GdkEventMask      event_mask,
643                               unsigned long     serial_start,
644                               guint32           time,
645                               gboolean          implicit)
646 {
647   GdkDeviceGrabInfo *info, *other_info;
648   GList *grabs, *l;
649
650   info = g_new0 (GdkDeviceGrabInfo, 1);
651
652   info->window = g_object_ref (window);
653   info->native_window = g_object_ref (native_window);
654   info->serial_start = serial_start;
655   info->serial_end = G_MAXULONG;
656   info->owner_events = owner_events;
657   info->event_mask = event_mask;
658   info->time = time;
659   info->implicit = implicit;
660   info->ownership = grab_ownership;
661
662   grabs = g_hash_table_lookup (display->device_grabs, device);
663
664   /* Find the first grab that has a larger start time (if any) and insert
665    * before that. I.E we insert after already existing grabs with same
666    * start time */
667   for (l = grabs; l != NULL; l = l->next)
668     {
669       other_info = l->data;
670
671       if (info->serial_start < other_info->serial_start)
672         break;
673     }
674
675   grabs = g_list_insert_before (grabs, l, info);
676
677   /* Make sure the new grab end before next grab */
678   if (l)
679     {
680       other_info = l->data;
681       info->serial_end = other_info->serial_start;
682     }
683
684   /* Find any previous grab and update its end time */
685   l = g_list_find (grabs, info);
686   l = l->prev;
687   if (l)
688     {
689       other_info = l->data;
690       other_info->serial_end = serial_start;
691     }
692
693   g_hash_table_insert (display->device_grabs, device, grabs);
694
695   return info;
696 }
697
698 static void
699 _gdk_display_break_touch_grabs (GdkDisplay *display,
700                                 GdkDevice  *device,
701                                 GdkWindow  *new_grab_window)
702 {
703   guint i;
704
705   for (i = 0; i < display->touch_implicit_grabs->len; i++)
706     {
707       GdkTouchGrabInfo *info;
708
709       info = &g_array_index (display->touch_implicit_grabs,
710                              GdkTouchGrabInfo, i);
711
712       if (info->device == device && info->window != new_grab_window)
713         generate_grab_broken_event (GDK_WINDOW (info->window),
714                                     device, TRUE, new_grab_window);
715     }
716 }
717
718 void
719 _gdk_display_add_touch_grab (GdkDisplay       *display,
720                              GdkDevice        *device,
721                              GdkEventSequence *sequence,
722                              GdkWindow        *window,
723                              GdkWindow        *native_window,
724                              GdkEventMask      event_mask,
725                              unsigned long     serial,
726                              guint32           time)
727 {
728   GdkTouchGrabInfo info;
729
730   info.device = device;
731   info.sequence = sequence;
732   info.window = g_object_ref (window);
733   info.native_window = g_object_ref (native_window);
734   info.serial = serial;
735   info.event_mask = event_mask;
736   info.time = time;
737
738   g_array_append_val (display->touch_implicit_grabs, info);
739 }
740
741 gboolean
742 _gdk_display_end_touch_grab (GdkDisplay       *display,
743                              GdkDevice        *device,
744                              GdkEventSequence *sequence)
745 {
746   guint i;
747
748   for (i = 0; i < display->touch_implicit_grabs->len; i++)
749     {
750       GdkTouchGrabInfo *info;
751
752       info = &g_array_index (display->touch_implicit_grabs,
753                              GdkTouchGrabInfo, i);
754
755       if (info->device == device && info->sequence == sequence)
756         {
757           g_array_remove_index_fast (display->touch_implicit_grabs, i);
758           return TRUE;
759         }
760     }
761
762   return FALSE;
763 }
764
765 /* _gdk_synthesize_crossing_events only works inside one toplevel.
766    This function splits things into two calls if needed, converting the
767    coordinates to the right toplevel */
768 static void
769 synthesize_crossing_events (GdkDisplay      *display,
770                             GdkDevice       *device,
771                             GdkDevice       *source_device,
772                             GdkWindow       *src_window,
773                             GdkWindow       *dest_window,
774                             GdkCrossingMode  crossing_mode,
775                             guint32          time,
776                             gulong           serial)
777 {
778   GdkWindow *src_toplevel, *dest_toplevel;
779   GdkModifierType state;
780   int x, y;
781
782   if (src_window)
783     src_toplevel = gdk_window_get_toplevel (src_window);
784   else
785     src_toplevel = NULL;
786   if (dest_window)
787     dest_toplevel = gdk_window_get_toplevel (dest_window);
788   else
789     dest_toplevel = NULL;
790
791   if (src_toplevel == NULL && dest_toplevel == NULL)
792     return;
793   
794   if (src_toplevel == NULL ||
795       src_toplevel == dest_toplevel)
796     {
797       /* Same toplevels */
798       gdk_window_get_device_position (dest_toplevel,
799                                       device,
800                                       &x, &y, &state);
801       _gdk_synthesize_crossing_events (display,
802                                        src_window,
803                                        dest_window,
804                                        device, source_device,
805                                        crossing_mode,
806                                        x, y, state,
807                                        time,
808                                        NULL,
809                                        serial, FALSE);
810     }
811   else if (dest_toplevel == NULL)
812     {
813       gdk_window_get_device_position (src_toplevel,
814                                       device,
815                                       &x, &y, &state);
816       _gdk_synthesize_crossing_events (display,
817                                        src_window,
818                                        NULL,
819                                        device, source_device,
820                                        crossing_mode,
821                                        x, y, state,
822                                        time,
823                                        NULL,
824                                        serial, FALSE);
825     }
826   else
827     {
828       /* Different toplevels */
829       gdk_window_get_device_position (src_toplevel,
830                                       device,
831                                       &x, &y, &state);
832       _gdk_synthesize_crossing_events (display,
833                                        src_window,
834                                        NULL,
835                                        device, source_device,
836                                        crossing_mode,
837                                        x, y, state,
838                                        time,
839                                        NULL,
840                                        serial, FALSE);
841       gdk_window_get_device_position (dest_toplevel,
842                                       device,
843                                       &x, &y, &state);
844       _gdk_synthesize_crossing_events (display,
845                                        NULL,
846                                        dest_window,
847                                        device, source_device,
848                                        crossing_mode,
849                                        x, y, state,
850                                        time,
851                                        NULL,
852                                        serial, FALSE);
853     }
854 }
855
856 static GdkWindow *
857 get_current_toplevel (GdkDisplay      *display,
858                       GdkDevice       *device,
859                       int             *x_out,
860                       int             *y_out,
861                       GdkModifierType *state_out)
862 {
863   GdkWindow *pointer_window;
864   int x, y;
865   GdkModifierType state;
866
867   pointer_window = _gdk_device_window_at_position (device, &x, &y, &state, TRUE);
868
869   if (pointer_window != NULL &&
870       (GDK_WINDOW_DESTROYED (pointer_window) ||
871        GDK_WINDOW_TYPE (pointer_window) == GDK_WINDOW_ROOT ||
872        GDK_WINDOW_TYPE (pointer_window) == GDK_WINDOW_FOREIGN))
873     pointer_window = NULL;
874
875   *x_out = x;
876   *y_out = y;
877   *state_out = state;
878
879   return pointer_window;
880 }
881
882 static void
883 switch_to_pointer_grab (GdkDisplay        *display,
884                         GdkDevice         *device,
885                         GdkDevice         *source_device,
886                         GdkDeviceGrabInfo *grab,
887                         GdkDeviceGrabInfo *last_grab,
888                         guint32            time,
889                         gulong             serial)
890 {
891   GdkWindow *src_window, *pointer_window, *new_toplevel;
892   GdkPointerWindowInfo *info;
893   GList *old_grabs;
894   GdkModifierType state;
895   int x = 0, y = 0;
896
897   /* Temporarily unset pointer to make sure we send the crossing events below */
898   old_grabs = g_hash_table_lookup (display->device_grabs, device);
899   g_hash_table_steal (display->device_grabs, device);
900   info = _gdk_display_get_pointer_info (display, device);
901
902   if (grab)
903     {
904       /* New grab is in effect */
905
906       /* We need to generate crossing events for the grab.
907        * However, there are never any crossing events for implicit grabs
908        * TODO: ... Actually, this could happen if the pointer window
909        *           doesn't have button mask so a parent gets the event...
910        */
911       if (!grab->implicit)
912         {
913           /* We send GRAB crossing events from the window under the pointer to the
914              grab window. Except if there is an old grab then we start from that */
915           if (last_grab)
916             src_window = last_grab->window;
917           else
918             src_window = info->window_under_pointer;
919
920           if (src_window != grab->window)
921             synthesize_crossing_events (display, device, source_device,
922                                         src_window, grab->window,
923                                         GDK_CROSSING_GRAB, time, serial);
924
925           /* !owner_event Grabbing a window that we're not inside, current status is
926              now NULL (i.e. outside grabbed window) */
927           if (!grab->owner_events && info->window_under_pointer != grab->window)
928             _gdk_display_set_window_under_pointer (display, device, NULL);
929         }
930
931       grab->activated = TRUE;
932     }
933
934   if (last_grab)
935     {
936       new_toplevel = NULL;
937
938       if (grab == NULL /* ungrab */ ||
939           (!last_grab->owner_events && grab->owner_events) /* switched to owner_events */ )
940         {
941           /* We force check what window we're in, and update the toplevel_under_pointer info,
942            * as that won't get told of this change with toplevel enter events.
943            */
944           if (info->toplevel_under_pointer)
945             g_object_unref (info->toplevel_under_pointer);
946           info->toplevel_under_pointer = NULL;
947
948           /* Ungrabbed slave devices don't have a position by
949            * itself, rather depend on its master pointer, so
950            * it doesn't make sense to track any position for
951            * these after the grab
952            */
953           if (grab || gdk_device_get_device_type (device) != GDK_DEVICE_TYPE_SLAVE)
954             new_toplevel = get_current_toplevel (display, device, &x, &y, &state);
955
956           if (new_toplevel)
957             {
958               /* w is now toplevel and x,y in toplevel coords */
959               info->toplevel_under_pointer = g_object_ref (new_toplevel);
960               info->toplevel_x = x;
961               info->toplevel_y = y;
962               info->state = state;
963             }
964         }
965
966       if (grab == NULL) /* Ungrabbed, send events */
967         {
968           /* If the source device is a touch device, do not
969            * propagate any enter event yet, until one is
970            * synthesized when needed.
971            */
972           if (source_device &&
973               (gdk_device_get_source (source_device) == GDK_SOURCE_TOUCHSCREEN))
974             info->need_touch_press_enter = TRUE;
975
976           pointer_window = NULL;
977
978           if (new_toplevel &&
979               !info->need_touch_press_enter)
980             {
981               /* Find (possibly virtual) child window */
982               pointer_window =
983                 _gdk_window_find_descendant_at (new_toplevel,
984                                                 x, y,
985                                                 NULL, NULL);
986             }
987
988           if (pointer_window != last_grab->window)
989             synthesize_crossing_events (display, device, source_device,
990                                         last_grab->window, pointer_window,
991                                         GDK_CROSSING_UNGRAB, time, serial);
992
993           /* We're now ungrabbed, update the window_under_pointer */
994           _gdk_display_set_window_under_pointer (display, device, pointer_window);
995         }
996     }
997
998   g_hash_table_insert (display->device_grabs, device, old_grabs);
999 }
1000
1001 void
1002 _gdk_display_device_grab_update (GdkDisplay *display,
1003                                  GdkDevice  *device,
1004                                  GdkDevice  *source_device,
1005                                  gulong      current_serial)
1006 {
1007   GdkDeviceGrabInfo *current_grab, *next_grab;
1008   GList *grabs;
1009   guint32 time;
1010
1011   time = display->last_event_time;
1012   grabs = g_hash_table_lookup (display->device_grabs, device);
1013
1014   while (grabs != NULL)
1015     {
1016       current_grab = grabs->data;
1017
1018       if (current_grab->serial_start > current_serial)
1019         return; /* Hasn't started yet */
1020
1021       if (current_grab->serial_end > current_serial)
1022         {
1023           /* This one hasn't ended yet.
1024              its the currently active one or scheduled to be active */
1025
1026           if (!current_grab->activated)
1027             {
1028               if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
1029                 switch_to_pointer_grab (display, device, source_device, current_grab, NULL, time, current_serial);
1030             }
1031
1032           break;
1033         }
1034
1035       next_grab = NULL;
1036       if (grabs->next)
1037         {
1038           /* This is the next active grab */
1039           next_grab = grabs->next->data;
1040
1041           if (next_grab->serial_start > current_serial)
1042             next_grab = NULL; /* Actually its not yet active */
1043         }
1044
1045       if (next_grab)
1046         _gdk_display_break_touch_grabs (display, device, next_grab->window);
1047
1048       if ((next_grab == NULL && current_grab->implicit_ungrab) ||
1049           (next_grab != NULL && current_grab->window != next_grab->window))
1050         generate_grab_broken_event (GDK_WINDOW (current_grab->window),
1051                                     device,
1052                                     current_grab->implicit,
1053                                     next_grab? next_grab->window : NULL);
1054
1055       /* Remove old grab */
1056       grabs = g_list_delete_link (grabs, grabs);
1057       g_hash_table_insert (display->device_grabs, device, grabs);
1058
1059       if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
1060         switch_to_pointer_grab (display, device, source_device,
1061                                 next_grab, current_grab,
1062                                 time, current_serial);
1063
1064       free_device_grab (current_grab);
1065     }
1066 }
1067
1068 static GList *
1069 grab_list_find (GList  *grabs,
1070                 gulong  serial)
1071 {
1072   GdkDeviceGrabInfo *grab;
1073
1074   while (grabs)
1075     {
1076       grab = grabs->data;
1077
1078       if (serial >= grab->serial_start && serial < grab->serial_end)
1079         return grabs;
1080
1081       grabs = grabs->next;
1082     }
1083
1084   return NULL;
1085 }
1086
1087 static GList *
1088 find_device_grab (GdkDisplay *display,
1089                    GdkDevice  *device,
1090                    gulong      serial)
1091 {
1092   GList *l;
1093
1094   l = g_hash_table_lookup (display->device_grabs, device);
1095   return grab_list_find (l, serial);
1096 }
1097
1098 GdkDeviceGrabInfo *
1099 _gdk_display_has_device_grab (GdkDisplay *display,
1100                               GdkDevice  *device,
1101                               gulong      serial)
1102 {
1103   GList *l;
1104
1105   l = find_device_grab (display, device, serial);
1106   if (l)
1107     return l->data;
1108
1109   return NULL;
1110 }
1111
1112 GdkTouchGrabInfo *
1113 _gdk_display_has_touch_grab (GdkDisplay       *display,
1114                              GdkDevice        *device,
1115                              GdkEventSequence *sequence,
1116                              gulong            serial)
1117 {
1118   guint i;
1119
1120   for (i = 0; i < display->touch_implicit_grabs->len; i++)
1121     {
1122       GdkTouchGrabInfo *info;
1123
1124       info = &g_array_index (display->touch_implicit_grabs,
1125                              GdkTouchGrabInfo, i);
1126
1127       if (info->device == device && info->sequence == sequence)
1128         {
1129           if (serial >= info->serial)
1130             return info;
1131           else
1132             return NULL;
1133         }
1134     }
1135
1136   return NULL;
1137 }
1138
1139 /* Returns true if last grab was ended
1140  * If if_child is non-NULL, end the grab only if the grabbed
1141  * window is the same as if_child or a descendant of it */
1142 gboolean
1143 _gdk_display_end_device_grab (GdkDisplay *display,
1144                               GdkDevice  *device,
1145                               gulong      serial,
1146                               GdkWindow  *if_child,
1147                               gboolean    implicit)
1148 {
1149   GdkDeviceGrabInfo *grab;
1150   GList *l;
1151
1152   l = find_device_grab (display, device, serial);
1153
1154   if (l == NULL)
1155     return FALSE;
1156
1157   grab = l->data;
1158   if (grab &&
1159       (if_child == NULL ||
1160        _gdk_window_event_parent_of (if_child, grab->window)))
1161     {
1162       grab->serial_end = serial;
1163       grab->implicit_ungrab = implicit;
1164       return l->next == NULL;
1165     }
1166   
1167   return FALSE;
1168 }
1169
1170 /* Returns TRUE if device events are not blocked by any grab */
1171 gboolean
1172 _gdk_display_check_grab_ownership (GdkDisplay *display,
1173                                    GdkDevice  *device,
1174                                    gulong      serial)
1175 {
1176   GHashTableIter iter;
1177   gpointer key, value;
1178   GdkGrabOwnership higher_ownership, device_ownership;
1179   gboolean device_is_keyboard;
1180
1181   g_hash_table_iter_init (&iter, display->device_grabs);
1182   higher_ownership = device_ownership = GDK_OWNERSHIP_NONE;
1183   device_is_keyboard = (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD);
1184
1185   while (g_hash_table_iter_next (&iter, &key, &value))
1186     {
1187       GdkDeviceGrabInfo *grab;
1188       GdkDevice *dev;
1189       GList *grabs;
1190
1191       dev = key;
1192       grabs = value;
1193       grabs = grab_list_find (grabs, serial);
1194
1195       if (!grabs)
1196         continue;
1197
1198       /* Discard device if it's not of the same type */
1199       if ((device_is_keyboard && gdk_device_get_source (dev) != GDK_SOURCE_KEYBOARD) ||
1200           (!device_is_keyboard && gdk_device_get_source (dev) == GDK_SOURCE_KEYBOARD))
1201         continue;
1202
1203       grab = grabs->data;
1204
1205       if (dev == device)
1206         device_ownership = grab->ownership;
1207       else
1208         {
1209           if (grab->ownership > higher_ownership)
1210             higher_ownership = grab->ownership;
1211         }
1212     }
1213
1214   if (higher_ownership > device_ownership)
1215     {
1216       /* There's a higher priority ownership
1217        * going on for other device(s)
1218        */
1219       return FALSE;
1220     }
1221
1222   return TRUE;
1223 }
1224
1225 GdkPointerWindowInfo *
1226 _gdk_display_get_pointer_info (GdkDisplay *display,
1227                                GdkDevice  *device)
1228 {
1229   GdkPointerWindowInfo *info;
1230
1231   if (device && gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
1232     device = gdk_device_get_associated_device (device);
1233
1234   if (G_UNLIKELY (!device))
1235     return NULL;
1236
1237   info = g_hash_table_lookup (display->pointers_info, device);
1238
1239   if (G_UNLIKELY (!info))
1240     {
1241       info = g_slice_new0 (GdkPointerWindowInfo);
1242       g_hash_table_insert (display->pointers_info, device, info);
1243     }
1244
1245   return info;
1246 }
1247
1248 void
1249 _gdk_display_pointer_info_foreach (GdkDisplay                   *display,
1250                                    GdkDisplayPointerInfoForeach  func,
1251                                    gpointer                      user_data)
1252 {
1253   GHashTableIter iter;
1254   gpointer key, value;
1255
1256   g_hash_table_iter_init (&iter, display->pointers_info);
1257
1258   while (g_hash_table_iter_next (&iter, &key, &value))
1259     {
1260       GdkPointerWindowInfo *info = value;
1261       GdkDevice *device = key;
1262
1263       (func) (display, device, info, user_data);
1264     }
1265 }
1266
1267 /**
1268  * gdk_device_grab_info_libgtk_only:
1269  * @display: the display for which to get the grab information
1270  * @device: device to get the grab information from
1271  * @grab_window: (out) (transfer none): location to store current grab window
1272  * @owner_events: (out): location to store boolean indicating whether
1273  *   the @owner_events flag to gdk_keyboard_grab() or
1274  *   gdk_pointer_grab() was %TRUE.
1275  *
1276  * Determines information about the current keyboard grab.
1277  * This is not public API and must not be used by applications.
1278  *
1279  * Return value: %TRUE if this application currently has the
1280  *  keyboard grabbed.
1281  **/
1282 gboolean
1283 gdk_device_grab_info_libgtk_only (GdkDisplay  *display,
1284                                   GdkDevice   *device,
1285                                   GdkWindow  **grab_window,
1286                                   gboolean    *owner_events)
1287 {
1288   GdkDeviceGrabInfo *info;
1289
1290   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1291   g_return_val_if_fail (GDK_IS_DEVICE (device), FALSE);
1292
1293   info = _gdk_display_get_last_device_grab (display, device);
1294
1295   if (info)
1296     {
1297       if (grab_window)
1298         *grab_window = info->window;
1299       if (owner_events)
1300         *owner_events = info->owner_events;
1301
1302       return TRUE;
1303     }
1304   else
1305     return FALSE;
1306 }
1307
1308 /**
1309  * gdk_display_pointer_is_grabbed:
1310  * @display: a #GdkDisplay
1311  *
1312  * Test if the pointer is grabbed.
1313  *
1314  * Returns: %TRUE if an active X pointer grab is in effect
1315  *
1316  * Since: 2.2
1317  *
1318  * Deprecated: 3.0: Use gdk_display_device_is_grabbed() instead.
1319  */
1320 gboolean
1321 gdk_display_pointer_is_grabbed (GdkDisplay *display)
1322 {
1323   GdkDeviceManager *device_manager;
1324   GList *devices, *dev;
1325   GdkDevice *device;
1326
1327   g_return_val_if_fail (GDK_IS_DISPLAY (display), TRUE);
1328
1329   device_manager = gdk_display_get_device_manager (display);
1330   devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
1331
1332   for (dev = devices; dev; dev = dev->next)
1333     {
1334       device = dev->data;
1335
1336       if (gdk_device_get_source (device) == GDK_SOURCE_MOUSE &&
1337           gdk_display_device_is_grabbed (display, device))
1338         {
1339           g_list_free (devices);
1340           return TRUE;
1341         }
1342     }
1343
1344   g_list_free (devices);
1345
1346   return FALSE;
1347 }
1348
1349 /**
1350  * gdk_display_device_is_grabbed:
1351  * @display: a #GdkDisplay
1352  * @device: a #GdkDevice
1353  *
1354  * Returns %TRUE if there is an ongoing grab on @device for @display.
1355  *
1356  * Returns: %TRUE if there is a grab in effect for @device.
1357  **/
1358 gboolean
1359 gdk_display_device_is_grabbed (GdkDisplay *display,
1360                                GdkDevice  *device)
1361 {
1362   GdkDeviceGrabInfo *info;
1363
1364   g_return_val_if_fail (GDK_IS_DISPLAY (display), TRUE);
1365   g_return_val_if_fail (GDK_IS_DEVICE (device), TRUE);
1366
1367   /* What we're interested in is the steady state (ie last grab),
1368      because we're interested e.g. if we grabbed so that we
1369      can ungrab, even if our grab is not active just yet. */
1370   info = _gdk_display_get_last_device_grab (display, device);
1371
1372   return (info && !info->implicit);
1373 }
1374
1375 /**
1376  * gdk_display_get_device_manager:
1377  * @display: a #GdkDisplay.
1378  *
1379  * Returns the #GdkDeviceManager associated to @display.
1380  *
1381  * Returns: (transfer none): A #GdkDeviceManager, or %NULL. This memory is
1382  *          owned by GDK and must not be freed or unreferenced.
1383  *
1384  * Since: 3.0
1385  **/
1386 GdkDeviceManager *
1387 gdk_display_get_device_manager (GdkDisplay *display)
1388 {
1389   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1390
1391   return display->device_manager;
1392 }
1393
1394 /**
1395  * gdk_display_get_name:
1396  * @display: a #GdkDisplay
1397  *
1398  * Gets the name of the display.
1399  *
1400  * Returns: a string representing the display name. This string is owned
1401  * by GDK and should not be modified or freed.
1402  *
1403  * Since: 2.2
1404  */
1405 const gchar *
1406 gdk_display_get_name (GdkDisplay *display)
1407 {
1408   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1409
1410   return GDK_DISPLAY_GET_CLASS (display)->get_name (display);
1411 }
1412
1413 gchar *
1414 gdk_get_display (void)
1415 {
1416   return g_strdup (gdk_display_get_name (gdk_display_get_default ()));
1417 }
1418
1419 /**
1420  * gdk_display_get_n_screens:
1421  * @display: a #GdkDisplay
1422  *
1423  * Gets the number of screen managed by the @display.
1424  *
1425  * Returns: number of screens.
1426  *
1427  * Since: 2.2
1428  */
1429 gint
1430 gdk_display_get_n_screens (GdkDisplay *display)
1431 {
1432   g_return_val_if_fail (GDK_IS_DISPLAY (display), 0);
1433
1434   return GDK_DISPLAY_GET_CLASS (display)->get_n_screens (display);
1435 }
1436
1437 /**
1438  * gdk_display_get_screen:
1439  * @display: a #GdkDisplay
1440  * @screen_num: the screen number
1441  *
1442  * Returns a screen object for one of the screens of the display.
1443  *
1444  * Returns: (transfer none): the #GdkScreen object
1445  *
1446  * Since: 2.2
1447  */
1448 GdkScreen *
1449 gdk_display_get_screen (GdkDisplay *display,
1450                         gint        screen_num)
1451 {
1452   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1453
1454   return GDK_DISPLAY_GET_CLASS (display)->get_screen (display, screen_num);
1455 }
1456
1457 /**
1458  * gdk_display_get_default_screen:
1459  * @display: a #GdkDisplay
1460  *
1461  * Get the default #GdkScreen for @display.
1462  *
1463  * Returns: (transfer none): the default #GdkScreen object for @display
1464  *
1465  * Since: 2.2
1466  */
1467 GdkScreen *
1468 gdk_display_get_default_screen (GdkDisplay *display)
1469 {
1470   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1471
1472   return GDK_DISPLAY_GET_CLASS (display)->get_default_screen (display);
1473 }
1474
1475 /**
1476  * gdk_display_beep:
1477  * @display: a #GdkDisplay
1478  *
1479  * Emits a short beep on @display
1480  *
1481  * Since: 2.2
1482  */
1483 void
1484 gdk_display_beep (GdkDisplay *display)
1485 {
1486   g_return_if_fail (GDK_IS_DISPLAY (display));
1487
1488   GDK_DISPLAY_GET_CLASS (display)->beep (display);
1489 }
1490
1491 /**
1492  * gdk_display_sync:
1493  * @display: a #GdkDisplay
1494  *
1495  * Flushes any requests queued for the windowing system and waits until all
1496  * requests have been handled. This is often used for making sure that the
1497  * display is synchronized with the current state of the program. Calling
1498  * gdk_display_sync() before gdk_error_trap_pop() makes sure that any errors
1499  * generated from earlier requests are handled before the error trap is
1500  * removed.
1501  *
1502  * This is most useful for X11. On windowing systems where requests are
1503  * handled synchronously, this function will do nothing.
1504  *
1505  * Since: 2.2
1506  */
1507 void
1508 gdk_display_sync (GdkDisplay *display)
1509 {
1510   g_return_if_fail (GDK_IS_DISPLAY (display));
1511
1512   GDK_DISPLAY_GET_CLASS (display)->sync (display);
1513 }
1514
1515 /**
1516  * gdk_display_flush:
1517  * @display: a #GdkDisplay
1518  *
1519  * Flushes any requests queued for the windowing system; this happens automatically
1520  * when the main loop blocks waiting for new events, but if your application
1521  * is drawing without returning control to the main loop, you may need
1522  * to call this function explicitely. A common case where this function
1523  * needs to be called is when an application is executing drawing commands
1524  * from a thread other than the thread where the main loop is running.
1525  *
1526  * This is most useful for X11. On windowing systems where requests are
1527  * handled synchronously, this function will do nothing.
1528  *
1529  * Since: 2.4
1530  */
1531 void
1532 gdk_display_flush (GdkDisplay *display)
1533 {
1534   g_return_if_fail (GDK_IS_DISPLAY (display));
1535
1536   GDK_DISPLAY_GET_CLASS (display)->flush (display);
1537 }
1538
1539 /**
1540  * gdk_display_get_default_group:
1541  * @display: a #GdkDisplay
1542  *
1543  * Returns the default group leader window for all toplevel windows
1544  * on @display. This window is implicitly created by GDK.
1545  * See gdk_window_set_group().
1546  *
1547  * Return value: (transfer none): The default group leader window
1548  * for @display
1549  *
1550  * Since: 2.4
1551  **/
1552 GdkWindow *
1553 gdk_display_get_default_group (GdkDisplay *display)
1554 {
1555   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1556
1557   return GDK_DISPLAY_GET_CLASS (display)->get_default_group (display);
1558 }
1559
1560 /**
1561  * gdk_display_supports_selection_notification:
1562  * @display: a #GdkDisplay
1563  *
1564  * Returns whether #GdkEventOwnerChange events will be
1565  * sent when the owner of a selection changes.
1566  *
1567  * Return value: whether #GdkEventOwnerChange events will
1568  *               be sent.
1569  *
1570  * Since: 2.6
1571  **/
1572 gboolean
1573 gdk_display_supports_selection_notification (GdkDisplay *display)
1574 {
1575   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1576
1577   return GDK_DISPLAY_GET_CLASS (display)->supports_selection_notification (display);
1578 }
1579
1580 /**
1581  * gdk_display_request_selection_notification:
1582  * @display: a #GdkDisplay
1583  * @selection: the #GdkAtom naming the selection for which
1584  *             ownership change notification is requested
1585  *
1586  * Request #GdkEventOwnerChange events for ownership changes
1587  * of the selection named by the given atom.
1588  *
1589  * Return value: whether #GdkEventOwnerChange events will
1590  *               be sent.
1591  *
1592  * Since: 2.6
1593  **/
1594 gboolean
1595 gdk_display_request_selection_notification (GdkDisplay *display,
1596                                             GdkAtom     selection)
1597
1598 {
1599   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1600
1601   return GDK_DISPLAY_GET_CLASS (display)->request_selection_notification (display, selection);
1602 }
1603
1604 /**
1605  * gdk_display_supports_clipboard_persistence:
1606  * @display: a #GdkDisplay
1607  *
1608  * Returns whether the speicifed display supports clipboard
1609  * persistance; i.e. if it's possible to store the clipboard data after an
1610  * application has quit. On X11 this checks if a clipboard daemon is
1611  * running.
1612  *
1613  * Returns: %TRUE if the display supports clipboard persistance.
1614  *
1615  * Since: 2.6
1616  */
1617 gboolean
1618 gdk_display_supports_clipboard_persistence (GdkDisplay *display)
1619 {
1620   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1621
1622   return GDK_DISPLAY_GET_CLASS (display)->supports_clipboard_persistence (display);
1623 }
1624
1625 /**
1626  * gdk_display_store_clipboard:
1627  * @display:          a #GdkDisplay
1628  * @clipboard_window: a #GdkWindow belonging to the clipboard owner
1629  * @time_:            a timestamp
1630  * @targets:          (array length=n_targets): an array of targets
1631  *                    that should be saved, or %NULL
1632  *                    if all available targets should be saved.
1633  * @n_targets:        length of the @targets array
1634  *
1635  * Issues a request to the clipboard manager to store the
1636  * clipboard data. On X11, this is a special program that works
1637  * according to the freedesktop clipboard specification, available at
1638  * <ulink url="http://www.freedesktop.org/Standards/clipboard-manager-spec">
1639  * http://www.freedesktop.org/Standards/clipboard-manager-spec</ulink>.
1640  *
1641  * Since: 2.6
1642  */
1643 void
1644 gdk_display_store_clipboard (GdkDisplay    *display,
1645                              GdkWindow     *clipboard_window,
1646                              guint32        time_,
1647                              const GdkAtom *targets,
1648                              gint           n_targets)
1649 {
1650   g_return_if_fail (GDK_IS_DISPLAY (display));
1651
1652   GDK_DISPLAY_GET_CLASS (display)->store_clipboard (display, clipboard_window, time_, targets, n_targets);
1653 }
1654
1655 /**
1656  * gdk_display_supports_shapes:
1657  * @display: a #GdkDisplay
1658  *
1659  * Returns %TRUE if gdk_window_shape_combine_mask() can
1660  * be used to create shaped windows on @display.
1661  *
1662  * Returns: %TRUE if shaped windows are supported
1663  *
1664  * Since: 2.10
1665  */
1666 gboolean
1667 gdk_display_supports_shapes (GdkDisplay *display)
1668 {
1669   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1670
1671   return GDK_DISPLAY_GET_CLASS (display)->supports_shapes (display);
1672 }
1673
1674 /**
1675  * gdk_display_supports_input_shapes:
1676  * @display: a #GdkDisplay
1677  *
1678  * Returns %TRUE if gdk_window_input_shape_combine_mask() can
1679  * be used to modify the input shape of windows on @display.
1680  *
1681  * Returns: %TRUE if windows with modified input shape are supported
1682  *
1683  * Since: 2.10
1684  */
1685 gboolean
1686 gdk_display_supports_input_shapes (GdkDisplay *display)
1687 {
1688   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1689
1690   return GDK_DISPLAY_GET_CLASS (display)->supports_input_shapes (display);
1691 }
1692
1693 /**
1694  * gdk_display_supports_composite:
1695  * @display: a #GdkDisplay
1696  *
1697  * Returns %TRUE if gdk_window_set_composited() can be used
1698  * to redirect drawing on the window using compositing.
1699  *
1700  * Currently this only works on X11 with XComposite and
1701  * XDamage extensions available.
1702  *
1703  * Returns: %TRUE if windows may be composited.
1704  *
1705  * Since: 2.12
1706  */
1707 gboolean
1708 gdk_display_supports_composite (GdkDisplay *display)
1709 {
1710   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1711
1712   return GDK_DISPLAY_GET_CLASS (display)->supports_composite (display);
1713 }
1714
1715 /**
1716  * gdk_display_list_devices:
1717  * @display: a #GdkDisplay
1718  *
1719  * Returns the list of available input devices attached to @display.
1720  * The list is statically allocated and should not be freed.
1721  *
1722  * Return value: (transfer none) (element-type GdkDevice):
1723  *     a list of #GdkDevice
1724  *
1725  * Since: 2.2
1726  *
1727  * Deprecated: 3.0: Use gdk_device_manager_list_devices() instead.
1728  **/
1729 GList *
1730 gdk_display_list_devices (GdkDisplay *display)
1731 {
1732   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1733
1734   return GDK_DISPLAY_GET_CLASS (display)->list_devices (display);
1735 }
1736
1737 static GdkAppLaunchContext *
1738 gdk_display_real_get_app_launch_context (GdkDisplay *display)
1739 {
1740   GdkAppLaunchContext *ctx;
1741
1742   ctx = g_object_new (GDK_TYPE_APP_LAUNCH_CONTEXT,
1743                       "display", display,
1744                       NULL);
1745
1746   return ctx;
1747 }
1748
1749 /**
1750  * gdk_display_get_app_launch_context:
1751  * @display: a #GdkDisplay
1752  *
1753  * Returns a #GdkAppLaunchContext suitable for launching
1754  * applications on the given display.
1755  *
1756  * Returns: (transfer full): a new #GdkAppLaunchContext for @display.
1757  *     Free with g_object_unref() when done
1758  *
1759  * Since: 3.0
1760  */
1761 GdkAppLaunchContext *
1762 gdk_display_get_app_launch_context (GdkDisplay *display)
1763 {
1764   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
1765
1766   return GDK_DISPLAY_GET_CLASS (display)->get_app_launch_context (display);
1767 }
1768
1769 /**
1770  * gdk_display_open:
1771  * @display_name: the name of the display to open
1772  *
1773  * Opens a display.
1774  *
1775  * Return value: (transfer none): a #GdkDisplay, or %NULL
1776  *     if the display could not be opened
1777  *
1778  * Since: 2.2
1779  */
1780 GdkDisplay *
1781 gdk_display_open (const gchar *display_name)
1782 {
1783   return gdk_display_manager_open_display (gdk_display_manager_get (),
1784                                            display_name);
1785 }
1786
1787 /**
1788  * gdk_display_has_pending:
1789  * @display: a #GdkDisplay
1790  *
1791  * Returns whether the display has events that are waiting
1792  * to be processed.
1793  *
1794  * Returns: %TRUE if there are events ready to be processed.
1795  *
1796  * Since: 3.0
1797  */
1798 gboolean
1799 gdk_display_has_pending (GdkDisplay *display)
1800 {
1801   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1802
1803   return GDK_DISPLAY_GET_CLASS (display)->has_pending (display);
1804 }
1805
1806 /**
1807  * gdk_display_supports_cursor_alpha:
1808  * @display: a #GdkDisplay
1809  *
1810  * Returns %TRUE if cursors can use an 8bit alpha channel
1811  * on @display. Otherwise, cursors are restricted to bilevel
1812  * alpha (i.e. a mask).
1813  *
1814  * Returns: whether cursors can have alpha channels.
1815  *
1816  * Since: 2.4
1817  */
1818 gboolean
1819 gdk_display_supports_cursor_alpha (GdkDisplay *display)
1820 {
1821   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1822
1823   return GDK_DISPLAY_GET_CLASS (display)->supports_cursor_alpha (display);
1824 }
1825
1826 /**
1827  * gdk_display_supports_cursor_color:
1828  * @display: a #GdkDisplay
1829  *
1830  * Returns %TRUE if multicolored cursors are supported
1831  * on @display. Otherwise, cursors have only a forground
1832  * and a background color.
1833  *
1834  * Returns: whether cursors can have multiple colors.
1835  *
1836  * Since: 2.4
1837  */
1838 gboolean
1839 gdk_display_supports_cursor_color (GdkDisplay *display)
1840 {
1841   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1842
1843   return GDK_DISPLAY_GET_CLASS (display)->supports_cursor_color (display);
1844 }
1845
1846 /**
1847  * gdk_display_get_default_cursor_size:
1848  * @display: a #GdkDisplay
1849  *
1850  * Returns the default size to use for cursors on @display.
1851  *
1852  * Returns: the default cursor size.
1853  *
1854  * Since: 2.4
1855  */
1856 guint
1857 gdk_display_get_default_cursor_size (GdkDisplay *display)
1858 {
1859   guint width, height;
1860
1861   g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
1862
1863   GDK_DISPLAY_GET_CLASS (display)->get_default_cursor_size (display,
1864                                                             &width,
1865                                                             &height);
1866
1867   return MIN (width, height);
1868 }
1869
1870 /**
1871  * gdk_display_get_maximal_cursor_size:
1872  * @display: a #GdkDisplay
1873  * @width: (out): the return location for the maximal cursor width
1874  * @height: (out): the return location for the maximal cursor height
1875  *
1876  * Gets the maximal size to use for cursors on @display.
1877  *
1878  * Since: 2.4
1879  */
1880 void
1881 gdk_display_get_maximal_cursor_size (GdkDisplay *display,
1882                                      guint       *width,
1883                                      guint       *height)
1884 {
1885   g_return_if_fail (GDK_IS_DISPLAY (display));
1886
1887   GDK_DISPLAY_GET_CLASS (display)->get_maximal_cursor_size (display,
1888                                                             width,
1889                                                             height);
1890 }
1891
1892 /**
1893  * gdk_display_warp_pointer:
1894  * @display: a #GdkDisplay
1895  * @screen: the screen of @display to warp the pointer to
1896  * @x: the x coordinate of the destination
1897  * @y: the y coordinate of the destination
1898  *
1899  * Warps the pointer of @display to the point @x,@y on
1900  * the screen @screen, unless the pointer is confined
1901  * to a window by a grab, in which case it will be moved
1902  * as far as allowed by the grab. Warping the pointer
1903  * creates events as if the user had moved the mouse
1904  * instantaneously to the destination.
1905  *
1906  * Note that the pointer should normally be under the
1907  * control of the user. This function was added to cover
1908  * some rare use cases like keyboard navigation support
1909  * for the color picker in the #GtkColorSelectionDialog.
1910  *
1911  * Since: 2.8
1912  *
1913  * Deprecated: 3.0: Use gdk_device_warp() instead.
1914  */
1915 void
1916 gdk_display_warp_pointer (GdkDisplay *display,
1917                           GdkScreen  *screen,
1918                           gint        x,
1919                           gint        y)
1920 {
1921   g_return_if_fail (GDK_IS_DISPLAY (display));
1922
1923   gdk_device_warp (display->core_pointer,
1924                    screen,
1925                    x, y);
1926 }
1927
1928 gulong
1929 _gdk_display_get_next_serial (GdkDisplay *display)
1930 {
1931   return GDK_DISPLAY_GET_CLASS (display)->get_next_serial (display);
1932 }
1933
1934
1935 /**
1936  * gdk_notify_startup_complete:
1937  *
1938  * Indicates to the GUI environment that the application has finished
1939  * loading. If the applications opens windows, this function is
1940  * normally called after opening the application's initial set of
1941  * windows.
1942  *
1943  * GTK+ will call this function automatically after opening the first
1944  * #GtkWindow unless gtk_window_set_auto_startup_notification() is called
1945  * to disable that feature.
1946  *
1947  * Since: 2.2
1948  **/
1949 void
1950 gdk_notify_startup_complete (void)
1951 {
1952   gdk_notify_startup_complete_with_id (NULL);
1953 }
1954
1955 /**
1956  * gdk_notify_startup_complete_with_id:
1957  * @startup_id: a startup-notification identifier, for which
1958  *     notification process should be completed
1959  *
1960  * Indicates to the GUI environment that the application has
1961  * finished loading, using a given identifier.
1962  *
1963  * GTK+ will call this function automatically for #GtkWindow
1964  * with custom startup-notification identifier unless
1965  * gtk_window_set_auto_startup_notification() is called to
1966  * disable that feature.
1967  *
1968  * Since: 2.12
1969  */
1970 void
1971 gdk_notify_startup_complete_with_id (const gchar* startup_id)
1972 {
1973   GdkDisplay *display;
1974
1975   display = gdk_display_get_default ();
1976   if (display)
1977     gdk_display_notify_startup_complete (display, startup_id);
1978 }
1979
1980 /**
1981  * gdk_display_notify_startup_complete:
1982  * @display: a #GdkDisplay
1983  * @startup_id: a startup-notification identifier, for which
1984  *     notification process should be completed
1985  *
1986  * Indicates to the GUI environment that the application has
1987  * finished loading, using a given identifier.
1988  *
1989  * GTK+ will call this function automatically for #GtkWindow
1990  * with custom startup-notification identifier unless
1991  * gtk_window_set_auto_startup_notification() is called to
1992  * disable that feature.
1993  *
1994  * Since: 3.0
1995  */
1996 void
1997 gdk_display_notify_startup_complete (GdkDisplay  *display,
1998                                      const gchar *startup_id)
1999 {
2000   g_return_if_fail (GDK_IS_DISPLAY (display));
2001
2002   GDK_DISPLAY_GET_CLASS (display)->notify_startup_complete (display, startup_id);
2003 }
2004
2005 void
2006 _gdk_display_event_data_copy (GdkDisplay     *display,
2007                               const GdkEvent *event,
2008                               GdkEvent       *new_event)
2009 {
2010   GDK_DISPLAY_GET_CLASS (display)->event_data_copy (display, event, new_event);
2011 }
2012
2013 void
2014 _gdk_display_event_data_free (GdkDisplay *display,
2015                               GdkEvent   *event)
2016 {
2017   GDK_DISPLAY_GET_CLASS (display)->event_data_free (display, event);
2018 }
2019
2020 void
2021 _gdk_display_create_window_impl (GdkDisplay       *display,
2022                                  GdkWindow        *window,
2023                                  GdkWindow        *real_parent,
2024                                  GdkScreen        *screen,
2025                                  GdkEventMask      event_mask,
2026                                  GdkWindowAttr    *attributes,
2027                                  gint              attributes_mask)
2028 {
2029   GDK_DISPLAY_GET_CLASS (display)->create_window_impl (display,
2030                                                        window,
2031                                                        real_parent,
2032                                                        screen,
2033                                                        event_mask,
2034                                                        attributes,
2035                                                        attributes_mask);
2036 }
2037
2038 GdkWindow *
2039 _gdk_display_create_window (GdkDisplay *display)
2040 {
2041   return g_object_new (GDK_DISPLAY_GET_CLASS (display)->window_type, NULL);
2042 }
2043
2044 /**
2045  * gdk_keymap_get_for_display:
2046  * @display: the #GdkDisplay.
2047  *
2048  * Returns the #GdkKeymap attached to @display.
2049  *
2050  * Return value: (transfer none): the #GdkKeymap attached to @display.
2051  *
2052  * Since: 2.2
2053  */
2054 GdkKeymap*
2055 gdk_keymap_get_for_display (GdkDisplay *display)
2056 {
2057   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
2058
2059   return GDK_DISPLAY_GET_CLASS (display)->get_keymap (display);
2060 }
2061
2062 typedef struct _GdkGlobalErrorTrap  GdkGlobalErrorTrap;
2063
2064 struct _GdkGlobalErrorTrap
2065 {
2066   GSList *displays;
2067 };
2068
2069 static GQueue gdk_error_traps = G_QUEUE_INIT;
2070
2071 /**
2072  * gdk_error_trap_push:
2073  *
2074  * This function allows X errors to be trapped instead of the normal
2075  * behavior of exiting the application. It should only be used if it
2076  * is not possible to avoid the X error in any other way. Errors are
2077  * ignored on all #GdkDisplay currently known to the
2078  * #GdkDisplayManager. If you don't care which error happens and just
2079  * want to ignore everything, pop with gdk_error_trap_pop_ignored().
2080  * If you need the error code, use gdk_error_trap_pop() which may have
2081  * to block and wait for the error to arrive from the X server.
2082  *
2083  * This API exists on all platforms but only does anything on X.
2084  *
2085  * You can use gdk_x11_display_error_trap_push() to ignore errors
2086  * on only a single display.
2087  *
2088 * <example>
2089  * <title>Trapping an X error</title>
2090  * <programlisting>
2091  * gdk_error_trap_push (<!-- -->);
2092  *
2093  *  // ... Call the X function which may cause an error here ...
2094  *
2095  *
2096  * if (gdk_error_trap_pop (<!-- -->))
2097  *  {
2098  *    // ... Handle the error here ...
2099  *  }
2100  * </programlisting>
2101  * </example>
2102  */
2103 void
2104 gdk_error_trap_push (void)
2105 {
2106   GdkDisplayManager *manager;
2107   GdkDisplayClass *class;
2108   GdkGlobalErrorTrap *trap;
2109   GSList *l;
2110
2111   manager = gdk_display_manager_get ();
2112   class = GDK_DISPLAY_GET_CLASS (gdk_display_manager_get_default_display (manager));
2113
2114   if (class->push_error_trap == NULL)
2115     return;
2116
2117   trap = g_slice_new (GdkGlobalErrorTrap);
2118   trap->displays = gdk_display_manager_list_displays (manager);
2119
2120   g_slist_foreach (trap->displays, (GFunc) g_object_ref, NULL);
2121   for (l = trap->displays; l != NULL; l = l->next)
2122     {
2123       class->push_error_trap (l->data);
2124     }
2125
2126   g_queue_push_head (&gdk_error_traps, trap);
2127 }
2128
2129 static gint
2130 gdk_error_trap_pop_internal (gboolean need_code)
2131 {
2132   GdkDisplayManager *manager;
2133   GdkDisplayClass *class;
2134   GdkGlobalErrorTrap *trap;
2135   gint result;
2136   GSList *l;
2137
2138   manager = gdk_display_manager_get ();
2139   class = GDK_DISPLAY_GET_CLASS (gdk_display_manager_get_default_display (manager));
2140
2141   if (class->pop_error_trap == NULL)
2142     return 0;
2143
2144   trap = g_queue_pop_head (&gdk_error_traps);
2145
2146   g_return_val_if_fail (trap != NULL, 0);
2147
2148   result = 0;
2149   for (l = trap->displays; l != NULL; l = l->next)
2150     {
2151       gint code = 0;
2152
2153       code = class->pop_error_trap (l->data, !need_code);
2154
2155       /* we use the error on the last display listed, why not. */
2156       if (code != 0)
2157         result = code;
2158     }
2159
2160   g_slist_free_full (trap->displays, g_object_unref);
2161   g_slice_free (GdkGlobalErrorTrap, trap);
2162
2163   return result;
2164 }
2165
2166 /**
2167  * gdk_error_trap_pop_ignored:
2168  *
2169  * Removes an error trap pushed with gdk_error_trap_push(), but
2170  * without bothering to wait and see whether an error occurred.  If an
2171  * error arrives later asynchronously that was triggered while the
2172  * trap was pushed, that error will be ignored.
2173  *
2174  * Since: 3.0
2175  */
2176 void
2177 gdk_error_trap_pop_ignored (void)
2178 {
2179   gdk_error_trap_pop_internal (FALSE);
2180 }
2181
2182 /**
2183  * gdk_error_trap_pop:
2184  *
2185  * Removes an error trap pushed with gdk_error_trap_push().
2186  * May block until an error has been definitively received
2187  * or not received from the X server. gdk_error_trap_pop_ignored()
2188  * is preferred if you don't need to know whether an error
2189  * occurred, because it never has to block. If you don't
2190  * need the return value of gdk_error_trap_pop(), use
2191  * gdk_error_trap_pop_ignored().
2192  *
2193  * Prior to GDK 3.0, this function would not automatically
2194  * sync for you, so you had to gdk_flush() if your last
2195  * call to Xlib was not a blocking round trip.
2196  *
2197  * Return value: X error code or 0 on success
2198  */
2199 gint
2200 gdk_error_trap_pop (void)
2201 {
2202   return gdk_error_trap_pop_internal (TRUE);
2203 }