]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkwindow-x11.c
Add sensitivity-changing timeout. Written by Christian Persch.
[~andy/gtk] / gdk / x11 / gdkwindow-x11.c
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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <config.h>
28
29 #include <X11/Xlib.h>
30 #include <X11/Xutil.h>
31 #include <X11/Xatom.h>
32 #include <netinet/in.h>
33 #include <unistd.h>
34
35 #include "gdkalias.h"
36 #include "gdk.h"
37
38 #include "gdkwindow.h"
39 #include "gdkasync.h"
40 #include "gdkinputprivate.h"
41 #include "gdkdisplay-x11.h"
42 #include "gdkprivate-x11.h"
43 #include "gdkregion.h"
44 #include "gdkinternals.h"
45 #include "MwmUtil.h"
46 #include "gdkwindow-x11.h"
47
48 #include <stdlib.h>
49 #include <stdio.h>
50 #include <string.h>
51
52
53 #ifdef HAVE_SHAPE_EXT
54 #include <X11/extensions/shape.h>
55 #endif
56
57 const int _gdk_event_mask_table[21] =
58 {
59   ExposureMask,
60   PointerMotionMask,
61   PointerMotionHintMask,
62   ButtonMotionMask,
63   Button1MotionMask,
64   Button2MotionMask,
65   Button3MotionMask,
66   ButtonPressMask,
67   ButtonReleaseMask,
68   KeyPressMask,
69   KeyReleaseMask,
70   EnterWindowMask,
71   LeaveWindowMask,
72   FocusChangeMask,
73   StructureNotifyMask,
74   PropertyChangeMask,
75   VisibilityChangeMask,
76   0,                            /* PROXIMITY_IN */
77   0,                            /* PROXIMTY_OUT */
78   SubstructureNotifyMask,
79   ButtonPressMask      /* SCROLL; on X mouse wheel events is treated as mouse button 4/5 */
80 };
81 const int _gdk_nenvent_masks = sizeof (_gdk_event_mask_table) / sizeof (int);
82
83 /* Forward declarations */
84 static void     gdk_window_set_static_win_gravity (GdkWindow  *window,
85                                                    gboolean    on);
86 static gboolean gdk_window_have_shape_ext         (GdkDisplay *display);
87 static gboolean gdk_window_icon_name_set          (GdkWindow  *window);
88 static void     gdk_window_add_colormap_windows   (GdkWindow  *window);
89 static void     set_wm_name                       (GdkDisplay  *display,
90                                                    Window       xwindow,
91                                                    const gchar *name);
92
93 static GdkColormap* gdk_window_impl_x11_get_colormap (GdkDrawable *drawable);
94 static void         gdk_window_impl_x11_set_colormap (GdkDrawable *drawable,
95                                                       GdkColormap *cmap);
96 static void         gdk_window_impl_x11_get_size    (GdkDrawable *drawable,
97                                                      gint *width,
98                                                      gint *height);
99 static GdkRegion*  gdk_window_impl_x11_get_visible_region (GdkDrawable *drawable);
100 static void gdk_window_impl_x11_init       (GdkWindowImplX11      *window);
101 static void gdk_window_impl_x11_class_init (GdkWindowImplX11Class *klass);
102 static void gdk_window_impl_x11_finalize   (GObject            *object);
103
104 static gpointer parent_class = NULL;
105
106 #define WINDOW_IS_TOPLEVEL(window)                 \
107   (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD && \
108    GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
109
110 /* Return whether time1 is considered later than time2 as far as xserver
111  * time is concerned.  Accounts for wraparound.
112  */
113 #define XSERVER_TIME_IS_LATER(time1, time2)                        \
114   ( (( time1 > time2 ) && ( time1 - time2 < ((guint32)-1)/2 )) ||  \
115     (( time1 < time2 ) && ( time2 - time1 > ((guint32)-1)/2 ))     \
116   )
117
118 GType
119 gdk_window_impl_x11_get_type (void)
120 {
121   static GType object_type = 0;
122
123   if (!object_type)
124     {
125       static const GTypeInfo object_info =
126       {
127         sizeof (GdkWindowImplX11Class),
128         (GBaseInitFunc) NULL,
129         (GBaseFinalizeFunc) NULL,
130         (GClassInitFunc) gdk_window_impl_x11_class_init,
131         NULL,           /* class_finalize */
132         NULL,           /* class_data */
133         sizeof (GdkWindowImplX11),
134         0,              /* n_preallocs */
135         (GInstanceInitFunc) gdk_window_impl_x11_init,
136       };
137       
138       object_type = g_type_register_static (GDK_TYPE_DRAWABLE_IMPL_X11,
139                                             "GdkWindowImplX11",
140                                             &object_info, 0);
141     }
142   
143   return object_type;
144 }
145
146 GType
147 _gdk_window_impl_get_type (void)
148 {
149   return gdk_window_impl_x11_get_type ();
150 }
151
152 static void
153 gdk_window_impl_x11_init (GdkWindowImplX11 *impl)
154 {  
155   impl->width = 1;
156   impl->height = 1;
157   impl->toplevel_window_type = -1;
158 }
159
160 GdkToplevelX11 *
161 _gdk_x11_window_get_toplevel (GdkWindow *window)
162 {
163   GdkWindowObject *private;
164   GdkWindowImplX11 *impl;
165   
166   g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
167
168   if (GDK_WINDOW_TYPE (window) == GDK_WINDOW_CHILD)
169     return NULL;
170
171   private = (GdkWindowObject *)window;
172   impl = GDK_WINDOW_IMPL_X11 (private->impl);
173
174   if (!impl->toplevel)
175     impl->toplevel = g_new0 (GdkToplevelX11, 1);
176
177   return impl->toplevel;
178 }
179
180 static void
181 gdk_window_impl_x11_class_init (GdkWindowImplX11Class *klass)
182 {
183   GObjectClass *object_class = G_OBJECT_CLASS (klass);
184   GdkDrawableClass *drawable_class = GDK_DRAWABLE_CLASS (klass);
185   
186   parent_class = g_type_class_peek_parent (klass);
187
188   object_class->finalize = gdk_window_impl_x11_finalize;
189
190   drawable_class->set_colormap = gdk_window_impl_x11_set_colormap;
191   drawable_class->get_colormap = gdk_window_impl_x11_get_colormap;
192   drawable_class->get_size = gdk_window_impl_x11_get_size;
193
194   /* Visible and clip regions are the same */
195   drawable_class->get_clip_region = gdk_window_impl_x11_get_visible_region;
196   drawable_class->get_visible_region = gdk_window_impl_x11_get_visible_region;
197 }
198
199 static void
200 gdk_window_impl_x11_finalize (GObject *object)
201 {
202   GdkWindowObject *wrapper;
203   GdkDrawableImplX11 *draw_impl;
204   GdkWindowImplX11 *window_impl;
205   
206   g_return_if_fail (GDK_IS_WINDOW_IMPL_X11 (object));
207
208   draw_impl = GDK_DRAWABLE_IMPL_X11 (object);
209   window_impl = GDK_WINDOW_IMPL_X11 (object);
210   
211   wrapper = (GdkWindowObject*) draw_impl->wrapper;
212
213   _gdk_xgrab_check_destroy (GDK_WINDOW (wrapper));
214
215   if (!GDK_WINDOW_DESTROYED (wrapper))
216     {
217       GdkDisplay *display = GDK_WINDOW_DISPLAY (wrapper);
218       
219       _gdk_xid_table_remove (display, draw_impl->xid);
220       if (window_impl->toplevel && window_impl->toplevel->focus_window)
221         _gdk_xid_table_remove (display, window_impl->toplevel->focus_window);
222     }
223
224   if (window_impl->toplevel)
225     g_free (window_impl->toplevel);
226
227   G_OBJECT_CLASS (parent_class)->finalize (object);
228 }
229
230 static void
231 tmp_unset_bg (GdkWindow *window)
232 {
233   GdkWindowImplX11 *impl;
234   GdkWindowObject *obj;
235
236   obj = (GdkWindowObject *) window;
237   impl = GDK_WINDOW_IMPL_X11 (obj->impl);
238
239   /* For windows without EXPOSURE_MASK, we can't do this
240    * unsetting because such windows depend on the drawing
241    * that the X server is going to do
242    */
243   if (!(obj->event_mask & GDK_EXPOSURE_MASK))
244     return;
245     
246   impl->position_info.no_bg = TRUE;
247
248   if (obj->bg_pixmap != GDK_NO_BG)
249     XSetWindowBackgroundPixmap (GDK_DRAWABLE_XDISPLAY (window),
250                                 GDK_DRAWABLE_XID (window), None);
251 }
252
253 static void
254 tmp_reset_bg (GdkWindow *window)
255 {
256   GdkWindowImplX11 *impl;
257   GdkWindowObject *obj;
258
259   obj = (GdkWindowObject *) window;
260   impl = GDK_WINDOW_IMPL_X11 (obj->impl);
261
262   if (!(obj->event_mask & GDK_EXPOSURE_MASK))
263     return;
264     
265   impl->position_info.no_bg = FALSE;
266
267   if (obj->bg_pixmap == GDK_NO_BG)
268     return;
269   
270   if (obj->bg_pixmap)
271     {
272       Pixmap xpixmap;
273
274       if (obj->bg_pixmap == GDK_PARENT_RELATIVE_BG)
275         xpixmap = ParentRelative;
276       else 
277         xpixmap = GDK_DRAWABLE_XID (obj->bg_pixmap);
278
279       XSetWindowBackgroundPixmap (GDK_DRAWABLE_XDISPLAY (window),
280                                   GDK_DRAWABLE_XID (window), xpixmap);
281     }
282   else
283     {
284       XSetWindowBackground (GDK_DRAWABLE_XDISPLAY (window),
285                             GDK_DRAWABLE_XID (window),
286                             obj->bg_color.pixel);
287     }
288 }
289
290 void
291 _gdk_x11_window_tmp_unset_bg (GdkWindow *window,
292                               gboolean   recurse)
293 {
294   GdkWindowObject *private;
295
296   g_return_if_fail (GDK_IS_WINDOW (window));
297   
298   private = (GdkWindowObject *)window;
299
300   if (private->input_only || private->destroyed ||
301       (private->window_type != GDK_WINDOW_ROOT &&
302        !GDK_WINDOW_IS_MAPPED (window)))
303     {
304       return;
305     }
306
307   if (private->window_type != GDK_WINDOW_ROOT &&
308       private->window_type != GDK_WINDOW_FOREIGN)
309     {
310       tmp_unset_bg (window);
311     }
312
313   if (recurse)
314     {
315       GList *l;
316
317       for (l = private->children; l != NULL; l = l->next)
318         _gdk_x11_window_tmp_unset_bg (l->data, TRUE);
319     }
320 }
321
322 void
323 _gdk_x11_window_tmp_reset_bg (GdkWindow *window,
324                               gboolean   recurse)
325 {
326   GdkWindowObject *private;
327
328   g_return_if_fail (GDK_IS_WINDOW (window));
329
330   private = (GdkWindowObject *)window;
331
332   if (private->input_only || private->destroyed ||
333       (private->window_type != GDK_WINDOW_ROOT &&
334        !GDK_WINDOW_IS_MAPPED (window)))
335     {
336       return;
337     }
338
339   if (private->window_type != GDK_WINDOW_ROOT &&
340       private->window_type != GDK_WINDOW_FOREIGN)
341     {
342       tmp_reset_bg (window);
343     }
344
345   if (recurse)
346     {
347       GList *l;
348
349       for (l = private->children; l != NULL; l = l->next)
350         _gdk_x11_window_tmp_reset_bg (l->data, TRUE);
351     }
352 }
353
354 static GdkColormap*
355 gdk_window_impl_x11_get_colormap (GdkDrawable *drawable)
356 {
357   GdkDrawableImplX11 *drawable_impl;
358   GdkWindowImplX11 *window_impl;
359   
360   g_return_val_if_fail (GDK_IS_WINDOW_IMPL_X11 (drawable), NULL);
361
362   drawable_impl = GDK_DRAWABLE_IMPL_X11 (drawable);
363   window_impl = GDK_WINDOW_IMPL_X11 (drawable);
364
365   if (!((GdkWindowObject *) drawable_impl->wrapper)->input_only && 
366       drawable_impl->colormap == NULL)
367     {
368       XWindowAttributes window_attributes;
369       GdkVisual *visual;
370
371       XGetWindowAttributes (GDK_SCREEN_XDISPLAY (drawable_impl->screen),
372                             drawable_impl->xid,
373                             &window_attributes);
374
375       visual = gdk_x11_screen_lookup_visual (drawable_impl->screen,
376                                              window_attributes.visual->visualid);
377       drawable_impl->colormap = gdk_x11_colormap_foreign_new (visual,
378                                                               window_attributes.colormap);
379     }
380   
381   return drawable_impl->colormap;
382 }
383
384 static void
385 gdk_window_impl_x11_set_colormap (GdkDrawable *drawable,
386                                   GdkColormap *cmap)
387 {
388   GdkWindowImplX11 *impl;
389   GdkDrawableImplX11 *draw_impl;
390   
391   g_return_if_fail (GDK_IS_WINDOW_IMPL_X11 (drawable));
392
393   impl = GDK_WINDOW_IMPL_X11 (drawable);
394   draw_impl = GDK_DRAWABLE_IMPL_X11 (drawable);
395
396   if (cmap && GDK_WINDOW_DESTROYED (draw_impl->wrapper))
397     return;
398
399   /* chain up */
400   GDK_DRAWABLE_CLASS (parent_class)->set_colormap (drawable, cmap);
401
402   if (cmap)
403     {
404       XSetWindowColormap (GDK_SCREEN_XDISPLAY (draw_impl->screen),
405                           draw_impl->xid,
406                           GDK_COLORMAP_XCOLORMAP (cmap));
407
408       if (((GdkWindowObject*)draw_impl->wrapper)->window_type !=
409           GDK_WINDOW_TOPLEVEL)
410         gdk_window_add_colormap_windows (GDK_WINDOW (draw_impl->wrapper));
411     }
412 }
413
414
415 static void
416 gdk_window_impl_x11_get_size (GdkDrawable *drawable,
417                               gint        *width,
418                               gint        *height)
419 {
420   g_return_if_fail (GDK_IS_WINDOW_IMPL_X11 (drawable));
421
422   if (width)
423     *width = GDK_WINDOW_IMPL_X11 (drawable)->width;
424   if (height)
425     *height = GDK_WINDOW_IMPL_X11 (drawable)->height;
426 }
427
428 static GdkRegion*
429 gdk_window_impl_x11_get_visible_region (GdkDrawable *drawable)
430 {
431   GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (drawable);
432   GdkRectangle result_rect;
433
434   result_rect.x = 0;
435   result_rect.y = 0;
436   result_rect.width = impl->width;
437   result_rect.height = impl->height;
438
439   gdk_rectangle_intersect (&result_rect, &impl->position_info.clip_rect, &result_rect);
440
441   return gdk_region_rectangle (&result_rect);
442 }
443
444 void
445 _gdk_windowing_window_init (GdkScreen * screen)
446 {
447   GdkWindowObject *private;
448   GdkWindowImplX11 *impl;
449   GdkDrawableImplX11 *draw_impl;
450   GdkScreenX11 *screen_x11;
451
452   screen_x11 = GDK_SCREEN_X11 (screen);
453
454   g_assert (screen_x11->root_window == NULL);
455
456   gdk_screen_set_default_colormap (screen,
457                                    gdk_screen_get_system_colormap (screen));
458
459   screen_x11->root_window = g_object_new (GDK_TYPE_WINDOW, NULL);
460   private = (GdkWindowObject *)screen_x11->root_window;
461   impl = GDK_WINDOW_IMPL_X11 (private->impl);
462   draw_impl = GDK_DRAWABLE_IMPL_X11 (private->impl);
463   
464   draw_impl->screen = screen;
465   draw_impl->xid = screen_x11->xroot_window;
466   draw_impl->wrapper = GDK_DRAWABLE (private);
467   draw_impl->colormap = gdk_screen_get_system_colormap (screen);
468   g_object_ref (draw_impl->colormap);
469   
470   private->window_type = GDK_WINDOW_ROOT;
471   private->depth = DefaultDepthOfScreen (screen_x11->xscreen);
472   
473   impl->width = WidthOfScreen (screen_x11->xscreen);
474   impl->height = HeightOfScreen (screen_x11->xscreen);
475   
476   _gdk_window_init_position (GDK_WINDOW (private));
477
478   _gdk_xid_table_insert (screen_x11->display,
479                          &screen_x11->xroot_window,
480                          screen_x11->root_window);
481 }
482
483 static void
484 set_wm_protocols (GdkWindow *window)
485 {
486   GdkDisplay *display = gdk_drawable_get_display (window);
487   Atom protocols[4];
488   int n = 0;
489   
490   protocols[n++] = gdk_x11_get_xatom_by_name_for_display (display, "WM_DELETE_WINDOW");
491   protocols[n++] = gdk_x11_get_xatom_by_name_for_display (display, "WM_TAKE_FOCUS");
492   protocols[n++] = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_PING");
493
494 #ifdef HAVE_XSYNC
495   if (GDK_DISPLAY_X11 (display)->use_sync)
496     protocols[n++] = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_SYNC_REQUEST");
497 #endif
498   
499   XSetWMProtocols (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window), protocols, n);
500 }
501
502 static const gchar *
503 get_default_title (void)
504 {
505   const char *title;
506
507   title = g_get_application_name ();
508   if (!title)
509     title = g_get_prgname ();
510
511   return title;
512 }
513
514 static void
515 check_leader_window_title (GdkDisplay *display)
516 {
517   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
518
519   if (display_x11->leader_window && !display_x11->leader_window_title_set)
520     {
521       set_wm_name (display,
522                    display_x11->leader_window,
523                    get_default_title ());
524       
525       display_x11->leader_window_title_set = TRUE;
526     }
527 }
528
529 static Window
530 create_focus_window (Display *xdisplay,
531                      XID      parent)
532 {
533   Window focus_window = XCreateSimpleWindow (xdisplay, parent,
534                                              -1, -1, 1, 1, 0,
535                                              0, 0);
536   
537   /* FIXME: probably better to actually track the requested event mask for the toplevel
538    */
539   XSelectInput (xdisplay, focus_window,
540                 KeyPressMask | KeyReleaseMask | FocusChangeMask);
541   
542   XMapWindow (xdisplay, focus_window);
543
544   return focus_window;
545 }
546
547 static void
548 ensure_sync_counter (GdkWindow *window)
549 {
550 #ifdef HAVE_XSYNC
551   if (!GDK_WINDOW_DESTROYED (window))
552     {
553       GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
554       GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
555       GdkWindowObject *private = (GdkWindowObject *)window;
556       GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
557
558       if (toplevel && impl->use_synchronized_configure &&
559           toplevel->update_counter == None &&
560           GDK_DISPLAY_X11 (display)->use_sync)
561         {
562           Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
563           XSyncValue value;
564           Atom atom;
565
566           XSyncIntToValue (&value, 0);
567           
568           toplevel->update_counter = XSyncCreateCounter (xdisplay, value);
569           
570           atom = gdk_x11_get_xatom_by_name_for_display (display,
571                                                         "_NET_WM_SYNC_REQUEST_COUNTER");
572           
573           XChangeProperty (xdisplay, GDK_WINDOW_XID (window),
574                            atom, XA_CARDINAL,
575                            32, PropModeReplace,
576                            (guchar *)&toplevel->update_counter, 1);
577           
578           XSyncIntToValue (&toplevel->current_counter_value, 0);
579         }
580     }
581 #endif
582 }
583
584 static void
585 setup_toplevel_window (GdkWindow *window, 
586                        GdkWindow *parent)
587 {
588   GdkWindowObject *obj = (GdkWindowObject *)window;
589   GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
590   GdkWindowImplX11 *impl = (GdkWindowImplX11 *)obj->impl;
591   Display *xdisplay = GDK_WINDOW_XDISPLAY (window);
592   XID xid = GDK_WINDOW_XID (window);
593   XID xparent = GDK_WINDOW_XID (parent);
594   GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (GDK_WINDOW_SCREEN (parent));
595   XSizeHints size_hints;
596   long pid;
597     
598   if (GDK_WINDOW_TYPE (window) == GDK_WINDOW_DIALOG)
599     XSetTransientForHint (xdisplay, xid, xparent);
600   
601   set_wm_protocols (window);
602   
603   if (!obj->input_only)
604     {
605       /* The focus window is off the visible area, and serves to receive key
606        * press events so they don't get sent to child windows.
607        */
608       toplevel->focus_window = create_focus_window (xdisplay, xid);
609       _gdk_xid_table_insert (screen_x11->display, &toplevel->focus_window, window);
610     }
611   
612   check_leader_window_title (screen_x11->display);
613   
614   /* FIXME: Is there any point in doing this? Do any WM's pay
615    * attention to PSize, and even if they do, is this the
616    * correct value???
617    */
618   size_hints.flags = PSize;
619   size_hints.width = impl->width;
620   size_hints.height = impl->height;
621   
622   XSetWMNormalHints (xdisplay, xid, &size_hints);
623   
624   /* This will set WM_CLIENT_MACHINE and WM_LOCALE_NAME */
625   XSetWMProperties (xdisplay, xid, NULL, NULL, NULL, 0, NULL, NULL, NULL);
626   
627   pid = getpid ();
628   XChangeProperty (xdisplay, xid,
629                    gdk_x11_get_xatom_by_name_for_display (screen_x11->display, "_NET_WM_PID"),
630                    XA_CARDINAL, 32,
631                    PropModeReplace,
632                    (guchar *)&pid, 1);
633   
634   XChangeProperty (xdisplay, xid, 
635                    gdk_x11_get_xatom_by_name_for_display (screen_x11->display, "WM_CLIENT_LEADER"),
636                    XA_WINDOW, 32, PropModeReplace,
637                    (guchar *) &GDK_DISPLAY_X11 (screen_x11->display)->leader_window, 1);
638
639   if (!obj->focus_on_map)
640     gdk_x11_window_set_user_time (window, 0);
641   else if (GDK_DISPLAY_X11 (screen_x11->display)->user_time != 0)
642     gdk_x11_window_set_user_time (window, GDK_DISPLAY_X11 (screen_x11->display)->user_time);
643
644   ensure_sync_counter (window);
645 }
646
647 /**
648  * gdk_window_new:
649  * @parent: a #GdkWindow, or %NULL to create the window as a child of
650  *   the default root window for the default display.
651  * @attributes: attributes of the new window
652  * @attributes_mask: mask indicating which fields in @attributes are valid
653  * 
654  * Creates a new #GdkWindow using the attributes from
655  * @attributes. See #GdkWindowAttr and #GdkWindowAttributesType for
656  * more details.  Note: to use this on displays other than the default
657  * display, @parent must be specified.
658  * 
659  * Return value: the new #GdkWindow
660  **/
661 GdkWindow*
662 gdk_window_new (GdkWindow     *parent,
663                 GdkWindowAttr *attributes,
664                 gint           attributes_mask)
665 {
666   GdkWindow *window;
667   GdkWindowObject *private;
668   GdkWindowImplX11 *impl;
669   GdkDrawableImplX11 *draw_impl;
670   GdkScreenX11 *screen_x11;
671   GdkScreen *screen;
672   
673   GdkVisual *visual;
674   Window xparent;
675   Visual *xvisual;
676   Display *xdisplay;
677   Window xid;
678
679   XSetWindowAttributes xattributes;
680   long xattributes_mask;
681   XClassHint *class_hint;
682   int x, y, depth;
683   
684   unsigned int class;
685   const char *title;
686   int i;
687   
688   g_return_val_if_fail (attributes != NULL, NULL);
689   
690   if (!parent)
691     {
692       GDK_NOTE (MULTIHEAD,
693                 g_warning ("gdk_window_new(): no parent specified reverting to parent = default root window"));
694       
695       screen = gdk_screen_get_default ();
696       parent = gdk_screen_get_root_window (screen);
697     }
698   else
699     screen = gdk_drawable_get_screen (parent);
700
701   screen_x11 = GDK_SCREEN_X11 (screen);
702
703   g_return_val_if_fail (GDK_IS_WINDOW (parent), NULL);
704   
705   if (GDK_WINDOW_DESTROYED (parent))
706     return NULL;
707   
708   xparent = GDK_WINDOW_XID (parent);
709   
710   window = g_object_new (GDK_TYPE_WINDOW, NULL);
711   private = (GdkWindowObject *)window;
712   impl = GDK_WINDOW_IMPL_X11 (private->impl);
713   draw_impl = GDK_DRAWABLE_IMPL_X11 (private->impl);
714   draw_impl->wrapper = GDK_DRAWABLE (window);
715   
716   draw_impl->screen = screen;
717   xdisplay = screen_x11->xdisplay;
718
719   /* Windows with a foreign parent are treated as if they are children
720    * of the root window, except for actual creation.
721    */
722   if (GDK_WINDOW_TYPE (parent) == GDK_WINDOW_FOREIGN)
723     parent = gdk_screen_get_root_window (screen);
724   
725   private->parent = (GdkWindowObject *)parent;
726
727   private->accept_focus = TRUE;
728   private->focus_on_map = TRUE;
729
730   xattributes_mask = 0;
731   
732   if (attributes_mask & GDK_WA_X)
733     x = attributes->x;
734   else
735     x = 0;
736   
737   if (attributes_mask & GDK_WA_Y)
738     y = attributes->y;
739   else
740     y = 0;
741   
742   private->x = x;
743   private->y = y;
744   impl->width = (attributes->width > 1) ? (attributes->width) : (1);
745   impl->height = (attributes->height > 1) ? (attributes->height) : (1);
746
747   if (attributes->wclass == GDK_INPUT_ONLY)
748     {
749       /* Backwards compatiblity - we've always ignored
750        * attributes->window_type for input-only windows
751        * before
752        */
753       if (GDK_WINDOW_TYPE (parent) == GDK_WINDOW_ROOT)
754         private->window_type = GDK_WINDOW_TEMP;
755       else
756         private->window_type = GDK_WINDOW_CHILD;
757     }
758   else
759     private->window_type = attributes->window_type;
760
761   _gdk_window_init_position (GDK_WINDOW (private));
762   if (impl->position_info.big)
763     private->guffaw_gravity = TRUE;
764   
765   if (attributes_mask & GDK_WA_VISUAL)
766     visual = attributes->visual;
767   else
768     visual = gdk_screen_get_system_visual (screen);
769   xvisual = ((GdkVisualPrivate*) visual)->xvisual;
770   
771   xattributes.event_mask = StructureNotifyMask | PropertyChangeMask;
772   for (i = 0; i < _gdk_nenvent_masks; i++)
773     {
774       if (attributes->event_mask & (1 << (i + 1)))
775         xattributes.event_mask |= _gdk_event_mask_table[i];
776     }
777   private->event_mask = attributes->event_mask;
778   
779   if (xattributes.event_mask)
780     xattributes_mask |= CWEventMask;
781   
782   if (attributes_mask & GDK_WA_NOREDIR)
783     {
784       xattributes.override_redirect =
785         (attributes->override_redirect == FALSE)?False:True;
786       xattributes_mask |= CWOverrideRedirect;
787     } 
788   else
789     xattributes.override_redirect = False;
790
791   impl->override_redirect = xattributes.override_redirect;
792   
793   if (private->parent && private->parent->guffaw_gravity)
794     {
795       xattributes.win_gravity = StaticGravity;
796       xattributes_mask |= CWWinGravity;
797     }
798   
799   /* Sanity checks */
800   switch (private->window_type)
801     {
802     case GDK_WINDOW_TOPLEVEL:
803     case GDK_WINDOW_DIALOG:
804     case GDK_WINDOW_TEMP:
805       if (GDK_WINDOW_TYPE (parent) != GDK_WINDOW_ROOT)
806         {
807           g_warning (G_STRLOC "Toplevel windows must be created as children of\n"
808                      "of a window of type GDK_WINDOW_ROOT or GDK_WINDOW_FOREIGN");
809           xparent = GDK_SCREEN_XROOTWIN (screen);
810         }
811     case GDK_WINDOW_CHILD:
812       break;
813     default:
814       g_warning (G_STRLOC "cannot make windows of type %d", private->window_type);
815       return NULL;
816     }
817           
818   if (attributes->wclass == GDK_INPUT_OUTPUT)
819     {
820       class = InputOutput;
821       depth = visual->depth;
822
823       private->input_only = FALSE;
824       private->depth = depth;
825       
826       if (attributes_mask & GDK_WA_COLORMAP)
827         {
828           draw_impl->colormap = attributes->colormap;
829           g_object_ref (attributes->colormap);
830         }
831       else
832         {
833           if ((((GdkVisualPrivate *)gdk_screen_get_system_visual (screen))->xvisual) ==  xvisual)
834             {
835               draw_impl->colormap = gdk_screen_get_system_colormap (screen);
836               g_object_ref (draw_impl->colormap);
837             }
838           else
839             {
840               draw_impl->colormap = gdk_colormap_new (visual, FALSE);
841             }
842         }
843       
844       private->bg_color.pixel = BlackPixel (xdisplay, screen_x11->screen_num);
845       xattributes.background_pixel = private->bg_color.pixel;
846
847       private->bg_pixmap = NULL;
848       
849       xattributes.border_pixel = BlackPixel (xdisplay, screen_x11->screen_num);
850       xattributes_mask |= CWBorderPixel | CWBackPixel;
851
852       if (private->guffaw_gravity)
853         xattributes.bit_gravity = StaticGravity;
854       else
855         xattributes.bit_gravity = NorthWestGravity;
856       
857       xattributes_mask |= CWBitGravity;
858
859       xattributes.colormap = GDK_COLORMAP_XCOLORMAP (draw_impl->colormap);
860       xattributes_mask |= CWColormap;
861
862       if (private->window_type == GDK_WINDOW_TEMP)
863         {
864           xattributes.save_under = True;
865           xattributes.override_redirect = True;
866           xattributes.cursor = None;
867           xattributes_mask |= CWSaveUnder | CWOverrideRedirect;
868
869           impl->override_redirect = TRUE;
870         }
871     }
872   else
873     {
874       depth = 0;
875       private->depth = 0;
876       class = InputOnly;
877       private->input_only = TRUE;
878       draw_impl->colormap = gdk_screen_get_system_colormap (screen);
879       g_object_ref (draw_impl->colormap);
880     }
881
882   xid = draw_impl->xid = XCreateWindow (xdisplay, xparent,
883                                         impl->position_info.x, impl->position_info.y,
884                                         impl->position_info.width, impl->position_info.height,
885                                         0, depth, class, xvisual,
886                                         xattributes_mask, &xattributes);
887
888   g_object_ref (window);
889   _gdk_xid_table_insert (screen_x11->display, &draw_impl->xid, window);
890   
891   gdk_window_set_cursor (window, ((attributes_mask & GDK_WA_CURSOR) ?
892                                   (attributes->cursor) :
893                                   NULL));
894   
895   if (private->parent)
896     private->parent->children = g_list_prepend (private->parent->children, window);
897   
898   switch (GDK_WINDOW_TYPE (private))
899     {
900     case GDK_WINDOW_DIALOG:
901     case GDK_WINDOW_TOPLEVEL:
902     case GDK_WINDOW_TEMP:
903       if (attributes_mask & GDK_WA_TITLE)
904         title = attributes->title;
905       else
906         title = get_default_title ();
907       
908       gdk_window_set_title (window, title);
909       
910       if (attributes_mask & GDK_WA_WMCLASS)
911         {
912           class_hint = XAllocClassHint ();
913           class_hint->res_name = attributes->wmclass_name;
914           class_hint->res_class = attributes->wmclass_class;
915           XSetClassHint (xdisplay, xid, class_hint);
916           XFree (class_hint);
917         }
918   
919       setup_toplevel_window (window, parent);
920       break;
921
922     case GDK_WINDOW_CHILD:
923       if ((attributes->wclass == GDK_INPUT_OUTPUT) &&
924           (draw_impl->colormap != gdk_screen_get_system_colormap (screen)) &&
925           (draw_impl->colormap != gdk_drawable_get_colormap (gdk_window_get_toplevel (window))))
926         {
927           GDK_NOTE (MISC, g_message ("adding colormap window\n"));
928           gdk_window_add_colormap_windows (window);
929         }
930       break;
931       
932     default:
933       break;
934     }
935
936   return window;
937 }
938
939 static GdkEventMask
940 x_event_mask_to_gdk_event_mask (long mask)
941 {
942   GdkEventMask event_mask = 0;
943   int i;
944
945   for (i = 0; i < _gdk_nenvent_masks; i++)
946     {
947       if (mask & _gdk_event_mask_table[i])
948         event_mask |= 1 << (i + 1);
949     }
950
951   return event_mask;
952 }
953
954 /**
955  * gdk_window_foreign_new_for_display:
956  * @display: the #GdkDisplay where the window handle comes from.
957  * @anid: a native window handle.
958  * 
959  * Wraps a native window in a #GdkWindow.
960  * This may fail if the window has been destroyed. If the window
961  * was already known to GDK, a new reference to the existing 
962  * #GdkWindow is returned.
963  *
964  * For example in the X backend, a native window handle is an Xlib
965  * <type>XID</type>.
966  * 
967  * Return value: a #GdkWindow wrapper for the native window or 
968  *   %NULL if the window has been destroyed. The wrapper will be
969  *   newly created, if one doesn't exist already.
970  *
971  * Since: 2.2
972  **/
973 GdkWindow *
974 gdk_window_foreign_new_for_display (GdkDisplay     *display,
975                                     GdkNativeWindow anid)
976 {
977   GdkWindow *window;
978   GdkWindowObject *private;
979   GdkWindowImplX11 *impl;
980   GdkDrawableImplX11 *draw_impl;
981   GdkDisplayX11 *display_x11;
982   XWindowAttributes attrs;
983   Window root, parent;
984   Window *children = NULL;
985   guint nchildren;
986   gboolean result;
987
988   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
989
990   display_x11 = GDK_DISPLAY_X11 (display);
991
992   if ((window = gdk_xid_table_lookup_for_display (display, anid)) != NULL)
993     return g_object_ref (window);
994
995   gdk_error_trap_push ();
996   result = XGetWindowAttributes (display_x11->xdisplay, anid, &attrs);
997   if (gdk_error_trap_pop () || !result)
998     return NULL;
999
1000   /* FIXME: This is pretty expensive. Maybe the caller should supply
1001    *        the parent */
1002   gdk_error_trap_push ();
1003   result = XQueryTree (display_x11->xdisplay, anid, &root, &parent, &children, &nchildren);
1004   if (gdk_error_trap_pop () || !result)
1005     return NULL;
1006
1007   if (children)
1008     XFree (children);
1009   
1010   window = g_object_new (GDK_TYPE_WINDOW, NULL);
1011   private = (GdkWindowObject *)window;
1012   impl = GDK_WINDOW_IMPL_X11 (private->impl);
1013   draw_impl = GDK_DRAWABLE_IMPL_X11 (private->impl);
1014   draw_impl->wrapper = GDK_DRAWABLE (window);
1015   draw_impl->screen = _gdk_x11_display_screen_for_xrootwin (display, root);
1016   
1017   private->parent = gdk_xid_table_lookup_for_display (display, parent);
1018   
1019   if (!private->parent || GDK_WINDOW_TYPE (private->parent) == GDK_WINDOW_FOREIGN)
1020     private->parent = (GdkWindowObject *) gdk_screen_get_root_window (draw_impl->screen);
1021   
1022   private->parent->children = g_list_prepend (private->parent->children, window);
1023
1024   draw_impl->xid = anid;
1025
1026   private->x = attrs.x;
1027   private->y = attrs.y;
1028   impl->width = attrs.width;
1029   impl->height = attrs.height;
1030   private->window_type = GDK_WINDOW_FOREIGN;
1031   private->destroyed = FALSE;
1032
1033   private->event_mask = x_event_mask_to_gdk_event_mask (attrs.your_event_mask);
1034
1035   if (attrs.map_state == IsUnmapped)
1036     private->state = GDK_WINDOW_STATE_WITHDRAWN;
1037   else
1038     private->state = 0;
1039
1040   private->depth = attrs.depth;
1041   
1042   _gdk_window_init_position (GDK_WINDOW (private));
1043
1044   g_object_ref (window);
1045   _gdk_xid_table_insert (display, &GDK_WINDOW_XID (window), window);
1046   return window;
1047 }
1048
1049 /**
1050  * gdk_window_lookup_for_display:
1051  * @display: the #GdkDisplay corresponding to the window handle
1052  * @anid: a native window handle.
1053  *
1054  * Looks up the #GdkWindow that wraps the given native window handle.
1055  *
1056  * For example in the X backend, a native window handle is an Xlib
1057  * <type>XID</type>.
1058  *
1059  * Return value: the #GdkWindow wrapper for the native window, 
1060  *    or %NULL if there is none.
1061  *
1062  * Since: 2.2
1063  **/
1064 GdkWindow *
1065 gdk_window_lookup_for_display (GdkDisplay *display, GdkNativeWindow anid)
1066 {
1067   return (GdkWindow*) gdk_xid_table_lookup_for_display (display, anid);
1068 }
1069
1070 /**
1071  * gdk_window_lookup:
1072  * @anid: a native window handle.
1073  *
1074  * Looks up the #GdkWindow that wraps the given native window handle. 
1075  *
1076  * For example in the X backend, a native window handle is an Xlib
1077  * <type>XID</type>.
1078  *
1079  * Return value: the #GdkWindow wrapper for the native window, 
1080  *    or %NULL if there is none.
1081  **/
1082 GdkWindow *
1083 gdk_window_lookup (GdkNativeWindow anid)
1084 {
1085   return (GdkWindow*) gdk_xid_table_lookup (anid);
1086 }
1087
1088 static void
1089 gdk_toplevel_x11_free_contents (GdkDisplay *display,
1090                                 GdkToplevelX11 *toplevel)
1091 {
1092   if (toplevel->icon_window)
1093     {
1094       g_object_unref (toplevel->icon_window);
1095       toplevel->icon_window = NULL;
1096     }
1097   if (toplevel->icon_pixmap)
1098     {
1099       g_object_unref (toplevel->icon_pixmap);
1100       toplevel->icon_pixmap = NULL;
1101     }
1102   if (toplevel->icon_mask)
1103     {
1104       g_object_unref (toplevel->icon_mask);
1105       toplevel->icon_mask = NULL;
1106     }
1107   if (toplevel->group_leader)
1108     {
1109       g_object_unref (toplevel->group_leader);
1110       toplevel->group_leader = NULL;
1111     }
1112 #ifdef HAVE_XSYNC
1113   if (toplevel->update_counter != None)
1114     {
1115       XSyncDestroyCounter (GDK_DISPLAY_XDISPLAY (display), 
1116                            toplevel->update_counter);
1117       toplevel->update_counter = None;
1118
1119       XSyncIntToValue (&toplevel->current_counter_value, 0);
1120     }
1121 #endif
1122 }
1123
1124 void
1125 _gdk_windowing_window_destroy (GdkWindow *window,
1126                                gboolean   recursing,
1127                                gboolean   foreign_destroy)
1128 {
1129   GdkWindowObject *private = (GdkWindowObject *)window;
1130   GdkToplevelX11 *toplevel;
1131   GdkDrawableImplX11 *draw_impl;
1132   
1133   g_return_if_fail (GDK_IS_WINDOW (window));
1134
1135   _gdk_selection_window_destroyed (window);
1136   
1137   if (private->extension_events != 0)
1138     _gdk_input_window_destroy (window);
1139
1140   toplevel = _gdk_x11_window_get_toplevel (window);
1141   if (toplevel)
1142     gdk_toplevel_x11_free_contents (GDK_WINDOW_DISPLAY (window), toplevel);
1143
1144   draw_impl = GDK_DRAWABLE_IMPL_X11 (private->impl);
1145     
1146   if (draw_impl->xft_draw)
1147     XftDrawDestroy (draw_impl->xft_draw);
1148
1149   if (!recursing && !foreign_destroy)
1150     {
1151       XDestroyWindow (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window));
1152     }
1153 }
1154
1155 void
1156 _gdk_windowing_window_destroy_foreign (GdkWindow *window)
1157 {
1158   /* It's somebody else's window, but in our heirarchy,
1159    * so reparent it to the root window, and then send
1160    * it a delete event, as if we were a WM
1161    */
1162   XClientMessageEvent xevent;
1163   
1164   gdk_error_trap_push ();
1165   gdk_window_hide (window);
1166   gdk_window_reparent (window, NULL, 0, 0);
1167   
1168   xevent.type = ClientMessage;
1169   xevent.window = GDK_WINDOW_XID (window);
1170   xevent.message_type = gdk_x11_get_xatom_by_name_for_display (GDK_WINDOW_DISPLAY (window),
1171                                                                "WM_PROTOCOLS");
1172   xevent.format = 32;
1173   xevent.data.l[0] = gdk_x11_get_xatom_by_name_for_display (GDK_WINDOW_DISPLAY (window),
1174                                                             "WM_DELETE_WINDOW");
1175   xevent.data.l[1] = CurrentTime;
1176   xevent.data.l[2] = 0;
1177   xevent.data.l[3] = 0;
1178   xevent.data.l[4] = 0;
1179   
1180   XSendEvent (GDK_WINDOW_XDISPLAY (window),
1181               GDK_WINDOW_XID (window),
1182               False, 0, (XEvent *)&xevent);
1183   gdk_display_sync (GDK_WINDOW_DISPLAY (window));
1184   gdk_error_trap_pop ();
1185 }
1186
1187 static GdkWindow *
1188 get_root (GdkWindow *window)
1189 {
1190   GdkScreen *screen = gdk_drawable_get_screen (window);
1191
1192   return gdk_screen_get_root_window (screen);
1193 }
1194
1195 /* This function is called when the XWindow is really gone.
1196  */
1197 void
1198 gdk_window_destroy_notify (GdkWindow *window)
1199 {
1200   GdkWindowImplX11 *window_impl;
1201
1202   g_return_if_fail (window != NULL);
1203   
1204   window_impl = GDK_WINDOW_IMPL_X11 (((GdkWindowObject *)window)->impl);
1205
1206   if (!GDK_WINDOW_DESTROYED (window))
1207     {
1208       if (GDK_WINDOW_TYPE(window) != GDK_WINDOW_FOREIGN)
1209         g_warning ("GdkWindow %#lx unexpectedly destroyed", GDK_WINDOW_XID (window));
1210
1211       _gdk_window_destroy (window, TRUE);
1212     }
1213   
1214   _gdk_xid_table_remove (GDK_WINDOW_DISPLAY (window), GDK_WINDOW_XID (window));
1215   if (window_impl->toplevel && window_impl->toplevel->focus_window)
1216     _gdk_xid_table_remove (GDK_WINDOW_DISPLAY (window), window_impl->toplevel->focus_window);
1217
1218   _gdk_xgrab_check_destroy (window);
1219   
1220   g_object_unref (window);
1221 }
1222
1223 static void
1224 update_wm_hints (GdkWindow *window,
1225                  gboolean   force)
1226 {
1227   GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
1228   GdkWindowObject *private = (GdkWindowObject *)window;
1229   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
1230   XWMHints wm_hints;
1231
1232   if (!force &&
1233       !toplevel->is_leader &&
1234       private->state & GDK_WINDOW_STATE_WITHDRAWN)
1235     return;
1236
1237   wm_hints.flags = StateHint | InputHint;
1238   wm_hints.input = private->accept_focus ? True : False;
1239   wm_hints.initial_state = NormalState;
1240   
1241   if (private->state & GDK_WINDOW_STATE_ICONIFIED)
1242     {
1243       wm_hints.flags |= StateHint;
1244       wm_hints.initial_state = IconicState;
1245     }
1246
1247   if (toplevel->icon_window && !GDK_WINDOW_DESTROYED (toplevel->icon_window))
1248     {
1249       wm_hints.flags |= IconWindowHint;
1250       wm_hints.icon_window = GDK_WINDOW_XID (toplevel->icon_window);
1251     }
1252
1253   if (toplevel->icon_pixmap)
1254     {
1255       wm_hints.flags |= IconPixmapHint;
1256       wm_hints.icon_pixmap = GDK_PIXMAP_XID (toplevel->icon_pixmap);
1257     }
1258
1259   if (toplevel->icon_mask)
1260     {
1261       wm_hints.flags |= IconMaskHint;
1262       wm_hints.icon_mask = GDK_PIXMAP_XID (toplevel->icon_mask);
1263     }
1264   
1265   wm_hints.flags |= WindowGroupHint;
1266   if (toplevel->group_leader && !GDK_WINDOW_DESTROYED (toplevel->group_leader))
1267     {
1268       wm_hints.flags |= WindowGroupHint;
1269       wm_hints.window_group = GDK_WINDOW_XID (toplevel->group_leader);
1270     }
1271   else
1272     wm_hints.window_group = GDK_DISPLAY_X11 (display)->leader_window;
1273   
1274   XSetWMHints (GDK_WINDOW_XDISPLAY (window),
1275                GDK_WINDOW_XID (window),
1276                &wm_hints);
1277 }
1278
1279 static void
1280 set_initial_hints (GdkWindow *window)
1281 {
1282   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
1283   Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
1284   Window xwindow = GDK_WINDOW_XID (window);  
1285   GdkWindowObject *private;
1286   GdkToplevelX11 *toplevel;
1287   Atom atoms[7];
1288   gint i;
1289
1290   private = (GdkWindowObject*) window;
1291   toplevel = _gdk_x11_window_get_toplevel (window);
1292
1293   if (!toplevel)
1294     return;
1295
1296   update_wm_hints (window, TRUE);
1297   
1298   /* We set the spec hints regardless of whether the spec is supported,
1299    * since it can't hurt and it's kind of expensive to check whether
1300    * it's supported.
1301    */
1302   
1303   i = 0;
1304
1305   if (private->state & GDK_WINDOW_STATE_MAXIMIZED)
1306     {
1307       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1308                                                         "_NET_WM_STATE_MAXIMIZED_VERT");
1309       ++i;
1310       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1311                                                         "_NET_WM_STATE_MAXIMIZED_HORZ");
1312       ++i;
1313     }
1314
1315   if (private->state & GDK_WINDOW_STATE_ABOVE)
1316     {
1317       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1318                                                         "_NET_WM_STATE_ABOVE");
1319       ++i;
1320     }
1321   
1322   if (private->state & GDK_WINDOW_STATE_BELOW)
1323     {
1324       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1325                                                         "_NET_WM_STATE_BELOW");
1326       ++i;
1327     }
1328   
1329   if (private->state & GDK_WINDOW_STATE_STICKY)
1330     {
1331       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1332                                                         "_NET_WM_STATE_STICKY");
1333       ++i;
1334     }
1335
1336   if (private->state & GDK_WINDOW_STATE_FULLSCREEN)
1337     {
1338       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1339                                                         "_NET_WM_STATE_FULLSCREEN");
1340       ++i;
1341     }
1342
1343   if (private->modal_hint)
1344     {
1345       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1346                                                         "_NET_WM_STATE_MODAL");
1347       ++i;
1348     }
1349
1350   if (toplevel->skip_taskbar_hint)
1351     {
1352       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1353                                                         "_NET_WM_STATE_SKIP_TASKBAR");
1354       ++i;
1355     }
1356
1357   if (toplevel->skip_pager_hint)
1358     {
1359       atoms[i] = gdk_x11_get_xatom_by_name_for_display (display,
1360                                                         "_NET_WM_STATE_SKIP_PAGER");
1361       ++i;
1362     }
1363
1364   if (i > 0)
1365     {
1366       XChangeProperty (xdisplay,
1367                        xwindow,
1368                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"),
1369                        XA_ATOM, 32, PropModeReplace,
1370                        (guchar*) atoms, i);
1371     }
1372   else 
1373     {
1374       XDeleteProperty (xdisplay,
1375                        xwindow,
1376                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"));
1377     }
1378
1379   if (private->state & GDK_WINDOW_STATE_STICKY)
1380     {
1381       atoms[0] = 0xFFFFFFFF;
1382       XChangeProperty (xdisplay,
1383                        xwindow,
1384                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP"),
1385                        XA_CARDINAL, 32, PropModeReplace,
1386                        (guchar*) atoms, 1);
1387     }
1388   else
1389     {
1390       XDeleteProperty (xdisplay,
1391                        xwindow,
1392                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP"));
1393     }
1394
1395   toplevel->map_serial = NextRequest (xdisplay);
1396 }
1397
1398 static void
1399 show_window_internal (GdkWindow *window,
1400                       gboolean   raise)
1401 {
1402   GdkWindowObject *private;
1403   GdkDisplay *display;
1404   GdkDisplayX11 *display_x11;
1405   GdkToplevelX11 *toplevel;
1406   
1407   g_return_if_fail (GDK_IS_WINDOW (window));
1408   
1409   private = (GdkWindowObject*) window;
1410   if (!private->destroyed)
1411     {
1412       GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
1413       Display *xdisplay = GDK_WINDOW_XDISPLAY (window);
1414       Window xwindow = GDK_WINDOW_XID (window);
1415       
1416       if (raise)
1417         XRaiseWindow (xdisplay, xwindow);
1418
1419       if (!GDK_WINDOW_IS_MAPPED (window))
1420         {
1421           set_initial_hints (window);
1422           
1423           gdk_synthesize_window_state (window,
1424                                        GDK_WINDOW_STATE_WITHDRAWN,
1425                                        0);
1426         }
1427       
1428       g_assert (GDK_WINDOW_IS_MAPPED (window));
1429
1430       if (WINDOW_IS_TOPLEVEL (window))
1431         {
1432           display = gdk_drawable_get_display (window);
1433           display_x11 = GDK_DISPLAY_X11 (display);
1434           toplevel = _gdk_x11_window_get_toplevel (window);
1435
1436           if (toplevel->user_time != 0 &&
1437               display_x11->user_time != 0 &&
1438               XSERVER_TIME_IS_LATER (display_x11->user_time, toplevel->user_time))
1439             gdk_x11_window_set_user_time (window, display_x11->user_time);
1440         }
1441
1442       if (impl->position_info.mapped)
1443         {
1444           gboolean unset_bg = !private->input_only &&
1445             (private->window_type == GDK_WINDOW_CHILD ||
1446              impl->override_redirect) &&
1447             gdk_window_is_viewable (window);
1448
1449           if (unset_bg)
1450             _gdk_x11_window_tmp_unset_bg (window, TRUE);
1451           
1452           XMapWindow (xdisplay, xwindow);
1453
1454           if (unset_bg)
1455             {
1456               _gdk_x11_window_tmp_reset_bg (window, TRUE);
1457               gdk_window_invalidate_rect (window, NULL, TRUE);
1458             }
1459         }
1460     }
1461 }
1462
1463 /**
1464  * gdk_window_show_unraised:
1465  * @window: a #GdkWindow
1466  *
1467  * Shows a #GdkWindow onscreen, but does not modify its stacking
1468  * order. In contrast, gdk_window_show() will raise the window
1469  * to the top of the window stack.
1470  *
1471  * On the X11 platform, in Xlib terms, this function calls
1472  * XMapWindow() (it also updates some internal GDK state, which means
1473  * that you can't really use XMapWindow() directly on a GDK window).
1474  * 
1475  **/
1476 void
1477 gdk_window_show_unraised (GdkWindow *window)
1478 {
1479   g_return_if_fail (GDK_IS_WINDOW (window));
1480   
1481   show_window_internal (window, FALSE);
1482 }
1483
1484 /**
1485  * gdk_window_show:
1486  * @window: a #GdkWindow
1487  *
1488  * Like gdk_window_show_unraised(), but also raises the window to the
1489  * top of the window stack (moves the window to the front of the
1490  * Z-order).
1491  *
1492  * This function maps a window so it's visible onscreen. Its opposite
1493  * is gdk_window_hide().
1494  *
1495  * When implementing a #GtkWidget, you should call this function on the widget's
1496  * #GdkWindow as part of the "map" method.
1497  * 
1498  **/
1499 void
1500 gdk_window_show (GdkWindow *window)
1501 {
1502   g_return_if_fail (GDK_IS_WINDOW (window));
1503
1504   show_window_internal (window, TRUE);
1505 }
1506
1507 static void
1508 pre_unmap (GdkWindow *window)
1509 {
1510   GdkWindow *start_window = NULL;
1511   GdkWindowObject *private = (GdkWindowObject *)window;
1512
1513   if (private->input_only)
1514     return;
1515
1516   if (private->window_type == GDK_WINDOW_CHILD)
1517     start_window = (GdkWindow *)private->parent;
1518   else if (private->window_type == GDK_WINDOW_TEMP)
1519     start_window = get_root (window);
1520
1521   if (start_window)
1522     _gdk_x11_window_tmp_unset_bg (start_window, TRUE);
1523 }
1524
1525 static void
1526 post_unmap (GdkWindow *window)
1527 {
1528   GdkWindow *start_window = NULL;
1529   GdkWindowObject *private = (GdkWindowObject *)window;
1530   
1531   if (private->input_only)
1532     return;
1533
1534   if (private->window_type == GDK_WINDOW_CHILD)
1535     start_window = (GdkWindow *)private->parent;
1536   else if (private->window_type == GDK_WINDOW_TEMP)
1537     start_window = get_root (window);
1538
1539   if (start_window)
1540     {
1541       _gdk_x11_window_tmp_reset_bg (start_window, TRUE);
1542
1543       if (private->window_type == GDK_WINDOW_CHILD && private->parent)
1544         {
1545           GdkRectangle invalid_rect;
1546       
1547           gdk_window_get_position (window, &invalid_rect.x, &invalid_rect.y);
1548           gdk_drawable_get_size (GDK_DRAWABLE (window),
1549                                  &invalid_rect.width, &invalid_rect.height);
1550           gdk_window_invalidate_rect ((GdkWindow *)private->parent,
1551                                       &invalid_rect, TRUE);
1552         }
1553     }
1554 }
1555
1556 /**
1557  * gdk_window_hide:
1558  * @window: a #GdkWindow
1559  *
1560  * For toplevel windows, withdraws them, so they will no longer be
1561  * known to the window manager; for all windows, unmaps them, so
1562  * they won't be displayed. Normally done automatically as
1563  * part of gtk_widget_hide().
1564  * 
1565  **/
1566 void
1567 gdk_window_hide (GdkWindow *window)
1568 {
1569   GdkWindowObject *private;
1570   
1571   g_return_if_fail (window != NULL);
1572
1573   private = (GdkWindowObject*) window;
1574
1575   /* We'll get the unmap notify eventually, and handle it then,
1576    * but checking here makes things more consistent if we are
1577    * just doing stuff ourself.
1578    */
1579   _gdk_xgrab_check_unmap (window,
1580                           NextRequest (GDK_WINDOW_XDISPLAY (window)));
1581
1582   /* You can't simply unmap toplevel windows. */
1583   switch (private->window_type)
1584     {
1585     case GDK_WINDOW_TOPLEVEL:
1586     case GDK_WINDOW_DIALOG:
1587     case GDK_WINDOW_TEMP: /* ? */
1588       gdk_window_withdraw (window);
1589       return;
1590       break;
1591       
1592     case GDK_WINDOW_FOREIGN:
1593     case GDK_WINDOW_ROOT:
1594     case GDK_WINDOW_CHILD:
1595       break;
1596     }
1597   
1598   if (!private->destroyed)
1599     {
1600       if (GDK_WINDOW_IS_MAPPED (window))
1601         gdk_synthesize_window_state (window,
1602                                      0,
1603                                      GDK_WINDOW_STATE_WITHDRAWN);
1604
1605       g_assert (!GDK_WINDOW_IS_MAPPED (window));
1606       
1607       _gdk_window_clear_update_area (window);
1608
1609       pre_unmap (window);
1610       
1611       XUnmapWindow (GDK_WINDOW_XDISPLAY (window),
1612                     GDK_WINDOW_XID (window));
1613
1614       post_unmap (window);
1615     }
1616 }
1617
1618 /**
1619  * gdk_window_withdraw:
1620  * @window: a toplevel #GdkWindow
1621  * 
1622  * Withdraws a window (unmaps it and asks the window manager to forget about it).
1623  * This function is not really useful as gdk_window_hide() automatically
1624  * withdraws toplevel windows before hiding them.
1625  * 
1626  **/
1627 void
1628 gdk_window_withdraw (GdkWindow *window)
1629 {
1630   GdkWindowObject *private;
1631   
1632   g_return_if_fail (window != NULL);
1633   
1634   private = (GdkWindowObject*) window;
1635   if (!private->destroyed)
1636     {
1637       if (GDK_WINDOW_IS_MAPPED (window))
1638         gdk_synthesize_window_state (window,
1639                                      0,
1640                                      GDK_WINDOW_STATE_WITHDRAWN);
1641
1642       g_assert (!GDK_WINDOW_IS_MAPPED (window));
1643
1644       pre_unmap (window);
1645       
1646       XWithdrawWindow (GDK_WINDOW_XDISPLAY (window),
1647                        GDK_WINDOW_XID (window), 0);
1648
1649       post_unmap (window);
1650     }
1651 }
1652
1653 /**
1654  * gdk_window_move:
1655  * @window: a #GdkWindow
1656  * @x: X coordinate relative to window's parent
1657  * @y: Y coordinate relative to window's parent
1658  *
1659  * Repositions a window relative to its parent window.
1660  * For toplevel windows, window managers may ignore or modify the move;
1661  * you should probably use gtk_window_move() on a #GtkWindow widget
1662  * anyway, instead of using GDK functions. For child windows,
1663  * the move will reliably succeed.
1664  *
1665  * If you're also planning to resize the window, use gdk_window_move_resize()
1666  * to both move and resize simultaneously, for a nicer visual effect.
1667  **/
1668 void
1669 gdk_window_move (GdkWindow *window,
1670                  gint       x,
1671                  gint       y)
1672 {
1673   GdkWindowObject *private = (GdkWindowObject *)window;
1674   GdkWindowImplX11 *impl;
1675
1676   g_return_if_fail (window != NULL);
1677   g_return_if_fail (GDK_IS_WINDOW (window));
1678
1679   impl = GDK_WINDOW_IMPL_X11 (private->impl);
1680           
1681   if (!GDK_WINDOW_DESTROYED (window))
1682     {
1683       if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
1684         {
1685           _gdk_window_move_resize_child (window, x, y,
1686                                          impl->width, impl->height);
1687         }
1688       else
1689         {
1690           XMoveWindow (GDK_WINDOW_XDISPLAY (window),
1691                        GDK_WINDOW_XID (window),
1692                        x, y);
1693
1694           if (impl->override_redirect)
1695             {
1696               private->x = x;
1697               private->y = y;
1698             }
1699         }
1700     }
1701 }
1702
1703 /**
1704  * gdk_window_resize:
1705  * @window: a #GdkWindow
1706  * @width: new width of the window
1707  * @height: new height of the window
1708  *
1709  * Resizes @window; for toplevel windows, asks the window manager to resize
1710  * the window. The window manager may not allow the resize. When using GTK+,
1711  * use gtk_window_resize() instead of this low-level GDK function.
1712  *
1713  * Windows may not be resized below 1x1.
1714  * 
1715  * If you're also planning to move the window, use gdk_window_move_resize()
1716  * to both move and resize simultaneously, for a nicer visual effect.
1717  **/
1718 void
1719 gdk_window_resize (GdkWindow *window,
1720                    gint       width,
1721                    gint       height)
1722 {
1723   GdkWindowObject *private;
1724   
1725   g_return_if_fail (window != NULL);
1726   g_return_if_fail (GDK_IS_WINDOW (window));
1727   
1728   if (width < 1)
1729     width = 1;
1730   if (height < 1)
1731     height = 1;
1732
1733   private = (GdkWindowObject*) window;
1734   
1735   if (!GDK_WINDOW_DESTROYED (window))
1736     {
1737       if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
1738         {
1739           _gdk_window_move_resize_child (window, private->x, private->y,
1740                                          width, height);
1741         }
1742       else
1743         {
1744           GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
1745
1746           XResizeWindow (GDK_WINDOW_XDISPLAY (window),
1747                          GDK_WINDOW_XID (window),
1748                          width, height);
1749
1750           if (impl->override_redirect)
1751             {
1752               impl->width = width;
1753               impl->height = height;
1754             }
1755           else
1756             {
1757               if (width != impl->width || height != impl->height)
1758                 private->resize_count += 1;
1759             }
1760         }
1761     }
1762 }
1763
1764 /**
1765  * gdk_window_move_resize:
1766  * @window: a #GdkWindow
1767  * @x: new X position relative to window's parent
1768  * @y: new Y position relative to window's parent
1769  * @width: new width
1770  * @height: new height
1771  *
1772  * Equivalent to calling gdk_window_move() and gdk_window_resize(),
1773  * except that both operations are performed at once, avoiding strange
1774  * visual effects. (i.e. the user may be able to see the window first
1775  * move, then resize, if you don't use gdk_window_move_resize().)
1776  **/
1777 void
1778 gdk_window_move_resize (GdkWindow *window,
1779                         gint       x,
1780                         gint       y,
1781                         gint       width,
1782                         gint       height)
1783 {
1784   GdkWindowObject *private;
1785   
1786   g_return_if_fail (window != NULL);
1787   g_return_if_fail (GDK_IS_WINDOW (window));
1788
1789   if (width < 1)
1790     width = 1;
1791   if (height < 1)
1792     height = 1;
1793   
1794   private = (GdkWindowObject*) window;
1795
1796   if (!GDK_WINDOW_DESTROYED (window))
1797     {
1798       if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
1799         {
1800           _gdk_window_move_resize_child (window, x, y, width, height);
1801         }
1802       else
1803         {
1804           GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
1805
1806           XMoveResizeWindow (GDK_WINDOW_XDISPLAY (window),
1807                              GDK_WINDOW_XID (window),
1808                              x, y, width, height);
1809           if (impl->override_redirect)
1810             {
1811               private->x = x;
1812               private->y = y;
1813               impl->width = width;
1814               impl->height = height;
1815             }
1816           else
1817             {
1818               if (width != impl->width || height != impl->height)
1819                 private->resize_count += 1;
1820             }
1821         }
1822     }
1823 }
1824
1825 /**
1826  * gdk_window_reparent:
1827  * @window: a #GdkWindow
1828  * @new_parent: new parent to move @window into
1829  * @x: X location inside the new parent
1830  * @y: Y location inside the new parent
1831  *
1832  * Reparents @window into the given @new_parent. The window being
1833  * reparented will be unmapped as a side effect.
1834  * 
1835  **/
1836 void
1837 gdk_window_reparent (GdkWindow *window,
1838                      GdkWindow *new_parent,
1839                      gint       x,
1840                      gint       y)
1841 {
1842   GdkDisplay *display;
1843   GdkWindowObject *window_private;
1844   GdkWindowObject *parent_private;
1845   GdkWindowObject *old_parent_private;
1846   GdkWindowImplX11 *impl;
1847   gboolean was_toplevel;
1848   
1849   g_return_if_fail (window != NULL);
1850   g_return_if_fail (GDK_IS_WINDOW (window));
1851   g_return_if_fail (new_parent == NULL || GDK_IS_WINDOW (new_parent));
1852   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_ROOT);
1853
1854   if (GDK_WINDOW_DESTROYED (window) ||
1855       (new_parent && GDK_WINDOW_DESTROYED (new_parent)))
1856     {
1857       return;
1858     }
1859   
1860   if (!new_parent)
1861     new_parent = gdk_screen_get_root_window (GDK_WINDOW_SCREEN (window));
1862
1863   display = GDK_WINDOW_DISPLAY (window);
1864   
1865   window_private = (GdkWindowObject*) window;
1866   old_parent_private = (GdkWindowObject*)window_private->parent;
1867   parent_private = (GdkWindowObject*) new_parent;
1868   impl = GDK_WINDOW_IMPL_X11 (window_private->impl);
1869   
1870   XReparentWindow (GDK_WINDOW_XDISPLAY (window),
1871                    GDK_WINDOW_XID (window),
1872                    GDK_WINDOW_XID (new_parent),
1873                    x, y);
1874
1875   window_private->x = x;
1876   window_private->y = y;
1877   
1878   /* From here on, we treat parents of type GDK_WINDOW_FOREIGN like
1879    * the root window
1880    */
1881   if (GDK_WINDOW_TYPE (new_parent) == GDK_WINDOW_FOREIGN)
1882     new_parent = gdk_screen_get_root_window (GDK_WINDOW_SCREEN (window));
1883   
1884   window_private->parent = (GdkWindowObject *)new_parent;
1885
1886   /* Switch the window type as appropriate */
1887
1888   switch (GDK_WINDOW_TYPE (new_parent))
1889     {
1890     case GDK_WINDOW_ROOT:
1891     case GDK_WINDOW_FOREIGN:
1892       was_toplevel = WINDOW_IS_TOPLEVEL (window);
1893       
1894       if (impl->toplevel_window_type != -1)
1895         GDK_WINDOW_TYPE (window) = impl->toplevel_window_type;
1896       else if (GDK_WINDOW_TYPE (window) == GDK_WINDOW_CHILD)
1897         GDK_WINDOW_TYPE (window) = GDK_WINDOW_TOPLEVEL;
1898
1899       if (WINDOW_IS_TOPLEVEL (window) && !was_toplevel)
1900         setup_toplevel_window (window, new_parent);
1901       break;
1902     case GDK_WINDOW_TOPLEVEL:
1903     case GDK_WINDOW_CHILD:
1904     case GDK_WINDOW_DIALOG:
1905     case GDK_WINDOW_TEMP:
1906       if (WINDOW_IS_TOPLEVEL (window))
1907         {
1908           /* Save the original window type so we can restore it if the
1909            * window is reparented back to be a toplevel
1910            */
1911           impl->toplevel_window_type = GDK_WINDOW_TYPE (window);
1912           GDK_WINDOW_TYPE (window) = GDK_WINDOW_CHILD;
1913           if (impl->toplevel)
1914             {
1915               if (impl->toplevel->focus_window)
1916                 {
1917                   XDestroyWindow (GDK_WINDOW_XDISPLAY (window), impl->toplevel->focus_window);
1918                   _gdk_xid_table_remove (GDK_WINDOW_DISPLAY (window), impl->toplevel->focus_window);
1919                 }
1920                 
1921               gdk_toplevel_x11_free_contents (GDK_WINDOW_DISPLAY (window), 
1922                                               impl->toplevel);
1923               g_free (impl->toplevel);
1924               impl->toplevel = NULL;
1925             }
1926         }
1927     }
1928
1929   if (old_parent_private)
1930     old_parent_private->children = g_list_remove (old_parent_private->children, window);
1931   
1932   if ((old_parent_private &&
1933        (!old_parent_private->guffaw_gravity != !parent_private->guffaw_gravity)) ||
1934       (!old_parent_private && parent_private->guffaw_gravity))
1935     gdk_window_set_static_win_gravity (window, parent_private->guffaw_gravity);
1936   
1937   parent_private->children = g_list_prepend (parent_private->children, window);
1938   _gdk_window_init_position (GDK_WINDOW (window_private));
1939 }
1940
1941 void
1942 _gdk_windowing_window_clear_area (GdkWindow *window,
1943                                   gint       x,
1944                                   gint       y,
1945                                   gint       width,
1946                                   gint       height)
1947 {
1948   g_return_if_fail (window != NULL);
1949   g_return_if_fail (GDK_IS_WINDOW (window));
1950   
1951   if (!GDK_WINDOW_DESTROYED (window))
1952     XClearArea (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
1953                 x, y, width, height, False);
1954 }
1955
1956 void
1957 _gdk_windowing_window_clear_area_e (GdkWindow *window,
1958                                     gint       x,
1959                                     gint       y,
1960                                     gint       width,
1961                                     gint       height)
1962 {
1963   g_return_if_fail (window != NULL);
1964   g_return_if_fail (GDK_IS_WINDOW (window));
1965   
1966   if (!GDK_WINDOW_DESTROYED (window))
1967     XClearArea (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
1968                 x, y, width, height, True);
1969 }
1970
1971
1972 /**
1973  * gdk_window_raise:
1974  * @window: a #GdkWindow
1975  * 
1976  * Raises @window to the top of the Z-order (stacking order), so that
1977  * other windows with the same parent window appear below @window.
1978  * This is true whether or not the windows are visible.
1979  *
1980  * If @window is a toplevel, the window manager may choose to deny the
1981  * request to move the window in the Z-order, gdk_window_raise() only
1982  * requests the restack, does not guarantee it.
1983  * 
1984  **/
1985 void
1986 gdk_window_raise (GdkWindow *window)
1987 {
1988   g_return_if_fail (window != NULL);
1989   g_return_if_fail (GDK_IS_WINDOW (window));
1990   
1991   if (!GDK_WINDOW_DESTROYED (window))
1992     XRaiseWindow (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window));
1993 }
1994
1995 /**
1996  * gdk_window_lower:
1997  * @window: a #GdkWindow
1998  * 
1999  * Lowers @window to the bottom of the Z-order (stacking order), so that
2000  * other windows with the same parent window appear above @window.
2001  * This is true whether or not the other windows are visible.
2002  *
2003  * If @window is a toplevel, the window manager may choose to deny the
2004  * request to move the window in the Z-order, gdk_window_lower() only
2005  * requests the restack, does not guarantee it.
2006  *
2007  * Note that gdk_window_show() raises the window again, so don't call this
2008  * function before gdk_window_show(). (Try gdk_window_show_unraised().)
2009  * 
2010  **/
2011 void
2012 gdk_window_lower (GdkWindow *window)
2013 {
2014   g_return_if_fail (window != NULL);
2015   g_return_if_fail (GDK_IS_WINDOW (window));
2016   
2017   if (!GDK_WINDOW_DESTROYED (window))
2018     XLowerWindow (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window));
2019 }
2020
2021 /**
2022  * gdk_window_focus:
2023  * @window: a #GdkWindow
2024  * @timestamp: timestamp of the event triggering the window focus
2025  *
2026  * Sets keyboard focus to @window. If @window is not onscreen this
2027  * will not work. In most cases, gtk_window_present() should be used on
2028  * a #GtkWindow, rather than calling this function.
2029  * 
2030  **/
2031 void
2032 gdk_window_focus (GdkWindow *window,
2033                   guint32    timestamp)
2034 {
2035   GdkDisplay *display;
2036   
2037   g_return_if_fail (GDK_IS_WINDOW (window));
2038
2039   if (GDK_WINDOW_DESTROYED (window))
2040     return;
2041
2042   display = GDK_WINDOW_DISPLAY (window);
2043
2044   if (gdk_x11_screen_supports_net_wm_hint (GDK_WINDOW_SCREEN (window),
2045                                            gdk_atom_intern ("_NET_ACTIVE_WINDOW", FALSE)))
2046     {
2047       XEvent xev;
2048
2049       xev.xclient.type = ClientMessage;
2050       xev.xclient.serial = 0;
2051       xev.xclient.send_event = True;
2052       xev.xclient.window = GDK_WINDOW_XWINDOW (window);
2053       xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (display,
2054                                                                         "_NET_ACTIVE_WINDOW");
2055       xev.xclient.format = 32;
2056       xev.xclient.data.l[0] = 1; /* requestor type; we're an app */
2057       xev.xclient.data.l[1] = timestamp;
2058       xev.xclient.data.l[2] = None; /* currently active window */
2059       xev.xclient.data.l[3] = 0;
2060       xev.xclient.data.l[4] = 0;
2061       
2062       XSendEvent (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window), False,
2063                   SubstructureRedirectMask | SubstructureNotifyMask,
2064                   &xev);
2065     }
2066   else
2067     {
2068       XRaiseWindow (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window));
2069
2070       /* There is no way of knowing reliably whether we are viewable;
2071        * _gdk_x11_set_input_focus_safe() traps errors asynchronously.
2072        */
2073       _gdk_x11_set_input_focus_safe (display, GDK_WINDOW_XID (window),
2074                                      RevertToParent,
2075                                      timestamp);
2076     }
2077 }
2078
2079 /**
2080  * gdk_window_set_hints:
2081  * @window: a #GdkWindow
2082  * @x: ignored field, does not matter
2083  * @y: ignored field, does not matter
2084  * @min_width: minimum width hint
2085  * @min_height: minimum height hint
2086  * @max_width: max width hint
2087  * @max_height: max height hint
2088  * @flags: logical OR of GDK_HINT_POS, GDK_HINT_MIN_SIZE, and/or GDK_HINT_MAX_SIZE
2089  *
2090  * This function is broken and useless and you should ignore it.
2091  * If using GTK+, use functions such as gtk_window_resize(), gtk_window_set_size_request(),
2092  * gtk_window_move(), gtk_window_parse_geometry(), and gtk_window_set_geometry_hints(),
2093  * depending on what you're trying to do.
2094  *
2095  * If using GDK directly, use gdk_window_set_geometry_hints().
2096  * 
2097  **/
2098 void
2099 gdk_window_set_hints (GdkWindow *window,
2100                       gint       x,
2101                       gint       y,
2102                       gint       min_width,
2103                       gint       min_height,
2104                       gint       max_width,
2105                       gint       max_height,
2106                       gint       flags)
2107 {
2108   XSizeHints size_hints;
2109   
2110   g_return_if_fail (window != NULL);
2111   g_return_if_fail (GDK_IS_WINDOW (window));
2112   
2113   if (GDK_WINDOW_DESTROYED (window))
2114     return;
2115   
2116   size_hints.flags = 0;
2117   
2118   if (flags & GDK_HINT_POS)
2119     {
2120       size_hints.flags |= PPosition;
2121       size_hints.x = x;
2122       size_hints.y = y;
2123     }
2124   
2125   if (flags & GDK_HINT_MIN_SIZE)
2126     {
2127       size_hints.flags |= PMinSize;
2128       size_hints.min_width = min_width;
2129       size_hints.min_height = min_height;
2130     }
2131   
2132   if (flags & GDK_HINT_MAX_SIZE)
2133     {
2134       size_hints.flags |= PMaxSize;
2135       size_hints.max_width = max_width;
2136       size_hints.max_height = max_height;
2137     }
2138   
2139   /* FIXME: Would it be better to delete this property if
2140    *        flags == 0? It would save space on the server
2141    */
2142   XSetWMNormalHints (GDK_WINDOW_XDISPLAY (window),
2143                      GDK_WINDOW_XID (window),
2144                      &size_hints);
2145 }
2146
2147 /**
2148  * gdk_window_set_type_hint:
2149  * @window: A toplevel #GdkWindow
2150  * @hint: A hint of the function this window will have
2151  *
2152  * The application can use this call to provide a hint to the window
2153  * manager about the functionality of a window. The window manager
2154  * can use this information when determining the decoration and behaviour
2155  * of the window.
2156  *
2157  * The hint must be set before the window is mapped.
2158  **/
2159 void
2160 gdk_window_set_type_hint (GdkWindow        *window,
2161                           GdkWindowTypeHint hint)
2162 {
2163   GdkDisplay *display;
2164   Atom atom;
2165   
2166   g_return_if_fail (window != NULL);
2167   g_return_if_fail (GDK_IS_WINDOW (window));
2168   
2169   if (GDK_WINDOW_DESTROYED (window))
2170     return;
2171
2172   display = gdk_drawable_get_display (window);
2173
2174   switch (hint)
2175     {
2176     case GDK_WINDOW_TYPE_HINT_DIALOG:
2177       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DIALOG");
2178       break;
2179     case GDK_WINDOW_TYPE_HINT_MENU:
2180       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_MENU");
2181       break;
2182     case GDK_WINDOW_TYPE_HINT_TOOLBAR:
2183       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_TOOLBAR");
2184       break;
2185     case GDK_WINDOW_TYPE_HINT_UTILITY:
2186       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_UTILITY");
2187       break;
2188     case GDK_WINDOW_TYPE_HINT_SPLASHSCREEN:
2189       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_SPLASH");
2190       break;
2191     case GDK_WINDOW_TYPE_HINT_DOCK:
2192       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DOCK");
2193       break;
2194     case GDK_WINDOW_TYPE_HINT_DESKTOP:
2195       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DESKTOP");
2196       break;
2197     default:
2198       g_warning ("Unknown hint %d passed to gdk_window_set_type_hint", hint);
2199       /* Fall thru */
2200     case GDK_WINDOW_TYPE_HINT_NORMAL:
2201       atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_NORMAL");
2202       break;
2203     }
2204
2205   XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
2206                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE"),
2207                    XA_ATOM, 32, PropModeReplace,
2208                    (guchar *)&atom, 1);
2209 }
2210
2211
2212 static void
2213 gdk_wmspec_change_state (gboolean   add,
2214                          GdkWindow *window,
2215                          GdkAtom    state1,
2216                          GdkAtom    state2)
2217 {
2218   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
2219   XEvent xev;
2220   
2221 #define _NET_WM_STATE_REMOVE        0    /* remove/unset property */
2222 #define _NET_WM_STATE_ADD           1    /* add/set property */
2223 #define _NET_WM_STATE_TOGGLE        2    /* toggle property  */  
2224   
2225   xev.xclient.type = ClientMessage;
2226   xev.xclient.serial = 0;
2227   xev.xclient.send_event = True;
2228   xev.xclient.window = GDK_WINDOW_XID (window);
2229   xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE");
2230   xev.xclient.format = 32;
2231   xev.xclient.data.l[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
2232   xev.xclient.data.l[1] = gdk_x11_atom_to_xatom_for_display (display, state1);
2233   xev.xclient.data.l[2] = gdk_x11_atom_to_xatom_for_display (display, state2);
2234   xev.xclient.data.l[3] = 0;
2235   xev.xclient.data.l[4] = 0;
2236   
2237   XSendEvent (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XROOTWIN (window), False,
2238               SubstructureRedirectMask | SubstructureNotifyMask,
2239               &xev);
2240 }
2241
2242 /**
2243  * gdk_window_set_modal_hint:
2244  * @window: A toplevel #GdkWindow
2245  * @modal: TRUE if the window is modal, FALSE otherwise.
2246  *
2247  * The application can use this hint to tell the window manager
2248  * that a certain window has modal behaviour. The window manager
2249  * can use this information to handle modal windows in a special
2250  * way.
2251  *
2252  * You should only use this on windows for which you have
2253  * previously called #gdk_window_set_transient_for()
2254  **/
2255 void
2256 gdk_window_set_modal_hint (GdkWindow *window,
2257                            gboolean   modal)
2258 {
2259   GdkWindowObject *private;
2260
2261   g_return_if_fail (window != NULL);
2262   g_return_if_fail (GDK_IS_WINDOW (window));
2263   
2264   if (GDK_WINDOW_DESTROYED (window))
2265     return;
2266
2267   private = (GdkWindowObject*) window;
2268
2269   private->modal_hint = modal;
2270
2271   if (GDK_WINDOW_IS_MAPPED (window))
2272     gdk_wmspec_change_state (modal, window,
2273                              gdk_atom_intern ("_NET_WM_STATE_MODAL", FALSE), 
2274                              NULL);
2275 }
2276
2277 /**
2278  * gdk_window_set_skip_taskbar_hint:
2279  * @window: a toplevel #GdkWindow
2280  * @skips_taskbar: %TRUE to skip the taskbar
2281  * 
2282  * Toggles whether a window should appear in a task list or window
2283  * list. If a window's semantic type as specified with
2284  * gdk_window_set_type_hint() already fully describes the window, this
2285  * function should NOT be called in addition, instead you should allow
2286  * the window to be treated according to standard policy for its
2287  * semantic type.
2288  *
2289  * Since: 2.2
2290  **/
2291 void
2292 gdk_window_set_skip_taskbar_hint (GdkWindow *window,
2293                                   gboolean   skips_taskbar)
2294 {
2295   GdkToplevelX11 *toplevel;
2296   
2297   g_return_if_fail (window != NULL);
2298   g_return_if_fail (GDK_IS_WINDOW (window));
2299   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
2300   
2301   if (GDK_WINDOW_DESTROYED (window))
2302     return;
2303
2304   toplevel = _gdk_x11_window_get_toplevel (window);
2305   toplevel->skip_taskbar_hint = skips_taskbar;
2306
2307   if (GDK_WINDOW_IS_MAPPED (window))
2308     gdk_wmspec_change_state (skips_taskbar, window,
2309                              gdk_atom_intern ("_NET_WM_STATE_SKIP_TASKBAR", FALSE), 
2310                              NULL);
2311 }
2312
2313 /**
2314  * gdk_window_set_skip_pager_hint:
2315  * @window: a toplevel #GdkWindow
2316  * @skips_pager: %TRUE to skip the pager
2317  * 
2318  * Toggles whether a window should appear in a pager (workspace
2319  * switcher, or other desktop utility program that displays a small
2320  * thumbnail representation of the windows on the desktop). If a
2321  * window's semantic type as specified with gdk_window_set_type_hint()
2322  * already fully describes the window, this function should NOT be
2323  * called in addition, instead you should allow the window to be
2324  * treated according to standard policy for its semantic type.
2325  *
2326  * Since: 2.2
2327  **/
2328 void
2329 gdk_window_set_skip_pager_hint (GdkWindow *window,
2330                                 gboolean   skips_pager)
2331 {
2332   GdkToplevelX11 *toplevel;
2333     
2334   g_return_if_fail (window != NULL);
2335   g_return_if_fail (GDK_IS_WINDOW (window));
2336   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
2337   
2338   if (GDK_WINDOW_DESTROYED (window))
2339     return;
2340
2341   toplevel = _gdk_x11_window_get_toplevel (window);
2342   toplevel->skip_pager_hint = skips_pager;
2343   
2344   if (GDK_WINDOW_IS_MAPPED (window))
2345     gdk_wmspec_change_state (skips_pager, window,
2346                              gdk_atom_intern ("_NET_WM_STATE_SKIP_PAGER", FALSE), 
2347                              NULL);
2348 }
2349
2350 /**
2351  * gdk_window_set_geometry_hints:
2352  * @window: a toplevel #GdkWindow
2353  * @geometry: geometry hints
2354  * @geom_mask: bitmask indicating fields of @geometry to pay attention to
2355  *
2356  * Sets the geometry hints for @window. Hints flagged in @geom_mask
2357  * are set, hints not flagged in @geom_mask are unset.
2358  * To unset all hints, use a @geom_mask of 0 and a @geometry of %NULL.
2359  *
2360  * This function provides hints to the windowing system about
2361  * acceptable sizes for a toplevel window. The purpose of 
2362  * this is to constrain user resizing, but the windowing system
2363  * will typically  (but is not required to) also constrain the
2364  * current size of the window to the provided values and
2365  * constrain programatic resizing via gdk_window_resize() or
2366  * gdk_window_move_resize().
2367  * 
2368  * Note that on X11, this effect has no effect on windows
2369  * of type GDK_WINDOW_TEMP or windows where override_redirect
2370  * has been turned on via gdk_window_set_override_redirect()
2371  * since these windows are not resizable by the user.
2372  * 
2373  * Since you can't count on the windowing system doing the
2374  * constraints for programmatic resizes, you should generally
2375  * call gdk_window_constrain_size() yourself to determine
2376  * appropriate sizes.
2377  *
2378  **/
2379 void 
2380 gdk_window_set_geometry_hints (GdkWindow      *window,
2381                                GdkGeometry    *geometry,
2382                                GdkWindowHints  geom_mask)
2383 {
2384   XSizeHints size_hints;
2385   
2386   g_return_if_fail (window != NULL);
2387   g_return_if_fail (GDK_IS_WINDOW (window));
2388   
2389   if (GDK_WINDOW_DESTROYED (window))
2390     return;
2391   
2392   size_hints.flags = 0;
2393   
2394   if (geom_mask & GDK_HINT_POS)
2395     {
2396       size_hints.flags |= PPosition;
2397       /* We need to initialize the following obsolete fields because KWM 
2398        * apparently uses these fields if they are non-zero.
2399        * #@#!#!$!.
2400        */
2401       size_hints.x = 0;
2402       size_hints.y = 0;
2403     }
2404
2405   if (geom_mask & GDK_HINT_USER_POS)
2406     {
2407       size_hints.flags |= USPosition;
2408     }
2409
2410   if (geom_mask & GDK_HINT_USER_SIZE)
2411     {
2412       size_hints.flags |= USSize;
2413     }
2414   
2415   if (geom_mask & GDK_HINT_MIN_SIZE)
2416     {
2417       size_hints.flags |= PMinSize;
2418       size_hints.min_width = geometry->min_width;
2419       size_hints.min_height = geometry->min_height;
2420     }
2421   
2422   if (geom_mask & GDK_HINT_MAX_SIZE)
2423     {
2424       size_hints.flags |= PMaxSize;
2425       size_hints.max_width = MAX (geometry->max_width, 1);
2426       size_hints.max_height = MAX (geometry->max_height, 1);
2427     }
2428   
2429   if (geom_mask & GDK_HINT_BASE_SIZE)
2430     {
2431       size_hints.flags |= PBaseSize;
2432       size_hints.base_width = geometry->base_width;
2433       size_hints.base_height = geometry->base_height;
2434     }
2435   
2436   if (geom_mask & GDK_HINT_RESIZE_INC)
2437     {
2438       size_hints.flags |= PResizeInc;
2439       size_hints.width_inc = geometry->width_inc;
2440       size_hints.height_inc = geometry->height_inc;
2441     }
2442   
2443   if (geom_mask & GDK_HINT_ASPECT)
2444     {
2445       size_hints.flags |= PAspect;
2446       if (geometry->min_aspect <= 1)
2447         {
2448           size_hints.min_aspect.x = 65536 * geometry->min_aspect;
2449           size_hints.min_aspect.y = 65536;
2450         }
2451       else
2452         {
2453           size_hints.min_aspect.x = 65536;
2454           size_hints.min_aspect.y = 65536 / geometry->min_aspect;;
2455         }
2456       if (geometry->max_aspect <= 1)
2457         {
2458           size_hints.max_aspect.x = 65536 * geometry->max_aspect;
2459           size_hints.max_aspect.y = 65536;
2460         }
2461       else
2462         {
2463           size_hints.max_aspect.x = 65536;
2464           size_hints.max_aspect.y = 65536 / geometry->max_aspect;;
2465         }
2466     }
2467
2468   if (geom_mask & GDK_HINT_WIN_GRAVITY)
2469     {
2470       size_hints.flags |= PWinGravity;
2471       size_hints.win_gravity = geometry->win_gravity;
2472     }
2473   
2474   /* FIXME: Would it be better to delete this property if
2475    *        geom_mask == 0? It would save space on the server
2476    */
2477   XSetWMNormalHints (GDK_WINDOW_XDISPLAY (window),
2478                      GDK_WINDOW_XID (window),
2479                      &size_hints);
2480 }
2481
2482 static void
2483 gdk_window_get_geometry_hints (GdkWindow      *window,
2484                                GdkGeometry    *geometry,
2485                                GdkWindowHints *geom_mask)
2486 {
2487   XSizeHints size_hints;  
2488   glong junk_size_mask = 0;
2489
2490   g_return_if_fail (GDK_IS_WINDOW (window));
2491   g_return_if_fail (geometry != NULL);
2492   g_return_if_fail (geom_mask != NULL);
2493
2494   *geom_mask = 0;
2495   
2496   if (GDK_WINDOW_DESTROYED (window))
2497     return;
2498   
2499   if (!XGetWMNormalHints (GDK_WINDOW_XDISPLAY (window),
2500                           GDK_WINDOW_XID (window),
2501                           &size_hints,
2502                           &junk_size_mask))
2503     return;                   
2504
2505   if (size_hints.flags & PMinSize)
2506     {
2507       *geom_mask |= GDK_HINT_MIN_SIZE;
2508       geometry->min_width = size_hints.min_width;
2509       geometry->min_height = size_hints.min_height;
2510     }
2511
2512   if (size_hints.flags & PMaxSize)
2513     {
2514       *geom_mask |= GDK_HINT_MAX_SIZE;
2515       geometry->max_width = MAX (size_hints.max_width, 1);
2516       geometry->max_height = MAX (size_hints.max_height, 1);
2517     }
2518
2519   if (size_hints.flags & PResizeInc)
2520     {
2521       *geom_mask |= GDK_HINT_RESIZE_INC;
2522       geometry->width_inc = size_hints.width_inc;
2523       geometry->height_inc = size_hints.height_inc;
2524     }
2525
2526   if (size_hints.flags & PAspect)
2527     {
2528       *geom_mask |= GDK_HINT_ASPECT;
2529
2530       geometry->min_aspect = (gdouble) size_hints.min_aspect.x / (gdouble) size_hints.min_aspect.y;
2531       geometry->max_aspect = (gdouble) size_hints.max_aspect.x / (gdouble) size_hints.max_aspect.y;
2532     }
2533
2534   if (size_hints.flags & PWinGravity)
2535     {
2536       *geom_mask |= GDK_HINT_WIN_GRAVITY;
2537       geometry->win_gravity = size_hints.win_gravity;
2538     }
2539 }
2540
2541 static gboolean
2542 utf8_is_latin1 (const gchar *str)
2543 {
2544   const char *p = str;
2545
2546   while (*p)
2547     {
2548       gunichar ch = g_utf8_get_char (p);
2549
2550       if (ch > 0xff)
2551         return FALSE;
2552       
2553       p = g_utf8_next_char (p);
2554     }
2555
2556   return TRUE;
2557 }
2558
2559 /* Set the property to @utf8_str as STRING if the @utf8_str is fully
2560  * convertable to STRING, otherwise, set it as compound text
2561  */
2562 static void
2563 set_text_property (GdkDisplay  *display,
2564                    Window       xwindow,
2565                    Atom         property,
2566                    const gchar *utf8_str)
2567 {
2568   guchar *prop_text = NULL;
2569   Atom prop_type;
2570   gint prop_length;
2571   gint prop_format;
2572   gboolean is_compound_text;
2573   
2574   if (utf8_is_latin1 (utf8_str))
2575     {
2576       prop_type = XA_STRING;
2577       prop_text = gdk_utf8_to_string_target (utf8_str);
2578       prop_length = prop_text ? strlen (prop_text) : 0;
2579       prop_format = 8;
2580       is_compound_text = FALSE;
2581     }
2582   else
2583     {
2584       GdkAtom gdk_type;
2585       
2586       gdk_utf8_to_compound_text_for_display (display,
2587                                              utf8_str, &gdk_type, &prop_format,
2588                                              &prop_text, &prop_length);
2589       prop_type = gdk_x11_atom_to_xatom_for_display (display, gdk_type);
2590       is_compound_text = TRUE;
2591     }
2592
2593   if (prop_text)
2594     {
2595       XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
2596                        xwindow,
2597                        property,
2598                        prop_type, prop_format,
2599                        PropModeReplace, prop_text,
2600                        prop_length);
2601
2602       if (is_compound_text)
2603         gdk_free_compound_text (prop_text);
2604       else
2605         g_free (prop_text);
2606     }
2607 }
2608
2609 /* Set WM_NAME and _NET_WM_NAME
2610  */
2611 static void
2612 set_wm_name (GdkDisplay  *display,
2613              Window       xwindow,
2614              const gchar *name)
2615 {
2616   XChangeProperty (GDK_DISPLAY_XDISPLAY (display), xwindow,
2617                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_NAME"),
2618                    gdk_x11_get_xatom_by_name_for_display (display, "UTF8_STRING"), 8,
2619                    PropModeReplace, name, strlen (name));
2620   
2621   set_text_property (display, xwindow,
2622                      gdk_x11_get_xatom_by_name_for_display (display, "WM_NAME"),
2623                      name);
2624 }
2625
2626 /**
2627  * gdk_window_set_title:
2628  * @window: a toplevel #GdkWindow
2629  * @title: title of @window
2630  *
2631  * Sets the title of a toplevel window, to be displayed in the titlebar.
2632  * If you haven't explicitly set the icon name for the window
2633  * (using gdk_window_set_icon_name()), the icon name will be set to
2634  * @title as well. @title must be in UTF-8 encoding (as with all
2635  * user-readable strings in GDK/GTK+). @title may not be %NULL.
2636  **/
2637 void
2638 gdk_window_set_title (GdkWindow   *window,
2639                       const gchar *title)
2640 {
2641   GdkDisplay *display;
2642   Display *xdisplay;
2643   Window xwindow;
2644   
2645   g_return_if_fail (window != NULL);
2646   g_return_if_fail (GDK_IS_WINDOW (window));
2647   g_return_if_fail (title != NULL);
2648
2649   if (GDK_WINDOW_DESTROYED (window))
2650     return;
2651   
2652   display = gdk_drawable_get_display (window);
2653   xdisplay = GDK_DISPLAY_XDISPLAY (display);
2654   xwindow = GDK_WINDOW_XID (window);
2655
2656   set_wm_name (display, xwindow, title);
2657   
2658   if (!gdk_window_icon_name_set (window))
2659     {
2660       XChangeProperty (xdisplay, xwindow,
2661                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON_NAME"),
2662                        gdk_x11_get_xatom_by_name_for_display (display, "UTF8_STRING"), 8,
2663                        PropModeReplace, title, strlen (title));
2664       
2665       set_text_property (display, xwindow,
2666                          gdk_x11_get_xatom_by_name_for_display (display, "WM_ICON_NAME"),
2667                          title);
2668     }
2669 }
2670
2671 /**
2672  * gdk_window_set_role:
2673  * @window: a toplevel #GdkWindow
2674  * @role: a string indicating its role
2675  *
2676  * When using GTK+, typically you should use gtk_window_set_role() instead
2677  * of this low-level function.
2678  * 
2679  * The window manager and session manager use a window's role to
2680  * distinguish it from other kinds of window in the same application.
2681  * When an application is restarted after being saved in a previous
2682  * session, all windows with the same title and role are treated as
2683  * interchangeable.  So if you have two windows with the same title
2684  * that should be distinguished for session management purposes, you
2685  * should set the role on those windows. It doesn't matter what string
2686  * you use for the role, as long as you have a different role for each
2687  * non-interchangeable kind of window.
2688  * 
2689  **/
2690 void          
2691 gdk_window_set_role (GdkWindow   *window,
2692                      const gchar *role)
2693 {
2694   GdkDisplay *display;
2695   
2696   g_return_if_fail (window != NULL);
2697   g_return_if_fail (GDK_IS_WINDOW (window));
2698
2699   display = gdk_drawable_get_display (window);
2700
2701   if (!GDK_WINDOW_DESTROYED (window))
2702     {
2703       if (role)
2704         XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
2705                          gdk_x11_get_xatom_by_name_for_display (display, "WM_WINDOW_ROLE"),
2706                          XA_STRING, 8, PropModeReplace, role, strlen (role));
2707       else
2708         XDeleteProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
2709                          gdk_x11_get_xatom_by_name_for_display (display, "WM_WINDOW_ROLE"));
2710     }
2711 }
2712
2713 /**
2714  * gdk_window_set_transient_for:
2715  * @window: a toplevel #GdkWindow
2716  * @parent: another toplevel #GdkWindow
2717  *
2718  * Indicates to the window manager that @window is a transient dialog
2719  * associated with the application window @parent. This allows the
2720  * window manager to do things like center @window on @parent and
2721  * keep @window above @parent.
2722  *
2723  * See gtk_window_set_transient_for() if you're using #GtkWindow or
2724  * #GtkDialog.
2725  * 
2726  **/
2727 void          
2728 gdk_window_set_transient_for (GdkWindow *window, 
2729                               GdkWindow *parent)
2730 {
2731   GdkWindowObject *private;
2732   GdkWindowObject *parent_private;
2733   
2734   g_return_if_fail (window != NULL);
2735   g_return_if_fail (GDK_IS_WINDOW (window));
2736   
2737   private = (GdkWindowObject*) window;
2738   parent_private = (GdkWindowObject*) parent;
2739   
2740   if (!GDK_WINDOW_DESTROYED (window) && !GDK_WINDOW_DESTROYED (parent))
2741     XSetTransientForHint (GDK_WINDOW_XDISPLAY (window), 
2742                           GDK_WINDOW_XID (window),
2743                           GDK_WINDOW_XID (parent));
2744 }
2745
2746 /**
2747  * gdk_window_set_background:
2748  * @window: a #GdkWindow
2749  * @color: an allocated #GdkColor
2750  *
2751  * Sets the background color of @window. (However, when using GTK+,
2752  * set the background of a widget with gtk_widget_modify_bg() - if
2753  * you're an application - or gtk_style_set_background() - if you're
2754  * implementing a custom widget.)
2755  *
2756  * The @color must be allocated; gdk_rgb_find_color() is the best way
2757  * to allocate a color.
2758  *
2759  * See also gdk_window_set_back_pixmap().
2760  * 
2761  **/
2762 void
2763 gdk_window_set_background (GdkWindow      *window,
2764                            const GdkColor *color)
2765 {
2766   GdkWindowObject *private = (GdkWindowObject *)window;
2767   
2768   g_return_if_fail (window != NULL);
2769   g_return_if_fail (GDK_IS_WINDOW (window));
2770   
2771   if (!GDK_WINDOW_DESTROYED (window))
2772     XSetWindowBackground (GDK_WINDOW_XDISPLAY (window),
2773                           GDK_WINDOW_XID (window), color->pixel);
2774
2775   private->bg_color = *color;
2776
2777   if (private->bg_pixmap &&
2778       private->bg_pixmap != GDK_PARENT_RELATIVE_BG &&
2779       private->bg_pixmap != GDK_NO_BG)
2780     g_object_unref (private->bg_pixmap);
2781   
2782   private->bg_pixmap = NULL;
2783 }
2784
2785 /**
2786  * gdk_window_set_back_pixmap:
2787  * @window: a #GdkWindow
2788  * @pixmap: a #GdkPixmap, or %NULL
2789  * @parent_relative: whether the tiling origin is at the origin of @window's parent
2790  *
2791  * Sets the background pixmap of @window. May also be used to set a background of
2792  * "None" on @window, by setting a background pixmap of %NULL.
2793  * A background pixmap will be tiled, positioning the first tile at the origin of
2794  * @window, or if @parent_relative is %TRUE, the tiling will be done based on the
2795  * origin of the parent window (useful to align tiles in a parent with tiles
2796  * in a child).
2797  *
2798  * A background pixmap of %NULL means that the window will have no
2799  * background.  A window with no background will never have its
2800  * background filled by the windowing system, instead the window will
2801  * contain whatever pixels were already in the corresponding area of
2802  * the display.
2803  *
2804  * The windowing system will normally fill a window with its background
2805  * when the window is obscured then exposed, and when you call
2806  * gdk_window_clear().
2807  * 
2808  **/
2809 void
2810 gdk_window_set_back_pixmap (GdkWindow *window,
2811                             GdkPixmap *pixmap,
2812                             gboolean   parent_relative)
2813 {
2814   GdkWindowObject *private = (GdkWindowObject *)window;
2815   Pixmap xpixmap;
2816   
2817   g_return_if_fail (window != NULL);
2818   g_return_if_fail (GDK_IS_WINDOW (window));
2819   g_return_if_fail (pixmap == NULL || !parent_relative);
2820   g_return_if_fail (pixmap == NULL || gdk_drawable_get_depth (window) == gdk_drawable_get_depth (pixmap));
2821   
2822   if (private->bg_pixmap &&
2823       private->bg_pixmap != GDK_PARENT_RELATIVE_BG &&
2824       private->bg_pixmap != GDK_NO_BG)
2825     g_object_unref (private->bg_pixmap);
2826
2827   if (parent_relative)
2828     {
2829       xpixmap = ParentRelative;
2830       private->bg_pixmap = GDK_PARENT_RELATIVE_BG;
2831     }
2832   else
2833     {
2834       if (pixmap)
2835         {
2836           g_object_ref (pixmap);
2837           private->bg_pixmap = pixmap;
2838           xpixmap = GDK_PIXMAP_XID (pixmap);
2839         }
2840       else
2841         {
2842           xpixmap = None;
2843           private->bg_pixmap = GDK_NO_BG;
2844         }
2845     }
2846   
2847   if (!GDK_WINDOW_DESTROYED (window))
2848     XSetWindowBackgroundPixmap (GDK_WINDOW_XDISPLAY (window),
2849                                 GDK_WINDOW_XID (window), xpixmap);
2850 }
2851
2852 /**
2853  * gdk_window_set_cursor:
2854  * @window: a #GdkWindow
2855  * @cursor: a cursor
2856  *
2857  * Sets the mouse pointer for a #GdkWindow. Use gdk_cursor_new() or
2858  * gdk_cursor_new_from_pixmap() to create the cursor.
2859  * To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create
2860  * a cursor with no pixels in it. Passing %NULL for the @cursor argument
2861  * to gdk_window_set_cursor() means that @window will use the cursor of
2862  * its parent window. Most windows should use this default.
2863  * 
2864  **/
2865 void
2866 gdk_window_set_cursor (GdkWindow *window,
2867                        GdkCursor *cursor)
2868 {
2869   GdkCursorPrivate *cursor_private;
2870   Cursor xcursor;
2871   
2872   g_return_if_fail (window != NULL);
2873   g_return_if_fail (GDK_IS_WINDOW (window));
2874   
2875   cursor_private = (GdkCursorPrivate*) cursor;
2876   
2877   if (!cursor)
2878     xcursor = None;
2879   else
2880     xcursor = cursor_private->xcursor;
2881   
2882   if (!GDK_WINDOW_DESTROYED (window))
2883     XDefineCursor (GDK_WINDOW_XDISPLAY (window),
2884                    GDK_WINDOW_XID (window),
2885                    xcursor);
2886 }
2887
2888 /**
2889  * gdk_window_get_geometry:
2890  * @window: a #GdkWindow
2891  * @x: return location for X coordinate of window (relative to its parent)
2892  * @y: return location for Y coordinate of window (relative to its parent)
2893  * @width: return location for width of window
2894  * @height: return location for height of window
2895  * @depth: return location for bit depth of window
2896  *
2897  * Any of the return location arguments to this function may be %NULL,
2898  * if you aren't interested in getting the value of that field.
2899  *
2900  * The X and Y coordinates returned are relative to the parent window
2901  * of @window, which for toplevels usually means relative to the
2902  * window decorations (titlebar, etc.) rather than relative to the
2903  * root window (screen-size background window).
2904  *
2905  * On the X11 platform, the geometry is obtained from the X server,
2906  * so reflects the latest position of @window; this may be out-of-sync
2907  * with the position of @window delivered in the most-recently-processed
2908  * #GdkEventConfigure. gdk_window_get_position() in contrast gets the
2909  * position from the most recent configure event.
2910  * 
2911  * <note>
2912  * If @window is not a toplevel, it is <emphasis>much</emphasis> better 
2913  * to call gdk_window_get_position() and gdk_drawable_get_size() instead, 
2914  * because it avoids the roundtrip to the X server and because 
2915  * gdk_drawable_get_size() supports the full 32-bit coordinate space,
2916  * whereas gdk_window_get_geometry() is restricted to the 16-bit
2917  * coordinates of X11.
2918  *</note>
2919  **/
2920 void
2921 gdk_window_get_geometry (GdkWindow *window,
2922                          gint      *x,
2923                          gint      *y,
2924                          gint      *width,
2925                          gint      *height,
2926                          gint      *depth)
2927 {
2928   Window root;
2929   gint tx;
2930   gint ty;
2931   guint twidth;
2932   guint theight;
2933   guint tborder_width;
2934   guint tdepth;
2935   
2936   g_return_if_fail (window == NULL || GDK_IS_WINDOW (window));
2937   
2938   if (!window)
2939     {
2940       GDK_NOTE (MULTIHEAD,
2941                 g_message ("gdk_window_get_geometry(): Window needs to be non-NULL to be multi head safe"));
2942       window = gdk_screen_get_root_window ((gdk_screen_get_default ()));
2943     }
2944
2945   if (!GDK_WINDOW_DESTROYED (window))
2946     {
2947       XGetGeometry (GDK_WINDOW_XDISPLAY (window),
2948                     GDK_WINDOW_XID (window),
2949                     &root, &tx, &ty, &twidth, &theight, &tborder_width, &tdepth);
2950       
2951       if (x)
2952         *x = tx;
2953       if (y)
2954         *y = ty;
2955       if (width)
2956         *width = twidth;
2957       if (height)
2958         *height = theight;
2959       if (depth)
2960         *depth = tdepth;
2961     }
2962 }
2963
2964 /**
2965  * gdk_window_get_origin:
2966  * @window: a #GdkWindow
2967  * @x: return location for X coordinate
2968  * @y: return location for Y coordinate
2969  * 
2970  * Obtains the position of a window in root window coordinates.
2971  * (Compare with gdk_window_get_position() and
2972  * gdk_window_get_geometry() which return the position of a window
2973  * relative to its parent window.)
2974  * 
2975  * Return value: not meaningful, ignore
2976  **/
2977 gint
2978 gdk_window_get_origin (GdkWindow *window,
2979                        gint      *x,
2980                        gint      *y)
2981 {
2982   gint return_val;
2983   Window child;
2984   gint tx = 0;
2985   gint ty = 0;
2986   
2987   g_return_val_if_fail (window != NULL, 0);
2988   
2989   if (!GDK_WINDOW_DESTROYED (window))
2990     {
2991       return_val = XTranslateCoordinates (GDK_WINDOW_XDISPLAY (window),
2992                                           GDK_WINDOW_XID (window),
2993                                           GDK_WINDOW_XROOTWIN (window),
2994                                           0, 0, &tx, &ty,
2995                                           &child);
2996     }
2997   else
2998     return_val = 0;
2999   
3000   if (x)
3001     *x = tx;
3002   if (y)
3003     *y = ty;
3004   
3005   return return_val;
3006 }
3007
3008 /**
3009  * gdk_window_get_deskrelative_origin:
3010  * @window: a toplevel #GdkWindow
3011  * @x: return location for X coordinate
3012  * @y: return location for Y coordinate
3013  * 
3014  * This gets the origin of a #GdkWindow relative to
3015  * an Enlightenment-window-manager desktop. As long as you don't
3016  * assume that the user's desktop/workspace covers the entire
3017  * root window (i.e. you don't assume that the desktop begins
3018  * at root window coordinate 0,0) this function is not necessary.
3019  * It's deprecated for that reason.
3020  * 
3021  * Return value: not meaningful
3022  **/
3023 gboolean
3024 gdk_window_get_deskrelative_origin (GdkWindow *window,
3025                                     gint      *x,
3026                                     gint      *y)
3027 {
3028   gboolean return_val = FALSE;
3029   gint num_children, format_return;
3030   Window win, *child, parent, root;
3031   gint tx = 0;
3032   gint ty = 0;
3033   Atom type_return;
3034   Atom atom;
3035   gulong number_return, bytes_after_return;
3036   guchar *data_return;
3037   
3038   g_return_val_if_fail (window != NULL, FALSE);
3039   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
3040   
3041   if (!GDK_WINDOW_DESTROYED (window))
3042     {
3043       atom = gdk_x11_get_xatom_by_name_for_display (GDK_WINDOW_DISPLAY (window),
3044                                                     "ENLIGHTENMENT_DESKTOP");
3045       win = GDK_WINDOW_XID (window);
3046       
3047       while (XQueryTree (GDK_WINDOW_XDISPLAY (window), win, &root, &parent,
3048                          &child, (unsigned int *)&num_children))
3049         {
3050           if ((child) && (num_children > 0))
3051             XFree (child);
3052           
3053           if (!parent)
3054             break;
3055           else
3056             win = parent;
3057           
3058           if (win == root)
3059             break;
3060           
3061           data_return = NULL;
3062           XGetWindowProperty (GDK_WINDOW_XDISPLAY (window), win, atom, 0, 0,
3063                               False, XA_CARDINAL, &type_return, &format_return,
3064                               &number_return, &bytes_after_return, &data_return);
3065
3066           if (type_return == XA_CARDINAL)
3067             {
3068               XFree (data_return);
3069               break;
3070             }
3071         }
3072       
3073       return_val = XTranslateCoordinates (GDK_WINDOW_XDISPLAY (window),
3074                                           GDK_WINDOW_XID (window),
3075                                           win,
3076                                           0, 0, &tx, &ty,
3077                                           &root);
3078       if (x)
3079         *x = tx;
3080       if (y)
3081         *y = ty;
3082     }
3083   
3084   
3085   return return_val;
3086 }
3087
3088 /**
3089  * gdk_window_get_root_origin:
3090  * @window: a toplevel #GdkWindow
3091  * @x: return location for X position of window frame
3092  * @y: return location for Y position of window frame
3093  *
3094  * Obtains the top-left corner of the window manager frame in root
3095  * window coordinates.
3096  * 
3097  **/
3098 void
3099 gdk_window_get_root_origin (GdkWindow *window,
3100                             gint      *x,
3101                             gint      *y)
3102 {
3103   GdkRectangle rect;
3104
3105   g_return_if_fail (GDK_IS_WINDOW (window));
3106
3107   gdk_window_get_frame_extents (window, &rect);
3108
3109   if (x)
3110     *x = rect.x;
3111
3112   if (y)
3113     *y = rect.y;
3114 }
3115
3116 /**
3117  * gdk_window_get_frame_extents:
3118  * @window: a toplevel #GdkWindow
3119  * @rect: rectangle to fill with bounding box of the window frame
3120  *
3121  * Obtains the bounding box of the window, including window manager
3122  * titlebar/borders if any. The frame position is given in root window
3123  * coordinates. To get the position of the window itself (rather than
3124  * the frame) in root window coordinates, use gdk_window_get_origin().
3125  * 
3126  **/
3127 void
3128 gdk_window_get_frame_extents (GdkWindow    *window,
3129                               GdkRectangle *rect)
3130 {
3131   GdkWindowObject *private;
3132   Window xwindow;
3133   Window xparent;
3134   Window root;
3135   Window *children;
3136   unsigned int nchildren;
3137   
3138   g_return_if_fail (GDK_IS_WINDOW (window));
3139   g_return_if_fail (rect != NULL);
3140   
3141   private = (GdkWindowObject*) window;
3142   
3143   rect->x = 0;
3144   rect->y = 0;
3145   rect->width = 1;
3146   rect->height = 1;
3147   
3148   if (GDK_WINDOW_DESTROYED (window))
3149     return;
3150   
3151   while (private->parent && ((GdkWindowObject*) private->parent)->parent)
3152     private = (GdkWindowObject*) private->parent;
3153
3154   /* Refine our fallback answer a bit using local information */
3155   rect->x = private->x;
3156   rect->y = private->y;
3157   gdk_drawable_get_size ((GdkDrawable *)private, &rect->width, &rect->height);
3158
3159   if (GDK_WINDOW_DESTROYED (private))
3160     return;
3161
3162   gdk_error_trap_push();
3163   
3164   xparent = GDK_WINDOW_XID (window);
3165   do
3166     {
3167       xwindow = xparent;
3168       if (!XQueryTree (GDK_WINDOW_XDISPLAY (window), xwindow,
3169                        &root, &xparent,
3170                        &children, &nchildren))
3171         goto fail;
3172       
3173       if (children)
3174         XFree (children);
3175     }
3176   while (xparent != root);
3177   
3178   if (xparent == root)
3179     {
3180       unsigned int ww, wh, wb, wd;
3181       int wx, wy;
3182       
3183       if (XGetGeometry (GDK_WINDOW_XDISPLAY (window), xwindow, &root, &wx, &wy, &ww, &wh, &wb, &wd))
3184         {
3185           rect->x = wx;
3186           rect->y = wy;
3187           rect->width = ww;
3188           rect->height = wh;
3189         }
3190     }
3191
3192  fail:
3193   gdk_error_trap_pop ();
3194 }
3195
3196 void
3197 _gdk_windowing_get_pointer (GdkDisplay       *display,
3198                             GdkScreen       **screen,
3199                             gint             *x,
3200                             gint             *y,
3201                             GdkModifierType  *mask)
3202 {
3203   GdkScreen *default_screen;
3204   Window root = None;
3205   Window child;
3206   int rootx, rooty;
3207   int winx;
3208   int winy;
3209   unsigned int xmask;
3210
3211   if (display->closed)
3212     return;
3213
3214   default_screen = gdk_display_get_default_screen (display);
3215   
3216   XQueryPointer (GDK_SCREEN_XDISPLAY (default_screen),
3217                  GDK_SCREEN_XROOTWIN (default_screen),
3218                  &root, &child, &rootx, &rooty, &winx, &winy, &xmask);
3219   
3220   if (root != None)
3221     {
3222       GdkWindow *gdk_root = gdk_window_lookup_for_display (display, root);
3223       *screen = gdk_drawable_get_screen (gdk_root);
3224     }
3225   
3226   *x = rootx;
3227   *y = rooty;
3228   *mask = xmask;
3229 }
3230
3231 GdkWindow*
3232 _gdk_windowing_window_get_pointer (GdkDisplay      *display,
3233                                    GdkWindow       *window,
3234                                    gint            *x,
3235                                    gint            *y,
3236                                    GdkModifierType *mask)
3237 {
3238   GdkWindow *return_val;
3239   Window root;
3240   Window child;
3241   int rootx, rooty;
3242   int winx = 0;
3243   int winy = 0;
3244   unsigned int xmask = 0;
3245   gint xoffset, yoffset;
3246
3247   g_return_val_if_fail (window == NULL || GDK_IS_WINDOW (window), NULL);
3248   
3249   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3250
3251   return_val = NULL;
3252   if (!GDK_WINDOW_DESTROYED (window) &&
3253       XQueryPointer (GDK_WINDOW_XDISPLAY (window),
3254                      GDK_WINDOW_XID (window),
3255                      &root, &child, &rootx, &rooty, &winx, &winy, &xmask))
3256     {
3257       if (child)
3258         return_val = gdk_window_lookup_for_display (GDK_WINDOW_DISPLAY (window), child);
3259     }
3260   
3261   *x = winx + xoffset;
3262   *y = winy + yoffset;
3263   *mask = xmask;
3264   
3265   return return_val;
3266 }
3267
3268 GdkWindow*
3269 _gdk_windowing_window_at_pointer (GdkDisplay *display,
3270                                   gint       *win_x,
3271                                   gint       *win_y)
3272 {
3273   GdkWindow *window;
3274   GdkScreen *screen;
3275   Window root;
3276   Window xwindow;
3277   Window child;
3278   Window xwindow_last = 0;
3279   Display *xdisplay;
3280   int rootx = -1, rooty = -1;
3281   int winx, winy;
3282   unsigned int xmask;
3283
3284   screen = gdk_display_get_default_screen (display);
3285   
3286   xwindow = GDK_SCREEN_XROOTWIN (screen);
3287   xdisplay = GDK_SCREEN_XDISPLAY (screen);
3288
3289   /* This function really only works if the mouse pointer is held still
3290    * during its operation. If it moves from one leaf window to another
3291    * than we'll end up with inaccurate values for win_x, win_y
3292    * and the result.
3293    */
3294   gdk_x11_display_grab (display);
3295   XQueryPointer (xdisplay, xwindow,
3296                  &root, &child, &rootx, &rooty, &winx, &winy, &xmask);
3297
3298   if (root == xwindow)
3299     xwindow = child;
3300   else
3301     xwindow = root;
3302   
3303   while (xwindow)
3304     {
3305       xwindow_last = xwindow;
3306       XQueryPointer (xdisplay, xwindow,
3307                      &root, &xwindow, &rootx, &rooty, &winx, &winy, &xmask);
3308     }
3309   gdk_x11_display_ungrab (display);
3310
3311   window = gdk_window_lookup_for_display (GDK_SCREEN_DISPLAY(screen),
3312                                           xwindow_last);
3313   *win_x = window ? winx : -1;
3314   *win_y = window ? winy : -1;
3315
3316   return window;
3317 }
3318
3319 /**
3320  * gdk_window_get_events:
3321  * @window: a #GdkWindow
3322  * 
3323  * Gets the event mask for @window. See gdk_window_set_events().
3324  * 
3325  * Return value: event mask for @window
3326  **/
3327 GdkEventMask  
3328 gdk_window_get_events (GdkWindow *window)
3329 {
3330   XWindowAttributes attrs;
3331   GdkEventMask event_mask;
3332   
3333   g_return_val_if_fail (window != NULL, 0);
3334   g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
3335
3336   if (GDK_WINDOW_DESTROYED (window))
3337     return 0;
3338   else
3339     {
3340       XGetWindowAttributes (GDK_WINDOW_XDISPLAY (window),
3341                             GDK_WINDOW_XID (window), 
3342                             &attrs);
3343       
3344       event_mask = x_event_mask_to_gdk_event_mask (attrs.your_event_mask);
3345       GDK_WINDOW_OBJECT (window)->event_mask = event_mask;
3346   
3347       return event_mask;
3348     }
3349 }
3350
3351 /**
3352  * gdk_window_set_events:
3353  * @window: a #GdkWindow
3354  * @event_mask: event mask for @window
3355  *
3356  * The event mask for a window determines which events will be reported
3357  * for that window. For example, an event mask including #GDK_BUTTON_PRESS_MASK
3358  * means the window should report button press events. The event mask
3359  * is the bitwise OR of values from the #GdkEventMask enumeration.
3360  * 
3361  **/
3362 void          
3363 gdk_window_set_events (GdkWindow       *window,
3364                        GdkEventMask     event_mask)
3365 {
3366   long xevent_mask;
3367   int i;
3368   
3369   g_return_if_fail (window != NULL);
3370   g_return_if_fail (GDK_IS_WINDOW (window));
3371   
3372   if (!GDK_WINDOW_DESTROYED (window))
3373     {
3374       GDK_WINDOW_OBJECT (window)->event_mask = event_mask;
3375       xevent_mask = StructureNotifyMask | PropertyChangeMask;
3376       for (i = 0; i < _gdk_nenvent_masks; i++)
3377         {
3378           if (event_mask & (1 << (i + 1)))
3379             xevent_mask |= _gdk_event_mask_table[i];
3380         }
3381       
3382       XSelectInput (GDK_WINDOW_XDISPLAY (window),
3383                     GDK_WINDOW_XID (window),
3384                     xevent_mask);
3385     }
3386 }
3387
3388 static void
3389 gdk_window_add_colormap_windows (GdkWindow *window)
3390 {
3391   GdkWindow *toplevel;
3392   Window *old_windows;
3393   Window *new_windows;
3394   int i, count;
3395   
3396   g_return_if_fail (window != NULL);
3397   g_return_if_fail (GDK_IS_WINDOW (window));
3398
3399   if (GDK_WINDOW_DESTROYED (window))
3400     return;
3401   toplevel = gdk_window_get_toplevel (window);
3402   
3403   old_windows = NULL;
3404   if (!XGetWMColormapWindows (GDK_WINDOW_XDISPLAY (toplevel),
3405                               GDK_WINDOW_XID (toplevel),
3406                               &old_windows, &count))
3407     {
3408       count = 0;
3409     }
3410   
3411   for (i = 0; i < count; i++)
3412     if (old_windows[i] == GDK_WINDOW_XID (window))
3413       {
3414         XFree (old_windows);
3415         return;
3416       }
3417   
3418   new_windows = g_new (Window, count + 1);
3419   
3420   for (i = 0; i < count; i++)
3421     new_windows[i] = old_windows[i];
3422   new_windows[count] = GDK_WINDOW_XID (window);
3423   
3424   XSetWMColormapWindows (GDK_WINDOW_XDISPLAY (toplevel),
3425                          GDK_WINDOW_XID (toplevel),
3426                          new_windows, count + 1);
3427   
3428   g_free (new_windows);
3429   if (old_windows)
3430     XFree (old_windows);
3431 }
3432
3433 static gboolean
3434 gdk_window_have_shape_ext (GdkDisplay *display)
3435 {
3436 #ifdef HAVE_SHAPE_EXT
3437   int ignore;
3438
3439   return XShapeQueryExtension (GDK_DISPLAY_XDISPLAY (display),
3440                                &ignore, &ignore);
3441 #else
3442   return 0;
3443 #endif  
3444 }
3445
3446 #define WARN_SHAPE_TOO_BIG() g_warning ("GdkWindow is too large to allow the use of shape masks or shape regions.")
3447
3448 /*
3449  * This needs the X11 shape extension.
3450  * If not available, shaped windows will look
3451  * ugly, but programs still work.    Stefan Wille
3452  */
3453 /**
3454  * gdk_window_shape_combine_mask:
3455  * @window: a #GdkWindow
3456  * @mask: shape mask
3457  * @x: X position of shape mask with respect to @window
3458  * @y: Y position of shape mask with respect to @window
3459  *
3460  * Applies a shape mask to @window. Pixels in @window corresponding to
3461  * set bits in the @mask will be visible; pixels in @window
3462  * corresponding to unset bits in the @mask will be transparent. This
3463  * gives a non-rectangular window.
3464  *
3465  * If @mask is %NULL, the shape mask will be unset, and the @x/@y
3466  * parameters are not used.
3467  *
3468  * On the X11 platform, this uses an X server extension which is
3469  * widely available on most common platforms, but not available on
3470  * very old X servers, and occasionally the implementation will be
3471  * buggy. On servers without the shape extension, this function
3472  * will do nothing.
3473  *
3474  * This function works on both toplevel and child windows.
3475  * 
3476  **/
3477 void
3478 gdk_window_shape_combine_mask (GdkWindow *window,
3479                                GdkBitmap *mask,
3480                                gint x, gint y)
3481 {
3482   Pixmap pixmap;
3483   gint xoffset, yoffset;
3484   
3485   g_return_if_fail (window != NULL);
3486   g_return_if_fail (GDK_IS_WINDOW (window));
3487   
3488 #ifdef HAVE_SHAPE_EXT
3489   if (GDK_WINDOW_DESTROYED (window))
3490     return;
3491
3492   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3493
3494   if (xoffset != 0 || yoffset != 0)
3495     {
3496       WARN_SHAPE_TOO_BIG ();
3497       return;
3498     }
3499   
3500   if (gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
3501     {
3502       if (mask)
3503         {
3504           pixmap = GDK_PIXMAP_XID (mask);
3505         }
3506       else
3507         {
3508           x = 0;
3509           y = 0;
3510           pixmap = None;
3511         }
3512       
3513       XShapeCombineMask (GDK_WINDOW_XDISPLAY (window),
3514                          GDK_WINDOW_XID (window),
3515                          ShapeBounding,
3516                          x, y,
3517                          pixmap,
3518                          ShapeSet);
3519     }
3520 #endif /* HAVE_SHAPE_EXT */
3521 }
3522
3523 /**
3524  * gdk_window_shape_combine_region:
3525  * @window: a #GdkWindow
3526  * @shape_region: region of window to be non-transparent
3527  * @offset_x: X position of @shape_region in @window coordinates
3528  * @offset_y: Y position of @shape_region in @window coordinates
3529  *
3530  * Makes pixels in @window outside @shape_region be transparent,
3531  * so that the window may be nonrectangular. See also
3532  * gdk_window_shape_combine_mask() to use a bitmap as the mask.
3533  *
3534  * If @shape_region is %NULL, the shape will be unset, so the whole
3535  * window will be opaque again. @offset_x and @offset_y are ignored
3536  * if @shape_region is %NULL.
3537  * 
3538  * On the X11 platform, this uses an X server extension which is
3539  * widely available on most common platforms, but not available on
3540  * very old X servers, and occasionally the implementation will be
3541  * buggy. On servers without the shape extension, this function
3542  * will do nothing.
3543  *
3544  * This function works on both toplevel and child windows.
3545  * 
3546  **/
3547 void
3548 gdk_window_shape_combine_region (GdkWindow *window,
3549                                  GdkRegion *shape_region,
3550                                  gint       offset_x,
3551                                  gint       offset_y)
3552 {
3553   gint xoffset, yoffset;
3554   
3555   g_return_if_fail (GDK_IS_WINDOW (window));
3556   
3557 #ifdef HAVE_SHAPE_EXT
3558   if (GDK_WINDOW_DESTROYED (window))
3559     return;
3560
3561   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3562
3563   if (xoffset != 0 || yoffset != 0)
3564     {
3565       WARN_SHAPE_TOO_BIG ();
3566       return;
3567     }
3568   
3569   if (shape_region == NULL)
3570     {
3571       /* Use NULL mask to unset the shape */
3572       gdk_window_shape_combine_mask (window, NULL, 0, 0);
3573       return;
3574     }
3575   
3576   if (gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
3577     {
3578       gint n_rects = 0;
3579       XRectangle *xrects = NULL;
3580
3581       _gdk_region_get_xrectangles (shape_region,
3582                                    0, 0,
3583                                    &xrects, &n_rects);
3584       
3585       XShapeCombineRectangles (GDK_WINDOW_XDISPLAY (window),
3586                                GDK_WINDOW_XID (window),
3587                                ShapeBounding,
3588                                offset_x, offset_y,
3589                                xrects, n_rects,
3590                                ShapeSet,
3591                                YXBanded);
3592
3593       g_free (xrects);
3594     }
3595 #endif /* HAVE_SHAPE_EXT */
3596 }
3597
3598
3599 /**
3600  * gdk_window_set_override_redirect:
3601  * @window: a toplevel #GdkWindow
3602  * @override_redirect: %TRUE if window should be override redirect
3603  *
3604  * An override redirect window is not under the control of the window manager.
3605  * This means it won't have a titlebar, won't be minimizable, etc. - it will
3606  * be entirely under the control of the application. The window manager
3607  * can't see the override redirect window at all.
3608  *
3609  * Override redirect should only be used for short-lived temporary
3610  * windows, such as popup menus. #GtkMenu uses an override redirect
3611  * window in its implementation, for example.
3612  * 
3613  **/
3614 void
3615 gdk_window_set_override_redirect (GdkWindow *window,
3616                                   gboolean override_redirect)
3617 {
3618   XSetWindowAttributes attr;
3619   
3620   g_return_if_fail (window != NULL);
3621   g_return_if_fail (GDK_IS_WINDOW (window));
3622
3623   if (!GDK_WINDOW_DESTROYED (window))
3624     {
3625       GdkWindowObject *private = (GdkWindowObject *)window;
3626       GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
3627
3628       attr.override_redirect = (override_redirect? True : False);
3629       XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
3630                                GDK_WINDOW_XID (window),
3631                                CWOverrideRedirect,
3632                                &attr);
3633
3634       impl->override_redirect = attr.override_redirect;
3635     }
3636 }
3637
3638 /**
3639  * gdk_window_set_accept_focus:
3640  * @window: a toplevel #GdkWindow
3641  * @accept_focus: %TRUE if the window should receive input focus
3642  *
3643  * Setting @accept_focus to %FALSE hints the desktop environment that the
3644  * window doesn't want to receive input focus. 
3645  *
3646  * On X, it is the responsibility of the window manager to interpret this 
3647  * hint. ICCCM-compliant window manager usually respect it.
3648  *
3649  * Since: 2.4 
3650  **/
3651 void
3652 gdk_window_set_accept_focus (GdkWindow *window,
3653                              gboolean accept_focus)
3654 {
3655   GdkWindowObject *private;
3656   g_return_if_fail (window != NULL);
3657   g_return_if_fail (GDK_IS_WINDOW (window));
3658
3659   private = (GdkWindowObject *)window;  
3660   
3661   accept_focus = accept_focus != FALSE;
3662
3663   if (private->accept_focus != accept_focus)
3664     {
3665       private->accept_focus = accept_focus;
3666
3667       if (!GDK_WINDOW_DESTROYED (window))
3668         update_wm_hints (window, FALSE);
3669     }
3670 }
3671
3672 /**
3673  * gdk_window_set_focus_on_map:
3674  * @window: a toplevel #GdkWindow
3675  * @focus_on_map: %TRUE if the window should receive input focus when mapped
3676  *
3677  * Setting @focus_on_map to %FALSE hints the desktop environment that the
3678  * window doesn't want to receive input focus when it is mapped.  
3679  * focus_on_map should be turned off for windows that aren't triggered
3680  * interactively (such as popups from network activity).
3681  *
3682  * On X, it is the responsibility of the window manager to interpret
3683  * this hint. Window managers following the freedesktop.org window
3684  * manager extension specification should respect it.
3685  *
3686  * Since: 2.6 
3687  **/
3688 void
3689 gdk_window_set_focus_on_map (GdkWindow *window,
3690                              gboolean focus_on_map)
3691 {
3692   GdkWindowObject *private;
3693   g_return_if_fail (window != NULL);
3694   g_return_if_fail (GDK_IS_WINDOW (window));
3695
3696   private = (GdkWindowObject *)window;  
3697   
3698   focus_on_map = focus_on_map != FALSE;
3699
3700   if (private->focus_on_map != focus_on_map)
3701     {
3702       private->focus_on_map = focus_on_map;
3703
3704       if ((!GDK_WINDOW_DESTROYED (window)) && (!private->focus_on_map))
3705         gdk_x11_window_set_user_time (window, 0);
3706     }
3707 }
3708
3709 /**
3710  * gdk_x11_window_set_user_time:
3711  * @window: A toplevel #GdkWindow
3712  * @timestamp: An XServer timestamp to which the property should be set
3713  *
3714  * The application can use this call to update the _NET_WM_USER_TIME
3715  * property on a toplevel window.  This property stores an Xserver
3716  * time which represents the time of the last user input event
3717  * received for this window.  This property may be used by the window
3718  * manager to alter the focus, stacking, and/or placement behavior of
3719  * windows when they are mapped depending on whether the new window
3720  * was created by a user action or is a "pop-up" window activated by a
3721  * timer or some other event.
3722  *
3723  * Note that this property is automatically updated by GDK, so this
3724  * function should only be used by applications which handle input
3725  * events bypassing GDK.
3726  *
3727  * Since: 2.6
3728  **/
3729 void
3730 gdk_x11_window_set_user_time (GdkWindow *window,
3731                               guint32    timestamp)
3732 {
3733   GdkDisplay *display;
3734   GdkDisplayX11 *display_x11;
3735   GdkToplevelX11 *toplevel;
3736   glong timestamp_long = (glong)timestamp;
3737
3738   g_return_if_fail (window != NULL);
3739   g_return_if_fail (GDK_IS_WINDOW (window));
3740
3741   if (GDK_WINDOW_DESTROYED (window))
3742     return;
3743
3744   display = gdk_drawable_get_display (window);
3745   display_x11 = GDK_DISPLAY_X11 (display);
3746   toplevel = _gdk_x11_window_get_toplevel (window);
3747
3748   XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
3749                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_USER_TIME"),
3750                    XA_CARDINAL, 32, PropModeReplace,
3751                    (guchar *)&timestamp_long, 1);
3752
3753   if (timestamp_long != GDK_CURRENT_TIME)
3754     display_x11->user_time = timestamp_long;
3755
3756   toplevel->user_time = timestamp_long;
3757 }
3758
3759 /**
3760  * gdk_window_set_icon_list:
3761  * @window: The #GdkWindow toplevel window to set the icon of.
3762  * @pixbufs: A list of pixbufs, of different sizes.
3763  *
3764  * Sets a list of icons for the window. One of these will be used
3765  * to represent the window when it has been iconified. The icon is
3766  * usually shown in an icon box or some sort of task bar. Which icon
3767  * size is shown depends on the window manager. The window manager
3768  * can scale the icon  but setting several size icons can give better
3769  * image quality since the window manager may only need to scale the
3770  * icon by a small amount or not at all.
3771  *
3772  **/
3773 void
3774 gdk_window_set_icon_list (GdkWindow *window,
3775                           GList     *pixbufs)
3776 {
3777   gulong *data;
3778   guchar *pixels;
3779   gulong *p;
3780   gint size;
3781   GList *l;
3782   GdkPixbuf *pixbuf;
3783   gint width, height, stride;
3784   gint x, y;
3785   gint n_channels;
3786   GdkDisplay *display;
3787   
3788   g_return_if_fail (GDK_IS_WINDOW (window));
3789
3790   if (GDK_WINDOW_DESTROYED (window))
3791     return;
3792
3793   display = gdk_drawable_get_display (window);
3794   
3795   l = pixbufs;
3796   size = 0;
3797   
3798   while (l)
3799     {
3800       pixbuf = l->data;
3801       g_return_if_fail (GDK_IS_PIXBUF (pixbuf));
3802
3803       width = gdk_pixbuf_get_width (pixbuf);
3804       height = gdk_pixbuf_get_height (pixbuf);
3805       
3806       size += 2 + width * height;
3807
3808       l = g_list_next (l);
3809     }
3810
3811   data = g_malloc (size * sizeof (gulong));
3812
3813   l = pixbufs;
3814   p = data;
3815   while (l)
3816     {
3817       pixbuf = l->data;
3818       
3819       width = gdk_pixbuf_get_width (pixbuf);
3820       height = gdk_pixbuf_get_height (pixbuf);
3821       stride = gdk_pixbuf_get_rowstride (pixbuf);
3822       n_channels = gdk_pixbuf_get_n_channels (pixbuf);
3823       
3824       *p++ = width;
3825       *p++ = height;
3826
3827       pixels = gdk_pixbuf_get_pixels (pixbuf);
3828
3829       for (y = 0; y < height; y++)
3830         {
3831           for (x = 0; x < width; x++)
3832             {
3833               guchar r, g, b, a;
3834               
3835               r = pixels[y*stride + x*n_channels + 0];
3836               g = pixels[y*stride + x*n_channels + 1];
3837               b = pixels[y*stride + x*n_channels + 2];
3838               if (n_channels >= 4)
3839                 a = pixels[y*stride + x*n_channels + 3];
3840               else
3841                 a = 255;
3842               
3843               *p++ = a << 24 | r << 16 | g << 8 | b ;
3844             }
3845         }
3846
3847       l = g_list_next (l);
3848     }
3849
3850   if (size > 0)
3851     {
3852       XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
3853                        GDK_WINDOW_XID (window),
3854                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON"),
3855                        XA_CARDINAL, 32,
3856                        PropModeReplace,
3857                        (guchar*) data, size);
3858     }
3859   else
3860     {
3861       XDeleteProperty (GDK_DISPLAY_XDISPLAY (display),
3862                        GDK_WINDOW_XID (window),
3863                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON"));
3864     }
3865   
3866   g_free (data);
3867 }
3868
3869 /**
3870  * gdk_window_set_icon:
3871  * @window: a toplevel #GdkWindow
3872  * @icon_window: a #GdkWindow to use for the icon, or %NULL to unset
3873  * @pixmap: a #GdkPixmap to use as the icon, or %NULL to unset
3874  * @mask: a 1-bit pixmap (#GdkBitmap) to use as mask for @pixmap, or %NULL to have none
3875  *
3876  * Sets the icon of @window as a pixmap or window. If using GTK+, investigate
3877  * gtk_window_set_default_icon_list() first, and then gtk_window_set_icon_list()
3878  * and gtk_window_set_icon(). If those don't meet your needs, look at
3879  * gdk_window_set_icon_list(). Only if all those are too high-level do you
3880  * want to fall back to gdk_window_set_icon().
3881  * 
3882  **/
3883 void          
3884 gdk_window_set_icon (GdkWindow *window, 
3885                      GdkWindow *icon_window,
3886                      GdkPixmap *pixmap,
3887                      GdkBitmap *mask)
3888 {
3889   GdkToplevelX11 *toplevel;
3890
3891   g_return_if_fail (window != NULL);
3892   g_return_if_fail (GDK_IS_WINDOW (window));
3893   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
3894   
3895   if (GDK_WINDOW_DESTROYED (window))
3896     return;
3897
3898   toplevel = _gdk_x11_window_get_toplevel (window);
3899
3900   if (toplevel->icon_window != icon_window)
3901     {
3902       if (toplevel->icon_window)
3903         g_object_unref (toplevel->icon_window);
3904       toplevel->icon_window = g_object_ref (icon_window);
3905     }
3906   
3907   if (toplevel->icon_pixmap != pixmap)
3908     {
3909       if (pixmap)
3910         g_object_ref (pixmap);
3911       if (toplevel->icon_pixmap)
3912         g_object_unref (toplevel->icon_pixmap);
3913       toplevel->icon_pixmap = pixmap;
3914     }
3915   
3916   if (toplevel->icon_mask != mask)
3917     {
3918       if (mask)
3919         g_object_ref (mask);
3920       if (toplevel->icon_mask)
3921         g_object_unref (toplevel->icon_mask);
3922       toplevel->icon_mask = mask;
3923     }
3924   
3925   update_wm_hints (window, FALSE);
3926 }
3927
3928 static gboolean
3929 gdk_window_icon_name_set (GdkWindow *window)
3930 {
3931   return GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (window),
3932                                                g_quark_from_static_string ("gdk-icon-name-set")));
3933 }
3934
3935 /**
3936  * gdk_window_set_icon_name:
3937  * @window: a toplevel #GdkWindow
3938  * @name: name of window while iconified (minimized)
3939  *
3940  * Windows may have a name used while minimized, distinct from the
3941  * name they display in their titlebar. Most of the time this is a bad
3942  * idea from a user interface standpoint. But you can set such a name
3943  * with this function, if you like.
3944  *
3945  **/
3946 void          
3947 gdk_window_set_icon_name (GdkWindow   *window, 
3948                           const gchar *name)
3949 {
3950   GdkDisplay *display;
3951   
3952   g_return_if_fail (window != NULL);
3953   g_return_if_fail (GDK_IS_WINDOW (window));
3954
3955   if (GDK_WINDOW_DESTROYED (window))
3956     return;
3957
3958   display = gdk_drawable_get_display (window);
3959
3960   g_object_set_qdata (G_OBJECT (window), g_quark_from_static_string ("gdk-icon-name-set"),
3961                       GUINT_TO_POINTER (TRUE));
3962
3963   XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
3964                    GDK_WINDOW_XID (window),
3965                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON_NAME"),
3966                    gdk_x11_get_xatom_by_name_for_display (display, "UTF8_STRING"), 8,
3967                    PropModeReplace, name, strlen (name));
3968   
3969   set_text_property (display, GDK_WINDOW_XID (window),
3970                      gdk_x11_get_xatom_by_name_for_display (display, "WM_ICON_NAME"),
3971                      name);
3972 }
3973
3974 /**
3975  * gdk_window_iconify:
3976  * @window: a toplevel #GdkWindow
3977  * 
3978  * Asks to iconify (minimize) @window. The window manager may choose
3979  * to ignore the request, but normally will honor it. Using
3980  * gtk_window_iconify() is preferred, if you have a #GtkWindow widget.
3981  *
3982  * This function only makes sense when @window is a toplevel window.
3983  *
3984  **/
3985 void
3986 gdk_window_iconify (GdkWindow *window)
3987 {
3988   GdkWindowObject *private;
3989   
3990   g_return_if_fail (window != NULL);
3991   g_return_if_fail (GDK_IS_WINDOW (window));
3992
3993   if (GDK_WINDOW_DESTROYED (window))
3994     return;
3995
3996   private = (GdkWindowObject*) window;
3997
3998   if (GDK_WINDOW_IS_MAPPED (window))
3999     {  
4000       XIconifyWindow (GDK_WINDOW_XDISPLAY (window),
4001                       GDK_WINDOW_XWINDOW (window),
4002                       gdk_screen_get_number (GDK_WINDOW_SCREEN (window)));
4003     }
4004   else
4005     {
4006       /* Flip our client side flag, the real work happens on map. */
4007       gdk_synthesize_window_state (window,
4008                                    0,
4009                                    GDK_WINDOW_STATE_ICONIFIED);
4010     }
4011 }
4012
4013 /**
4014  * gdk_window_deiconify:
4015  * @window: a toplevel #GdkWindow
4016  *
4017  * Attempt to deiconify (unminimize) @window. On X11 the window manager may
4018  * choose to ignore the request to deiconify. When using GTK+,
4019  * use gtk_window_deiconify() instead of the #GdkWindow variant. Or better yet,
4020  * you probably want to use gtk_window_present(), which raises the window, focuses it,
4021  * unminimizes it, and puts it on the current desktop.
4022  *
4023  **/
4024 void
4025 gdk_window_deiconify (GdkWindow *window)
4026 {
4027   GdkWindowObject *private;
4028   
4029   g_return_if_fail (window != NULL);
4030   g_return_if_fail (GDK_IS_WINDOW (window));
4031
4032   if (GDK_WINDOW_DESTROYED (window))
4033     return;
4034
4035   private = (GdkWindowObject*) window;
4036
4037   if (GDK_WINDOW_IS_MAPPED (window))
4038     {  
4039       gdk_window_show (window);
4040     }
4041   else
4042     {
4043       /* Flip our client side flag, the real work happens on map. */
4044       gdk_synthesize_window_state (window,
4045                                    GDK_WINDOW_STATE_ICONIFIED,
4046                                    0);
4047     }
4048 }
4049
4050 /**
4051  * gdk_window_stick:
4052  * @window: a toplevel #GdkWindow
4053  *
4054  * "Pins" a window such that it's on all workspaces and does not scroll
4055  * with viewports, for window managers that have scrollable viewports.
4056  * (When using #GtkWindow, gtk_window_stick() may be more useful.)
4057  *
4058  * On the X11 platform, this function depends on window manager
4059  * support, so may have no effect with many window managers. However,
4060  * GDK will do the best it can to convince the window manager to stick
4061  * the window. For window managers that don't support this operation,
4062  * there's nothing you can do to force it to happen.
4063  * 
4064  **/
4065 void
4066 gdk_window_stick (GdkWindow *window)
4067 {
4068   g_return_if_fail (GDK_IS_WINDOW (window));
4069
4070   if (GDK_WINDOW_DESTROYED (window))
4071     return;
4072
4073   if (GDK_WINDOW_IS_MAPPED (window))
4074     {
4075       /* "stick" means stick to all desktops _and_ do not scroll with the
4076        * viewport. i.e. glue to the monitor glass in all cases.
4077        */
4078       
4079       XEvent xev;
4080
4081       /* Request stick during viewport scroll */
4082       gdk_wmspec_change_state (TRUE, window,
4083                                gdk_atom_intern ("_NET_WM_STATE_STICKY", FALSE),
4084                                NULL);
4085
4086       /* Request desktop 0xFFFFFFFF */
4087       xev.xclient.type = ClientMessage;
4088       xev.xclient.serial = 0;
4089       xev.xclient.send_event = True;
4090       xev.xclient.window = GDK_WINDOW_XWINDOW (window);
4091       xev.xclient.display = GDK_WINDOW_XDISPLAY (window);
4092       xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (GDK_WINDOW_DISPLAY (window), 
4093                                                                         "_NET_WM_DESKTOP");
4094       xev.xclient.format = 32;
4095
4096       xev.xclient.data.l[0] = 0xFFFFFFFF;
4097       xev.xclient.data.l[1] = 0;
4098       xev.xclient.data.l[2] = 0;
4099       xev.xclient.data.l[3] = 0;
4100       xev.xclient.data.l[4] = 0;
4101
4102       XSendEvent (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XROOTWIN (window), False,
4103                   SubstructureRedirectMask | SubstructureNotifyMask,
4104                   &xev);
4105     }
4106   else
4107     {
4108       /* Flip our client side flag, the real work happens on map. */
4109       gdk_synthesize_window_state (window,
4110                                    0,
4111                                    GDK_WINDOW_STATE_STICKY);
4112     }
4113 }
4114
4115 /**
4116  * gdk_window_unstick:
4117  * @window: a toplevel #GdkWindow
4118  *
4119  * Reverse operation for gdk_window_stick(); see gdk_window_stick(),
4120  * and gtk_window_unstick().
4121  * 
4122  **/
4123 void
4124 gdk_window_unstick (GdkWindow *window)
4125 {
4126   g_return_if_fail (GDK_IS_WINDOW (window));
4127
4128   if (GDK_WINDOW_DESTROYED (window))
4129     return;
4130
4131   if (GDK_WINDOW_IS_MAPPED (window))
4132     {
4133       XEvent xev;
4134       Atom type;
4135       gint format;
4136       gulong nitems;
4137       gulong bytes_after;
4138       guchar *data;
4139       gulong *current_desktop;
4140       GdkDisplay *display = gdk_drawable_get_display (window);
4141       
4142       /* Request unstick from viewport */
4143       gdk_wmspec_change_state (FALSE, window,
4144                                gdk_atom_intern ("_NET_WM_STATE_STICKY", FALSE),
4145                                NULL);
4146
4147       /* Get current desktop, then set it; this is a race, but not
4148        * one that matters much in practice.
4149        */
4150       XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window),
4151                           gdk_x11_get_xatom_by_name_for_display (display, "_NET_CURRENT_DESKTOP"),
4152                           0, G_MAXLONG,
4153                           False, XA_CARDINAL, &type, &format, &nitems,
4154                           &bytes_after, &data);
4155
4156       if (type == XA_CARDINAL)
4157         {
4158           current_desktop = (gulong *)data;
4159           
4160           xev.xclient.type = ClientMessage;
4161           xev.xclient.serial = 0;
4162           xev.xclient.send_event = True;
4163           xev.xclient.window = GDK_WINDOW_XWINDOW (window);
4164           xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP");
4165           xev.xclient.format = 32;
4166
4167           xev.xclient.data.l[0] = *current_desktop;
4168           xev.xclient.data.l[1] = 0;
4169           xev.xclient.data.l[2] = 0;
4170           xev.xclient.data.l[3] = 0;
4171           xev.xclient.data.l[4] = 0;
4172       
4173           XSendEvent (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window), False,
4174                       SubstructureRedirectMask | SubstructureNotifyMask,
4175                       &xev);
4176
4177           XFree (current_desktop);
4178         }
4179     }
4180   else
4181     {
4182       /* Flip our client side flag, the real work happens on map. */
4183       gdk_synthesize_window_state (window,
4184                                    GDK_WINDOW_STATE_STICKY,
4185                                    0);
4186
4187     }
4188 }
4189
4190 /**
4191  * gdk_window_maximize:
4192  * @window: a toplevel #GdkWindow
4193  *
4194  * Maximizes the window. If the window was already maximized, then
4195  * this function does nothing.
4196  * 
4197  * On X11, asks the window manager to maximize @window, if the window
4198  * manager supports this operation. Not all window managers support
4199  * this, and some deliberately ignore it or don't have a concept of
4200  * "maximized"; so you can't rely on the maximization actually
4201  * happening. But it will happen with most standard window managers,
4202  * and GDK makes a best effort to get it to happen.
4203  *
4204  * On Windows, reliably maximizes the window.
4205  * 
4206  **/
4207 void
4208 gdk_window_maximize (GdkWindow *window)
4209 {
4210   g_return_if_fail (GDK_IS_WINDOW (window));
4211
4212   if (GDK_WINDOW_DESTROYED (window))
4213     return;
4214
4215   if (GDK_WINDOW_IS_MAPPED (window))
4216     gdk_wmspec_change_state (TRUE, window,
4217                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_VERT", FALSE),
4218                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_HORZ", FALSE));
4219   else
4220     gdk_synthesize_window_state (window,
4221                                  0,
4222                                  GDK_WINDOW_STATE_MAXIMIZED);
4223 }
4224
4225 /**
4226  * gdk_window_unmaximize:
4227  * @window: a toplevel #GdkWindow
4228  *
4229  * Unmaximizes the window. If the window wasn't maximized, then this
4230  * function does nothing.
4231  * 
4232  * On X11, asks the window manager to unmaximize @window, if the
4233  * window manager supports this operation. Not all window managers
4234  * support this, and some deliberately ignore it or don't have a
4235  * concept of "maximized"; so you can't rely on the unmaximization
4236  * actually happening. But it will happen with most standard window
4237  * managers, and GDK makes a best effort to get it to happen.
4238  *
4239  * On Windows, reliably unmaximizes the window.
4240  * 
4241  **/
4242 void
4243 gdk_window_unmaximize (GdkWindow *window)
4244 {
4245   g_return_if_fail (GDK_IS_WINDOW (window));
4246
4247   if (GDK_WINDOW_DESTROYED (window))
4248     return;
4249
4250   if (GDK_WINDOW_IS_MAPPED (window))
4251     gdk_wmspec_change_state (FALSE, window,
4252                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_VERT", FALSE),
4253                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_HORZ", FALSE));
4254   else
4255     gdk_synthesize_window_state (window,
4256                                  GDK_WINDOW_STATE_MAXIMIZED,
4257                                  0);
4258 }
4259
4260 /**
4261  * gdk_window_fullscreen:
4262  * @window: a toplevel #GdkWindow
4263  *
4264  * Moves the window into fullscreen mode. This means the
4265  * window covers the entire screen and is above any panels
4266  * or task bars.
4267  *
4268  * If the window was already fullscreen, then this function does nothing.
4269  * 
4270  * On X11, asks the window manager to put @window in a fullscreen
4271  * state, if the window manager supports this operation. Not all
4272  * window managers support this, and some deliberately ignore it or
4273  * don't have a concept of "fullscreen"; so you can't rely on the
4274  * fullscreenification actually happening. But it will happen with
4275  * most standard window managers, and GDK makes a best effort to get
4276  * it to happen.
4277  *
4278  * Since: 2.2
4279  **/
4280 void
4281 gdk_window_fullscreen (GdkWindow *window)
4282 {
4283   g_return_if_fail (GDK_IS_WINDOW (window));
4284
4285   if (GDK_WINDOW_DESTROYED (window))
4286     return;
4287
4288   if (GDK_WINDOW_IS_MAPPED (window))
4289     gdk_wmspec_change_state (TRUE, window,
4290                              gdk_atom_intern ("_NET_WM_STATE_FULLSCREEN", FALSE),
4291                              GDK_NONE);
4292
4293   else
4294     gdk_synthesize_window_state (window,
4295                                  0,
4296                                  GDK_WINDOW_STATE_FULLSCREEN);
4297 }
4298
4299 /**
4300  * gdk_window_unfullscreen:
4301  * @window: a toplevel #GdkWindow
4302  *
4303  * Moves the window out of fullscreen mode. If the window was not
4304  * fullscreen, does nothing.
4305  * 
4306  * On X11, asks the window manager to move @window out of the fullscreen
4307  * state, if the window manager supports this operation. Not all
4308  * window managers support this, and some deliberately ignore it or
4309  * don't have a concept of "fullscreen"; so you can't rely on the
4310  * unfullscreenification actually happening. But it will happen with
4311  * most standard window managers, and GDK makes a best effort to get
4312  * it to happen. 
4313  *
4314  * Since: 2.2
4315  **/
4316 void
4317 gdk_window_unfullscreen (GdkWindow *window)
4318 {
4319   g_return_if_fail (GDK_IS_WINDOW (window));
4320
4321   if (GDK_WINDOW_DESTROYED (window))
4322     return;
4323
4324   if (GDK_WINDOW_IS_MAPPED (window))
4325     gdk_wmspec_change_state (FALSE, window,
4326                              gdk_atom_intern ("_NET_WM_STATE_FULLSCREEN", FALSE),
4327                              GDK_NONE);
4328
4329   else
4330     gdk_synthesize_window_state (window,
4331                                  GDK_WINDOW_STATE_FULLSCREEN,
4332                                  0);
4333 }
4334
4335 /**
4336  * gdk_window_set_keep_above:
4337  * @window: a toplevel #GdkWindow
4338  * @setting: whether to keep @window above other windows
4339  *
4340  * Set if @window must be kept above other windows. If the
4341  * window was already above, then this function does nothing.
4342  * 
4343  * On X11, asks the window manager to keep @window above, if the window
4344  * manager supports this operation. Not all window managers support
4345  * this, and some deliberately ignore it or don't have a concept of
4346  * "keep above"; so you can't rely on the window being kept above.
4347  * But it will happen with most standard window managers,
4348  * and GDK makes a best effort to get it to happen.
4349  *
4350  * Since: 2.4
4351  **/
4352 void
4353 gdk_window_set_keep_above (GdkWindow *window, gboolean setting)
4354 {
4355   g_return_if_fail (GDK_IS_WINDOW (window));
4356
4357   if (GDK_WINDOW_DESTROYED (window))
4358     return;
4359
4360   if (GDK_WINDOW_IS_MAPPED (window))
4361     {
4362       if (setting)
4363         gdk_wmspec_change_state (FALSE, window,
4364                                  gdk_atom_intern ("_NET_WM_STATE_BELOW", FALSE),
4365                                  GDK_NONE);
4366       gdk_wmspec_change_state (setting, window,
4367                                gdk_atom_intern ("_NET_WM_STATE_ABOVE", FALSE),
4368                                GDK_NONE);
4369     }
4370   else
4371     gdk_synthesize_window_state (window,
4372                                  setting ? GDK_WINDOW_STATE_BELOW : GDK_WINDOW_STATE_ABOVE,
4373                                  setting ? GDK_WINDOW_STATE_ABOVE : 0);
4374 }
4375
4376 /**
4377  * gdk_window_set_keep_below:
4378  * @window: a toplevel #GdkWindow
4379  * @setting: whether to keep @window below other windows
4380  *
4381  * Set if @window must be kept below other windows. If the
4382  * window was already below, then this function does nothing.
4383  * 
4384  * On X11, asks the window manager to keep @window below, if the window
4385  * manager supports this operation. Not all window managers support
4386  * this, and some deliberately ignore it or don't have a concept of
4387  * "keep below"; so you can't rely on the window being kept below.
4388  * But it will happen with most standard window managers,
4389  * and GDK makes a best effort to get it to happen.
4390  *
4391  * Since: 2.4
4392  **/
4393 void
4394 gdk_window_set_keep_below (GdkWindow *window, gboolean setting)
4395 {
4396   g_return_if_fail (GDK_IS_WINDOW (window));
4397
4398   if (GDK_WINDOW_DESTROYED (window))
4399     return;
4400
4401   if (GDK_WINDOW_IS_MAPPED (window))
4402     {
4403       if (setting)
4404         gdk_wmspec_change_state (FALSE, window,
4405                                  gdk_atom_intern ("_NET_WM_STATE_ABOVE", FALSE),
4406                                  GDK_NONE);
4407       gdk_wmspec_change_state (setting, window,
4408                                gdk_atom_intern ("_NET_WM_STATE_BELOW", FALSE),
4409                                GDK_NONE);
4410     }
4411   else
4412     gdk_synthesize_window_state (window,
4413                                  setting ? GDK_WINDOW_STATE_ABOVE : GDK_WINDOW_STATE_BELOW,
4414                                  setting ? GDK_WINDOW_STATE_BELOW : 0);
4415 }
4416
4417 /**
4418  * gdk_window_get_group:
4419  * @window: a toplevel #GdkWindow
4420  * 
4421  * Returns the group leader window for @window. See gdk_window_set_group().
4422  * 
4423  * Return value: the group leader window for @window
4424  *
4425  * Since: 2.4
4426  **/
4427 GdkWindow *
4428 gdk_window_get_group (GdkWindow *window)
4429 {
4430   GdkToplevelX11 *toplevel;
4431   
4432   g_return_val_if_fail (window != NULL, NULL);
4433   g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
4434   g_return_val_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD, NULL);
4435
4436   if (GDK_WINDOW_DESTROYED (window))
4437     return NULL;
4438   
4439   toplevel = _gdk_x11_window_get_toplevel (window);
4440
4441   return toplevel->group_leader;
4442 }
4443
4444 /**
4445  * gdk_window_set_group:
4446  * @window: a toplevel #GdkWindow
4447  * @leader: group leader window, or %NULL to restore the default group leader window
4448  *
4449  * Sets the group leader window for @window. By default,
4450  * GDK sets the group leader for all toplevel windows
4451  * to a global window implicitly created by GDK. With this function
4452  * you can override this default.
4453  *
4454  * The group leader window allows the window manager to distinguish
4455  * all windows that belong to a single application. It may for example
4456  * allow users to minimize/unminimize all windows belonging to an
4457  * application at once. You should only set a non-default group window
4458  * if your application pretends to be multiple applications.
4459  **/
4460 void          
4461 gdk_window_set_group (GdkWindow *window, 
4462                       GdkWindow *leader)
4463 {
4464   GdkToplevelX11 *toplevel;
4465   
4466   g_return_if_fail (window != NULL);
4467   g_return_if_fail (GDK_IS_WINDOW (window));
4468   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
4469   g_return_if_fail (leader == NULL || GDK_IS_WINDOW (leader));
4470
4471   if (GDK_WINDOW_DESTROYED (window) || (leader != NULL && GDK_WINDOW_DESTROYED (leader)))
4472     return;
4473
4474   toplevel = _gdk_x11_window_get_toplevel (window);
4475
4476   if (leader == NULL) 
4477     leader = gdk_display_get_default_group (gdk_drawable_get_display (window));
4478   
4479   if (toplevel->group_leader != leader)
4480     {
4481       if (toplevel->group_leader)
4482         g_object_unref (toplevel->group_leader);
4483       toplevel->group_leader = g_object_ref (leader);
4484       (_gdk_x11_window_get_toplevel (leader))->is_leader = TRUE;      
4485     }
4486
4487   update_wm_hints (window, FALSE);
4488 }
4489
4490 static MotifWmHints *
4491 gdk_window_get_mwm_hints (GdkWindow *window)
4492 {
4493   GdkDisplay *display;
4494   Atom hints_atom = None;
4495   guchar *data;
4496   Atom type;
4497   gint format;
4498   gulong nitems;
4499   gulong bytes_after;
4500   
4501   if (GDK_WINDOW_DESTROYED (window))
4502     return NULL;
4503
4504   display = gdk_drawable_get_display (window);
4505   
4506   hints_atom = gdk_x11_get_xatom_by_name_for_display (display, _XA_MOTIF_WM_HINTS);
4507
4508   XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
4509                       hints_atom, 0, sizeof (MotifWmHints)/sizeof (long),
4510                       False, AnyPropertyType, &type, &format, &nitems,
4511                       &bytes_after, &data);
4512
4513   if (type == None)
4514     return NULL;
4515   
4516   return (MotifWmHints *)data;
4517 }
4518
4519 static void
4520 gdk_window_set_mwm_hints (GdkWindow *window,
4521                           MotifWmHints *new_hints)
4522 {
4523   GdkDisplay *display;
4524   Atom hints_atom = None;
4525   guchar *data;
4526   MotifWmHints *hints;
4527   Atom type;
4528   gint format;
4529   gulong nitems;
4530   gulong bytes_after;
4531   
4532   if (GDK_WINDOW_DESTROYED (window))
4533     return;
4534   
4535   display = gdk_drawable_get_display (window);
4536   
4537   hints_atom = gdk_x11_get_xatom_by_name_for_display (display, _XA_MOTIF_WM_HINTS);
4538
4539   XGetWindowProperty (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
4540                       hints_atom, 0, sizeof (MotifWmHints)/sizeof (long),
4541                       False, AnyPropertyType, &type, &format, &nitems,
4542                       &bytes_after, &data);
4543   
4544   if (type == None)
4545     hints = new_hints;
4546   else
4547     {
4548       hints = (MotifWmHints *)data;
4549         
4550       if (new_hints->flags & MWM_HINTS_FUNCTIONS)
4551         {
4552           hints->flags |= MWM_HINTS_FUNCTIONS;
4553           hints->functions = new_hints->functions;
4554         }
4555       if (new_hints->flags & MWM_HINTS_DECORATIONS)
4556         {
4557           hints->flags |= MWM_HINTS_DECORATIONS;
4558           hints->decorations = new_hints->decorations;
4559         }
4560     }
4561   
4562   XChangeProperty (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
4563                    hints_atom, hints_atom, 32, PropModeReplace,
4564                    (guchar *)hints, sizeof (MotifWmHints)/sizeof (long));
4565   
4566   if (hints != new_hints)
4567     XFree (hints);
4568 }
4569
4570 /**
4571  * gdk_window_set_decorations:
4572  * @window: a toplevel #GdkWindow
4573  * @decorations: decoration hint mask
4574  *
4575  * "Decorations" are the features the window manager adds to a toplevel #GdkWindow.
4576  * This function sets the traditional Motif window manager hints that tell the
4577  * window manager which decorations you would like your window to have.
4578  * Usually you should use gtk_window_set_decorated() on a #GtkWindow instead of
4579  * using the GDK function directly.
4580  *
4581  * The @decorations argument is the logical OR of the fields in
4582  * the #GdkWMDecoration enumeration. If #GDK_DECOR_ALL is included in the
4583  * mask, the other bits indicate which decorations should be turned off.
4584  * If #GDK_DECOR_ALL is not included, then the other bits indicate
4585  * which decorations should be turned on.
4586  *
4587  * Most window managers honor a decorations hint of 0 to disable all decorations,
4588  * but very few honor all possible combinations of bits.
4589  * 
4590  **/
4591 void
4592 gdk_window_set_decorations (GdkWindow      *window,
4593                             GdkWMDecoration decorations)
4594 {
4595   MotifWmHints hints;
4596   
4597   g_return_if_fail (window != NULL);
4598   g_return_if_fail (GDK_IS_WINDOW (window));
4599   
4600   hints.flags = MWM_HINTS_DECORATIONS;
4601   hints.decorations = decorations;
4602   
4603   gdk_window_set_mwm_hints (window, &hints);
4604 }
4605
4606 /**
4607  * gdk_window_get_decorations:
4608  * @window: The toplevel #GdkWindow to get the decorations from
4609  * @decorations: The window decorations will be written here
4610  *
4611  * Returns the decorations set on the GdkWindow with #gdk_window_set_decorations
4612  * Returns: TRUE if the window has decorations set, FALSE otherwise.
4613  **/
4614 gboolean
4615 gdk_window_get_decorations(GdkWindow       *window,
4616                            GdkWMDecoration *decorations)
4617 {
4618   MotifWmHints *hints;
4619   gboolean result = FALSE;
4620
4621   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
4622
4623   hints = gdk_window_get_mwm_hints (window);
4624   
4625   if (hints)
4626     {
4627       if (hints->flags & MWM_HINTS_DECORATIONS)
4628         {
4629           if (decorations)
4630             *decorations = hints->decorations;
4631           result = TRUE;
4632         }
4633       
4634       XFree (hints);
4635     }
4636
4637   return result;
4638 }
4639
4640 /**
4641  * gdk_window_set_functions:
4642  * @window: a toplevel #GdkWindow
4643  * @functions: bitmask of operations to allow on @window
4644  *
4645  * This function isn't really good for much. It sets the traditional
4646  * Motif window manager hint for which operations the window manager
4647  * should allow on a toplevel window. However, few window managers do
4648  * anything reliable or interesting with this hint. Many ignore it
4649  * entirely.
4650  *
4651  * The @functions argument is the logical OR of values from the
4652  * #GdkWMFunction enumeration. If the bitmask includes #GDK_FUNC_ALL,
4653  * then the other bits indicate which functions to disable; if
4654  * it doesn't include #GDK_FUNC_ALL, it indicates which functions to
4655  * enable.
4656  * 
4657  **/
4658 void
4659 gdk_window_set_functions (GdkWindow    *window,
4660                           GdkWMFunction functions)
4661 {
4662   MotifWmHints hints;
4663   
4664   g_return_if_fail (window != NULL);
4665   g_return_if_fail (GDK_IS_WINDOW (window));
4666   
4667   hints.flags = MWM_HINTS_FUNCTIONS;
4668   hints.functions = functions;
4669   
4670   gdk_window_set_mwm_hints (window, &hints);
4671 }
4672
4673 #ifdef HAVE_SHAPE_EXT
4674
4675 /* 
4676  * propagate the shapes from all child windows of a GDK window to the parent 
4677  * window. Shamelessly ripped from Enlightenment's code
4678  * 
4679  * - Raster
4680  */
4681 struct _gdk_span
4682 {
4683   gint                start;
4684   gint                end;
4685   struct _gdk_span    *next;
4686 };
4687
4688 static void
4689 gdk_add_to_span (struct _gdk_span **s,
4690                  gint               x,
4691                  gint               xx)
4692 {
4693   struct _gdk_span *ptr1, *ptr2, *noo, *ss;
4694   gchar             spanning;
4695   
4696   ptr2 = NULL;
4697   ptr1 = *s;
4698   spanning = 0;
4699   ss = NULL;
4700   /* scan the spans for this line */
4701   while (ptr1)
4702     {
4703       /* -- -> new span */
4704       /* == -> existing span */
4705       /* ## -> spans intersect */
4706       /* if we are in the middle of spanning the span into the line */
4707       if (spanning)
4708         {
4709           /* case: ---- ==== */
4710           if (xx < ptr1->start - 1)
4711             {
4712               /* ends before next span - extend to here */
4713               ss->end = xx;
4714               return;
4715             }
4716           /* case: ----##=== */
4717           else if (xx <= ptr1->end)
4718             {
4719               /* crosses into next span - delete next span and append */
4720               ss->end = ptr1->end;
4721               ss->next = ptr1->next;
4722               g_free (ptr1);
4723               return;
4724             }
4725           /* case: ---###--- */
4726           else
4727             {
4728               /* overlaps next span - delete and keep checking */
4729               ss->next = ptr1->next;
4730               g_free (ptr1);
4731               ptr1 = ss;
4732             }
4733         }
4734       /* otherwise havent started spanning it in yet */
4735       else
4736         {
4737           /* case: ---- ==== */
4738           if (xx < ptr1->start - 1)
4739             {
4740               /* insert span here in list */
4741               noo = g_malloc (sizeof (struct _gdk_span));
4742               
4743               if (noo)
4744                 {
4745                   noo->start = x;
4746                   noo->end = xx;
4747                   noo->next = ptr1;
4748                   if (ptr2)
4749                     ptr2->next = noo;
4750                   else
4751                     *s = noo;
4752                 }
4753               return;
4754             }
4755           /* case: ----##=== */
4756           else if ((x < ptr1->start) && (xx <= ptr1->end))
4757             {
4758               /* expand this span to the left point of the new one */
4759               ptr1->start = x;
4760               return;
4761             }
4762           /* case: ===###=== */
4763           else if ((x >= ptr1->start) && (xx <= ptr1->end))
4764             {
4765               /* throw the span away */
4766               return;
4767             }
4768           /* case: ---###--- */
4769           else if ((x < ptr1->start) && (xx > ptr1->end))
4770             {
4771               ss = ptr1;
4772               spanning = 1;
4773               ptr1->start = x;
4774               ptr1->end = xx;
4775             }
4776           /* case: ===##---- */
4777           else if ((x >= ptr1->start) && (x <= ptr1->end + 1) && (xx > ptr1->end))
4778             {
4779               ss = ptr1;
4780               spanning = 1;
4781               ptr1->end = xx;
4782             }
4783           /* case: ==== ---- */
4784           /* case handled by next loop iteration - first case */
4785         }
4786       ptr2 = ptr1;
4787       ptr1 = ptr1->next;
4788     }
4789   /* it started in the middle but spans beyond your current list */
4790   if (spanning)
4791     {
4792       ptr2->end = xx;
4793       return;
4794     }
4795   /* it does not start inside a span or in the middle, so add it to the end */
4796   noo = g_malloc (sizeof (struct _gdk_span));
4797   
4798   if (noo)
4799     {
4800       noo->start = x;
4801       noo->end = xx;
4802       if (ptr2)
4803         {
4804           noo->next = ptr2->next;
4805           ptr2->next = noo;
4806         }
4807       else
4808         {
4809           noo->next = NULL;
4810           *s = noo;
4811         }
4812     }
4813   return;
4814 }
4815
4816 static void
4817 gdk_add_rectangles (Display           *disp,
4818                     Window             win,
4819                     struct _gdk_span **spans,
4820                     gint               basew,
4821                     gint               baseh,
4822                     gint               x,
4823                     gint               y)
4824 {
4825   gint a, k;
4826   gint x1, y1, x2, y2;
4827   gint rn, ord;
4828   XRectangle *rl;
4829   
4830   rl = XShapeGetRectangles (disp, win, ShapeBounding, &rn, &ord);
4831   if (rl)
4832     {
4833       /* go through all clip rects in this window's shape */
4834       for (k = 0; k < rn; k++)
4835         {
4836           /* for each clip rect, add it to each line's spans */
4837           x1 = x + rl[k].x;
4838           x2 = x + rl[k].x + (rl[k].width - 1);
4839           y1 = y + rl[k].y;
4840           y2 = y + rl[k].y + (rl[k].height - 1);
4841           if (x1 < 0)
4842             x1 = 0;
4843           if (y1 < 0)
4844             y1 = 0;
4845           if (x2 >= basew)
4846             x2 = basew - 1;
4847           if (y2 >= baseh)
4848             y2 = baseh - 1;
4849           for (a = y1; a <= y2; a++)
4850             {
4851               if ((x2 - x1) >= 0)
4852                 gdk_add_to_span (&spans[a], x1, x2);
4853             }
4854         }
4855       XFree (rl);
4856     }
4857 }
4858
4859 static void
4860 gdk_propagate_shapes (Display *disp,
4861                       Window   win,
4862                       gboolean merge)
4863 {
4864   Window              rt, par, *list = NULL;
4865   gint                i, j, num = 0, num_rects = 0;
4866   gint                x, y, contig;
4867   guint               w, h, d;
4868   gint                baseh, basew;
4869   XRectangle         *rects = NULL;
4870   struct _gdk_span  **spans = NULL, *ptr1, *ptr2, *ptr3;
4871   XWindowAttributes   xatt;
4872   
4873   XGetGeometry (disp, win, &rt, &x, &y, &w, &h, &d, &d);
4874   if (h <= 0)
4875     return;
4876   basew = w;
4877   baseh = h;
4878   spans = g_malloc (sizeof (struct _gdk_span *) * h);
4879   
4880   for (i = 0; i < h; i++)
4881     spans[i] = NULL;
4882   XQueryTree (disp, win, &rt, &par, &list, (unsigned int *)&num);
4883   if (list)
4884     {
4885       /* go through all child windows and create/insert spans */
4886       for (i = 0; i < num; i++)
4887         {
4888           if (XGetWindowAttributes (disp, list[i], &xatt) && (xatt.map_state != IsUnmapped))
4889             if (XGetGeometry (disp, list[i], &rt, &x, &y, &w, &h, &d, &d))
4890               gdk_add_rectangles (disp, list[i], spans, basew, baseh, x, y);
4891         }
4892       if (merge)
4893         gdk_add_rectangles (disp, win, spans, basew, baseh, x, y);
4894       
4895       /* go through the spans list and build a list of rects */
4896       rects = g_malloc (sizeof (XRectangle) * 256);
4897       num_rects = 0;
4898       for (i = 0; i < baseh; i++)
4899         {
4900           ptr1 = spans[i];
4901           /* go through the line for all spans */
4902           while (ptr1)
4903             {
4904               rects[num_rects].x = ptr1->start;
4905               rects[num_rects].y = i;
4906               rects[num_rects].width = ptr1->end - ptr1->start + 1;
4907               rects[num_rects].height = 1;
4908               j = i + 1;
4909               /* if there are more lines */
4910               contig = 1;
4911               /* while contigous rects (same start/end coords) exist */
4912               while ((contig) && (j < baseh))
4913                 {
4914                   /* search next line for spans matching this one */
4915                   contig = 0;
4916                   ptr2 = spans[j];
4917                   ptr3 = NULL;
4918                   while (ptr2)
4919                     {
4920                       /* if we have an exact span match set contig */
4921                       if ((ptr2->start == ptr1->start) &&
4922                           (ptr2->end == ptr1->end))
4923                         {
4924                           contig = 1;
4925                           /* remove the span - not needed */
4926                           if (ptr3)
4927                             {
4928                               ptr3->next = ptr2->next;
4929                               g_free (ptr2);
4930                               ptr2 = NULL;
4931                             }
4932                           else
4933                             {
4934                               spans[j] = ptr2->next;
4935                               g_free (ptr2);
4936                               ptr2 = NULL;
4937                             }
4938                           break;
4939                         }
4940                       /* gone past the span point no point looking */
4941                       else if (ptr2->start < ptr1->start)
4942                         break;
4943                       if (ptr2)
4944                         {
4945                           ptr3 = ptr2;
4946                           ptr2 = ptr2->next;
4947                         }
4948                     }
4949                   /* if a contiguous span was found increase the rect h */
4950                   if (contig)
4951                     {
4952                       rects[num_rects].height++;
4953                       j++;
4954                     }
4955                 }
4956               /* up the rect count */
4957               num_rects++;
4958               /* every 256 new rects increase the rect array */
4959               if ((num_rects % 256) == 0)
4960                 rects = g_realloc (rects, sizeof (XRectangle) * (num_rects + 256));
4961               ptr1 = ptr1->next;
4962             }
4963         }
4964       /* set the rects as the shape mask */
4965       if (rects)
4966         {
4967           XShapeCombineRectangles (disp, win, ShapeBounding, 0, 0, rects, num_rects,
4968                                    ShapeSet, YXSorted);
4969           g_free (rects);
4970         }
4971       XFree (list);
4972     }
4973   /* free up all the spans we made */
4974   for (i = 0; i < baseh; i++)
4975     {
4976       ptr1 = spans[i];
4977       while (ptr1)
4978         {
4979           ptr2 = ptr1;
4980           ptr1 = ptr1->next;
4981           g_free (ptr2);
4982         }
4983     }
4984   g_free (spans);
4985 }
4986
4987 #endif /* HAVE_SHAPE_EXT */
4988
4989 /**
4990  * gdk_window_set_child_shapes:
4991  * @window: a #GdkWindow
4992  * 
4993  * Sets the shape mask of @window to the union of shape masks
4994  * for all children of @window, ignoring the shape mask of @window
4995  * itself. Contrast with gdk_window_merge_child_shapes() which includes
4996  * the shape mask of @window in the masks to be merged.
4997  **/
4998 void
4999 gdk_window_set_child_shapes (GdkWindow *window)
5000 {
5001   g_return_if_fail (window != NULL);
5002   g_return_if_fail (GDK_IS_WINDOW (window));
5003   
5004 #ifdef HAVE_SHAPE_EXT
5005   if (!GDK_WINDOW_DESTROYED (window) &&
5006       gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
5007     gdk_propagate_shapes (GDK_WINDOW_XDISPLAY (window),
5008                           GDK_WINDOW_XID (window), FALSE);
5009 #endif   
5010 }
5011
5012 /**
5013  * gdk_window_merge_child_shapes:
5014  * @window: a #GdkWindow
5015  * 
5016  * Merges the shape masks for any child windows into the
5017  * shape mask for @window. i.e. the union of all masks
5018  * for @window and its children will become the new mask
5019  * for @window. See gdk_window_shape_combine_mask().
5020  *
5021  * This function is distinct from gdk_window_set_child_shapes()
5022  * because it includes @window's shape mask in the set of shapes to
5023  * be merged.
5024  * 
5025  **/
5026 void
5027 gdk_window_merge_child_shapes (GdkWindow *window)
5028 {
5029   g_return_if_fail (window != NULL);
5030   g_return_if_fail (GDK_IS_WINDOW (window));
5031   
5032 #ifdef HAVE_SHAPE_EXT
5033   if (!GDK_WINDOW_DESTROYED (window) &&
5034       gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
5035     gdk_propagate_shapes (GDK_WINDOW_XDISPLAY (window),
5036                           GDK_WINDOW_XID (window), TRUE);
5037 #endif   
5038 }
5039
5040 static void
5041 gdk_window_set_static_bit_gravity (GdkWindow *window, gboolean on)
5042 {
5043   XSetWindowAttributes xattributes;
5044   GdkWindowObject *private;
5045   guint xattributes_mask = 0;
5046   
5047   g_return_if_fail (window != NULL);
5048
5049   private = GDK_WINDOW_OBJECT (window);
5050   if (private->input_only)
5051     return;
5052   
5053   xattributes.bit_gravity = StaticGravity;
5054   xattributes_mask |= CWBitGravity;
5055   xattributes.bit_gravity = on ? StaticGravity : ForgetGravity;
5056   XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
5057                            GDK_WINDOW_XID (window),
5058                            CWBitGravity,  &xattributes);
5059 }
5060
5061 static void
5062 gdk_window_set_static_win_gravity (GdkWindow *window, gboolean on)
5063 {
5064   XSetWindowAttributes xattributes;
5065   
5066   g_return_if_fail (window != NULL);
5067   
5068   xattributes.win_gravity = on ? StaticGravity : NorthWestGravity;
5069   
5070   XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
5071                            GDK_WINDOW_XID (window),
5072                            CWWinGravity,  &xattributes);
5073 }
5074
5075 /**
5076  * gdk_window_set_static_gravities:
5077  * @window: a #GdkWindow
5078  * @use_static: %TRUE to turn on static gravity
5079  *
5080  * Set the bit gravity of the given window to static, and flag it so
5081  * all children get static subwindow gravity. This is used if you are
5082  * implementing scary features that involve deep knowledge of the
5083  * windowing system. Don't worry about it unless you have to.
5084  * 
5085  * Return value: %TRUE if the server supports static gravity
5086  **/
5087 gboolean 
5088 gdk_window_set_static_gravities (GdkWindow *window,
5089                                  gboolean   use_static)
5090 {
5091   GdkWindowObject *private = (GdkWindowObject *)window;
5092   GList *tmp_list;
5093   
5094   g_return_val_if_fail (window != NULL, FALSE);
5095   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
5096
5097   if (!use_static == !private->guffaw_gravity)
5098     return TRUE;
5099
5100   private->guffaw_gravity = use_static;
5101   
5102   if (!GDK_WINDOW_DESTROYED (window))
5103     {
5104       gdk_window_set_static_bit_gravity (window, use_static);
5105       
5106       tmp_list = private->children;
5107       while (tmp_list)
5108         {
5109           gdk_window_set_static_win_gravity (tmp_list->data, use_static);
5110           
5111           tmp_list = tmp_list->next;
5112         }
5113     }
5114   
5115   return TRUE;
5116 }
5117
5118 static void
5119 wmspec_moveresize (GdkWindow *window,
5120                    gint       direction,
5121                    gint       root_x,
5122                    gint       root_y,
5123                    guint32    timestamp)     
5124 {
5125   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
5126   
5127   XEvent xev;
5128
5129   /* Release passive grab */
5130   gdk_display_pointer_ungrab (display, timestamp);
5131
5132   xev.xclient.type = ClientMessage;
5133   xev.xclient.serial = 0;
5134   xev.xclient.send_event = True;
5135   xev.xclient.window = GDK_WINDOW_XID (window);
5136   xev.xclient.message_type =
5137     gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_MOVERESIZE");
5138   xev.xclient.format = 32;
5139   xev.xclient.data.l[0] = root_x;
5140   xev.xclient.data.l[1] = root_y;
5141   xev.xclient.data.l[2] = direction;
5142   xev.xclient.data.l[3] = 0;
5143   xev.xclient.data.l[4] = 0;
5144   
5145   XSendEvent (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window), False,
5146               SubstructureRedirectMask | SubstructureNotifyMask,
5147               &xev);
5148 }
5149
5150 typedef struct _MoveResizeData MoveResizeData;
5151
5152 struct _MoveResizeData
5153 {
5154   GdkDisplay *display;
5155   
5156   GdkWindow *moveresize_window;
5157   GdkWindow *moveresize_emulation_window;
5158   gboolean is_resize;
5159   GdkWindowEdge resize_edge;
5160   gint moveresize_button;
5161   gint moveresize_x;
5162   gint moveresize_y;
5163   gint moveresize_orig_x;
5164   gint moveresize_orig_y;
5165   gint moveresize_orig_width;
5166   gint moveresize_orig_height;
5167   GdkWindowHints moveresize_geom_mask;
5168   GdkGeometry moveresize_geometry;
5169   Time moveresize_process_time;
5170   XEvent *moveresize_pending_event;
5171 };
5172
5173 /* From the WM spec */
5174 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT      0
5175 #define _NET_WM_MOVERESIZE_SIZE_TOP          1
5176 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT     2
5177 #define _NET_WM_MOVERESIZE_SIZE_RIGHT        3
5178 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT  4
5179 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM       5
5180 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT   6
5181 #define _NET_WM_MOVERESIZE_SIZE_LEFT         7
5182 #define _NET_WM_MOVERESIZE_MOVE              8
5183
5184 static void
5185 wmspec_resize_drag (GdkWindow     *window,
5186                     GdkWindowEdge  edge,
5187                     gint           button,
5188                     gint           root_x,
5189                     gint           root_y,
5190                     guint32        timestamp)
5191 {
5192   gint direction;
5193   
5194   /* Let the compiler turn a switch into a table, instead
5195    * of doing the table manually, this way is easier to verify.
5196    */
5197   switch (edge)
5198     {
5199     case GDK_WINDOW_EDGE_NORTH_WEST:
5200       direction = _NET_WM_MOVERESIZE_SIZE_TOPLEFT;
5201       break;
5202
5203     case GDK_WINDOW_EDGE_NORTH:
5204       direction = _NET_WM_MOVERESIZE_SIZE_TOP;
5205       break;
5206
5207     case GDK_WINDOW_EDGE_NORTH_EAST:
5208       direction = _NET_WM_MOVERESIZE_SIZE_TOPRIGHT;
5209       break;
5210
5211     case GDK_WINDOW_EDGE_WEST:
5212       direction = _NET_WM_MOVERESIZE_SIZE_LEFT;
5213       break;
5214
5215     case GDK_WINDOW_EDGE_EAST:
5216       direction = _NET_WM_MOVERESIZE_SIZE_RIGHT;
5217       break;
5218
5219     case GDK_WINDOW_EDGE_SOUTH_WEST:
5220       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT;
5221       break;
5222
5223     case GDK_WINDOW_EDGE_SOUTH:
5224       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOM;
5225       break;
5226
5227     case GDK_WINDOW_EDGE_SOUTH_EAST:
5228       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT;
5229       break;
5230
5231     default:
5232       g_warning ("gdk_window_begin_resize_drag: bad resize edge %d!",
5233                  edge);
5234       return;
5235       break;
5236     }
5237   
5238   wmspec_moveresize (window, direction, root_x, root_y, timestamp);
5239 }
5240
5241 static MoveResizeData *
5242 get_move_resize_data (GdkDisplay *display,
5243                       gboolean    create)
5244 {
5245   MoveResizeData *mv_resize;
5246   static GQuark move_resize_quark = 0;
5247
5248   if (!move_resize_quark)
5249     move_resize_quark = g_quark_from_static_string ("gdk-window-moveresize");
5250   
5251   mv_resize = g_object_get_qdata (G_OBJECT (display), move_resize_quark);
5252
5253   if (!mv_resize && create)
5254     {
5255       mv_resize = g_new0 (MoveResizeData, 1);
5256       mv_resize->display = display;
5257       
5258       g_object_set_qdata (G_OBJECT (display), move_resize_quark, mv_resize);
5259     }
5260
5261   return mv_resize;
5262 }
5263
5264 static void
5265 update_pos (MoveResizeData *mv_resize,
5266             gint            new_root_x,
5267             gint            new_root_y)
5268 {
5269   gint dx, dy;
5270
5271   dx = new_root_x - mv_resize->moveresize_x;
5272   dy = new_root_y - mv_resize->moveresize_y;
5273
5274   if (mv_resize->is_resize)
5275     {
5276       gint x, y, w, h;
5277
5278       x = mv_resize->moveresize_orig_x;
5279       y = mv_resize->moveresize_orig_y;
5280
5281       w = mv_resize->moveresize_orig_width;
5282       h = mv_resize->moveresize_orig_height;
5283
5284       switch (mv_resize->resize_edge)
5285         {
5286         case GDK_WINDOW_EDGE_NORTH_WEST:
5287           x += dx;
5288           y += dy;
5289           w -= dx;
5290           h -= dy;
5291           break;
5292         case GDK_WINDOW_EDGE_NORTH:
5293           y += dy;
5294           h -= dy;
5295           break;
5296         case GDK_WINDOW_EDGE_NORTH_EAST:
5297           y += dy;
5298           h -= dy;
5299           w += dx;
5300           break;
5301         case GDK_WINDOW_EDGE_SOUTH_WEST:
5302           h += dy;
5303           x += dx;
5304           w -= dx;
5305           break;
5306         case GDK_WINDOW_EDGE_SOUTH_EAST:
5307           w += dx;
5308           h += dy;
5309           break;
5310         case GDK_WINDOW_EDGE_SOUTH:
5311           h += dy;
5312           break;
5313         case GDK_WINDOW_EDGE_EAST:
5314           w += dx;
5315           break;
5316         case GDK_WINDOW_EDGE_WEST:
5317           x += dx;
5318           w -= dx;
5319           break;
5320         }
5321
5322       x = MAX (x, 0);
5323       y = MAX (y, 0);
5324       w = MAX (w, 1);
5325       h = MAX (h, 1);
5326
5327       if (mv_resize->moveresize_geom_mask)
5328         {
5329           gdk_window_constrain_size (&mv_resize->moveresize_geometry,
5330                                      mv_resize->moveresize_geom_mask,
5331                                      w, h, &w, &h);
5332         }
5333
5334       gdk_window_move_resize (mv_resize->moveresize_window, x, y, w, h);
5335     }
5336   else
5337     {
5338       gint x, y;
5339
5340       x = mv_resize->moveresize_orig_x + dx;
5341       y = mv_resize->moveresize_orig_y + dy;
5342
5343       gdk_window_move (mv_resize->moveresize_window, x, y);
5344     }
5345 }
5346
5347 static void
5348 finish_drag (MoveResizeData *mv_resize)
5349 {
5350   gdk_window_destroy (mv_resize->moveresize_emulation_window);
5351   mv_resize->moveresize_emulation_window = NULL;
5352   mv_resize->moveresize_window = NULL;
5353
5354   if (mv_resize->moveresize_pending_event)
5355     {
5356       g_free (mv_resize->moveresize_pending_event);
5357       mv_resize->moveresize_pending_event = NULL;
5358     }
5359 }
5360
5361 static int
5362 lookahead_motion_predicate (Display *xdisplay,
5363                             XEvent  *event,
5364                             XPointer arg)
5365 {
5366   gboolean *seen_release = (gboolean *)arg;
5367   GdkDisplay *display = gdk_x11_lookup_xdisplay (xdisplay);
5368   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5369
5370   if (*seen_release)
5371     return False;
5372
5373   switch (event->xany.type)
5374     {
5375     case ButtonRelease:
5376       *seen_release = TRUE;
5377       break;
5378     case MotionNotify:
5379       mv_resize->moveresize_process_time = event->xmotion.time;
5380       break;
5381     default:
5382       break;
5383     }
5384
5385   return False;
5386 }
5387
5388 static gboolean
5389 moveresize_lookahead (MoveResizeData *mv_resize,
5390                       XEvent         *event)
5391 {
5392   XEvent tmp_event;
5393   gboolean seen_release = FALSE;
5394
5395   if (mv_resize->moveresize_process_time)
5396     {
5397       if (event->xmotion.time == mv_resize->moveresize_process_time)
5398         {
5399           mv_resize->moveresize_process_time = 0;
5400           return TRUE;
5401         }
5402       else
5403         return FALSE;
5404     }
5405
5406   XCheckIfEvent (event->xany.display, &tmp_event,
5407                  lookahead_motion_predicate, (XPointer) & seen_release);
5408
5409   return mv_resize->moveresize_process_time == 0;
5410 }
5411         
5412 gboolean
5413 _gdk_moveresize_handle_event (XEvent *event)
5414 {
5415   guint button_mask = 0;
5416   GdkWindowObject *window_private;
5417   GdkDisplay *display = gdk_x11_lookup_xdisplay (event->xany.display);
5418   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5419
5420   if (!mv_resize || !mv_resize->moveresize_window)
5421     return FALSE;
5422
5423   window_private = (GdkWindowObject *) mv_resize->moveresize_window;
5424
5425   button_mask = GDK_BUTTON1_MASK << (mv_resize->moveresize_button - 1);
5426
5427   switch (event->xany.type)
5428     {
5429     case MotionNotify:
5430       if (window_private->resize_count > 0)
5431         {
5432           if (mv_resize->moveresize_pending_event)
5433             *mv_resize->moveresize_pending_event = *event;
5434           else
5435             mv_resize->moveresize_pending_event =
5436               g_memdup (event, sizeof (XEvent));
5437
5438           break;
5439         }
5440       if (!moveresize_lookahead (mv_resize, event))
5441         break;
5442
5443       update_pos (mv_resize,
5444                   event->xmotion.x_root,
5445                   event->xmotion.y_root);
5446
5447       /* This should never be triggered in normal cases, but in the
5448        * case where the drag started without an implicit grab being
5449        * in effect, we could miss the release if it occurs before
5450        * we grab the pointer; this ensures that we will never
5451        * get a permanently stuck grab.
5452        */
5453       if ((event->xmotion.state & button_mask) == 0)
5454         finish_drag (mv_resize);
5455       break;
5456
5457     case ButtonRelease:
5458       update_pos (mv_resize,
5459                   event->xbutton.x_root,
5460                   event->xbutton.y_root);
5461
5462       if (event->xbutton.button == mv_resize->moveresize_button)
5463         finish_drag (mv_resize);
5464       break;
5465     }
5466   return TRUE;
5467 }
5468
5469 gboolean 
5470 _gdk_moveresize_configure_done (GdkDisplay *display,
5471                                 GdkWindow  *window)
5472 {
5473   XEvent *tmp_event;
5474   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5475   
5476   if (!mv_resize || window != mv_resize->moveresize_window)
5477     return FALSE;
5478
5479   if (mv_resize->moveresize_pending_event)
5480     {
5481       tmp_event = mv_resize->moveresize_pending_event;
5482       mv_resize->moveresize_pending_event = NULL;
5483       _gdk_moveresize_handle_event (tmp_event);
5484       g_free (tmp_event);
5485     }
5486   
5487   return TRUE;
5488 }
5489
5490 static void
5491 create_moveresize_window (MoveResizeData *mv_resize,
5492                           guint32         timestamp)
5493 {
5494   GdkWindowAttr attributes;
5495   gint attributes_mask;
5496   GdkGrabStatus status;
5497
5498   g_assert (mv_resize->moveresize_emulation_window == NULL);
5499
5500   attributes.x = -100;
5501   attributes.y = -100;
5502   attributes.width = 10;
5503   attributes.height = 10;
5504   attributes.window_type = GDK_WINDOW_TEMP;
5505   attributes.wclass = GDK_INPUT_ONLY;
5506   attributes.override_redirect = TRUE;
5507   attributes.event_mask = 0;
5508
5509   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
5510
5511   mv_resize->moveresize_emulation_window = 
5512     gdk_window_new (gdk_screen_get_root_window (gdk_display_get_default_screen (mv_resize->display)),
5513                     &attributes,
5514                     attributes_mask);
5515
5516   gdk_window_show (mv_resize->moveresize_emulation_window);
5517
5518   status = gdk_pointer_grab (mv_resize->moveresize_emulation_window,
5519                              FALSE,
5520                              GDK_BUTTON_RELEASE_MASK |
5521                              GDK_POINTER_MOTION_MASK,
5522                              NULL,
5523                              NULL,
5524                              timestamp);
5525
5526   if (status != GDK_GRAB_SUCCESS)
5527     {
5528       /* If this fails, some other client has grabbed the window
5529        * already.
5530        */
5531       gdk_window_destroy (mv_resize->moveresize_emulation_window);
5532       mv_resize->moveresize_emulation_window = NULL;
5533     }
5534
5535   mv_resize->moveresize_process_time = 0;
5536 }
5537
5538 /* 
5539    Calculate mv_resize->moveresize_orig_x and mv_resize->moveresize_orig_y
5540    so that calling XMoveWindow with these coordinates will not move the 
5541    window.
5542    Note that this depends on the WM to implement ICCCM-compliant reference
5543    point handling.
5544 */
5545 static void 
5546 calculate_unmoving_origin (MoveResizeData *mv_resize)
5547 {
5548   GdkRectangle rect;
5549   gint width, height;
5550
5551   if (mv_resize->moveresize_geom_mask & GDK_HINT_WIN_GRAVITY &&
5552       mv_resize->moveresize_geometry.win_gravity == GDK_GRAVITY_STATIC)
5553     {
5554       gdk_window_get_origin (mv_resize->moveresize_window,
5555                              &mv_resize->moveresize_orig_x,
5556                              &mv_resize->moveresize_orig_y);
5557     }
5558   else
5559     {
5560       gdk_window_get_frame_extents (mv_resize->moveresize_window, &rect);
5561       gdk_window_get_geometry (mv_resize->moveresize_window, 
5562                                NULL, NULL, &width, &height, NULL);
5563       
5564       switch (mv_resize->moveresize_geometry.win_gravity) 
5565         {
5566         case GDK_GRAVITY_NORTH_WEST:
5567           mv_resize->moveresize_orig_x = rect.x;
5568           mv_resize->moveresize_orig_y = rect.y;
5569           break;
5570         case GDK_GRAVITY_NORTH:
5571           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5572           mv_resize->moveresize_orig_y = rect.y;
5573           break;          
5574         case GDK_GRAVITY_NORTH_EAST:
5575           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5576           mv_resize->moveresize_orig_y = rect.y;
5577           break;
5578         case GDK_GRAVITY_WEST:
5579           mv_resize->moveresize_orig_x = rect.x;
5580           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5581           break;
5582         case GDK_GRAVITY_CENTER:
5583           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5584           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5585           break;
5586         case GDK_GRAVITY_EAST:
5587           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5588           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5589           break;
5590         case GDK_GRAVITY_SOUTH_WEST:
5591           mv_resize->moveresize_orig_x = rect.x;
5592           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5593           break;
5594         case GDK_GRAVITY_SOUTH:
5595           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5596           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5597           break;
5598         case GDK_GRAVITY_SOUTH_EAST:
5599           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5600           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5601           break;
5602         default:
5603           mv_resize->moveresize_orig_x = rect.x;
5604           mv_resize->moveresize_orig_y = rect.y;
5605           break; 
5606         }
5607     }  
5608 }
5609
5610 static void
5611 emulate_resize_drag (GdkWindow     *window,
5612                      GdkWindowEdge  edge,
5613                      gint           button,
5614                      gint           root_x,
5615                      gint           root_y,
5616                      guint32        timestamp)
5617 {
5618   MoveResizeData *mv_resize = get_move_resize_data (GDK_WINDOW_DISPLAY (window), TRUE);
5619
5620   mv_resize->is_resize = TRUE;
5621   mv_resize->moveresize_button = button;
5622   mv_resize->resize_edge = edge;
5623   mv_resize->moveresize_x = root_x;
5624   mv_resize->moveresize_y = root_y;
5625   mv_resize->moveresize_window = g_object_ref (window);
5626
5627   gdk_drawable_get_size (window,
5628                          &mv_resize->moveresize_orig_width,
5629                          &mv_resize->moveresize_orig_height);
5630
5631   mv_resize->moveresize_geom_mask = 0;
5632   gdk_window_get_geometry_hints (window,
5633                                  &mv_resize->moveresize_geometry,
5634                                  &mv_resize->moveresize_geom_mask);
5635
5636   calculate_unmoving_origin (mv_resize);
5637
5638   create_moveresize_window (mv_resize, timestamp);
5639 }
5640
5641 static void
5642 emulate_move_drag (GdkWindow     *window,
5643                    gint           button,
5644                    gint           root_x,
5645                    gint           root_y,
5646                    guint32        timestamp)
5647 {
5648   MoveResizeData *mv_resize = get_move_resize_data (GDK_WINDOW_DISPLAY (window), TRUE);
5649   
5650   mv_resize->is_resize = FALSE;
5651   mv_resize->moveresize_button = button;
5652   mv_resize->moveresize_x = root_x;
5653   mv_resize->moveresize_y = root_y;
5654
5655   mv_resize->moveresize_window = g_object_ref (window);
5656
5657   calculate_unmoving_origin (mv_resize);
5658
5659   create_moveresize_window (mv_resize, timestamp);
5660 }
5661
5662 /**
5663  * gdk_window_begin_resize_drag:
5664  * @window: a toplevel #GdkWindow
5665  * @edge: the edge or corner from which the drag is started
5666  * @button: the button being used to drag
5667  * @root_x: root window X coordinate of mouse click that began the drag
5668  * @root_y: root window Y coordinate of mouse click that began the drag
5669  * @timestamp: timestamp of mouse click that began the drag (use gdk_event_get_time())
5670  *
5671  * Begins a window resize operation (for a toplevel window).
5672  * You might use this function to implement a "window resize grip," for
5673  * example; in fact #GtkStatusbar uses it. The function works best
5674  * with window managers that support the Extended Window Manager Hints spec
5675  * (see http://www.freedesktop.org), but has a fallback implementation
5676  * for other window managers.
5677  * 
5678  **/
5679 void
5680 gdk_window_begin_resize_drag (GdkWindow     *window,
5681                               GdkWindowEdge  edge,
5682                               gint           button,
5683                               gint           root_x,
5684                               gint           root_y,
5685                               guint32        timestamp)
5686 {
5687   g_return_if_fail (GDK_IS_WINDOW (window));
5688
5689   if (GDK_WINDOW_DESTROYED (window))
5690     return;
5691
5692   if (gdk_x11_screen_supports_net_wm_hint (GDK_WINDOW_SCREEN (window),
5693                                            gdk_atom_intern ("_NET_WM_MOVERESIZE", FALSE)))
5694     wmspec_resize_drag (window, edge, button, root_x, root_y, timestamp);
5695   else
5696     emulate_resize_drag (window, edge, button, root_x, root_y, timestamp);
5697 }
5698
5699 /**
5700  * gdk_window_begin_move_drag:
5701  * @window: a toplevel #GdkWindow
5702  * @button: the button being used to drag
5703  * @root_x: root window X coordinate of mouse click that began the drag
5704  * @root_y: root window Y coordinate of mouse click that began the drag
5705  * @timestamp: timestamp of mouse click that began the drag
5706  *
5707  * Begins a window move operation (for a toplevel window).  You might
5708  * use this function to implement a "window move grip," for
5709  * example. The function works best with window managers that support
5710  * the Extended Window Manager Hints spec (see
5711  * http://www.freedesktop.org), but has a fallback implementation for
5712  * other window managers.
5713  * 
5714  **/
5715 void
5716 gdk_window_begin_move_drag (GdkWindow *window,
5717                             gint       button,
5718                             gint       root_x,
5719                             gint       root_y,
5720                             guint32    timestamp)
5721 {
5722   g_return_if_fail (GDK_IS_WINDOW (window));
5723
5724   if (GDK_WINDOW_DESTROYED (window))
5725     return;
5726
5727   if (gdk_x11_screen_supports_net_wm_hint (GDK_WINDOW_SCREEN (window),
5728                                            gdk_atom_intern ("_NET_WM_MOVERESIZE", FALSE)))
5729     wmspec_moveresize (window, _NET_WM_MOVERESIZE_MOVE, root_x, root_y,
5730                        timestamp);
5731   else
5732     emulate_move_drag (window, button, root_x, root_y, timestamp);
5733 }
5734
5735 /**
5736  * gdk_window_enable_synchronized_configure:
5737  * @window: a toplevel #GdkWindow
5738  * 
5739  * Indicates that the application will cooperate with the window
5740  * system in synchronizing the window repaint with the window
5741  * manager during resizing operations. After an application calls
5742  * this function, it must call gdk_window_configure_finished() every
5743  * time it has finished all processing associated with a set of
5744  * Configure events. Toplevel GTK+ windows automatically use this
5745  * protocol.
5746  * 
5747  * On X, calling this function makes @window participate in the
5748  * _NET_WM_SYNC_REQUEST window manager protocol.
5749  * 
5750  * Since: 2.6
5751  **/
5752 void
5753 gdk_window_enable_synchronized_configure (GdkWindow *window)
5754 {
5755   GdkWindowObject *private = (GdkWindowObject *)window;
5756   GdkWindowImplX11 *impl;
5757
5758   g_return_if_fail (GDK_IS_WINDOW (window));
5759
5760   impl = GDK_WINDOW_IMPL_X11 (private->impl);
5761           
5762   if (!impl->use_synchronized_configure)
5763     {
5764       impl->use_synchronized_configure = TRUE;
5765       ensure_sync_counter (window);
5766     }
5767 }
5768
5769 /**
5770  * gdk_window_configure_finished:
5771  * @window: a toplevel #GdkWindow
5772  * 
5773  * Signal to the window system that the application has finished
5774  * handling Configure events it has received. Window Managers can
5775  * use this to better synchronize the frame repaint with the
5776  * application. GTK+ applications will automatically call this
5777  * function when appropriate.
5778  *
5779  * This function can only be called if gdk_window_use_configure()
5780  * was called previously.
5781  *
5782  * Since: 2.6
5783  **/
5784 void
5785 gdk_window_configure_finished (GdkWindow *window)
5786 {
5787   GdkWindowImplX11 *impl;
5788
5789   g_return_if_fail (GDK_IS_WINDOW (window));
5790   
5791   impl = GDK_WINDOW_IMPL_X11 (((GdkWindowObject *)window)->impl);
5792   if (!impl->use_synchronized_configure)
5793     return;
5794   
5795 #ifdef HAVE_XSYNC
5796   if (!GDK_WINDOW_DESTROYED (window))
5797     {
5798       GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
5799       GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
5800
5801       if (toplevel && toplevel->update_counter != None &&
5802           GDK_DISPLAY_X11 (display)->use_sync &&
5803           !XSyncValueIsZero (toplevel->current_counter_value))
5804         {
5805           XSyncSetCounter (GDK_WINDOW_XDISPLAY (window), 
5806                            toplevel->update_counter,
5807                            toplevel->current_counter_value);
5808           
5809           XSyncIntToValue (&toplevel->current_counter_value, 0);
5810         }
5811     }
5812 #endif
5813 }