]> Pileus Git - ~andy/gtk/blob - gdk/gdkdisplay.c
Bug 556527 - The current page property is not passed to GtkPrintUnixDialog
[~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, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25 #include <glib.h>
26 #include "gdk.h"                /* gdk_event_send_client_message() */
27 #include "gdkdisplay.h"
28 #include "gdkinternals.h"
29 #include "gdkmarshalers.h"
30 #include "gdkscreen.h"
31 #include "gdkalias.h"
32
33 enum {
34   CLOSED,
35   LAST_SIGNAL
36 };
37
38 static void gdk_display_dispose    (GObject         *object);
39 static void gdk_display_finalize   (GObject         *object);
40
41
42 static void       singlehead_get_pointer (GdkDisplay       *display,
43                                           GdkScreen       **screen,
44                                           gint             *x,
45                                           gint             *y,
46                                           GdkModifierType  *mask);
47 static GdkWindow* singlehead_window_get_pointer (GdkDisplay       *display,
48                                                  GdkWindow        *window,
49                                                  gint             *x,
50                                                  gint             *y,
51                                                  GdkModifierType  *mask);
52 static GdkWindow* singlehead_window_at_pointer  (GdkDisplay       *display,
53                                                  gint             *win_x,
54                                                  gint             *win_y);
55
56 static GdkWindow* singlehead_default_window_get_pointer (GdkWindow       *window,
57                                                          gint            *x,
58                                                          gint            *y,
59                                                          GdkModifierType *mask);
60 static GdkWindow* singlehead_default_window_at_pointer  (GdkScreen       *screen,
61                                                          gint            *win_x,
62                                                          gint            *win_y);
63
64 static guint signals[LAST_SIGNAL] = { 0 };
65
66 static char *gdk_sm_client_id;
67
68 static const GdkDisplayPointerHooks default_pointer_hooks = {
69   _gdk_windowing_get_pointer,
70   _gdk_windowing_window_get_pointer,
71   _gdk_windowing_window_at_pointer
72 };
73
74 static const GdkDisplayPointerHooks singlehead_pointer_hooks = {
75   singlehead_get_pointer,
76   singlehead_window_get_pointer,
77   singlehead_window_at_pointer
78 };
79
80 static const GdkPointerHooks singlehead_default_pointer_hooks = {
81   singlehead_default_window_get_pointer,
82   singlehead_default_window_at_pointer
83 };
84
85 static const GdkPointerHooks *singlehead_current_pointer_hooks = &singlehead_default_pointer_hooks;
86
87 G_DEFINE_TYPE (GdkDisplay, gdk_display, G_TYPE_OBJECT)
88
89 static void
90 gdk_display_class_init (GdkDisplayClass *class)
91 {
92   GObjectClass *object_class = G_OBJECT_CLASS (class);
93   
94   object_class->finalize = gdk_display_finalize;
95   object_class->dispose = gdk_display_dispose;
96
97   /**
98    * GdkDisplay::closed:
99    * @display: the object on which the signal is emitted
100    * @is_error: %TRUE if the display was closed due to an error
101    *
102    * The ::closed signal is emitted when the connection to the windowing
103    * system for @display is closed.
104    *
105    * Since: 2.2
106    */   
107   signals[CLOSED] =
108     g_signal_new (g_intern_static_string ("closed"),
109                   G_OBJECT_CLASS_TYPE (object_class),
110                   G_SIGNAL_RUN_LAST,
111                   G_STRUCT_OFFSET (GdkDisplayClass, closed),
112                   NULL, NULL,
113                   gdk_marshal_VOID__BOOLEAN,
114                   G_TYPE_NONE,
115                   1,
116                   G_TYPE_BOOLEAN);
117 }
118
119 static void
120 gdk_display_init (GdkDisplay *display)
121 {
122   _gdk_displays = g_slist_prepend (_gdk_displays, display);
123
124   display->button_click_time[0] = display->button_click_time[1] = 0;
125   display->button_window[0] = display->button_window[1] = NULL;
126   display->button_number[0] = display->button_number[1] = -1;
127   display->button_x[0] = display->button_x[1] = 0;
128   display->button_y[0] = display->button_y[1] = 0;
129
130   display->double_click_time = 250;
131   display->double_click_distance = 5;
132
133   display->pointer_hooks = &default_pointer_hooks;
134 }
135
136 static void
137 gdk_display_dispose (GObject *object)
138 {
139   GdkDisplay *display = GDK_DISPLAY_OBJECT (object);
140
141   g_list_foreach (display->queued_events, (GFunc)gdk_event_free, NULL);
142   g_list_free (display->queued_events);
143   display->queued_events = NULL;
144   display->queued_tail = NULL;
145
146   _gdk_displays = g_slist_remove (_gdk_displays, object);
147
148   if (gdk_display_get_default() == display)
149     {
150       if (_gdk_displays)
151         gdk_display_manager_set_default_display (gdk_display_manager_get(),
152                                                  _gdk_displays->data);
153       else
154         gdk_display_manager_set_default_display (gdk_display_manager_get(),
155                                                  NULL);
156     }
157
158   G_OBJECT_CLASS (gdk_display_parent_class)->dispose (object);
159 }
160
161 static void
162 gdk_display_finalize (GObject *object)
163 {
164   G_OBJECT_CLASS (gdk_display_parent_class)->finalize (object);
165 }
166
167 /**
168  * gdk_display_close:
169  * @display: a #GdkDisplay
170  *
171  * Closes the connection to the windowing system for the given display,
172  * and cleans up associated resources.
173  *
174  * Since: 2.2
175  */
176 void
177 gdk_display_close (GdkDisplay *display)
178 {
179   g_return_if_fail (GDK_IS_DISPLAY (display));
180
181   if (!display->closed)
182     {
183       display->closed = TRUE;
184       
185       g_signal_emit (display, signals[CLOSED], 0, FALSE);
186       g_object_run_dispose (G_OBJECT (display));
187       
188       g_object_unref (display);
189     }
190 }
191
192 /**
193  * gdk_display_get_event:
194  * @display: a #GdkDisplay
195  * 
196  * Gets the next #GdkEvent to be processed for @display, fetching events from the
197  * windowing system if necessary.
198  * 
199  * Return value: the next #GdkEvent to be processed, or %NULL if no events
200  * are pending. The returned #GdkEvent should be freed with gdk_event_free().
201  *
202  * Since: 2.2
203  **/
204 GdkEvent*
205 gdk_display_get_event (GdkDisplay *display)
206 {
207   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
208   
209   _gdk_events_queue (display);
210   return _gdk_event_unqueue (display);
211 }
212
213 /**
214  * gdk_display_peek_event:
215  * @display: a #GdkDisplay 
216  * 
217  * Gets a copy of the first #GdkEvent in the @display's event queue, without
218  * removing the event from the queue.  (Note that this function will
219  * not get more events from the windowing system.  It only checks the events
220  * that have already been moved to the GDK event queue.)
221  * 
222  * Return value: a copy of the first #GdkEvent on the event queue, or %NULL 
223  * if no events are in the queue. The returned #GdkEvent should be freed with
224  * gdk_event_free().
225  *
226  * Since: 2.2
227  **/
228 GdkEvent*
229 gdk_display_peek_event (GdkDisplay *display)
230 {
231   GList *tmp_list;
232
233   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
234
235   tmp_list = _gdk_event_queue_find_first (display);
236   
237   if (tmp_list)
238     return gdk_event_copy (tmp_list->data);
239   else
240     return NULL;
241 }
242
243 /**
244  * gdk_display_put_event:
245  * @display: a #GdkDisplay
246  * @event: a #GdkEvent.
247  *
248  * Appends a copy of the given event onto the front of the event
249  * queue for @display.
250  *
251  * Since: 2.2
252  **/
253 void
254 gdk_display_put_event (GdkDisplay     *display,
255                        const GdkEvent *event)
256 {
257   g_return_if_fail (GDK_IS_DISPLAY (display));
258   g_return_if_fail (event != NULL);
259
260   _gdk_event_queue_append (display, gdk_event_copy (event));
261   /* If the main loop is blocking in a different thread, wake it up */
262   g_main_context_wakeup (NULL); 
263 }
264
265 /**
266  * gdk_pointer_ungrab:
267  * @time_: a timestamp from a #GdkEvent, or %GDK_CURRENT_TIME if no 
268  *  timestamp is available.
269  *
270  * Ungrabs the pointer on the default display, if it is grabbed by this 
271  * application.
272  **/
273 void
274 gdk_pointer_ungrab (guint32 time)
275 {
276   gdk_display_pointer_ungrab (gdk_display_get_default (), time);
277 }
278
279 /**
280  * gdk_pointer_is_grabbed:
281  * 
282  * Returns %TRUE if the pointer on the default display is currently 
283  * grabbed by this application.
284  *
285  * Note that this does not take the inmplicit pointer grab on button
286  * presses into account.
287
288  * Return value: %TRUE if the pointer is currently grabbed by this application.* 
289  **/
290 gboolean
291 gdk_pointer_is_grabbed (void)
292 {
293   return gdk_display_pointer_is_grabbed (gdk_display_get_default ());
294 }
295
296 /**
297  * gdk_keyboard_ungrab:
298  * @time_: a timestamp from a #GdkEvent, or %GDK_CURRENT_TIME if no
299  *        timestamp is available.
300  * 
301  * Ungrabs the keyboard on the default display, if it is grabbed by this 
302  * application.
303  **/
304 void
305 gdk_keyboard_ungrab (guint32 time)
306 {
307   gdk_display_keyboard_ungrab (gdk_display_get_default (), time);
308 }
309
310 /**
311  * gdk_beep:
312  * 
313  * Emits a short beep on the default display.
314  **/
315 void
316 gdk_beep (void)
317 {
318   gdk_display_beep (gdk_display_get_default ());
319 }
320
321 /**
322  * gdk_event_send_client_message:
323  * @event: the #GdkEvent to send, which should be a #GdkEventClient.
324  * @winid:  the window to send the X ClientMessage event to.
325  * 
326  * Sends an X ClientMessage event to a given window (which must be
327  * on the default #GdkDisplay.)
328  * This could be used for communicating between different applications,
329  * though the amount of data is limited to 20 bytes.
330  * 
331  * Return value: non-zero on success.
332  **/
333 gboolean
334 gdk_event_send_client_message (GdkEvent        *event,
335                                GdkNativeWindow  winid)
336 {
337   g_return_val_if_fail (event != NULL, FALSE);
338
339   return gdk_event_send_client_message_for_display (gdk_display_get_default (),
340                                                     event, winid);
341 }
342
343 /**
344  * gdk_event_send_clientmessage_toall:
345  * @event: the #GdkEvent to send, which should be a #GdkEventClient.
346  *
347  * Sends an X ClientMessage event to all toplevel windows on the default
348  * #GdkScreen.
349  *
350  * Toplevel windows are determined by checking for the WM_STATE property, as
351  * described in the Inter-Client Communication Conventions Manual (ICCCM).
352  * If no windows are found with the WM_STATE property set, the message is sent
353  * to all children of the root window.
354  **/
355 void
356 gdk_event_send_clientmessage_toall (GdkEvent *event)
357 {
358   g_return_if_fail (event != NULL);
359
360   gdk_screen_broadcast_client_message (gdk_screen_get_default (), event);
361 }
362
363 /**
364  * gdk_device_get_core_pointer:
365  * 
366  * Returns the core pointer device for the default display.
367  * 
368  * Return value: the core pointer device; this is owned by the
369  *   display and should not be freed.
370  **/
371 GdkDevice *
372 gdk_device_get_core_pointer (void)
373 {
374   return gdk_display_get_core_pointer (gdk_display_get_default ());
375 }
376
377 /**
378  * gdk_display_get_core_pointer:
379  * @display: a #GdkDisplay
380  * 
381  * Returns the core pointer device for the given display
382  * 
383  * Return value: the core pointer device; this is owned by the
384  *   display and should not be freed.
385  *
386  * Since: 2.2
387  **/
388 GdkDevice *
389 gdk_display_get_core_pointer (GdkDisplay *display)
390 {
391   return display->core_pointer;
392 }
393
394 /**
395  * gdk_set_sm_client_id:
396  * @sm_client_id: the client id assigned by the session manager when the
397  *    connection was opened, or %NULL to remove the property.
398  * 
399  * Sets the <literal>SM_CLIENT_ID</literal> property on the application's leader window so that
400  * the window manager can save the application's state using the X11R6 ICCCM
401  * session management protocol.
402  *
403  * See the X Session Management Library documentation for more information on
404  * session management and the Inter-Client Communication Conventions Manual
405  * (ICCCM) for information on the <literal>WM_CLIENT_LEADER</literal> property. 
406  * (Both documents are part of the X Window System distribution.)
407  **/
408 void
409 gdk_set_sm_client_id (const gchar* sm_client_id)
410 {
411   GSList *displays, *tmp_list;
412   
413   g_free (gdk_sm_client_id);
414   gdk_sm_client_id = g_strdup (sm_client_id);
415
416   displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
417   for (tmp_list = displays; tmp_list; tmp_list = tmp_list->next)
418     _gdk_windowing_display_set_sm_client_id (tmp_list->data, sm_client_id);
419
420   g_slist_free (displays);
421 }
422
423 /**
424  * _gdk_get_sm_client_id:
425  * 
426  * Gets the client ID set with gdk_set_sm_client_id(), if any.
427  * 
428  * Return value: Session ID, or %NULL if gdk_set_sm_client_id()
429  *               has never been called.
430  **/
431 const char *
432 _gdk_get_sm_client_id (void)
433 {
434   return gdk_sm_client_id;
435 }
436
437 /**
438  * gdk_display_get_pointer:
439  * @display: a #GdkDisplay
440  * @screen: location to store the screen that the
441  *          cursor is on, or %NULL.
442  * @x: location to store root window X coordinate of pointer, or %NULL.
443  * @y: location to store root window Y coordinate of pointer, or %NULL.
444  * @mask: location to store current modifier mask, or %NULL
445  * 
446  * Gets the current location of the pointer and the current modifier
447  * mask for a given display.
448  *
449  * Since: 2.2
450  **/
451 void
452 gdk_display_get_pointer (GdkDisplay      *display,
453                          GdkScreen      **screen,
454                          gint            *x,
455                          gint            *y,
456                          GdkModifierType *mask)
457 {
458   GdkScreen *tmp_screen;
459   gint tmp_x, tmp_y;
460   GdkModifierType tmp_mask;
461   
462   g_return_if_fail (GDK_IS_DISPLAY (display));
463
464   display->pointer_hooks->get_pointer (display, &tmp_screen, &tmp_x, &tmp_y, &tmp_mask);
465
466   if (screen)
467     *screen = tmp_screen;
468   if (x)
469     *x = tmp_x;
470   if (y)
471     *y = tmp_y;
472   if (mask)
473     *mask = tmp_mask;
474 }
475
476 /**
477  * gdk_display_get_window_at_pointer:
478  * @display: a #GdkDisplay
479  * @win_x: return location for origin of the window under the pointer
480  * @win_y: return location for origin of the window under the pointer
481  * 
482  * Obtains the window underneath the mouse pointer, returning the location
483  * of that window in @win_x, @win_y for @screen. Returns %NULL if the window 
484  * under the mouse pointer is not known to GDK (for example, belongs to
485  * another application).
486  * 
487  * Returns: the window under the mouse pointer, or %NULL
488  *
489  * Since: 2.2
490  **/
491 GdkWindow *
492 gdk_display_get_window_at_pointer (GdkDisplay *display,
493                                    gint       *win_x,
494                                    gint       *win_y)
495 {
496   gint tmp_x, tmp_y;
497   GdkWindow *window;
498
499   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
500
501   window = display->pointer_hooks->window_at_pointer (display, &tmp_x, &tmp_y);
502
503   if (win_x)
504     *win_x = tmp_x;
505   if (win_y)
506     *win_y = tmp_y;
507
508   return window;
509 }
510
511 /**
512  * gdk_display_set_pointer_hooks:
513  * @display: a #GdkDisplay
514  * @new_hooks: a table of pointers to functions for getting
515  *   quantities related to the current pointer position,
516  *   or %NULL to restore the default table.
517  * 
518  * This function allows for hooking into the operation
519  * of getting the current location of the pointer on a particular
520  * display. This is only useful for such low-level tools as an
521  * event recorder. Applications should never have any
522  * reason to use this facility.
523  *
524  * Return value: the previous pointer hook table
525  *
526  * Since: 2.2
527  **/
528 GdkDisplayPointerHooks *
529 gdk_display_set_pointer_hooks (GdkDisplay                   *display,
530                                const GdkDisplayPointerHooks *new_hooks)
531 {
532   const GdkDisplayPointerHooks *result;
533
534   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
535   result = display->pointer_hooks;
536
537   if (new_hooks)
538     display->pointer_hooks = new_hooks;
539   else
540     display->pointer_hooks = &default_pointer_hooks;
541
542   return (GdkDisplayPointerHooks *)result;
543 }
544
545 static void
546 singlehead_get_pointer (GdkDisplay       *display,
547                         GdkScreen       **screen,
548                         gint             *x,
549                         gint             *y,
550                         GdkModifierType  *mask)
551 {
552   GdkScreen *default_screen = gdk_display_get_default_screen (display);
553   GdkWindow *root_window = gdk_screen_get_root_window (default_screen);
554
555   *screen = default_screen;
556
557   singlehead_current_pointer_hooks->get_pointer (root_window, x, y, mask);
558 }
559
560 static GdkWindow*
561 singlehead_window_get_pointer (GdkDisplay       *display,
562                                GdkWindow        *window,
563                                gint             *x,
564                                gint             *y,
565                                GdkModifierType  *mask)
566 {
567   return singlehead_current_pointer_hooks->get_pointer (window, x, y, mask);
568 }
569
570 static GdkWindow*
571 singlehead_window_at_pointer   (GdkDisplay *display,
572                                 gint       *win_x,
573                                 gint       *win_y)
574 {
575   GdkScreen *default_screen = gdk_display_get_default_screen (display);
576
577   return singlehead_current_pointer_hooks->window_at_pointer (default_screen,
578                                                               win_x, win_y);
579 }
580
581 static GdkWindow*
582 singlehead_default_window_get_pointer (GdkWindow       *window,
583                                        gint            *x,
584                                        gint            *y,
585                                        GdkModifierType *mask)
586 {
587   return _gdk_windowing_window_get_pointer (gdk_drawable_get_display (window),
588                                             window, x, y, mask);
589 }
590
591 static GdkWindow*
592 singlehead_default_window_at_pointer  (GdkScreen       *screen,
593                                        gint            *win_x,
594                                        gint            *win_y)
595 {
596   return _gdk_windowing_window_at_pointer (gdk_screen_get_display (screen),
597                                            win_x, win_y);
598 }
599
600 /**
601  * gdk_set_pointer_hooks:
602  * @new_hooks: a table of pointers to functions for getting
603  *   quantities related to the current pointer position,
604  *   or %NULL to restore the default table.
605  * 
606  * This function allows for hooking into the operation
607  * of getting the current location of the pointer. This
608  * is only useful for such low-level tools as an
609  * event recorder. Applications should never have any
610  * reason to use this facility.
611  *
612  * This function is not multihead safe. For multihead operation,
613  * see gdk_display_set_pointer_hooks().
614  * 
615  * Return value: the previous pointer hook table
616  **/
617 GdkPointerHooks *
618 gdk_set_pointer_hooks (const GdkPointerHooks *new_hooks)
619 {
620   const GdkPointerHooks *result = singlehead_current_pointer_hooks;
621
622   if (new_hooks)
623     singlehead_current_pointer_hooks = new_hooks;
624   else
625     singlehead_current_pointer_hooks = &singlehead_default_pointer_hooks;
626
627   gdk_display_set_pointer_hooks (gdk_display_get_default (),
628                                  &singlehead_pointer_hooks);
629   
630   return (GdkPointerHooks *)result;
631 }
632
633 #define __GDK_DISPLAY_C__
634 #include "gdkaliasdef.c"