]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkscreen-x11.h
x11: Get rid of XSettingsClient object
[~andy/gtk] / gdk / x11 / gdkscreen-x11.h
1 /*
2  * gdkscreen-x11.h
3  *
4  * Copyright 2001 Sun Microsystems Inc.
5  *
6  * Erwann Chenede <erwann.chenede@sun.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef __GDK_X11_SCREEN__
23 #define __GDK_X11_SCREEN__
24
25 #include "gdkscreenprivate.h"
26 #include "gdkx11screen.h"
27 #include "gdkvisual.h"
28 #include <X11/X.h>
29 #include <X11/Xlib.h>
30
31 G_BEGIN_DECLS
32   
33 typedef struct _GdkX11Monitor GdkX11Monitor;
34
35 struct _GdkX11Screen
36 {
37   GdkScreen parent_instance;
38
39   GdkDisplay *display;
40   Display *xdisplay;
41   Screen *xscreen;
42   Window xroot_window;
43   GdkWindow *root_window;
44   gint screen_num;
45   /* Xinerama/RandR 1.2 */
46   gint  n_monitors;
47   GdkX11Monitor *monitors;
48   gint primary_monitor;
49
50   /* Xft resources for the display, used for default values for
51    * the Xft/ XSETTINGS
52    */
53   gint xft_hintstyle;
54   gint xft_rgba;
55   gint xft_dpi;
56
57   /* Window manager */
58   long last_wmspec_check_time;
59   Window wmspec_check_window;
60   char *window_manager_name;
61
62   /* X Settings */
63   GdkWindow *xsettings_manager_window;
64   Atom xsettings_selection_atom;
65   GHashTable *xsettings; /* string of GDK settings name => GValue */
66
67   /* TRUE if wmspec_check_window has changed since last
68    * fetch of _NET_SUPPORTED
69    */
70   guint need_refetch_net_supported : 1;
71   /* TRUE if wmspec_check_window has changed since last
72    * fetch of window manager name
73    */
74   guint need_refetch_wm_name : 1;
75   guint is_composited : 1;
76   guint xft_init : 1; /* Whether we've intialized these values yet */
77   guint xft_antialias : 1;
78   guint xft_hinting : 1;
79
80   /* Visual Part */
81   gint nvisuals;
82   GdkVisual **visuals;
83   GdkVisual *system_visual;
84   gint available_depths[7];
85   GdkVisualType available_types[6];
86   gint16 navailable_depths;
87   gint16 navailable_types;
88   GHashTable *visual_hash;
89   GdkVisual *rgba_visual;
90
91   /* cache for window->translate vfunc */
92   GC subwindow_gcs[32];
93
94   /* cache for Xinerama monitor indices */
95   GHashTable *xinerama_matches;
96 };
97
98 struct _GdkX11ScreenClass
99 {
100   GdkScreenClass parent_class;
101
102   void (* window_manager_changed) (GdkX11Screen *x11_screen);
103 };
104
105 GType       _gdk_x11_screen_get_type (void);
106 GdkScreen * _gdk_x11_screen_new      (GdkDisplay *display,
107                                       gint        screen_number);
108
109 void _gdk_x11_screen_setup                  (GdkScreen *screen);
110 void _gdk_x11_screen_window_manager_changed (GdkScreen *screen);
111 void _gdk_x11_screen_size_changed           (GdkScreen *screen,
112                                              XEvent    *event);
113 void _gdk_x11_screen_process_owner_change   (GdkScreen *screen,
114                                              XEvent    *event);
115 gint _gdk_x11_screen_get_xinerama_index     (GdkScreen *screen,
116                                              gint       monitor_num);
117 void _gdk_x11_screen_get_edge_monitors      (GdkScreen *screen,
118                                              gint      *top,
119                                              gint      *bottom,
120                                              gint      *left,
121                                              gint      *right);
122
123 G_END_DECLS
124
125 #endif /* __GDK_X11_SCREEN__ */