]> Pileus Git - ~andy/gtk/blob - gdk/gdkscreen.c
GdkScreen: fix precondition checks in the public API
[~andy/gtk] / gdk / gdkscreen.c
1 /*
2  * gdkscreen.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
26 #include "gdkscreenprivate.h"
27 #include "gdkrectangle.h"
28 #include "gdkwindow.h"
29 #include "gdkintl.h"
30
31
32 /**
33  * SECTION:gdkscreen
34  * @Short_description: Object representing a physical screen
35  * @Title: GdkScreen
36  *
37  * #GdkScreen objects are the GDK representation of the screen on
38  * which windows can be displayed and on which the pointer moves.
39  * X originally identified screens with physical screens, but
40  * nowadays it is more common to have a single #GdkScreen which
41  * combines several physical monitors (see gdk_screen_get_n_monitors()).
42  *
43  * GdkScreen is used throughout GDK and GTK+ to specify which screen
44  * the top level windows are to be displayed on. it is also used to
45  * query the screen specification and default settings such as
46  * the default visual (gdk_screen_get_system_visual()), the dimensions
47  * of the physical monitors (gdk_screen_get_monitor_geometry()), etc.
48  */
49
50
51 static void gdk_screen_finalize     (GObject        *object);
52 static void gdk_screen_set_property (GObject        *object,
53                                      guint           prop_id,
54                                      const GValue   *value,
55                                      GParamSpec     *pspec);
56 static void gdk_screen_get_property (GObject        *object,
57                                      guint           prop_id,
58                                      GValue         *value,
59                                      GParamSpec     *pspec);
60
61 enum
62 {
63   PROP_0,
64   PROP_FONT_OPTIONS,
65   PROP_RESOLUTION
66 };
67
68 enum
69 {
70   SIZE_CHANGED,
71   COMPOSITED_CHANGED,
72   MONITORS_CHANGED,
73   LAST_SIGNAL
74 };
75
76 static guint signals[LAST_SIGNAL] = { 0 };
77
78 G_DEFINE_TYPE (GdkScreen, gdk_screen, G_TYPE_OBJECT)
79
80 static void
81 gdk_screen_class_init (GdkScreenClass *klass)
82 {
83   GObjectClass *object_class = G_OBJECT_CLASS (klass);
84
85   object_class->finalize = gdk_screen_finalize;
86   object_class->set_property = gdk_screen_set_property;
87   object_class->get_property = gdk_screen_get_property;
88   
89   g_object_class_install_property (object_class,
90                                    PROP_FONT_OPTIONS,
91                                    g_param_spec_pointer ("font-options",
92                                                          P_("Font options"),
93                                                          P_("The default font options for the screen"),
94                                                          G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
95                                                         G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
96
97   g_object_class_install_property (object_class,
98                                    PROP_RESOLUTION,
99                                    g_param_spec_double ("resolution",
100                                                         P_("Font resolution"),
101                                                         P_("The resolution for fonts on the screen"),
102                                                         -G_MAXDOUBLE,
103                                                         G_MAXDOUBLE,
104                                                         -1.0,
105                                                         G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
106                                                         G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
107
108   /**
109    * GdkScreen::size-changed:
110    * @screen: the object on which the signal is emitted
111    * 
112    * The ::size-changed signal is emitted when the pixel width or 
113    * height of a screen changes.
114    *
115    * Since: 2.2
116    */
117   signals[SIZE_CHANGED] =
118     g_signal_new (g_intern_static_string ("size-changed"),
119                   G_OBJECT_CLASS_TYPE (klass),
120                   G_SIGNAL_RUN_LAST,
121                   G_STRUCT_OFFSET (GdkScreenClass, size_changed),
122                   NULL, NULL,
123                   g_cclosure_marshal_VOID__VOID,
124                   G_TYPE_NONE,
125                   0);
126
127   /**
128    * GdkScreen::composited-changed:
129    * @screen: the object on which the signal is emitted
130    *
131    * The ::composited-changed signal is emitted when the composited
132    * status of the screen changes
133    *
134    * Since: 2.10
135    */
136   signals[COMPOSITED_CHANGED] =
137     g_signal_new (g_intern_static_string ("composited-changed"),
138                   G_OBJECT_CLASS_TYPE (klass),
139                   G_SIGNAL_RUN_LAST,
140                   G_STRUCT_OFFSET (GdkScreenClass, composited_changed),
141                   NULL, NULL,
142                   g_cclosure_marshal_VOID__VOID,
143                   G_TYPE_NONE,
144                   0);
145         
146   /**
147    * GdkScreen::monitors-changed:
148    * @screen: the object on which the signal is emitted
149    *
150    * The ::monitors-changed signal is emitted when the number, size
151    * or position of the monitors attached to the screen change. 
152    *
153    * Only for X11 and OS X for now. A future implementation for Win32
154    * may be a possibility.
155    *
156    * Since: 2.14
157    */
158   signals[MONITORS_CHANGED] =
159     g_signal_new (g_intern_static_string ("monitors-changed"),
160                   G_OBJECT_CLASS_TYPE (klass),
161                   G_SIGNAL_RUN_LAST,
162                   G_STRUCT_OFFSET (GdkScreenClass, monitors_changed),
163                   NULL, NULL,
164                   g_cclosure_marshal_VOID__VOID,
165                   G_TYPE_NONE,
166                   0);
167 }
168
169 static void
170 gdk_screen_init (GdkScreen *screen)
171 {
172   screen->resolution = -1.;
173 }
174
175 static void
176 gdk_screen_finalize (GObject *object)
177 {
178   GdkScreen *screen = GDK_SCREEN (object);
179
180   if (screen->font_options)
181       cairo_font_options_destroy (screen->font_options);
182
183   G_OBJECT_CLASS (gdk_screen_parent_class)->finalize (object);
184 }
185
186 void 
187 _gdk_screen_close (GdkScreen *screen)
188 {
189   g_return_if_fail (GDK_IS_SCREEN (screen));
190
191   if (!screen->closed)
192     {
193       screen->closed = TRUE;
194       g_object_run_dispose (G_OBJECT (screen));
195     }
196 }
197
198 /* Fallback used when the monitor "at" a point or window
199  * doesn't exist.
200  */
201 static gint
202 get_nearest_monitor (GdkScreen *screen,
203                      gint       x,
204                      gint       y)
205 {
206   gint num_monitors, i;
207   gint nearest_dist = G_MAXINT;
208   gint nearest_monitor = 0;
209
210   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
211
212   num_monitors = gdk_screen_get_n_monitors (screen);
213   
214   for (i = 0; i < num_monitors; i++)
215     {
216       GdkRectangle monitor;
217       gint dist_x, dist_y, dist;
218       
219       gdk_screen_get_monitor_geometry (screen, i, &monitor);
220
221       if (x < monitor.x)
222         dist_x = monitor.x - x;
223       else if (x >= monitor.x + monitor.width)
224         dist_x = x - (monitor.x + monitor.width) + 1;
225       else
226         dist_x = 0;
227
228       if (y < monitor.y)
229         dist_y = monitor.y - y;
230       else if (y >= monitor.y + monitor.height)
231         dist_y = y - (monitor.y + monitor.height) + 1;
232       else
233         dist_y = 0;
234
235       dist = dist_x + dist_y;
236       if (dist < nearest_dist)
237         {
238           nearest_dist = dist;
239           nearest_monitor = i;
240         }
241     }
242
243   return nearest_monitor;
244 }
245
246 /**
247  * gdk_screen_get_monitor_at_point:
248  * @screen: a #GdkScreen.
249  * @x: the x coordinate in the virtual screen.
250  * @y: the y coordinate in the virtual screen.
251  *
252  * Returns the monitor number in which the point (@x,@y) is located.
253  *
254  * Returns: the monitor number in which the point (@x,@y) lies, or
255  *   a monitor close to (@x,@y) if the point is not in any monitor.
256  *
257  * Since: 2.2
258  **/
259 gint 
260 gdk_screen_get_monitor_at_point (GdkScreen *screen,
261                                  gint       x,
262                                  gint       y)
263 {
264   gint num_monitors, i;
265   
266   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
267
268   num_monitors = gdk_screen_get_n_monitors (screen);
269   
270   for (i=0;i<num_monitors;i++)
271     {
272       GdkRectangle monitor;
273       
274       gdk_screen_get_monitor_geometry (screen, i, &monitor);
275
276       if (x >= monitor.x &&
277           x < monitor.x + monitor.width &&
278           y >= monitor.y &&
279           y < (monitor.y + monitor.height))
280         return i;
281     }
282
283   return get_nearest_monitor (screen, x, y);
284 }
285
286 /**
287  * gdk_screen_get_monitor_at_window:
288  * @screen: a #GdkScreen.
289  * @window: a #GdkWindow
290  *
291  * Returns the number of the monitor in which the largest area of the
292  * bounding rectangle of @window resides.
293  *
294  * Returns: the monitor number in which most of @window is located,
295  *     or if @window does not intersect any monitors, a monitor,
296  *     close to @window.
297  *
298  * Since: 2.2
299  **/
300 gint 
301 gdk_screen_get_monitor_at_window (GdkScreen      *screen,
302                                   GdkWindow      *window)
303 {
304   gint num_monitors, i, area = 0, screen_num = -1;
305   GdkRectangle win_rect;
306
307   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
308
309   gdk_window_get_geometry (window, &win_rect.x, &win_rect.y, &win_rect.width,
310                            &win_rect.height);
311   gdk_window_get_origin (window, &win_rect.x, &win_rect.y);
312   num_monitors = gdk_screen_get_n_monitors (screen);
313   
314   for (i=0;i<num_monitors;i++)
315     {
316       GdkRectangle tmp_monitor, intersect;
317       
318       gdk_screen_get_monitor_geometry (screen, i, &tmp_monitor);
319       gdk_rectangle_intersect (&win_rect, &tmp_monitor, &intersect);
320       
321       if (intersect.width * intersect.height > area)
322         { 
323           area = intersect.width * intersect.height;
324           screen_num = i;
325         }
326     }
327   if (screen_num >= 0)
328     return screen_num;
329   else
330     return get_nearest_monitor (screen,
331                                 win_rect.x + win_rect.width / 2,
332                                 win_rect.y + win_rect.height / 2);
333 }
334
335 /**
336  * gdk_screen_width:
337  * 
338  * Returns the width of the default screen in pixels.
339  * 
340  * Return value: the width of the default screen in pixels.
341  **/
342 gint
343 gdk_screen_width (void)
344 {
345   return gdk_screen_get_width (gdk_screen_get_default ());
346 }
347
348 /**
349  * gdk_screen_height:
350  * 
351  * Returns the height of the default screen in pixels.
352  * 
353  * Return value: the height of the default screen in pixels.
354  **/
355 gint
356 gdk_screen_height (void)
357 {
358   return gdk_screen_get_height (gdk_screen_get_default ());
359 }
360
361 /**
362  * gdk_screen_width_mm:
363  * 
364  * Returns the width of the default screen in millimeters.
365  * Note that on many X servers this value will not be correct.
366  * 
367  * Return value: the width of the default screen in millimeters,
368  * though it is not always correct.
369  **/
370 gint
371 gdk_screen_width_mm (void)
372 {
373   return gdk_screen_get_width_mm (gdk_screen_get_default ());
374 }
375
376 /**
377  * gdk_screen_height_mm:
378  * 
379  * Returns the height of the default screen in millimeters.
380  * Note that on many X servers this value will not be correct.
381  * 
382  * Return value: the height of the default screen in millimeters,
383  * though it is not always correct.
384  **/
385 gint
386 gdk_screen_height_mm (void)
387 {
388   return gdk_screen_get_height_mm (gdk_screen_get_default ());
389 }
390
391 /**
392  * gdk_screen_set_font_options:
393  * @screen: a #GdkScreen
394  * @options: (allow-none): a #cairo_font_options_t, or %NULL to unset any
395  *   previously set default font options.
396  *
397  * Sets the default font options for the screen. These
398  * options will be set on any #PangoContext's newly created
399  * with gdk_pango_context_get_for_screen(). Changing the
400  * default set of font options does not affect contexts that
401  * have already been created.
402  *
403  * Since: 2.10
404  **/
405 void
406 gdk_screen_set_font_options (GdkScreen                  *screen,
407                              const cairo_font_options_t *options)
408 {
409   g_return_if_fail (GDK_IS_SCREEN (screen));
410
411   if (screen->font_options != options)
412     {
413       if (screen->font_options)
414         cairo_font_options_destroy (screen->font_options);
415
416       if (options)
417         screen->font_options = cairo_font_options_copy (options);
418       else
419         screen->font_options = NULL;
420
421       g_object_notify (G_OBJECT (screen), "font-options");
422     }
423 }
424
425 /**
426  * gdk_screen_get_font_options:
427  * @screen: a #GdkScreen
428  * 
429  * Gets any options previously set with gdk_screen_set_font_options().
430  * 
431  * Return value: the current font options, or %NULL if no default
432  *  font options have been set.
433  *
434  * Since: 2.10
435  **/
436 const cairo_font_options_t *
437 gdk_screen_get_font_options (GdkScreen *screen)
438 {
439   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
440
441   return screen->font_options;
442 }
443
444 /**
445  * gdk_screen_set_resolution:
446  * @screen: a #GdkScreen
447  * @dpi: the resolution in "dots per inch". (Physical inches aren't actually
448  *   involved; the terminology is conventional.)
449  
450  * Sets the resolution for font handling on the screen. This is a
451  * scale factor between points specified in a #PangoFontDescription
452  * and cairo units. The default value is 96, meaning that a 10 point
453  * font will be 13 units high. (10 * 96. / 72. = 13.3).
454  *
455  * Since: 2.10
456  **/
457 void
458 gdk_screen_set_resolution (GdkScreen *screen,
459                            gdouble    dpi)
460 {
461   g_return_if_fail (GDK_IS_SCREEN (screen));
462
463   if (dpi < 0)
464     dpi = -1.0;
465
466   if (screen->resolution != dpi)
467     {
468       screen->resolution = dpi;
469
470       g_object_notify (G_OBJECT (screen), "resolution");
471     }
472 }
473
474 /**
475  * gdk_screen_get_resolution:
476  * @screen: a #GdkScreen
477  * 
478  * Gets the resolution for font handling on the screen; see
479  * gdk_screen_set_resolution() for full details.
480  * 
481  * Return value: the current resolution, or -1 if no resolution
482  * has been set.
483  *
484  * Since: 2.10
485  **/
486 gdouble
487 gdk_screen_get_resolution (GdkScreen *screen)
488 {
489   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1.0);
490
491   return screen->resolution;
492 }
493
494 static void
495 gdk_screen_get_property (GObject      *object,
496                          guint         prop_id,
497                          GValue       *value,
498                          GParamSpec   *pspec)
499 {
500   GdkScreen *screen = GDK_SCREEN (object);
501
502   switch (prop_id)
503     {
504     case PROP_FONT_OPTIONS:
505       g_value_set_pointer (value, (gpointer) gdk_screen_get_font_options (screen));
506       break;
507     case PROP_RESOLUTION:
508       g_value_set_double (value, gdk_screen_get_resolution (screen));
509       break;
510     default:
511       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
512       break;
513     }
514 }
515
516 static void
517 gdk_screen_set_property (GObject      *object,
518                          guint         prop_id,
519                          const GValue *value,
520                          GParamSpec   *pspec)
521 {
522   GdkScreen *screen = GDK_SCREEN (object);
523
524   switch (prop_id)
525     {
526     case PROP_FONT_OPTIONS:
527       gdk_screen_set_font_options (screen, g_value_get_pointer (value));
528       break;
529     case PROP_RESOLUTION:
530       gdk_screen_set_resolution (screen, g_value_get_double (value));
531       break;
532     default:
533       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
534       break;
535     }
536 }
537
538 /**
539  * gdk_screen_get_display:
540  * @screen: a #GdkScreen
541  *
542  * Gets the display to which the @screen belongs.
543  *
544  * Returns: (transfer none): the display to which @screen belongs
545  *
546  * Since: 2.2
547  **/
548 GdkDisplay *
549 gdk_screen_get_display (GdkScreen *screen)
550 {
551   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
552
553   return GDK_SCREEN_GET_CLASS (screen)->get_display (screen);
554 }
555
556
557 /**
558  * gdk_screen_get_width:
559  * @screen: a #GdkScreen
560  *
561  * Gets the width of @screen in pixels
562  *
563  * Returns: the width of @screen in pixels.
564  *
565  * Since: 2.2
566  **/
567 gint
568 gdk_screen_get_width (GdkScreen *screen)
569 {
570   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
571
572   return GDK_SCREEN_GET_CLASS (screen)->get_width (screen);
573 }
574
575 /**
576  * gdk_screen_get_height:
577  * @screen: a #GdkScreen
578  *
579  * Gets the height of @screen in pixels
580  *
581  * Returns: the height of @screen in pixels.
582  *
583  * Since: 2.2
584  **/
585 gint
586 gdk_screen_get_height (GdkScreen *screen)
587 {
588   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
589
590   return GDK_SCREEN_GET_CLASS (screen)->get_height (screen);
591 }
592
593 /**
594  * gdk_screen_get_width_mm:
595  * @screen: a #GdkScreen
596  *
597  * Gets the width of @screen in millimeters.
598  * Note that on some X servers this value will not be correct.
599  *
600  * Returns: the width of @screen in millimeters.
601  *
602  * Since: 2.2
603  **/
604 gint
605 gdk_screen_get_width_mm (GdkScreen *screen)
606 {
607   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
608
609   return GDK_SCREEN_GET_CLASS (screen)->get_width_mm (screen);
610 }
611
612 /**
613  * gdk_screen_get_height_mm:
614  * @screen: a #GdkScreen
615  *
616  * Returns the height of @screen in millimeters.
617  * Note that on some X servers this value will not be correct.
618  *
619  * Returns: the heigth of @screen in millimeters.
620  *
621  * Since: 2.2
622  **/
623 gint
624 gdk_screen_get_height_mm (GdkScreen *screen)
625 {
626   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
627
628   return GDK_SCREEN_GET_CLASS (screen)->get_height_mm (screen);
629 }
630
631 /**
632  * gdk_screen_get_number:
633  * @screen: a #GdkScreen
634  *
635  * Gets the index of @screen among the screens in the display
636  * to which it belongs. (See gdk_screen_get_display())
637  *
638  * Returns: the index
639  *
640  * Since: 2.2
641  **/
642 gint
643 gdk_screen_get_number (GdkScreen *screen)
644 {
645   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
646
647   return GDK_SCREEN_GET_CLASS (screen)->get_number (screen);
648 }
649
650 /**
651  * gdk_screen_get_root_window:
652  * @screen: a #GdkScreen
653  *
654  * Gets the root window of @screen.
655  *
656  * Returns: (transfer none): the root window
657  *
658  * Since: 2.2
659  **/
660 GdkWindow *
661 gdk_screen_get_root_window (GdkScreen *screen)
662 {
663   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
664
665   return GDK_SCREEN_GET_CLASS (screen)->get_root_window (screen);
666 }
667
668 /**
669  * gdk_screen_get_n_monitors:
670  * @screen: a #GdkScreen
671  *
672  * Returns the number of monitors which @screen consists of.
673  *
674  * Returns: number of monitors which @screen consists of
675  *
676  * Since: 2.2
677  */
678 gint
679 gdk_screen_get_n_monitors (GdkScreen *screen)
680 {
681   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
682
683   return GDK_SCREEN_GET_CLASS (screen)->get_n_monitors (screen);
684 }
685
686 /**
687  * gdk_screen_get_primary_monitor:
688  * @screen: a #GdkScreen.
689  *
690  * Gets the primary monitor for @screen.  The primary monitor
691  * is considered the monitor where the 'main desktop' lives.
692  * While normal application windows typically allow the window
693  * manager to place the windows, specialized desktop applications
694  * such as panels should place themselves on the primary monitor.
695  *
696  * If no primary monitor is configured by the user, the return value
697  * will be 0, defaulting to the first monitor.
698  *
699  * Returns: An integer index for the primary monitor, or 0 if none is configured.
700  *
701  * Since: 2.20
702  */
703 gint
704 gdk_screen_get_primary_monitor (GdkScreen *screen)
705 {
706   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
707
708   return GDK_SCREEN_GET_CLASS (screen)->get_primary_monitor (screen);
709 }
710
711 /**
712  * gdk_screen_get_monitor_width_mm:
713  * @screen: a #GdkScreen
714  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
715  *
716  * Gets the width in millimeters of the specified monitor, if available.
717  *
718  * Returns: the width of the monitor, or -1 if not available
719  *
720  * Since: 2.14
721  */
722 gint
723 gdk_screen_get_monitor_width_mm (GdkScreen *screen,
724                                  gint       monitor_num)
725 {
726   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
727   g_return_val_if_fail (monitor_num >= 0, -1);
728
729   return GDK_SCREEN_GET_CLASS (screen)->get_monitor_width_mm (screen, monitor_num);
730 }
731
732 /**
733  * gdk_screen_get_monitor_height_mm:
734  * @screen: a #GdkScreen
735  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
736  *
737  * Gets the height in millimeters of the specified monitor.
738  *
739  * Returns: the height of the monitor, or -1 if not available
740  *
741  * Since: 2.14
742  */
743 gint
744 gdk_screen_get_monitor_height_mm (GdkScreen *screen,
745                                   gint       monitor_num)
746 {
747   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
748   g_return_val_if_fail (monitor_num >= 0, -1);
749
750   return GDK_SCREEN_GET_CLASS (screen)->get_monitor_height_mm (screen, monitor_num);
751 }
752
753 /**
754  * gdk_screen_get_monitor_plug_name:
755  * @screen: a #GdkScreen
756  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
757  *
758  * Returns the output name of the specified monitor.
759  * Usually something like VGA, DVI, or TV, not the actual
760  * product name of the display device.
761  *
762  * Returns: a newly-allocated string containing the name of the monitor,
763  *   or %NULL if the name cannot be determined
764  *
765  * Since: 2.14
766  */
767 gchar *
768 gdk_screen_get_monitor_plug_name (GdkScreen *screen,
769                                   gint       monitor_num)
770 {
771   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
772   g_return_val_if_fail (monitor_num >= 0, NULL);
773
774   return GDK_SCREEN_GET_CLASS (screen)->get_monitor_plug_name (screen, monitor_num);
775 }
776
777 /**
778  * gdk_screen_get_monitor_geometry:
779  * @screen: a #GdkScreen
780  * @monitor_num: the monitor number
781  * @dest: (out) (allow-none): a #GdkRectangle to be filled with
782  *     the monitor geometry
783  *
784  * Retrieves the #GdkRectangle representing the size and position of
785  * the individual monitor within the entire screen area.
786  *
787  * Monitor numbers start at 0. To obtain the number of monitors of
788  * @screen, use gdk_screen_get_n_monitors().
789  *
790  * Note that the size of the entire screen area can be retrieved via
791  * gdk_screen_get_width() and gdk_screen_get_height().
792  *
793  * Since: 2.2
794  */
795 void
796 gdk_screen_get_monitor_geometry (GdkScreen    *screen,
797                                  gint          monitor_num,
798                                  GdkRectangle *dest)
799 {
800   g_return_if_fail (GDK_IS_SCREEN (screen));
801   g_return_if_fail (monitor_num >= 0);
802
803   GDK_SCREEN_GET_CLASS(screen)->get_monitor_geometry (screen, monitor_num, dest);
804 }
805
806 /**
807  * gdk_screen_get_monitor_workarea:
808  * @screen: a #GdkScreen
809  * @monitor_num: the monitor number
810  * @dest: (out) (allow-none): a #GdkRectangle to be filled with
811  *     the monitor workarea
812  *
813  * Retrieves the #GdkRectangle representing the size and position of
814  * the "work area" on a monitor within the entire screen area.
815  *
816  * The work area should be considered when positioning menus and
817  * similar popups, to avoid placing them below panels, docks or other
818  * desktop components.
819  *
820  * Monitor numbers start at 0. To obtain the number of monitors of
821  * @screen, use gdk_screen_get_n_monitors().
822  *
823  * Since: 3.4
824  */
825 void
826 gdk_screen_get_monitor_workarea (GdkScreen    *screen,
827                                  gint          monitor_num,
828                                  GdkRectangle *dest)
829 {
830   g_return_if_fail (GDK_IS_SCREEN (screen));
831   g_return_if_fail (monitor_num >= 0);
832
833   GDK_SCREEN_GET_CLASS (screen)->get_monitor_workarea (screen, monitor_num, dest);
834 }
835
836 /**
837  * gdk_screen_list_visuals:
838  * @screen: the relevant #GdkScreen.
839  *
840  * Lists the available visuals for the specified @screen.
841  * A visual describes a hardware image data format.
842  * For example, a visual might support 24-bit color, or 8-bit color,
843  * and might expect pixels to be in a certain format.
844  *
845  * Call g_list_free() on the return value when you're finished with it.
846  *
847  * Return value: (transfer container) (element-type GdkVisual):
848  *     a list of visuals; the list must be freed, but not its contents
849  *
850  * Since: 2.2
851  **/
852 GList *
853 gdk_screen_list_visuals (GdkScreen *screen)
854 {
855   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
856
857   return GDK_SCREEN_GET_CLASS (screen)->list_visuals (screen);
858 }
859
860 /**
861  * gdk_screen_get_system_visual:
862  * @screen: a #GdkScreen.
863  *
864  * Get the system's default visual for @screen.
865  * This is the visual for the root window of the display.
866  * The return value should not be freed.
867  *
868  * Return value: (transfer none): the system visual
869  *
870  * Since: 2.2
871  **/
872 GdkVisual *
873 gdk_screen_get_system_visual (GdkScreen * screen)
874 {
875   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
876
877   return GDK_SCREEN_GET_CLASS (screen)->get_system_visual (screen);
878 }
879
880 /**
881  * gdk_screen_get_rgba_visual:
882  * @screen: a #GdkScreen
883  *
884  * Gets a visual to use for creating windows with an alpha channel.
885  * The windowing system on which GTK+ is running
886  * may not support this capability, in which case %NULL will
887  * be returned. Even if a non-%NULL value is returned, its
888  * possible that the window's alpha channel won't be honored
889  * when displaying the window on the screen: in particular, for
890  * X an appropriate windowing manager and compositing manager
891  * must be running to provide appropriate display.
892  *
893  * This functionality is not implemented in the Windows backend.
894  *
895  * For setting an overall opacity for a top-level window, see
896  * gdk_window_set_opacity().
897  *
898  * Return value: (transfer none): a visual to use for windows with an
899  *     alpha channel or %NULL if the capability is not available.
900  *
901  * Since: 2.8
902  **/
903 GdkVisual *
904 gdk_screen_get_rgba_visual (GdkScreen *screen)
905 {
906   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
907
908   return GDK_SCREEN_GET_CLASS (screen)->get_rgba_visual (screen);
909 }
910
911 /**
912  * gdk_screen_is_composited:
913  * @screen: a #GdkScreen
914  *
915  * Returns whether windows with an RGBA visual can reasonably
916  * be expected to have their alpha channel drawn correctly on
917  * the screen.
918  *
919  * On X11 this function returns whether a compositing manager is
920  * compositing @screen.
921  *
922  * Return value: Whether windows with RGBA visuals can reasonably be
923  * expected to have their alpha channels drawn correctly on the screen.
924  *
925  * Since: 2.10
926  **/
927 gboolean
928 gdk_screen_is_composited (GdkScreen *screen)
929 {
930   g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
931
932   return GDK_SCREEN_GET_CLASS (screen)->is_composited (screen);
933 }
934
935 /**
936  * gdk_screen_make_display_name:
937  * @screen: a #GdkScreen
938  *
939  * Determines the name to pass to gdk_display_open() to get
940  * a #GdkDisplay with this screen as the default screen.
941  *
942  * Return value: a newly allocated string, free with g_free()
943  *
944  * Since: 2.2
945  **/
946 gchar *
947 gdk_screen_make_display_name (GdkScreen *screen)
948 {
949   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
950
951   return GDK_SCREEN_GET_CLASS (screen)->make_display_name (screen);
952 }
953
954 /**
955  * gdk_screen_get_active_window:
956  * @screen: a #GdkScreen
957  *
958  * Returns the screen's currently active window.
959  *
960  * On X11, this is done by inspecting the _NET_ACTIVE_WINDOW property
961  * on the root window, as described in the <ulink
962  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
963  * Manager Hints</ulink>. If there is no currently currently active
964  * window, or the window manager does not support the
965  * _NET_ACTIVE_WINDOW hint, this function returns %NULL.
966  *
967  * On other platforms, this function may return %NULL, depending on whether
968  * it is implementable on that platform.
969  *
970  * The returned window should be unrefed using g_object_unref() when
971  * no longer needed.
972  *
973  * Return value: (transfer full): the currently active window, or %NULL.
974  *
975  * Since: 2.10
976  **/
977 GdkWindow *
978 gdk_screen_get_active_window (GdkScreen *screen)
979 {
980   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
981
982   return GDK_SCREEN_GET_CLASS (screen)->get_active_window (screen);
983 }
984
985 /**
986  * gdk_screen_get_window_stack:
987  * @screen: a #GdkScreen
988  *
989  * Returns a #GList of #GdkWindow<!-- -->s representing the current
990  * window stack.
991  *
992  * On X11, this is done by inspecting the _NET_CLIENT_LIST_STACKING
993  * property on the root window, as described in the <ulink
994  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
995  * Manager Hints</ulink>. If the window manager does not support the
996  * _NET_CLIENT_LIST_STACKING hint, this function returns %NULL.
997  *
998  * On other platforms, this function may return %NULL, depending on whether
999  * it is implementable on that platform.
1000  *
1001  * The returned list is newly allocated and owns references to the
1002  * windows it contains, so it should be freed using g_list_free() and
1003  * its windows unrefed using g_object_unref() when no longer needed.
1004  *
1005  * Return value: (transfer full) (element-type GdkWindow):
1006  *     a list of #GdkWindow<!-- -->s for the current window stack,
1007  *               or %NULL.
1008  *
1009  * Since: 2.10
1010  **/
1011 GList *
1012 gdk_screen_get_window_stack (GdkScreen *screen)
1013 {
1014   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
1015
1016   return GDK_SCREEN_GET_CLASS (screen)->get_window_stack (screen);
1017 }
1018
1019 /**
1020  * gdk_screen_get_setting:
1021  * @screen: the #GdkScreen where the setting is located
1022  * @name: the name of the setting
1023  * @value: location to store the value of the setting
1024  *
1025  * Retrieves a desktop-wide setting such as double-click time
1026  * for the #GdkScreen @screen.
1027  *
1028  * FIXME needs a list of valid settings here, or a link to
1029  * more information.
1030  *
1031  * Returns: %TRUE if the setting existed and a value was stored
1032  *   in @value, %FALSE otherwise.
1033  *
1034  * Since: 2.2
1035  **/
1036 gboolean
1037 gdk_screen_get_setting (GdkScreen   *screen,
1038                         const gchar *name,
1039                         GValue      *value)
1040 {
1041   g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
1042   g_return_val_if_fail (name != NULL, FALSE);
1043   g_return_val_if_fail (value != NULL, FALSE);
1044
1045   return GDK_SCREEN_GET_CLASS (screen)->get_setting (screen, name, value);
1046 }