]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkscreen-x11.c
Add some missing introspection annotations
[~andy/gtk] / gdk / x11 / gdkscreen-x11.c
1  /*
2  * gdkscreen-x11.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 <stdlib.h>
27 #include <string.h>
28
29 #include <glib.h>
30 #include "gdkscreen.h"
31 #include "gdkscreen-x11.h"
32 #include "gdkdisplay.h"
33 #include "gdkdisplay-x11.h"
34 #include "gdkx.h"
35 #include "gdkalias.h"
36
37 #include <X11/Xatom.h>
38
39 #ifdef HAVE_SOLARIS_XINERAMA
40 #include <X11/extensions/xinerama.h>
41 #endif
42 #ifdef HAVE_XFREE_XINERAMA
43 #include <X11/extensions/Xinerama.h>
44 #endif
45
46 #ifdef HAVE_RANDR
47 #include <X11/extensions/Xrandr.h>
48 #endif
49
50 #ifdef HAVE_XFIXES
51 #include <X11/extensions/Xfixes.h>
52 #endif
53
54 static void         gdk_screen_x11_dispose     (GObject           *object);
55 static void         gdk_screen_x11_finalize    (GObject           *object);
56 static void         init_randr_support         (GdkScreen         *screen);
57 static void         deinit_multihead           (GdkScreen         *screen);
58
59 enum
60 {
61   WINDOW_MANAGER_CHANGED,
62   LAST_SIGNAL
63 };
64
65 static guint signals[LAST_SIGNAL] = { 0 };
66
67 G_DEFINE_TYPE (GdkScreenX11, _gdk_screen_x11, GDK_TYPE_SCREEN)
68
69 struct _GdkX11Monitor
70 {
71   GdkRectangle  geometry;
72   XID           output;
73   int           width_mm;
74   int           height_mm;
75   char *        output_name;
76   char *        manufacturer;
77 };
78
79 static void
80 _gdk_screen_x11_class_init (GdkScreenX11Class *klass)
81 {
82   GObjectClass *object_class = G_OBJECT_CLASS (klass);
83   
84   object_class->dispose = gdk_screen_x11_dispose;
85   object_class->finalize = gdk_screen_x11_finalize;
86
87   signals[WINDOW_MANAGER_CHANGED] =
88     g_signal_new (g_intern_static_string ("window_manager_changed"),
89                   G_OBJECT_CLASS_TYPE (object_class),
90                   G_SIGNAL_RUN_LAST,
91                   G_STRUCT_OFFSET (GdkScreenX11Class, window_manager_changed),
92                   NULL, NULL,
93                   g_cclosure_marshal_VOID__VOID,
94                   G_TYPE_NONE,
95                   0);
96 }
97
98 static void
99 _gdk_screen_x11_init (GdkScreenX11 *screen)
100 {
101 }
102
103 /**
104  * gdk_screen_get_display:
105  * @screen: a #GdkScreen
106  *
107  * Gets the display to which the @screen belongs.
108  * 
109  * Returns: the display to which @screen belongs
110  *
111  * Since: 2.2
112  **/
113 GdkDisplay *
114 gdk_screen_get_display (GdkScreen *screen)
115 {
116   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
117
118   return GDK_SCREEN_X11 (screen)->display;
119 }
120 /**
121  * gdk_screen_get_width:
122  * @screen: a #GdkScreen
123  *
124  * Gets the width of @screen in pixels
125  * 
126  * Returns: the width of @screen in pixels.
127  *
128  * Since: 2.2
129  **/
130 gint
131 gdk_screen_get_width (GdkScreen *screen)
132 {
133   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
134
135   return WidthOfScreen (GDK_SCREEN_X11 (screen)->xscreen);
136 }
137
138 /**
139  * gdk_screen_get_height:
140  * @screen: a #GdkScreen
141  *
142  * Gets the height of @screen in pixels
143  * 
144  * Returns: the height of @screen in pixels.
145  *
146  * Since: 2.2
147  **/
148 gint
149 gdk_screen_get_height (GdkScreen *screen)
150 {
151   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
152
153   return HeightOfScreen (GDK_SCREEN_X11 (screen)->xscreen);
154 }
155
156 /**
157  * gdk_screen_get_width_mm:
158  * @screen: a #GdkScreen
159  *
160  * Gets the width of @screen in millimeters. 
161  * Note that on some X servers this value will not be correct.
162  * 
163  * Returns: the width of @screen in millimeters.
164  *
165  * Since: 2.2
166  **/
167 gint
168 gdk_screen_get_width_mm (GdkScreen *screen)
169 {
170   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);  
171
172   return WidthMMOfScreen (GDK_SCREEN_X11 (screen)->xscreen);
173 }
174
175 /**
176  * gdk_screen_get_height_mm:
177  * @screen: a #GdkScreen
178  *
179  * Returns the height of @screen in millimeters. 
180  * Note that on some X servers this value will not be correct.
181  * 
182  * Returns: the heigth of @screen in millimeters.
183  *
184  * Since: 2.2
185  **/
186 gint
187 gdk_screen_get_height_mm (GdkScreen *screen)
188 {
189   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
190
191   return HeightMMOfScreen (GDK_SCREEN_X11 (screen)->xscreen);
192 }
193
194 /**
195  * gdk_screen_get_number:
196  * @screen: a #GdkScreen
197  *
198  * Gets the index of @screen among the screens in the display
199  * to which it belongs. (See gdk_screen_get_display())
200  * 
201  * Returns: the index
202  *
203  * Since: 2.2
204  **/
205 gint
206 gdk_screen_get_number (GdkScreen *screen)
207 {
208   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
209   
210   return GDK_SCREEN_X11 (screen)->screen_num;
211 }
212
213 /**
214  * gdk_screen_get_root_window:
215  * @screen: a #GdkScreen
216  *
217  * Gets the root window of @screen.
218  *
219  * Returns: (transfer none): the root window
220  *
221  * Since: 2.2
222  **/
223 GdkWindow *
224 gdk_screen_get_root_window (GdkScreen *screen)
225 {
226   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
227
228   return GDK_SCREEN_X11 (screen)->root_window;
229 }
230
231 /**
232  * gdk_screen_get_default_colormap:
233  * @screen: a #GdkScreen
234  *
235  * Gets the default colormap for @screen.
236  * 
237  * Returns: (transfer none): the default #GdkColormap.
238  *
239  * Since: 2.2
240  **/
241 GdkColormap *
242 gdk_screen_get_default_colormap (GdkScreen *screen)
243 {
244   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
245
246   return GDK_SCREEN_X11 (screen)->default_colormap;
247 }
248
249 /**
250  * gdk_screen_set_default_colormap:
251  * @screen: a #GdkScreen
252  * @colormap: a #GdkColormap
253  *
254  * Sets the default @colormap for @screen.
255  *
256  * Since: 2.2
257  **/
258 void
259 gdk_screen_set_default_colormap (GdkScreen   *screen,
260                                  GdkColormap *colormap)
261 {
262   GdkColormap *old_colormap;
263   
264   g_return_if_fail (GDK_IS_SCREEN (screen));
265   g_return_if_fail (GDK_IS_COLORMAP (colormap));
266
267   old_colormap = GDK_SCREEN_X11 (screen)->default_colormap;
268
269   GDK_SCREEN_X11 (screen)->default_colormap = g_object_ref (colormap);
270   
271   if (old_colormap)
272     g_object_unref (old_colormap);
273 }
274
275 static void
276 gdk_screen_x11_dispose (GObject *object)
277 {
278   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (object);
279
280   _gdk_x11_events_uninit_screen (GDK_SCREEN (object));
281
282   if (screen_x11->default_colormap)
283     {
284       g_object_unref (screen_x11->default_colormap);
285       screen_x11->default_colormap = NULL;
286     }
287
288   if (screen_x11->system_colormap)
289     {
290       g_object_unref (screen_x11->system_colormap);
291       screen_x11->system_colormap = NULL;
292     }
293
294   if (screen_x11->rgba_colormap)
295     {
296       g_object_unref (screen_x11->rgba_colormap);
297       screen_x11->rgba_colormap = NULL;
298     }
299
300   if (screen_x11->root_window)
301     _gdk_window_destroy (screen_x11->root_window, TRUE);
302
303   G_OBJECT_CLASS (_gdk_screen_x11_parent_class)->dispose (object);
304
305   screen_x11->xdisplay = NULL;
306   screen_x11->xscreen = NULL;
307   screen_x11->screen_num = -1;
308   screen_x11->xroot_window = None;
309   screen_x11->wmspec_check_window = None;
310 }
311
312 static void
313 gdk_screen_x11_finalize (GObject *object)
314 {
315   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (object);
316   gint          i;
317
318   if (screen_x11->root_window)
319     g_object_unref (screen_x11->root_window);
320
321   if (screen_x11->renderer)
322     g_object_unref (screen_x11->renderer);
323
324   /* Visual Part */
325   for (i = 0; i < screen_x11->nvisuals; i++)
326     g_object_unref (screen_x11->visuals[i]);
327   g_free (screen_x11->visuals);
328   g_hash_table_destroy (screen_x11->visual_hash);
329
330   g_free (screen_x11->window_manager_name);
331
332   g_hash_table_destroy (screen_x11->colormap_hash);
333
334   deinit_multihead (GDK_SCREEN (object));
335   
336   G_OBJECT_CLASS (_gdk_screen_x11_parent_class)->finalize (object);
337 }
338
339 /**
340  * gdk_screen_get_n_monitors:
341  * @screen: a #GdkScreen
342  *
343  * Returns the number of monitors which @screen consists of.
344  *
345  * Returns: number of monitors which @screen consists of
346  *
347  * Since: 2.2
348  */
349 gint
350 gdk_screen_get_n_monitors (GdkScreen *screen)
351 {
352   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
353
354   return GDK_SCREEN_X11 (screen)->n_monitors;
355 }
356
357 /**
358  * gdk_screen_get_primary_monitor:
359  * @screen: a #GdkScreen.
360  *
361  * Gets the primary monitor for @screen.  The primary monitor
362  * is considered the monitor where the 'main desktop' lives.
363  * While normal application windows typically allow the window
364  * manager to place the windows, specialized desktop applications
365  * such as panels should place themselves on the primary monitor.
366  *
367  * If no primary monitor is configured by the user, the return value
368  * will be 0, defaulting to the first monitor.
369  *
370  * Returns: An integer index for the primary monitor, or 0 if none is configured.
371  *
372  * Since: 2.20
373  */
374 gint
375 gdk_screen_get_primary_monitor (GdkScreen *screen)
376 {
377   g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
378
379   return GDK_SCREEN_X11 (screen)->primary_monitor;
380 }
381
382 /**
383  * gdk_screen_get_monitor_width_mm:
384  * @screen: a #GdkScreen
385  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
386  *
387  * Gets the width in millimeters of the specified monitor, if available.
388  *
389  * Returns: the width of the monitor, or -1 if not available
390  *
391  * Since: 2.14
392  */
393 gint
394 gdk_screen_get_monitor_width_mm (GdkScreen *screen,
395                                  gint       monitor_num)
396 {
397   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
398
399   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
400   g_return_val_if_fail (monitor_num >= 0, -1);
401   g_return_val_if_fail (monitor_num < screen_x11->n_monitors, -1);
402
403   return screen_x11->monitors[monitor_num].width_mm;
404 }
405
406 /**
407  * gdk_screen_get_monitor_height_mm:
408  * @screen: a #GdkScreen
409  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
410  *
411  * Gets the height in millimeters of the specified monitor.
412  *
413  * Returns: the height of the monitor, or -1 if not available
414  *
415  * Since: 2.14
416  */
417 gint
418 gdk_screen_get_monitor_height_mm (GdkScreen *screen,
419                                   gint       monitor_num)
420 {
421   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
422
423   g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
424   g_return_val_if_fail (monitor_num >= 0, -1);
425   g_return_val_if_fail (monitor_num < screen_x11->n_monitors, -1);
426
427   return screen_x11->monitors[monitor_num].height_mm;
428 }
429
430 /**
431  * gdk_screen_get_monitor_plug_name:
432  * @screen: a #GdkScreen
433  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
434  *
435  * Returns the output name of the specified monitor.
436  * Usually something like VGA, DVI, or TV, not the actual
437  * product name of the display device.
438  *
439  * Returns: a newly-allocated string containing the name of the monitor,
440  *   or %NULL if the name cannot be determined
441  *
442  * Since: 2.14
443  */
444 gchar *
445 gdk_screen_get_monitor_plug_name (GdkScreen *screen,
446                                   gint       monitor_num)
447 {
448   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
449
450   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
451   g_return_val_if_fail (monitor_num >= 0, NULL);
452   g_return_val_if_fail (monitor_num < screen_x11->n_monitors, NULL);
453
454   return g_strdup (screen_x11->monitors[monitor_num].output_name);
455 }
456
457 /**
458  * gdk_x11_screen_get_monitor_output:
459  * @screen: a #GdkScreen
460  * @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
461  *
462  * Gets the XID of the specified output/monitor.
463  * If the X server does not support version 1.2 of the RANDR
464  * extension, 0 is returned.
465  *
466  * Returns: the XID of the monitor
467  *
468  * Since: 2.14
469  */
470 XID
471 gdk_x11_screen_get_monitor_output (GdkScreen *screen,
472                                    gint       monitor_num)
473 {
474   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
475
476   g_return_val_if_fail (GDK_IS_SCREEN (screen), None);
477   g_return_val_if_fail (monitor_num >= 0, None);
478   g_return_val_if_fail (monitor_num < screen_x11->n_monitors, None);
479
480   return screen_x11->monitors[monitor_num].output;
481 }
482
483 /**
484  * gdk_screen_get_monitor_geometry:
485  * @screen : a #GdkScreen
486  * @monitor_num: the monitor number, between 0 and gdk_screen_get_n_monitors (screen)
487  * @dest : a #GdkRectangle to be filled with the monitor geometry
488  *
489  * Retrieves the #GdkRectangle representing the size and position of
490  * the individual monitor within the entire screen area.
491  *
492  * Note that the size of the entire screen area can be retrieved via
493  * gdk_screen_get_width() and gdk_screen_get_height().
494  *
495  * Since: 2.2
496  */
497 void
498 gdk_screen_get_monitor_geometry (GdkScreen    *screen,
499                                  gint          monitor_num,
500                                  GdkRectangle *dest)
501 {
502   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
503
504   g_return_if_fail (GDK_IS_SCREEN (screen));
505   g_return_if_fail (monitor_num >= 0);
506   g_return_if_fail (monitor_num < screen_x11->n_monitors);
507
508   if (dest)
509     *dest = screen_x11->monitors[monitor_num].geometry;
510 }
511
512 /**
513  * gdk_screen_get_rgba_colormap:
514  * @screen: a #GdkScreen.
515  * 
516  * Gets a colormap to use for creating windows or pixmaps with an
517  * alpha channel. The windowing system on which GTK+ is running
518  * may not support this capability, in which case %NULL will
519  * be returned. Even if a non-%NULL value is returned, its
520  * possible that the window's alpha channel won't be honored
521  * when displaying the window on the screen: in particular, for
522  * X an appropriate windowing manager and compositing manager
523  * must be running to provide appropriate display.
524  *
525  * This functionality is not implemented in the Windows backend.
526  *
527  * For setting an overall opacity for a top-level window, see
528  * gdk_window_set_opacity().
529
530  * Return value: (transfer none): a colormap to use for windows with
531  *     an alpha channel or %NULL if the capability is not available.
532  *
533  * Since: 2.8
534  **/
535 GdkColormap *
536 gdk_screen_get_rgba_colormap (GdkScreen *screen)
537 {
538   GdkScreenX11 *screen_x11;
539
540   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
541
542   screen_x11 = GDK_SCREEN_X11 (screen);
543
544   if (!screen_x11->rgba_visual)
545     return NULL;
546
547   if (!screen_x11->rgba_colormap)
548     screen_x11->rgba_colormap = gdk_colormap_new (screen_x11->rgba_visual,
549                                                   FALSE);
550   
551   return screen_x11->rgba_colormap;
552 }
553
554 /**
555  * gdk_screen_get_rgba_visual:
556  * @screen: a #GdkScreen
557  * 
558  * Gets a visual to use for creating windows or pixmaps with an
559  * alpha channel. See the docs for gdk_screen_get_rgba_colormap()
560  * for caveats.
561  * 
562  * Return value: (transfer none): a visual to use for windows with an
563  *     alpha channel or %NULL if the capability is not available.
564  *
565  * Since: 2.8
566  **/
567 GdkVisual *
568 gdk_screen_get_rgba_visual (GdkScreen *screen)
569 {
570   GdkScreenX11 *screen_x11;
571
572   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
573
574   screen_x11 = GDK_SCREEN_X11 (screen);
575
576   return screen_x11->rgba_visual;
577 }
578
579 /**
580  * gdk_x11_screen_get_xscreen:
581  * @screen: a #GdkScreen.
582  * @returns: (transfer none): an Xlib <type>Screen*</type>
583  *
584  * Returns the screen of a #GdkScreen.
585  *
586  * Since: 2.2
587  */
588 Screen *
589 gdk_x11_screen_get_xscreen (GdkScreen *screen)
590 {
591   return GDK_SCREEN_X11 (screen)->xscreen;
592 }
593
594 /**
595  * gdk_x11_screen_get_screen_number:
596  * @screen: a #GdkScreen.
597  * @returns: the position of @screen among the screens of
598  *   its display.
599  *
600  * Returns the index of a #GdkScreen.
601  *
602  * Since: 2.2
603  */
604 int
605 gdk_x11_screen_get_screen_number (GdkScreen *screen)
606 {
607   return GDK_SCREEN_X11 (screen)->screen_num;
608 }
609
610 static gboolean
611 check_is_composited (GdkDisplay *display,
612                      GdkScreenX11 *screen_x11)
613 {
614   Atom xselection = gdk_x11_atom_to_xatom_for_display (display, screen_x11->cm_selection_atom);
615   Window xwindow;
616   
617   xwindow = XGetSelectionOwner (GDK_DISPLAY_XDISPLAY (display), xselection);
618
619   return xwindow != None;
620 }
621
622 static GdkAtom
623 make_cm_atom (int screen_number)
624 {
625   gchar *name = g_strdup_printf ("_NET_WM_CM_S%d", screen_number);
626   GdkAtom atom = gdk_atom_intern (name, FALSE);
627   g_free (name);
628   return atom;
629 }
630
631 static void
632 init_monitor_geometry (GdkX11Monitor *monitor,
633                        int x, int y, int width, int height)
634 {
635   monitor->geometry.x = x;
636   monitor->geometry.y = y;
637   monitor->geometry.width = width;
638   monitor->geometry.height = height;
639
640   monitor->output = None;
641   monitor->width_mm = -1;
642   monitor->height_mm = -1;
643   monitor->output_name = NULL;
644   monitor->manufacturer = NULL;
645 }
646
647 static gboolean
648 init_fake_xinerama (GdkScreen *screen)
649 {
650 #ifdef G_ENABLE_DEBUG
651   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
652   XSetWindowAttributes atts;
653   Window win;
654   gint w, h;
655
656   if (!(_gdk_debug_flags & GDK_DEBUG_XINERAMA))
657     return FALSE;
658   
659   /* Fake Xinerama mode by splitting the screen into 4 monitors.
660    * Also draw a little cross to make the monitor boundaries visible.
661    */
662   w = WidthOfScreen (screen_x11->xscreen);
663   h = HeightOfScreen (screen_x11->xscreen);
664
665   screen_x11->n_monitors = 4;
666   screen_x11->monitors = g_new0 (GdkX11Monitor, 4);
667   init_monitor_geometry (&screen_x11->monitors[0], 0, 0, w / 2, h / 2);
668   init_monitor_geometry (&screen_x11->monitors[1], w / 2, 0, w / 2, h / 2);
669   init_monitor_geometry (&screen_x11->monitors[2], 0, h / 2, w / 2, h / 2);
670   init_monitor_geometry (&screen_x11->monitors[3], w / 2, h / 2, w / 2, h / 2);
671   
672   atts.override_redirect = 1;
673   atts.background_pixel = WhitePixel(GDK_SCREEN_XDISPLAY (screen), 
674                                      screen_x11->screen_num);
675   win = XCreateWindow(GDK_SCREEN_XDISPLAY (screen), 
676                       screen_x11->xroot_window, 0, h / 2, w, 1, 0, 
677                       DefaultDepth(GDK_SCREEN_XDISPLAY (screen), 
678                                    screen_x11->screen_num),
679                       InputOutput, 
680                       DefaultVisual(GDK_SCREEN_XDISPLAY (screen), 
681                                     screen_x11->screen_num),
682                       CWOverrideRedirect|CWBackPixel, 
683                       &atts);
684   XMapRaised(GDK_SCREEN_XDISPLAY (screen), win); 
685   win = XCreateWindow(GDK_SCREEN_XDISPLAY (screen), 
686                       screen_x11->xroot_window, w/2 , 0, 1, h, 0, 
687                       DefaultDepth(GDK_SCREEN_XDISPLAY (screen), 
688                                    screen_x11->screen_num),
689                       InputOutput, 
690                       DefaultVisual(GDK_SCREEN_XDISPLAY (screen), 
691                                     screen_x11->screen_num),
692                       CWOverrideRedirect|CWBackPixel, 
693                       &atts);
694   XMapRaised(GDK_SCREEN_XDISPLAY (screen), win);
695   return TRUE;
696 #endif
697   
698   return FALSE;
699 }
700
701 static void
702 free_monitors (GdkX11Monitor *monitors,
703                gint           n_monitors)
704 {
705   int i;
706
707   for (i = 0; i < n_monitors; ++i)
708     {
709       g_free (monitors[i].output_name);
710       g_free (monitors[i].manufacturer);
711     }
712
713   g_free (monitors);
714 }
715
716 static int
717 monitor_compare_function (GdkX11Monitor *monitor1,
718                           GdkX11Monitor *monitor2)
719 {
720   /* Sort the leftmost/topmost monitors first.
721    * For "cloned" monitors, sort the bigger ones first
722    * (giving preference to taller monitors over wider
723    * monitors)
724    */
725
726   if (monitor1->geometry.x != monitor2->geometry.x)
727     return monitor1->geometry.x - monitor2->geometry.x;
728
729   if (monitor1->geometry.y != monitor2->geometry.y)
730     return monitor1->geometry.y - monitor2->geometry.y;
731
732   if (monitor1->geometry.height != monitor2->geometry.height)
733     return - (monitor1->geometry.height - monitor2->geometry.height);
734
735   if (monitor1->geometry.width != monitor2->geometry.width)
736     return - (monitor1->geometry.width - monitor2->geometry.width);
737
738   return 0;
739 }
740
741 static gboolean
742 init_randr13 (GdkScreen *screen)
743 {
744 #ifdef HAVE_RANDR
745   GdkDisplay *display = gdk_screen_get_display (screen);
746   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
747   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
748   Display *dpy = GDK_SCREEN_XDISPLAY (screen);
749   XRRScreenResources *resources;
750   RROutput primary_output;
751   int i;
752   GArray *monitors;
753   gboolean randr12_compat = FALSE;
754
755   if (!display_x11->have_randr13)
756       return FALSE;
757
758   resources = XRRGetScreenResourcesCurrent (screen_x11->xdisplay,
759                                             screen_x11->xroot_window);
760   if (!resources)
761     return FALSE;
762
763   monitors = g_array_sized_new (FALSE, TRUE, sizeof (GdkX11Monitor),
764                                 resources->noutput);
765
766   primary_output = XRRGetOutputPrimary (screen_x11->xdisplay,
767                                         screen_x11->xroot_window);
768
769   for (i = 0; i < resources->noutput; ++i)
770     {
771       XRROutputInfo *output =
772         XRRGetOutputInfo (dpy, resources, resources->outputs[i]);
773
774       if (resources->outputs[i] == primary_output)
775         {
776           screen_x11->primary_monitor = i;
777         }
778
779       /* Non RandR1.2 X driver have output name "default" */
780       randr12_compat |= !g_strcmp0(output->name, "default");
781
782       if (output->connection == RR_Disconnected)
783         {
784           XRRFreeOutputInfo (output);
785           continue;
786         }
787
788       if (output->crtc)
789         {
790           GdkX11Monitor monitor;
791           XRRCrtcInfo *crtc = XRRGetCrtcInfo (dpy, resources, output->crtc);
792
793           monitor.geometry.x = crtc->x;
794           monitor.geometry.y = crtc->y;
795           monitor.geometry.width = crtc->width;
796           monitor.geometry.height = crtc->height;
797
798           monitor.output = resources->outputs[i];
799           monitor.width_mm = output->mm_width;
800           monitor.height_mm = output->mm_height;
801           monitor.output_name = g_strdup (output->name);
802           /* FIXME: need EDID parser */
803           monitor.manufacturer = NULL;
804
805           g_array_append_val (monitors, monitor);
806
807           XRRFreeCrtcInfo (crtc);
808         }
809
810       XRRFreeOutputInfo (output);
811     }
812
813   XRRFreeScreenResources (resources);
814
815   /* non RandR 1.2 X driver doesn't return any usable multihead data */
816   if (randr12_compat)
817     {
818       guint n_monitors = monitors->len;
819
820       free_monitors ((GdkX11Monitor *)g_array_free (monitors, FALSE),
821                      n_monitors);
822
823       return FALSE;
824     }
825
826   g_array_sort (monitors,
827                 (GCompareFunc) monitor_compare_function);
828   screen_x11->n_monitors = monitors->len;
829   screen_x11->monitors = (GdkX11Monitor *)g_array_free (monitors, FALSE);
830
831   return screen_x11->n_monitors > 0;
832 #endif
833   
834   return FALSE;
835 }
836
837 static gboolean
838 init_solaris_xinerama (GdkScreen *screen)
839 {
840 #ifdef HAVE_SOLARIS_XINERAMA
841   Display *dpy = GDK_SCREEN_XDISPLAY (screen);
842   int screen_no = gdk_screen_get_number (screen);
843   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
844   XRectangle monitors[MAXFRAMEBUFFERS];
845   unsigned char hints[16];
846   gint result;
847   int n_monitors;
848   int i;
849   
850   if (!XineramaGetState (dpy, screen_no))
851     return FALSE;
852
853   result = XineramaGetInfo (dpy, screen_no, monitors, hints, &n_monitors);
854
855   /* Yes I know it should be Success but the current implementation 
856    * returns the num of monitor
857    */
858   if (result == 0)
859     {
860       return FALSE;
861     }
862
863   screen_x11->monitors = g_new0 (GdkX11Monitor, n_monitors);
864   screen_x11->n_monitors = n_monitors;
865
866   for (i = 0; i < n_monitors; i++)
867     {
868       init_monitor_geometry (&screen_x11->monitors[i],
869                              monitors[i].x, monitors[i].y,
870                              monitors[i].width, monitors[i].height);
871     }
872   
873   return TRUE;
874 #endif /* HAVE_SOLARIS_XINERAMA */
875
876   return FALSE;
877 }
878
879 static gboolean
880 init_xfree_xinerama (GdkScreen *screen)
881 {
882 #ifdef HAVE_XFREE_XINERAMA
883   Display *dpy = GDK_SCREEN_XDISPLAY (screen);
884   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
885   XineramaScreenInfo *monitors;
886   int i, n_monitors;
887   
888   if (!XineramaIsActive (dpy))
889     return FALSE;
890
891   monitors = XineramaQueryScreens (dpy, &n_monitors);
892   
893   if (n_monitors <= 0 || monitors == NULL)
894     {
895       /* If Xinerama doesn't think we have any monitors, try acting as
896        * though we had no Xinerama. If the "no monitors" condition
897        * is because XRandR 1.2 is currently switching between CRTCs,
898        * we'll be notified again when we have our monitor back,
899        * and can go back into Xinerama-ish mode at that point.
900        */
901       if (monitors)
902         XFree (monitors);
903       
904       return FALSE;
905     }
906
907   screen_x11->n_monitors = n_monitors;
908   screen_x11->monitors = g_new0 (GdkX11Monitor, n_monitors);
909   
910   for (i = 0; i < n_monitors; ++i)
911     {
912       init_monitor_geometry (&screen_x11->monitors[i],
913                              monitors[i].x_org, monitors[i].y_org,
914                              monitors[i].width, monitors[i].height);
915     }
916   
917   XFree (monitors);
918   
919   return TRUE;
920 #endif /* HAVE_XFREE_XINERAMA */
921   
922   return FALSE;
923 }
924
925 static void
926 deinit_multihead (GdkScreen *screen)
927 {
928   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
929
930   free_monitors (screen_x11->monitors, screen_x11->n_monitors);
931
932   screen_x11->n_monitors = 0;
933   screen_x11->monitors = NULL;
934 }
935
936 static gboolean
937 compare_monitor (GdkX11Monitor *m1,
938                  GdkX11Monitor *m2)
939 {
940   if (m1->geometry.x != m2->geometry.x ||
941       m1->geometry.y != m2->geometry.y ||
942       m1->geometry.width != m2->geometry.width ||
943       m1->geometry.height != m2->geometry.height)
944     return FALSE;
945
946   if (m1->width_mm != m2->width_mm ||
947       m1->height_mm != m2->height_mm)
948     return FALSE;
949
950   if (g_strcmp0 (m1->output_name, m2->output_name) != 0)
951     return FALSE;
952
953   if (g_strcmp0 (m1->manufacturer, m2->manufacturer) != 0)
954     return FALSE;
955
956   return TRUE;
957 }
958
959 static gboolean
960 compare_monitors (GdkX11Monitor *monitors1, gint n_monitors1,
961                   GdkX11Monitor *monitors2, gint n_monitors2)
962 {
963   gint i;
964
965   if (n_monitors1 != n_monitors2)
966     return FALSE;
967
968   for (i = 0; i < n_monitors1; i++)
969     {
970       if (!compare_monitor (monitors1 + i, monitors2 + i))
971         return FALSE;
972     }
973
974   return TRUE;
975 }
976
977 static void
978 init_multihead (GdkScreen *screen)
979 {
980   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
981   int opcode, firstevent, firsterror;
982
983   /* There are four different implementations of multihead support: 
984    *
985    *  1. Fake Xinerama for debugging purposes
986    *  2. RandR 1.2
987    *  3. Solaris Xinerama
988    *  4. XFree86/Xorg Xinerama
989    *
990    * We use them in that order.
991    */
992   if (init_fake_xinerama (screen))
993     return;
994
995   if (init_randr13 (screen))
996     return;
997
998   if (XQueryExtension (GDK_SCREEN_XDISPLAY (screen), "XINERAMA",
999                        &opcode, &firstevent, &firsterror))
1000     {
1001       if (init_solaris_xinerama (screen))
1002         return;
1003       
1004       if (init_xfree_xinerama (screen))
1005         return;
1006     }
1007
1008   /* No multihead support of any kind for this screen */
1009   screen_x11->n_monitors = 1;
1010   screen_x11->monitors = g_new0 (GdkX11Monitor, 1);
1011
1012   init_monitor_geometry (screen_x11->monitors, 0, 0,
1013                          WidthOfScreen (screen_x11->xscreen),
1014                          HeightOfScreen (screen_x11->xscreen));
1015 }
1016
1017 GdkScreen *
1018 _gdk_x11_screen_new (GdkDisplay *display,
1019                      gint        screen_number) 
1020 {
1021   GdkScreen *screen;
1022   GdkScreenX11 *screen_x11;
1023   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
1024
1025   screen = g_object_new (GDK_TYPE_SCREEN_X11, NULL);
1026
1027   screen_x11 = GDK_SCREEN_X11 (screen);
1028   screen_x11->display = display;
1029   screen_x11->xdisplay = display_x11->xdisplay;
1030   screen_x11->xscreen = ScreenOfDisplay (display_x11->xdisplay, screen_number);
1031   screen_x11->screen_num = screen_number;
1032   screen_x11->xroot_window = RootWindow (display_x11->xdisplay,screen_number);
1033   screen_x11->wmspec_check_window = None;
1034   /* we want this to be always non-null */
1035   screen_x11->window_manager_name = g_strdup ("unknown");
1036   
1037   init_multihead (screen);
1038   init_randr_support (screen);
1039   
1040   _gdk_visual_init (screen);
1041   _gdk_windowing_window_init (screen);
1042   
1043   return screen;
1044 }
1045
1046 /*
1047  * It is important that we first request the selection
1048  * notification, and then setup the initial state of
1049  * is_composited to avoid a race condition here.
1050  */
1051 void
1052 _gdk_x11_screen_setup (GdkScreen *screen)
1053 {
1054   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
1055
1056   screen_x11->cm_selection_atom = make_cm_atom (screen_x11->screen_num);
1057   gdk_display_request_selection_notification (screen_x11->display,
1058                                               screen_x11->cm_selection_atom);
1059   screen_x11->is_composited = check_is_composited (screen_x11->display, screen_x11);
1060 }
1061
1062 /**
1063  * gdk_screen_is_composited:
1064  * @screen: a #GdkScreen
1065  * 
1066  * Returns whether windows with an RGBA visual can reasonably
1067  * be expected to have their alpha channel drawn correctly on
1068  * the screen.
1069  *
1070  * On X11 this function returns whether a compositing manager is
1071  * compositing @screen.
1072  * 
1073  * Return value: Whether windows with RGBA visuals can reasonably be
1074  * expected to have their alpha channels drawn correctly on the screen.
1075  * 
1076  * Since: 2.10
1077  **/
1078 gboolean
1079 gdk_screen_is_composited (GdkScreen *screen)
1080 {
1081   GdkScreenX11 *screen_x11;
1082
1083   g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
1084
1085   screen_x11 = GDK_SCREEN_X11 (screen);
1086
1087   return screen_x11->is_composited;
1088 }
1089
1090 static void
1091 init_randr_support (GdkScreen * screen)
1092 {
1093   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
1094   
1095   XSelectInput (GDK_SCREEN_XDISPLAY (screen),
1096                 screen_x11->xroot_window,
1097                 StructureNotifyMask);
1098
1099 #ifdef HAVE_RANDR
1100   XRRSelectInput (GDK_SCREEN_XDISPLAY (screen),
1101                   screen_x11->xroot_window,
1102                   RRScreenChangeNotifyMask      |
1103                   RRCrtcChangeNotifyMask        |
1104                   RROutputPropertyNotifyMask);
1105 #endif
1106 }
1107
1108 static void
1109 process_monitors_change (GdkScreen *screen)
1110 {
1111   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
1112   gint           n_monitors;
1113   GdkX11Monitor *monitors;
1114   gboolean changed;
1115
1116   n_monitors = screen_x11->n_monitors;
1117   monitors = screen_x11->monitors;
1118
1119   screen_x11->n_monitors = 0;
1120   screen_x11->monitors = NULL;
1121
1122   init_multihead (screen);
1123
1124   changed = !compare_monitors (monitors, n_monitors,
1125                                screen_x11->monitors, screen_x11->n_monitors);
1126
1127   free_monitors (monitors, n_monitors);
1128
1129   if (changed)
1130     g_signal_emit_by_name (screen, "monitors-changed");
1131 }
1132
1133 void
1134 _gdk_x11_screen_size_changed (GdkScreen *screen,
1135                               XEvent    *event)
1136 {
1137   gint width, height;
1138   GdkDisplayX11 *display_x11;
1139
1140   width = gdk_screen_get_width (screen);
1141   height = gdk_screen_get_height (screen);
1142
1143 #ifdef HAVE_RANDR
1144   display_x11 = GDK_DISPLAY_X11 (gdk_screen_get_display (screen));
1145
1146   if (display_x11->have_randr13 && event->type == ConfigureNotify)
1147     {
1148       g_signal_emit_by_name (screen, "monitors-changed");
1149       return;
1150     }
1151
1152   XRRUpdateConfiguration (event);
1153 #else
1154   if (event->type == ConfigureNotify)
1155     {
1156       XConfigureEvent *rcevent = (XConfigureEvent *) event;
1157       Screen        *xscreen = gdk_x11_screen_get_xscreen (screen);
1158       
1159       xscreen->width   = rcevent->width;
1160       xscreen->height  = rcevent->height;
1161     }
1162   else
1163     return;
1164 #endif
1165
1166   process_monitors_change (screen);
1167
1168   if (width != gdk_screen_get_width (screen) ||
1169       height != gdk_screen_get_height (screen))
1170     g_signal_emit_by_name (screen, "size-changed");
1171 }
1172
1173 void
1174 _gdk_x11_screen_window_manager_changed (GdkScreen *screen)
1175 {
1176   g_signal_emit (screen, signals[WINDOW_MANAGER_CHANGED], 0);
1177 }
1178
1179 void
1180 _gdk_x11_screen_process_owner_change (GdkScreen *screen,
1181                                       XEvent *event)
1182 {
1183 #ifdef HAVE_XFIXES
1184   XFixesSelectionNotifyEvent *selection_event = (XFixesSelectionNotifyEvent *)event;
1185   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (screen);
1186   Atom xcm_selection_atom = gdk_x11_atom_to_xatom_for_display (screen_x11->display,
1187                                                                screen_x11->cm_selection_atom);
1188
1189   if (selection_event->selection == xcm_selection_atom)
1190     {
1191       gboolean composited = selection_event->owner != None;
1192
1193       if (composited != screen_x11->is_composited)
1194         {
1195           screen_x11->is_composited = composited;
1196
1197           g_signal_emit_by_name (screen, "composited-changed");
1198         }
1199     }
1200 #endif
1201 }
1202
1203 /**
1204  * _gdk_windowing_substitute_screen_number:
1205  * @display_name : The name of a display, in the form used by 
1206  *                 gdk_display_open (). If %NULL a default value
1207  *                 will be used. On X11, this is derived from the DISPLAY
1208  *                 environment variable.
1209  * @screen_number : The number of a screen within the display
1210  *                  referred to by @display_name.
1211  *
1212  * Modifies a @display_name to make @screen_number the default
1213  * screen when the display is opened.
1214  *
1215  * Return value: a newly allocated string holding the resulting
1216  *   display name. Free with g_free().
1217  */
1218 gchar * 
1219 _gdk_windowing_substitute_screen_number (const gchar *display_name,
1220                                          gint         screen_number)
1221 {
1222   GString *str;
1223   gchar   *p;
1224
1225   if (!display_name)
1226     display_name = getenv ("DISPLAY");
1227
1228   if (!display_name)
1229     return NULL;
1230
1231   str = g_string_new (display_name);
1232
1233   p = strrchr (str->str, '.');
1234   if (p && p >  strchr (str->str, ':'))
1235     g_string_truncate (str, p - str->str);
1236
1237   g_string_append_printf (str, ".%d", screen_number);
1238
1239   return g_string_free (str, FALSE);
1240 }
1241
1242 /**
1243  * gdk_screen_make_display_name:
1244  * @screen: a #GdkScreen
1245  * 
1246  * Determines the name to pass to gdk_display_open() to get
1247  * a #GdkDisplay with this screen as the default screen.
1248  * 
1249  * Return value: a newly allocated string, free with g_free()
1250  *
1251  * Since: 2.2
1252  **/
1253 gchar *
1254 gdk_screen_make_display_name (GdkScreen *screen)
1255 {
1256   const gchar *old_display;
1257
1258   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
1259
1260   old_display = gdk_display_get_name (gdk_screen_get_display (screen));
1261
1262   return _gdk_windowing_substitute_screen_number (old_display, 
1263                                                   gdk_screen_get_number (screen));
1264 }
1265
1266 /**
1267  * gdk_screen_get_active_window
1268  * @screen: a #GdkScreen
1269  *
1270  * Returns the screen's currently active window.
1271  *
1272  * On X11, this is done by inspecting the _NET_ACTIVE_WINDOW property
1273  * on the root window, as described in the <ulink
1274  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
1275  * Manager Hints</ulink>. If there is no currently currently active
1276  * window, or the window manager does not support the
1277  * _NET_ACTIVE_WINDOW hint, this function returns %NULL.
1278  *
1279  * On other platforms, this function may return %NULL, depending on whether
1280  * it is implementable on that platform.
1281  *
1282  * The returned window should be unrefed using g_object_unref() when
1283  * no longer needed.
1284  *
1285  * Return value: the currently active window, or %NULL.
1286  *
1287  * Since: 2.10
1288  **/
1289 GdkWindow *
1290 gdk_screen_get_active_window (GdkScreen *screen)
1291 {
1292   GdkScreenX11 *screen_x11;
1293   GdkWindow *ret = NULL;
1294   Atom type_return;
1295   gint format_return;
1296   gulong nitems_return;
1297   gulong bytes_after_return;
1298   guchar *data = NULL;
1299
1300   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
1301
1302   if (!gdk_x11_screen_supports_net_wm_hint (screen,
1303                                             gdk_atom_intern_static_string ("_NET_ACTIVE_WINDOW")))
1304     return NULL;
1305
1306   screen_x11 = GDK_SCREEN_X11 (screen);
1307
1308   if (XGetWindowProperty (screen_x11->xdisplay, screen_x11->xroot_window,
1309                           gdk_x11_get_xatom_by_name_for_display (screen_x11->display,
1310                                                                  "_NET_ACTIVE_WINDOW"),
1311                           0, 1, False, XA_WINDOW, &type_return,
1312                           &format_return, &nitems_return,
1313                           &bytes_after_return, &data)
1314       == Success)
1315     {
1316       if ((type_return == XA_WINDOW) && (format_return == 32) && (data))
1317         {
1318           GdkNativeWindow window = *(GdkNativeWindow *) data;
1319
1320           if (window != None)
1321             {
1322               ret = gdk_window_foreign_new_for_display (screen_x11->display,
1323                                                         *(GdkNativeWindow *) data);
1324             }
1325         }
1326     }
1327
1328   if (data)
1329     XFree (data);
1330
1331   return ret;
1332 }
1333
1334 /**
1335  * gdk_screen_get_window_stack
1336  * @screen: a #GdkScreen
1337  *
1338  * Returns a #GList of #GdkWindow<!-- -->s representing the current
1339  * window stack.
1340  *
1341  * On X11, this is done by inspecting the _NET_CLIENT_LIST_STACKING
1342  * property on the root window, as described in the <ulink
1343  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
1344  * Manager Hints</ulink>. If the window manager does not support the
1345  * _NET_CLIENT_LIST_STACKING hint, this function returns %NULL.
1346  *
1347  * On other platforms, this function may return %NULL, depending on whether
1348  * it is implementable on that platform.
1349  *
1350  * The returned list is newly allocated and owns references to the
1351  * windows it contains, so it should be freed using g_list_free() and
1352  * its windows unrefed using g_object_unref() when no longer needed.
1353  *
1354  * Return value: a list of #GdkWindow<!-- -->s for the current window stack,
1355  *               or %NULL.
1356  *
1357  * Since: 2.10
1358  **/
1359 GList *
1360 gdk_screen_get_window_stack (GdkScreen *screen)
1361 {
1362   GdkScreenX11 *screen_x11;
1363   GList *ret = NULL;
1364   Atom type_return;
1365   gint format_return;
1366   gulong nitems_return;
1367   gulong bytes_after_return;
1368   guchar *data = NULL;
1369
1370   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
1371
1372   if (!gdk_x11_screen_supports_net_wm_hint (screen,
1373                                             gdk_atom_intern_static_string ("_NET_CLIENT_LIST_STACKING")))
1374     return NULL;
1375
1376   screen_x11 = GDK_SCREEN_X11 (screen);
1377
1378   if (XGetWindowProperty (screen_x11->xdisplay, screen_x11->xroot_window,
1379                           gdk_x11_get_xatom_by_name_for_display (screen_x11->display,
1380                                                                  "_NET_CLIENT_LIST_STACKING"),
1381                           0, G_MAXLONG, False, XA_WINDOW, &type_return,
1382                           &format_return, &nitems_return,
1383                           &bytes_after_return, &data)
1384       == Success)
1385     {
1386       if ((type_return == XA_WINDOW) && (format_return == 32) &&
1387           (data) && (nitems_return > 0))
1388         {
1389           gulong *stack = (gulong *) data;
1390           GdkWindow *win;
1391           int i;
1392
1393           for (i = 0; i < nitems_return; i++)
1394             {
1395               win = gdk_window_foreign_new_for_display (screen_x11->display,
1396                                                         (GdkNativeWindow)stack[i]);
1397
1398               if (win != NULL)
1399                 ret = g_list_append (ret, win);
1400             }
1401         }
1402     }
1403
1404   if (data)
1405     XFree (data);
1406
1407   return ret;
1408 }
1409
1410 #define __GDK_SCREEN_X11_C__
1411 #include "gdkaliasdef.c"