]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkwindow-x11.h
aefc88262c08844dfbe56f4952c184dc983ccc58
[~andy/gtk] / gdk / x11 / gdkwindow-x11.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 #ifndef __GDK_WINDOW_X11_H__
26 #define __GDK_WINDOW_X11_H__
27
28 #include "gdk/x11/gdkprivate-x11.h"
29 #include "gdk/gdkwindowimpl.h"
30
31 #include <X11/Xlib.h>
32
33 #ifdef HAVE_XDAMAGE
34 #include <X11/extensions/Xdamage.h>
35 #endif
36
37 #ifdef HAVE_XSYNC
38 #include <X11/Xlib.h>
39 #include <X11/extensions/sync.h>
40 #endif
41
42 G_BEGIN_DECLS
43
44 typedef struct _GdkToplevelX11 GdkToplevelX11;
45 typedef struct _GdkWindowImplX11 GdkWindowImplX11;
46 typedef struct _GdkWindowImplX11Class GdkWindowImplX11Class;
47 typedef struct _GdkXPositionInfo GdkXPositionInfo;
48
49 /* Window implementation for X11
50  */
51
52 #define GDK_TYPE_WINDOW_IMPL_X11              (gdk_window_impl_x11_get_type ())
53 #define GDK_WINDOW_IMPL_X11(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_WINDOW_IMPL_X11, GdkWindowImplX11))
54 #define GDK_WINDOW_IMPL_X11_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_WINDOW_IMPL_X11, GdkWindowImplX11Class))
55 #define GDK_IS_WINDOW_IMPL_X11(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_WINDOW_IMPL_X11))
56 #define GDK_IS_WINDOW_IMPL_X11_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_WINDOW_IMPL_X11))
57 #define GDK_WINDOW_IMPL_X11_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_WINDOW_IMPL_X11, GdkWindowImplX11Class))
58
59 struct _GdkWindowImplX11
60 {
61   GdkWindowImpl parent_instance;
62
63   GdkWindow *wrapper;
64
65   Window xid;
66
67   GdkToplevelX11 *toplevel;     /* Toplevel-specific information */
68   GdkCursor *cursor;
69   GHashTable *device_cursor;
70
71   gint8 toplevel_window_type;
72   guint no_bg : 1;        /* Set when the window background is temporarily
73                            * unset during resizing and scaling */
74   guint override_redirect : 1;
75
76   cairo_surface_t *cairo_surface;
77
78 #if defined (HAVE_XCOMPOSITE) && defined(HAVE_XDAMAGE) && defined (HAVE_XFIXES)
79   Damage damage;
80 #endif
81 };
82  
83 struct _GdkWindowImplX11Class 
84 {
85   GdkWindowImplClass parent_class;
86 };
87
88 struct _GdkToplevelX11
89 {
90
91   /* Set if the window, or any descendent of it, is the server's focus window
92    */
93   guint has_focus_window : 1;
94
95   /* Set if window->has_focus_window and the focus isn't grabbed elsewhere.
96    */
97   guint has_focus : 1;
98
99   /* Set if the pointer is inside this window. (This is needed for
100    * for focus tracking)
101    */
102   guint has_pointer : 1;
103   
104   /* Set if the window is a descendent of the focus window and the pointer is
105    * inside it. (This is the case where the window will receive keystroke
106    * events even window->has_focus_window is FALSE)
107    */
108   guint has_pointer_focus : 1;
109
110   /* Set if we are requesting these hints */
111   guint skip_taskbar_hint : 1;
112   guint skip_pager_hint : 1;
113   guint urgency_hint : 1;
114
115   guint on_all_desktops : 1;   /* _NET_WM_STICKY == 0xFFFFFFFF */
116
117   guint have_sticky : 1;        /* _NET_WM_STATE_STICKY */
118   guint have_maxvert : 1;       /* _NET_WM_STATE_MAXIMIZED_VERT */
119   guint have_maxhorz : 1;       /* _NET_WM_STATE_MAXIMIZED_HORZ */
120   guint have_fullscreen : 1;    /* _NET_WM_STATE_FULLSCREEN */
121   guint have_hidden : 1;        /* _NET_WM_STATE_HIDDEN */
122
123   guint is_leader : 1;
124
125   /* Set if the WM is presenting us as focused, i.e. with active decorations
126    */
127   guint have_focused : 1;
128
129   guint in_frame : 1;
130
131   /* If we're expecting a response from the compositor after painting a frame */
132   guint frame_pending : 1;
133
134   /* Whether pending_counter_value/configure_counter_value are updates
135    * to the extended update counter */
136   guint pending_counter_value_is_extended : 1;
137   guint configure_counter_value_is_extended : 1;
138
139   gulong map_serial;    /* Serial of last transition from unmapped */
140   
141   cairo_surface_t *icon_pixmap;
142   cairo_surface_t *icon_mask;
143   GdkWindow *group_leader;
144
145   /* Time of most recent user interaction. */
146   gulong user_time;
147
148   /* We use an extra X window for toplevel windows that we XSetInputFocus()
149    * to in order to avoid getting keyboard events redirected to subwindows
150    * that might not even be part of this app
151    */
152   Window focus_window;
153  
154 #ifdef HAVE_XSYNC
155   XID update_counter;
156   XID extended_update_counter;
157   gint64 pending_counter_value; /* latest _NET_WM_SYNC_REQUEST value received */
158   gint64 configure_counter_value; /* Latest _NET_WM_SYNC_REQUEST value received
159                                  * where we have also seen the corresponding
160                                  * ConfigureNotify
161                                  */
162   gint64 current_counter_value;
163
164   /* After a _NET_WM_FRAME_DRAWN message, this is the soonest that we think
165    * frame after will be presented */
166   gint64 throttled_presentation_time;
167 #endif
168 };
169
170 GType gdk_window_impl_x11_get_type (void);
171
172 void            gdk_x11_window_set_user_time        (GdkWindow *window,
173                                                      guint32    timestamp);
174
175 GdkToplevelX11 *_gdk_x11_window_get_toplevel        (GdkWindow *window);
176 void            _gdk_x11_window_tmp_unset_bg        (GdkWindow *window,
177                                                      gboolean   recurse);
178 void            _gdk_x11_window_tmp_reset_bg        (GdkWindow *window,
179                                                      gboolean   recurse);
180 void            _gdk_x11_window_tmp_unset_parent_bg (GdkWindow *window);
181 void            _gdk_x11_window_tmp_reset_parent_bg (GdkWindow *window);
182
183 GdkCursor      *_gdk_x11_window_get_cursor          (GdkWindow *window);
184
185 void            _gdk_x11_window_update_size         (GdkWindowImplX11 *impl);
186
187 G_END_DECLS
188
189 #endif /* __GDK_WINDOW_X11_H__ */