]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkwindow-x11.c
Call GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
[~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   GdkDisplay *display;
3132   GdkWindowObject *private;
3133   Window xwindow;
3134   Window xparent;
3135   Window root;
3136   Window *children;
3137   guchar *data;
3138   Window *vroots;
3139   Atom type_return;
3140   guint nchildren;
3141   guint nvroots;
3142   gulong nitems_return;
3143   gulong bytes_after_return;
3144   gint format_return;
3145   gint i;
3146   guint ww, wh, wb, wd;
3147   gint wx, wy;
3148   
3149   g_return_if_fail (GDK_IS_WINDOW (window));
3150   g_return_if_fail (rect != NULL);
3151   
3152   private = (GdkWindowObject*) window;
3153   
3154   rect->x = 0;
3155   rect->y = 0;
3156   rect->width = 1;
3157   rect->height = 1;
3158   
3159   if (GDK_WINDOW_DESTROYED (window))
3160     return;
3161   
3162   while (private->parent && ((GdkWindowObject*) private->parent)->parent)
3163     private = (GdkWindowObject*) private->parent;
3164
3165   /* Refine our fallback answer a bit using local information */
3166   rect->x = private->x;
3167   rect->y = private->y;
3168   gdk_drawable_get_size ((GdkDrawable *)private, &rect->width, &rect->height);
3169
3170   if (GDK_WINDOW_DESTROYED (private))
3171     return;
3172
3173   gdk_error_trap_push();
3174   
3175   /* use NETWM_VIRTUAL_ROOTS if available */
3176   display = gdk_drawable_get_display (window);
3177   root = GDK_WINDOW_XROOTWIN (window);
3178
3179   nvroots = 0;
3180   vroots = NULL;
3181
3182   if (XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), root,
3183                           gdk_x11_get_xatom_by_name_for_display (display, 
3184                                                                  "_NET_VIRTUAL_ROOTS"),
3185                           0, G_MAXLONG, False, XA_WINDOW, &type_return,
3186                           &format_return, &nitems_return, &bytes_after_return,
3187                           &data)
3188       == Success)
3189     {
3190       if ((type_return == XA_WINDOW) && (format_return == 32) && (data))
3191         {
3192           nvroots = nitems_return;
3193           vroots = (Window *)data;
3194         }
3195     }
3196
3197   xparent = GDK_WINDOW_XID (window);
3198
3199   do
3200     {
3201       xwindow = xparent;
3202
3203       if (!XQueryTree (GDK_DISPLAY_XDISPLAY (display), xwindow,
3204                        &root, &xparent,
3205                        &children, &nchildren))
3206         goto fail;
3207       
3208       if (children)
3209         XFree (children);
3210
3211       /* check virtual roots */
3212       for (i = 0; i < nvroots; i++)
3213         {
3214           if (xparent == vroots[i])
3215             {
3216               root = xparent;
3217               break;
3218            }
3219         }
3220     }
3221   while (xparent != root);
3222   
3223   if (XGetGeometry (GDK_DISPLAY_XDISPLAY (display), xwindow, 
3224                     &root, &wx, &wy, &ww, &wh, &wb, &wd))
3225     {
3226       rect->x = wx;
3227       rect->y = wy;
3228       rect->width = ww;
3229       rect->height = wh;
3230     }
3231
3232  fail:
3233   if (vroots)
3234     XFree (vroots);
3235
3236   gdk_error_trap_pop ();
3237 }
3238
3239 void
3240 _gdk_windowing_get_pointer (GdkDisplay       *display,
3241                             GdkScreen       **screen,
3242                             gint             *x,
3243                             gint             *y,
3244                             GdkModifierType  *mask)
3245 {
3246   GdkScreen *default_screen;
3247   Window root = None;
3248   Window child;
3249   int rootx, rooty;
3250   int winx;
3251   int winy;
3252   unsigned int xmask;
3253
3254   if (display->closed)
3255     return;
3256
3257   default_screen = gdk_display_get_default_screen (display);
3258   
3259   XQueryPointer (GDK_SCREEN_XDISPLAY (default_screen),
3260                  GDK_SCREEN_XROOTWIN (default_screen),
3261                  &root, &child, &rootx, &rooty, &winx, &winy, &xmask);
3262   
3263   if (root != None)
3264     {
3265       GdkWindow *gdk_root = gdk_window_lookup_for_display (display, root);
3266       *screen = gdk_drawable_get_screen (gdk_root);
3267     }
3268   
3269   *x = rootx;
3270   *y = rooty;
3271   *mask = xmask;
3272 }
3273
3274 GdkWindow*
3275 _gdk_windowing_window_get_pointer (GdkDisplay      *display,
3276                                    GdkWindow       *window,
3277                                    gint            *x,
3278                                    gint            *y,
3279                                    GdkModifierType *mask)
3280 {
3281   GdkWindow *return_val;
3282   Window root;
3283   Window child;
3284   int rootx, rooty;
3285   int winx = 0;
3286   int winy = 0;
3287   unsigned int xmask = 0;
3288   gint xoffset, yoffset;
3289
3290   g_return_val_if_fail (window == NULL || GDK_IS_WINDOW (window), NULL);
3291   
3292   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3293
3294   return_val = NULL;
3295   if (!GDK_WINDOW_DESTROYED (window) &&
3296       XQueryPointer (GDK_WINDOW_XDISPLAY (window),
3297                      GDK_WINDOW_XID (window),
3298                      &root, &child, &rootx, &rooty, &winx, &winy, &xmask))
3299     {
3300       if (child)
3301         return_val = gdk_window_lookup_for_display (GDK_WINDOW_DISPLAY (window), child);
3302     }
3303   
3304   *x = winx + xoffset;
3305   *y = winy + yoffset;
3306   *mask = xmask;
3307   
3308   return return_val;
3309 }
3310
3311 /**
3312  * gdk_display_warp_pointer:
3313  * @display: a #GdkDisplay
3314  * @screen: the screen of @display to warp the pointer to
3315  * @x: the x coordinate of the destination
3316  * @y: the y coordinate of the destination
3317  * 
3318  * Warps the pointer of @display to the point @x,@y on 
3319  * the screen @screen, unless the pointer is confined
3320  * to a window by a grab, in which case it will be moved
3321  * as far as allowed by the grab. Warping the pointer 
3322  * creates events as if the user had moved the mouse 
3323  * instantaneously to the destination.
3324  * 
3325  * Note that the pointer should normally be under the
3326  * control of the user. This function was added to cover
3327  * some rare use cases like keyboard navigation support
3328  * for the color picker in the #GtkColorSelectionDialog.
3329  *
3330  * Since: 2.8
3331  */ 
3332 void
3333 gdk_display_warp_pointer (GdkDisplay *display,
3334                           GdkScreen  *screen,
3335                           gint        x,
3336                           gint        y)
3337 {
3338   Display *xdisplay;
3339   Window dest;
3340
3341   xdisplay = GDK_DISPLAY_XDISPLAY (display);
3342   dest = GDK_WINDOW_XWINDOW (gdk_screen_get_root_window (screen));
3343
3344   XWarpPointer (xdisplay, None, dest, 0, 0, 0, 0, x, y);  
3345 }
3346
3347 GdkWindow*
3348 _gdk_windowing_window_at_pointer (GdkDisplay *display,
3349                                   gint       *win_x,
3350                                   gint       *win_y)
3351 {
3352   GdkWindow *window;
3353   GdkScreen *screen;
3354   Window root;
3355   Window xwindow;
3356   Window child;
3357   Window xwindow_last = 0;
3358   Display *xdisplay;
3359   int rootx = -1, rooty = -1;
3360   int winx, winy;
3361   unsigned int xmask;
3362
3363   screen = gdk_display_get_default_screen (display);
3364   
3365   xwindow = GDK_SCREEN_XROOTWIN (screen);
3366   xdisplay = GDK_SCREEN_XDISPLAY (screen);
3367
3368   /* This function really only works if the mouse pointer is held still
3369    * during its operation. If it moves from one leaf window to another
3370    * than we'll end up with inaccurate values for win_x, win_y
3371    * and the result.
3372    */
3373   gdk_x11_display_grab (display);
3374   XQueryPointer (xdisplay, xwindow,
3375                  &root, &child, &rootx, &rooty, &winx, &winy, &xmask);
3376
3377   if (root == xwindow)
3378     xwindow = child;
3379   else
3380     xwindow = root;
3381   
3382   while (xwindow)
3383     {
3384       xwindow_last = xwindow;
3385       XQueryPointer (xdisplay, xwindow,
3386                      &root, &xwindow, &rootx, &rooty, &winx, &winy, &xmask);
3387     }
3388   gdk_x11_display_ungrab (display);
3389
3390   window = gdk_window_lookup_for_display (GDK_SCREEN_DISPLAY(screen),
3391                                           xwindow_last);
3392   *win_x = window ? winx : -1;
3393   *win_y = window ? winy : -1;
3394
3395   return window;
3396 }
3397
3398 /**
3399  * gdk_window_get_events:
3400  * @window: a #GdkWindow
3401  * 
3402  * Gets the event mask for @window. See gdk_window_set_events().
3403  * 
3404  * Return value: event mask for @window
3405  **/
3406 GdkEventMask  
3407 gdk_window_get_events (GdkWindow *window)
3408 {
3409   XWindowAttributes attrs;
3410   GdkEventMask event_mask;
3411   
3412   g_return_val_if_fail (window != NULL, 0);
3413   g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
3414
3415   if (GDK_WINDOW_DESTROYED (window))
3416     return 0;
3417   else
3418     {
3419       XGetWindowAttributes (GDK_WINDOW_XDISPLAY (window),
3420                             GDK_WINDOW_XID (window), 
3421                             &attrs);
3422       
3423       event_mask = x_event_mask_to_gdk_event_mask (attrs.your_event_mask);
3424       GDK_WINDOW_OBJECT (window)->event_mask = event_mask;
3425   
3426       return event_mask;
3427     }
3428 }
3429
3430 /**
3431  * gdk_window_set_events:
3432  * @window: a #GdkWindow
3433  * @event_mask: event mask for @window
3434  *
3435  * The event mask for a window determines which events will be reported
3436  * for that window. For example, an event mask including #GDK_BUTTON_PRESS_MASK
3437  * means the window should report button press events. The event mask
3438  * is the bitwise OR of values from the #GdkEventMask enumeration.
3439  * 
3440  **/
3441 void          
3442 gdk_window_set_events (GdkWindow       *window,
3443                        GdkEventMask     event_mask)
3444 {
3445   long xevent_mask;
3446   int i;
3447   
3448   g_return_if_fail (window != NULL);
3449   g_return_if_fail (GDK_IS_WINDOW (window));
3450   
3451   if (!GDK_WINDOW_DESTROYED (window))
3452     {
3453       GDK_WINDOW_OBJECT (window)->event_mask = event_mask;
3454       xevent_mask = StructureNotifyMask | PropertyChangeMask;
3455       for (i = 0; i < _gdk_nenvent_masks; i++)
3456         {
3457           if (event_mask & (1 << (i + 1)))
3458             xevent_mask |= _gdk_event_mask_table[i];
3459         }
3460       
3461       XSelectInput (GDK_WINDOW_XDISPLAY (window),
3462                     GDK_WINDOW_XID (window),
3463                     xevent_mask);
3464     }
3465 }
3466
3467 static void
3468 gdk_window_add_colormap_windows (GdkWindow *window)
3469 {
3470   GdkWindow *toplevel;
3471   Window *old_windows;
3472   Window *new_windows;
3473   int i, count;
3474   
3475   g_return_if_fail (window != NULL);
3476   g_return_if_fail (GDK_IS_WINDOW (window));
3477
3478   if (GDK_WINDOW_DESTROYED (window))
3479     return;
3480   toplevel = gdk_window_get_toplevel (window);
3481   
3482   old_windows = NULL;
3483   if (!XGetWMColormapWindows (GDK_WINDOW_XDISPLAY (toplevel),
3484                               GDK_WINDOW_XID (toplevel),
3485                               &old_windows, &count))
3486     {
3487       count = 0;
3488     }
3489   
3490   for (i = 0; i < count; i++)
3491     if (old_windows[i] == GDK_WINDOW_XID (window))
3492       {
3493         XFree (old_windows);
3494         return;
3495       }
3496   
3497   new_windows = g_new (Window, count + 1);
3498   
3499   for (i = 0; i < count; i++)
3500     new_windows[i] = old_windows[i];
3501   new_windows[count] = GDK_WINDOW_XID (window);
3502   
3503   XSetWMColormapWindows (GDK_WINDOW_XDISPLAY (toplevel),
3504                          GDK_WINDOW_XID (toplevel),
3505                          new_windows, count + 1);
3506   
3507   g_free (new_windows);
3508   if (old_windows)
3509     XFree (old_windows);
3510 }
3511
3512 static gboolean
3513 gdk_window_have_shape_ext (GdkDisplay *display)
3514 {
3515 #ifdef HAVE_SHAPE_EXT
3516   int ignore;
3517
3518   return XShapeQueryExtension (GDK_DISPLAY_XDISPLAY (display),
3519                                &ignore, &ignore);
3520 #else
3521   return 0;
3522 #endif  
3523 }
3524
3525 #define WARN_SHAPE_TOO_BIG() g_warning ("GdkWindow is too large to allow the use of shape masks or shape regions.")
3526
3527 /*
3528  * This needs the X11 shape extension.
3529  * If not available, shaped windows will look
3530  * ugly, but programs still work.    Stefan Wille
3531  */
3532 /**
3533  * gdk_window_shape_combine_mask:
3534  * @window: a #GdkWindow
3535  * @mask: shape mask
3536  * @x: X position of shape mask with respect to @window
3537  * @y: Y position of shape mask with respect to @window
3538  *
3539  * Applies a shape mask to @window. Pixels in @window corresponding to
3540  * set bits in the @mask will be visible; pixels in @window
3541  * corresponding to unset bits in the @mask will be transparent. This
3542  * gives a non-rectangular window.
3543  *
3544  * If @mask is %NULL, the shape mask will be unset, and the @x/@y
3545  * parameters are not used.
3546  *
3547  * On the X11 platform, this uses an X server extension which is
3548  * widely available on most common platforms, but not available on
3549  * very old X servers, and occasionally the implementation will be
3550  * buggy. On servers without the shape extension, this function
3551  * will do nothing.
3552  *
3553  * This function works on both toplevel and child windows.
3554  * 
3555  **/
3556 void
3557 gdk_window_shape_combine_mask (GdkWindow *window,
3558                                GdkBitmap *mask,
3559                                gint x, gint y)
3560 {
3561   Pixmap pixmap;
3562   gint xoffset, yoffset;
3563   
3564   g_return_if_fail (window != NULL);
3565   g_return_if_fail (GDK_IS_WINDOW (window));
3566   
3567 #ifdef HAVE_SHAPE_EXT
3568   if (GDK_WINDOW_DESTROYED (window))
3569     return;
3570
3571   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3572
3573   if (xoffset != 0 || yoffset != 0)
3574     {
3575       WARN_SHAPE_TOO_BIG ();
3576       return;
3577     }
3578   
3579   if (gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
3580     {
3581       if (mask)
3582         {
3583           pixmap = GDK_PIXMAP_XID (mask);
3584         }
3585       else
3586         {
3587           x = 0;
3588           y = 0;
3589           pixmap = None;
3590         }
3591       
3592       XShapeCombineMask (GDK_WINDOW_XDISPLAY (window),
3593                          GDK_WINDOW_XID (window),
3594                          ShapeBounding,
3595                          x, y,
3596                          pixmap,
3597                          ShapeSet);
3598     }
3599 #endif /* HAVE_SHAPE_EXT */
3600 }
3601
3602 /**
3603  * gdk_window_shape_combine_region:
3604  * @window: a #GdkWindow
3605  * @shape_region: region of window to be non-transparent
3606  * @offset_x: X position of @shape_region in @window coordinates
3607  * @offset_y: Y position of @shape_region in @window coordinates
3608  *
3609  * Makes pixels in @window outside @shape_region be transparent,
3610  * so that the window may be nonrectangular. See also
3611  * gdk_window_shape_combine_mask() to use a bitmap as the mask.
3612  *
3613  * If @shape_region is %NULL, the shape will be unset, so the whole
3614  * window will be opaque again. @offset_x and @offset_y are ignored
3615  * if @shape_region is %NULL.
3616  * 
3617  * On the X11 platform, this uses an X server extension which is
3618  * widely available on most common platforms, but not available on
3619  * very old X servers, and occasionally the implementation will be
3620  * buggy. On servers without the shape extension, this function
3621  * will do nothing.
3622  *
3623  * This function works on both toplevel and child windows.
3624  * 
3625  **/
3626 void
3627 gdk_window_shape_combine_region (GdkWindow *window,
3628                                  GdkRegion *shape_region,
3629                                  gint       offset_x,
3630                                  gint       offset_y)
3631 {
3632   gint xoffset, yoffset;
3633   
3634   g_return_if_fail (GDK_IS_WINDOW (window));
3635   
3636 #ifdef HAVE_SHAPE_EXT
3637   if (GDK_WINDOW_DESTROYED (window))
3638     return;
3639
3640   _gdk_windowing_window_get_offsets (window, &xoffset, &yoffset);
3641
3642   if (xoffset != 0 || yoffset != 0)
3643     {
3644       WARN_SHAPE_TOO_BIG ();
3645       return;
3646     }
3647   
3648   if (shape_region == NULL)
3649     {
3650       /* Use NULL mask to unset the shape */
3651       gdk_window_shape_combine_mask (window, NULL, 0, 0);
3652       return;
3653     }
3654   
3655   if (gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
3656     {
3657       gint n_rects = 0;
3658       XRectangle *xrects = NULL;
3659
3660       _gdk_region_get_xrectangles (shape_region,
3661                                    0, 0,
3662                                    &xrects, &n_rects);
3663       
3664       XShapeCombineRectangles (GDK_WINDOW_XDISPLAY (window),
3665                                GDK_WINDOW_XID (window),
3666                                ShapeBounding,
3667                                offset_x, offset_y,
3668                                xrects, n_rects,
3669                                ShapeSet,
3670                                YXBanded);
3671
3672       g_free (xrects);
3673     }
3674 #endif /* HAVE_SHAPE_EXT */
3675 }
3676
3677
3678 /**
3679  * gdk_window_set_override_redirect:
3680  * @window: a toplevel #GdkWindow
3681  * @override_redirect: %TRUE if window should be override redirect
3682  *
3683  * An override redirect window is not under the control of the window manager.
3684  * This means it won't have a titlebar, won't be minimizable, etc. - it will
3685  * be entirely under the control of the application. The window manager
3686  * can't see the override redirect window at all.
3687  *
3688  * Override redirect should only be used for short-lived temporary
3689  * windows, such as popup menus. #GtkMenu uses an override redirect
3690  * window in its implementation, for example.
3691  * 
3692  **/
3693 void
3694 gdk_window_set_override_redirect (GdkWindow *window,
3695                                   gboolean override_redirect)
3696 {
3697   XSetWindowAttributes attr;
3698   
3699   g_return_if_fail (window != NULL);
3700   g_return_if_fail (GDK_IS_WINDOW (window));
3701
3702   if (!GDK_WINDOW_DESTROYED (window))
3703     {
3704       GdkWindowObject *private = (GdkWindowObject *)window;
3705       GdkWindowImplX11 *impl = GDK_WINDOW_IMPL_X11 (private->impl);
3706
3707       attr.override_redirect = (override_redirect? True : False);
3708       XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
3709                                GDK_WINDOW_XID (window),
3710                                CWOverrideRedirect,
3711                                &attr);
3712
3713       impl->override_redirect = attr.override_redirect;
3714     }
3715 }
3716
3717 /**
3718  * gdk_window_set_accept_focus:
3719  * @window: a toplevel #GdkWindow
3720  * @accept_focus: %TRUE if the window should receive input focus
3721  *
3722  * Setting @accept_focus to %FALSE hints the desktop environment that the
3723  * window doesn't want to receive input focus. 
3724  *
3725  * On X, it is the responsibility of the window manager to interpret this 
3726  * hint. ICCCM-compliant window manager usually respect it.
3727  *
3728  * Since: 2.4 
3729  **/
3730 void
3731 gdk_window_set_accept_focus (GdkWindow *window,
3732                              gboolean accept_focus)
3733 {
3734   GdkWindowObject *private;
3735   g_return_if_fail (window != NULL);
3736   g_return_if_fail (GDK_IS_WINDOW (window));
3737
3738   private = (GdkWindowObject *)window;  
3739   
3740   accept_focus = accept_focus != FALSE;
3741
3742   if (private->accept_focus != accept_focus)
3743     {
3744       private->accept_focus = accept_focus;
3745
3746       if (!GDK_WINDOW_DESTROYED (window))
3747         update_wm_hints (window, FALSE);
3748     }
3749 }
3750
3751 /**
3752  * gdk_window_set_focus_on_map:
3753  * @window: a toplevel #GdkWindow
3754  * @focus_on_map: %TRUE if the window should receive input focus when mapped
3755  *
3756  * Setting @focus_on_map to %FALSE hints the desktop environment that the
3757  * window doesn't want to receive input focus when it is mapped.  
3758  * focus_on_map should be turned off for windows that aren't triggered
3759  * interactively (such as popups from network activity).
3760  *
3761  * On X, it is the responsibility of the window manager to interpret
3762  * this hint. Window managers following the freedesktop.org window
3763  * manager extension specification should respect it.
3764  *
3765  * Since: 2.6 
3766  **/
3767 void
3768 gdk_window_set_focus_on_map (GdkWindow *window,
3769                              gboolean focus_on_map)
3770 {
3771   GdkWindowObject *private;
3772   g_return_if_fail (window != NULL);
3773   g_return_if_fail (GDK_IS_WINDOW (window));
3774
3775   private = (GdkWindowObject *)window;  
3776   
3777   focus_on_map = focus_on_map != FALSE;
3778
3779   if (private->focus_on_map != focus_on_map)
3780     {
3781       private->focus_on_map = focus_on_map;
3782
3783       if ((!GDK_WINDOW_DESTROYED (window)) && (!private->focus_on_map))
3784         gdk_x11_window_set_user_time (window, 0);
3785     }
3786 }
3787
3788 /**
3789  * gdk_x11_window_set_user_time:
3790  * @window: A toplevel #GdkWindow
3791  * @timestamp: An XServer timestamp to which the property should be set
3792  *
3793  * The application can use this call to update the _NET_WM_USER_TIME
3794  * property on a toplevel window.  This property stores an Xserver
3795  * time which represents the time of the last user input event
3796  * received for this window.  This property may be used by the window
3797  * manager to alter the focus, stacking, and/or placement behavior of
3798  * windows when they are mapped depending on whether the new window
3799  * was created by a user action or is a "pop-up" window activated by a
3800  * timer or some other event.
3801  *
3802  * Note that this property is automatically updated by GDK, so this
3803  * function should only be used by applications which handle input
3804  * events bypassing GDK.
3805  *
3806  * Since: 2.6
3807  **/
3808 void
3809 gdk_x11_window_set_user_time (GdkWindow *window,
3810                               guint32    timestamp)
3811 {
3812   GdkDisplay *display;
3813   GdkDisplayX11 *display_x11;
3814   GdkToplevelX11 *toplevel;
3815   glong timestamp_long = (glong)timestamp;
3816
3817   g_return_if_fail (window != NULL);
3818   g_return_if_fail (GDK_IS_WINDOW (window));
3819
3820   if (GDK_WINDOW_DESTROYED (window))
3821     return;
3822
3823   display = gdk_drawable_get_display (window);
3824   display_x11 = GDK_DISPLAY_X11 (display);
3825   toplevel = _gdk_x11_window_get_toplevel (window);
3826
3827   XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
3828                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_USER_TIME"),
3829                    XA_CARDINAL, 32, PropModeReplace,
3830                    (guchar *)&timestamp_long, 1);
3831
3832   if (timestamp_long != GDK_CURRENT_TIME)
3833     display_x11->user_time = timestamp_long;
3834
3835   toplevel->user_time = timestamp_long;
3836 }
3837
3838 /**
3839  * gdk_window_set_icon_list:
3840  * @window: The #GdkWindow toplevel window to set the icon of.
3841  * @pixbufs: A list of pixbufs, of different sizes.
3842  *
3843  * Sets a list of icons for the window. One of these will be used
3844  * to represent the window when it has been iconified. The icon is
3845  * usually shown in an icon box or some sort of task bar. Which icon
3846  * size is shown depends on the window manager. The window manager
3847  * can scale the icon  but setting several size icons can give better
3848  * image quality since the window manager may only need to scale the
3849  * icon by a small amount or not at all.
3850  *
3851  **/
3852 void
3853 gdk_window_set_icon_list (GdkWindow *window,
3854                           GList     *pixbufs)
3855 {
3856   gulong *data;
3857   guchar *pixels;
3858   gulong *p;
3859   gint size;
3860   GList *l;
3861   GdkPixbuf *pixbuf;
3862   gint width, height, stride;
3863   gint x, y;
3864   gint n_channels;
3865   GdkDisplay *display;
3866   
3867   g_return_if_fail (GDK_IS_WINDOW (window));
3868
3869   if (GDK_WINDOW_DESTROYED (window))
3870     return;
3871
3872   display = gdk_drawable_get_display (window);
3873   
3874   l = pixbufs;
3875   size = 0;
3876   
3877   while (l)
3878     {
3879       pixbuf = l->data;
3880       g_return_if_fail (GDK_IS_PIXBUF (pixbuf));
3881
3882       width = gdk_pixbuf_get_width (pixbuf);
3883       height = gdk_pixbuf_get_height (pixbuf);
3884       
3885       size += 2 + width * height;
3886
3887       l = g_list_next (l);
3888     }
3889
3890   data = g_malloc (size * sizeof (gulong));
3891
3892   l = pixbufs;
3893   p = data;
3894   while (l)
3895     {
3896       pixbuf = l->data;
3897       
3898       width = gdk_pixbuf_get_width (pixbuf);
3899       height = gdk_pixbuf_get_height (pixbuf);
3900       stride = gdk_pixbuf_get_rowstride (pixbuf);
3901       n_channels = gdk_pixbuf_get_n_channels (pixbuf);
3902       
3903       *p++ = width;
3904       *p++ = height;
3905
3906       pixels = gdk_pixbuf_get_pixels (pixbuf);
3907
3908       for (y = 0; y < height; y++)
3909         {
3910           for (x = 0; x < width; x++)
3911             {
3912               guchar r, g, b, a;
3913               
3914               r = pixels[y*stride + x*n_channels + 0];
3915               g = pixels[y*stride + x*n_channels + 1];
3916               b = pixels[y*stride + x*n_channels + 2];
3917               if (n_channels >= 4)
3918                 a = pixels[y*stride + x*n_channels + 3];
3919               else
3920                 a = 255;
3921               
3922               *p++ = a << 24 | r << 16 | g << 8 | b ;
3923             }
3924         }
3925
3926       l = g_list_next (l);
3927     }
3928
3929   if (size > 0)
3930     {
3931       XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
3932                        GDK_WINDOW_XID (window),
3933                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON"),
3934                        XA_CARDINAL, 32,
3935                        PropModeReplace,
3936                        (guchar*) data, size);
3937     }
3938   else
3939     {
3940       XDeleteProperty (GDK_DISPLAY_XDISPLAY (display),
3941                        GDK_WINDOW_XID (window),
3942                        gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON"));
3943     }
3944   
3945   g_free (data);
3946 }
3947
3948 /**
3949  * gdk_window_set_icon:
3950  * @window: a toplevel #GdkWindow
3951  * @icon_window: a #GdkWindow to use for the icon, or %NULL to unset
3952  * @pixmap: a #GdkPixmap to use as the icon, or %NULL to unset
3953  * @mask: a 1-bit pixmap (#GdkBitmap) to use as mask for @pixmap, or %NULL to have none
3954  *
3955  * Sets the icon of @window as a pixmap or window. If using GTK+, investigate
3956  * gtk_window_set_default_icon_list() first, and then gtk_window_set_icon_list()
3957  * and gtk_window_set_icon(). If those don't meet your needs, look at
3958  * gdk_window_set_icon_list(). Only if all those are too high-level do you
3959  * want to fall back to gdk_window_set_icon().
3960  * 
3961  **/
3962 void          
3963 gdk_window_set_icon (GdkWindow *window, 
3964                      GdkWindow *icon_window,
3965                      GdkPixmap *pixmap,
3966                      GdkBitmap *mask)
3967 {
3968   GdkToplevelX11 *toplevel;
3969
3970   g_return_if_fail (window != NULL);
3971   g_return_if_fail (GDK_IS_WINDOW (window));
3972   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
3973   
3974   if (GDK_WINDOW_DESTROYED (window))
3975     return;
3976
3977   toplevel = _gdk_x11_window_get_toplevel (window);
3978
3979   if (toplevel->icon_window != icon_window)
3980     {
3981       if (toplevel->icon_window)
3982         g_object_unref (toplevel->icon_window);
3983       toplevel->icon_window = g_object_ref (icon_window);
3984     }
3985   
3986   if (toplevel->icon_pixmap != pixmap)
3987     {
3988       if (pixmap)
3989         g_object_ref (pixmap);
3990       if (toplevel->icon_pixmap)
3991         g_object_unref (toplevel->icon_pixmap);
3992       toplevel->icon_pixmap = pixmap;
3993     }
3994   
3995   if (toplevel->icon_mask != mask)
3996     {
3997       if (mask)
3998         g_object_ref (mask);
3999       if (toplevel->icon_mask)
4000         g_object_unref (toplevel->icon_mask);
4001       toplevel->icon_mask = mask;
4002     }
4003   
4004   update_wm_hints (window, FALSE);
4005 }
4006
4007 static gboolean
4008 gdk_window_icon_name_set (GdkWindow *window)
4009 {
4010   return GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (window),
4011                                                g_quark_from_static_string ("gdk-icon-name-set")));
4012 }
4013
4014 /**
4015  * gdk_window_set_icon_name:
4016  * @window: a toplevel #GdkWindow
4017  * @name: name of window while iconified (minimized)
4018  *
4019  * Windows may have a name used while minimized, distinct from the
4020  * name they display in their titlebar. Most of the time this is a bad
4021  * idea from a user interface standpoint. But you can set such a name
4022  * with this function, if you like.
4023  *
4024  **/
4025 void          
4026 gdk_window_set_icon_name (GdkWindow   *window, 
4027                           const gchar *name)
4028 {
4029   GdkDisplay *display;
4030   
4031   g_return_if_fail (window != NULL);
4032   g_return_if_fail (GDK_IS_WINDOW (window));
4033
4034   if (GDK_WINDOW_DESTROYED (window))
4035     return;
4036
4037   display = gdk_drawable_get_display (window);
4038
4039   g_object_set_qdata (G_OBJECT (window), g_quark_from_static_string ("gdk-icon-name-set"),
4040                       GUINT_TO_POINTER (TRUE));
4041
4042   XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
4043                    GDK_WINDOW_XID (window),
4044                    gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_ICON_NAME"),
4045                    gdk_x11_get_xatom_by_name_for_display (display, "UTF8_STRING"), 8,
4046                    PropModeReplace, name, strlen (name));
4047   
4048   set_text_property (display, GDK_WINDOW_XID (window),
4049                      gdk_x11_get_xatom_by_name_for_display (display, "WM_ICON_NAME"),
4050                      name);
4051 }
4052
4053 /**
4054  * gdk_window_iconify:
4055  * @window: a toplevel #GdkWindow
4056  * 
4057  * Asks to iconify (minimize) @window. The window manager may choose
4058  * to ignore the request, but normally will honor it. Using
4059  * gtk_window_iconify() is preferred, if you have a #GtkWindow widget.
4060  *
4061  * This function only makes sense when @window is a toplevel window.
4062  *
4063  **/
4064 void
4065 gdk_window_iconify (GdkWindow *window)
4066 {
4067   GdkWindowObject *private;
4068   
4069   g_return_if_fail (window != NULL);
4070   g_return_if_fail (GDK_IS_WINDOW (window));
4071
4072   if (GDK_WINDOW_DESTROYED (window))
4073     return;
4074
4075   private = (GdkWindowObject*) window;
4076
4077   if (GDK_WINDOW_IS_MAPPED (window))
4078     {  
4079       XIconifyWindow (GDK_WINDOW_XDISPLAY (window),
4080                       GDK_WINDOW_XWINDOW (window),
4081                       gdk_screen_get_number (GDK_WINDOW_SCREEN (window)));
4082     }
4083   else
4084     {
4085       /* Flip our client side flag, the real work happens on map. */
4086       gdk_synthesize_window_state (window,
4087                                    0,
4088                                    GDK_WINDOW_STATE_ICONIFIED);
4089     }
4090 }
4091
4092 /**
4093  * gdk_window_deiconify:
4094  * @window: a toplevel #GdkWindow
4095  *
4096  * Attempt to deiconify (unminimize) @window. On X11 the window manager may
4097  * choose to ignore the request to deiconify. When using GTK+,
4098  * use gtk_window_deiconify() instead of the #GdkWindow variant. Or better yet,
4099  * you probably want to use gtk_window_present(), which raises the window, focuses it,
4100  * unminimizes it, and puts it on the current desktop.
4101  *
4102  **/
4103 void
4104 gdk_window_deiconify (GdkWindow *window)
4105 {
4106   GdkWindowObject *private;
4107   
4108   g_return_if_fail (window != NULL);
4109   g_return_if_fail (GDK_IS_WINDOW (window));
4110
4111   if (GDK_WINDOW_DESTROYED (window))
4112     return;
4113
4114   private = (GdkWindowObject*) window;
4115
4116   if (GDK_WINDOW_IS_MAPPED (window))
4117     {  
4118       gdk_window_show (window);
4119     }
4120   else
4121     {
4122       /* Flip our client side flag, the real work happens on map. */
4123       gdk_synthesize_window_state (window,
4124                                    GDK_WINDOW_STATE_ICONIFIED,
4125                                    0);
4126     }
4127 }
4128
4129 /**
4130  * gdk_window_stick:
4131  * @window: a toplevel #GdkWindow
4132  *
4133  * "Pins" a window such that it's on all workspaces and does not scroll
4134  * with viewports, for window managers that have scrollable viewports.
4135  * (When using #GtkWindow, gtk_window_stick() may be more useful.)
4136  *
4137  * On the X11 platform, this function depends on window manager
4138  * support, so may have no effect with many window managers. However,
4139  * GDK will do the best it can to convince the window manager to stick
4140  * the window. For window managers that don't support this operation,
4141  * there's nothing you can do to force it to happen.
4142  * 
4143  **/
4144 void
4145 gdk_window_stick (GdkWindow *window)
4146 {
4147   g_return_if_fail (GDK_IS_WINDOW (window));
4148
4149   if (GDK_WINDOW_DESTROYED (window))
4150     return;
4151
4152   if (GDK_WINDOW_IS_MAPPED (window))
4153     {
4154       /* "stick" means stick to all desktops _and_ do not scroll with the
4155        * viewport. i.e. glue to the monitor glass in all cases.
4156        */
4157       
4158       XEvent xev;
4159
4160       /* Request stick during viewport scroll */
4161       gdk_wmspec_change_state (TRUE, window,
4162                                gdk_atom_intern ("_NET_WM_STATE_STICKY", FALSE),
4163                                NULL);
4164
4165       /* Request desktop 0xFFFFFFFF */
4166       xev.xclient.type = ClientMessage;
4167       xev.xclient.serial = 0;
4168       xev.xclient.send_event = True;
4169       xev.xclient.window = GDK_WINDOW_XWINDOW (window);
4170       xev.xclient.display = GDK_WINDOW_XDISPLAY (window);
4171       xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (GDK_WINDOW_DISPLAY (window), 
4172                                                                         "_NET_WM_DESKTOP");
4173       xev.xclient.format = 32;
4174
4175       xev.xclient.data.l[0] = 0xFFFFFFFF;
4176       xev.xclient.data.l[1] = 0;
4177       xev.xclient.data.l[2] = 0;
4178       xev.xclient.data.l[3] = 0;
4179       xev.xclient.data.l[4] = 0;
4180
4181       XSendEvent (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XROOTWIN (window), False,
4182                   SubstructureRedirectMask | SubstructureNotifyMask,
4183                   &xev);
4184     }
4185   else
4186     {
4187       /* Flip our client side flag, the real work happens on map. */
4188       gdk_synthesize_window_state (window,
4189                                    0,
4190                                    GDK_WINDOW_STATE_STICKY);
4191     }
4192 }
4193
4194 /**
4195  * gdk_window_unstick:
4196  * @window: a toplevel #GdkWindow
4197  *
4198  * Reverse operation for gdk_window_stick(); see gdk_window_stick(),
4199  * and gtk_window_unstick().
4200  * 
4201  **/
4202 void
4203 gdk_window_unstick (GdkWindow *window)
4204 {
4205   g_return_if_fail (GDK_IS_WINDOW (window));
4206
4207   if (GDK_WINDOW_DESTROYED (window))
4208     return;
4209
4210   if (GDK_WINDOW_IS_MAPPED (window))
4211     {
4212       XEvent xev;
4213       Atom type;
4214       gint format;
4215       gulong nitems;
4216       gulong bytes_after;
4217       guchar *data;
4218       gulong *current_desktop;
4219       GdkDisplay *display = gdk_drawable_get_display (window);
4220       
4221       /* Request unstick from viewport */
4222       gdk_wmspec_change_state (FALSE, window,
4223                                gdk_atom_intern ("_NET_WM_STATE_STICKY", FALSE),
4224                                NULL);
4225
4226       /* Get current desktop, then set it; this is a race, but not
4227        * one that matters much in practice.
4228        */
4229       XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window),
4230                           gdk_x11_get_xatom_by_name_for_display (display, "_NET_CURRENT_DESKTOP"),
4231                           0, G_MAXLONG,
4232                           False, XA_CARDINAL, &type, &format, &nitems,
4233                           &bytes_after, &data);
4234
4235       if (type == XA_CARDINAL)
4236         {
4237           current_desktop = (gulong *)data;
4238           
4239           xev.xclient.type = ClientMessage;
4240           xev.xclient.serial = 0;
4241           xev.xclient.send_event = True;
4242           xev.xclient.window = GDK_WINDOW_XWINDOW (window);
4243           xev.xclient.message_type = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP");
4244           xev.xclient.format = 32;
4245
4246           xev.xclient.data.l[0] = *current_desktop;
4247           xev.xclient.data.l[1] = 0;
4248           xev.xclient.data.l[2] = 0;
4249           xev.xclient.data.l[3] = 0;
4250           xev.xclient.data.l[4] = 0;
4251       
4252           XSendEvent (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window), False,
4253                       SubstructureRedirectMask | SubstructureNotifyMask,
4254                       &xev);
4255
4256           XFree (current_desktop);
4257         }
4258     }
4259   else
4260     {
4261       /* Flip our client side flag, the real work happens on map. */
4262       gdk_synthesize_window_state (window,
4263                                    GDK_WINDOW_STATE_STICKY,
4264                                    0);
4265
4266     }
4267 }
4268
4269 /**
4270  * gdk_window_maximize:
4271  * @window: a toplevel #GdkWindow
4272  *
4273  * Maximizes the window. If the window was already maximized, then
4274  * this function does nothing.
4275  * 
4276  * On X11, asks the window manager to maximize @window, if the window
4277  * manager supports this operation. Not all window managers support
4278  * this, and some deliberately ignore it or don't have a concept of
4279  * "maximized"; so you can't rely on the maximization actually
4280  * happening. But it will happen with most standard window managers,
4281  * and GDK makes a best effort to get it to happen.
4282  *
4283  * On Windows, reliably maximizes the window.
4284  * 
4285  **/
4286 void
4287 gdk_window_maximize (GdkWindow *window)
4288 {
4289   g_return_if_fail (GDK_IS_WINDOW (window));
4290
4291   if (GDK_WINDOW_DESTROYED (window))
4292     return;
4293
4294   if (GDK_WINDOW_IS_MAPPED (window))
4295     gdk_wmspec_change_state (TRUE, window,
4296                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_VERT", FALSE),
4297                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_HORZ", FALSE));
4298   else
4299     gdk_synthesize_window_state (window,
4300                                  0,
4301                                  GDK_WINDOW_STATE_MAXIMIZED);
4302 }
4303
4304 /**
4305  * gdk_window_unmaximize:
4306  * @window: a toplevel #GdkWindow
4307  *
4308  * Unmaximizes the window. If the window wasn't maximized, then this
4309  * function does nothing.
4310  * 
4311  * On X11, asks the window manager to unmaximize @window, if the
4312  * window manager supports this operation. Not all window managers
4313  * support this, and some deliberately ignore it or don't have a
4314  * concept of "maximized"; so you can't rely on the unmaximization
4315  * actually happening. But it will happen with most standard window
4316  * managers, and GDK makes a best effort to get it to happen.
4317  *
4318  * On Windows, reliably unmaximizes the window.
4319  * 
4320  **/
4321 void
4322 gdk_window_unmaximize (GdkWindow *window)
4323 {
4324   g_return_if_fail (GDK_IS_WINDOW (window));
4325
4326   if (GDK_WINDOW_DESTROYED (window))
4327     return;
4328
4329   if (GDK_WINDOW_IS_MAPPED (window))
4330     gdk_wmspec_change_state (FALSE, window,
4331                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_VERT", FALSE),
4332                              gdk_atom_intern ("_NET_WM_STATE_MAXIMIZED_HORZ", FALSE));
4333   else
4334     gdk_synthesize_window_state (window,
4335                                  GDK_WINDOW_STATE_MAXIMIZED,
4336                                  0);
4337 }
4338
4339 /**
4340  * gdk_window_fullscreen:
4341  * @window: a toplevel #GdkWindow
4342  *
4343  * Moves the window into fullscreen mode. This means the
4344  * window covers the entire screen and is above any panels
4345  * or task bars.
4346  *
4347  * If the window was already fullscreen, then this function does nothing.
4348  * 
4349  * On X11, asks the window manager to put @window in a fullscreen
4350  * state, if the window manager supports this operation. Not all
4351  * window managers support this, and some deliberately ignore it or
4352  * don't have a concept of "fullscreen"; so you can't rely on the
4353  * fullscreenification actually happening. But it will happen with
4354  * most standard window managers, and GDK makes a best effort to get
4355  * it to happen.
4356  *
4357  * Since: 2.2
4358  **/
4359 void
4360 gdk_window_fullscreen (GdkWindow *window)
4361 {
4362   g_return_if_fail (GDK_IS_WINDOW (window));
4363
4364   if (GDK_WINDOW_DESTROYED (window))
4365     return;
4366
4367   if (GDK_WINDOW_IS_MAPPED (window))
4368     gdk_wmspec_change_state (TRUE, window,
4369                              gdk_atom_intern ("_NET_WM_STATE_FULLSCREEN", FALSE),
4370                              GDK_NONE);
4371
4372   else
4373     gdk_synthesize_window_state (window,
4374                                  0,
4375                                  GDK_WINDOW_STATE_FULLSCREEN);
4376 }
4377
4378 /**
4379  * gdk_window_unfullscreen:
4380  * @window: a toplevel #GdkWindow
4381  *
4382  * Moves the window out of fullscreen mode. If the window was not
4383  * fullscreen, does nothing.
4384  * 
4385  * On X11, asks the window manager to move @window out of the fullscreen
4386  * state, if the window manager supports this operation. Not all
4387  * window managers support this, and some deliberately ignore it or
4388  * don't have a concept of "fullscreen"; so you can't rely on the
4389  * unfullscreenification actually happening. But it will happen with
4390  * most standard window managers, and GDK makes a best effort to get
4391  * it to happen. 
4392  *
4393  * Since: 2.2
4394  **/
4395 void
4396 gdk_window_unfullscreen (GdkWindow *window)
4397 {
4398   g_return_if_fail (GDK_IS_WINDOW (window));
4399
4400   if (GDK_WINDOW_DESTROYED (window))
4401     return;
4402
4403   if (GDK_WINDOW_IS_MAPPED (window))
4404     gdk_wmspec_change_state (FALSE, window,
4405                              gdk_atom_intern ("_NET_WM_STATE_FULLSCREEN", FALSE),
4406                              GDK_NONE);
4407
4408   else
4409     gdk_synthesize_window_state (window,
4410                                  GDK_WINDOW_STATE_FULLSCREEN,
4411                                  0);
4412 }
4413
4414 /**
4415  * gdk_window_set_keep_above:
4416  * @window: a toplevel #GdkWindow
4417  * @setting: whether to keep @window above other windows
4418  *
4419  * Set if @window must be kept above other windows. If the
4420  * window was already above, then this function does nothing.
4421  * 
4422  * On X11, asks the window manager to keep @window above, if the window
4423  * manager supports this operation. Not all window managers support
4424  * this, and some deliberately ignore it or don't have a concept of
4425  * "keep above"; so you can't rely on the window being kept above.
4426  * But it will happen with most standard window managers,
4427  * and GDK makes a best effort to get it to happen.
4428  *
4429  * Since: 2.4
4430  **/
4431 void
4432 gdk_window_set_keep_above (GdkWindow *window, gboolean setting)
4433 {
4434   g_return_if_fail (GDK_IS_WINDOW (window));
4435
4436   if (GDK_WINDOW_DESTROYED (window))
4437     return;
4438
4439   if (GDK_WINDOW_IS_MAPPED (window))
4440     {
4441       if (setting)
4442         gdk_wmspec_change_state (FALSE, window,
4443                                  gdk_atom_intern ("_NET_WM_STATE_BELOW", FALSE),
4444                                  GDK_NONE);
4445       gdk_wmspec_change_state (setting, window,
4446                                gdk_atom_intern ("_NET_WM_STATE_ABOVE", FALSE),
4447                                GDK_NONE);
4448     }
4449   else
4450     gdk_synthesize_window_state (window,
4451                                  setting ? GDK_WINDOW_STATE_BELOW : GDK_WINDOW_STATE_ABOVE,
4452                                  setting ? GDK_WINDOW_STATE_ABOVE : 0);
4453 }
4454
4455 /**
4456  * gdk_window_set_keep_below:
4457  * @window: a toplevel #GdkWindow
4458  * @setting: whether to keep @window below other windows
4459  *
4460  * Set if @window must be kept below other windows. If the
4461  * window was already below, then this function does nothing.
4462  * 
4463  * On X11, asks the window manager to keep @window below, if the window
4464  * manager supports this operation. Not all window managers support
4465  * this, and some deliberately ignore it or don't have a concept of
4466  * "keep below"; so you can't rely on the window being kept below.
4467  * But it will happen with most standard window managers,
4468  * and GDK makes a best effort to get it to happen.
4469  *
4470  * Since: 2.4
4471  **/
4472 void
4473 gdk_window_set_keep_below (GdkWindow *window, gboolean setting)
4474 {
4475   g_return_if_fail (GDK_IS_WINDOW (window));
4476
4477   if (GDK_WINDOW_DESTROYED (window))
4478     return;
4479
4480   if (GDK_WINDOW_IS_MAPPED (window))
4481     {
4482       if (setting)
4483         gdk_wmspec_change_state (FALSE, window,
4484                                  gdk_atom_intern ("_NET_WM_STATE_ABOVE", FALSE),
4485                                  GDK_NONE);
4486       gdk_wmspec_change_state (setting, window,
4487                                gdk_atom_intern ("_NET_WM_STATE_BELOW", FALSE),
4488                                GDK_NONE);
4489     }
4490   else
4491     gdk_synthesize_window_state (window,
4492                                  setting ? GDK_WINDOW_STATE_ABOVE : GDK_WINDOW_STATE_BELOW,
4493                                  setting ? GDK_WINDOW_STATE_BELOW : 0);
4494 }
4495
4496 /**
4497  * gdk_window_get_group:
4498  * @window: a toplevel #GdkWindow
4499  * 
4500  * Returns the group leader window for @window. See gdk_window_set_group().
4501  * 
4502  * Return value: the group leader window for @window
4503  *
4504  * Since: 2.4
4505  **/
4506 GdkWindow *
4507 gdk_window_get_group (GdkWindow *window)
4508 {
4509   GdkToplevelX11 *toplevel;
4510   
4511   g_return_val_if_fail (window != NULL, NULL);
4512   g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
4513   g_return_val_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD, NULL);
4514
4515   if (GDK_WINDOW_DESTROYED (window))
4516     return NULL;
4517   
4518   toplevel = _gdk_x11_window_get_toplevel (window);
4519
4520   return toplevel->group_leader;
4521 }
4522
4523 /**
4524  * gdk_window_set_group:
4525  * @window: a toplevel #GdkWindow
4526  * @leader: group leader window, or %NULL to restore the default group leader window
4527  *
4528  * Sets the group leader window for @window. By default,
4529  * GDK sets the group leader for all toplevel windows
4530  * to a global window implicitly created by GDK. With this function
4531  * you can override this default.
4532  *
4533  * The group leader window allows the window manager to distinguish
4534  * all windows that belong to a single application. It may for example
4535  * allow users to minimize/unminimize all windows belonging to an
4536  * application at once. You should only set a non-default group window
4537  * if your application pretends to be multiple applications.
4538  **/
4539 void          
4540 gdk_window_set_group (GdkWindow *window, 
4541                       GdkWindow *leader)
4542 {
4543   GdkToplevelX11 *toplevel;
4544   
4545   g_return_if_fail (window != NULL);
4546   g_return_if_fail (GDK_IS_WINDOW (window));
4547   g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD);
4548   g_return_if_fail (leader == NULL || GDK_IS_WINDOW (leader));
4549
4550   if (GDK_WINDOW_DESTROYED (window) || (leader != NULL && GDK_WINDOW_DESTROYED (leader)))
4551     return;
4552
4553   toplevel = _gdk_x11_window_get_toplevel (window);
4554
4555   if (leader == NULL) 
4556     leader = gdk_display_get_default_group (gdk_drawable_get_display (window));
4557   
4558   if (toplevel->group_leader != leader)
4559     {
4560       if (toplevel->group_leader)
4561         g_object_unref (toplevel->group_leader);
4562       toplevel->group_leader = g_object_ref (leader);
4563       (_gdk_x11_window_get_toplevel (leader))->is_leader = TRUE;      
4564     }
4565
4566   update_wm_hints (window, FALSE);
4567 }
4568
4569 static MotifWmHints *
4570 gdk_window_get_mwm_hints (GdkWindow *window)
4571 {
4572   GdkDisplay *display;
4573   Atom hints_atom = None;
4574   guchar *data;
4575   Atom type;
4576   gint format;
4577   gulong nitems;
4578   gulong bytes_after;
4579   
4580   if (GDK_WINDOW_DESTROYED (window))
4581     return NULL;
4582
4583   display = gdk_drawable_get_display (window);
4584   
4585   hints_atom = gdk_x11_get_xatom_by_name_for_display (display, _XA_MOTIF_WM_HINTS);
4586
4587   XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
4588                       hints_atom, 0, sizeof (MotifWmHints)/sizeof (long),
4589                       False, AnyPropertyType, &type, &format, &nitems,
4590                       &bytes_after, &data);
4591
4592   if (type == None)
4593     return NULL;
4594   
4595   return (MotifWmHints *)data;
4596 }
4597
4598 static void
4599 gdk_window_set_mwm_hints (GdkWindow *window,
4600                           MotifWmHints *new_hints)
4601 {
4602   GdkDisplay *display;
4603   Atom hints_atom = None;
4604   guchar *data;
4605   MotifWmHints *hints;
4606   Atom type;
4607   gint format;
4608   gulong nitems;
4609   gulong bytes_after;
4610   
4611   if (GDK_WINDOW_DESTROYED (window))
4612     return;
4613   
4614   display = gdk_drawable_get_display (window);
4615   
4616   hints_atom = gdk_x11_get_xatom_by_name_for_display (display, _XA_MOTIF_WM_HINTS);
4617
4618   XGetWindowProperty (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
4619                       hints_atom, 0, sizeof (MotifWmHints)/sizeof (long),
4620                       False, AnyPropertyType, &type, &format, &nitems,
4621                       &bytes_after, &data);
4622   
4623   if (type == None)
4624     hints = new_hints;
4625   else
4626     {
4627       hints = (MotifWmHints *)data;
4628         
4629       if (new_hints->flags & MWM_HINTS_FUNCTIONS)
4630         {
4631           hints->flags |= MWM_HINTS_FUNCTIONS;
4632           hints->functions = new_hints->functions;
4633         }
4634       if (new_hints->flags & MWM_HINTS_DECORATIONS)
4635         {
4636           hints->flags |= MWM_HINTS_DECORATIONS;
4637           hints->decorations = new_hints->decorations;
4638         }
4639     }
4640   
4641   XChangeProperty (GDK_WINDOW_XDISPLAY (window), GDK_WINDOW_XID (window),
4642                    hints_atom, hints_atom, 32, PropModeReplace,
4643                    (guchar *)hints, sizeof (MotifWmHints)/sizeof (long));
4644   
4645   if (hints != new_hints)
4646     XFree (hints);
4647 }
4648
4649 /**
4650  * gdk_window_set_decorations:
4651  * @window: a toplevel #GdkWindow
4652  * @decorations: decoration hint mask
4653  *
4654  * "Decorations" are the features the window manager adds to a toplevel #GdkWindow.
4655  * This function sets the traditional Motif window manager hints that tell the
4656  * window manager which decorations you would like your window to have.
4657  * Usually you should use gtk_window_set_decorated() on a #GtkWindow instead of
4658  * using the GDK function directly.
4659  *
4660  * The @decorations argument is the logical OR of the fields in
4661  * the #GdkWMDecoration enumeration. If #GDK_DECOR_ALL is included in the
4662  * mask, the other bits indicate which decorations should be turned off.
4663  * If #GDK_DECOR_ALL is not included, then the other bits indicate
4664  * which decorations should be turned on.
4665  *
4666  * Most window managers honor a decorations hint of 0 to disable all decorations,
4667  * but very few honor all possible combinations of bits.
4668  * 
4669  **/
4670 void
4671 gdk_window_set_decorations (GdkWindow      *window,
4672                             GdkWMDecoration decorations)
4673 {
4674   MotifWmHints hints;
4675   
4676   g_return_if_fail (window != NULL);
4677   g_return_if_fail (GDK_IS_WINDOW (window));
4678   
4679   hints.flags = MWM_HINTS_DECORATIONS;
4680   hints.decorations = decorations;
4681   
4682   gdk_window_set_mwm_hints (window, &hints);
4683 }
4684
4685 /**
4686  * gdk_window_get_decorations:
4687  * @window: The toplevel #GdkWindow to get the decorations from
4688  * @decorations: The window decorations will be written here
4689  *
4690  * Returns the decorations set on the GdkWindow with #gdk_window_set_decorations
4691  * Returns: TRUE if the window has decorations set, FALSE otherwise.
4692  **/
4693 gboolean
4694 gdk_window_get_decorations(GdkWindow       *window,
4695                            GdkWMDecoration *decorations)
4696 {
4697   MotifWmHints *hints;
4698   gboolean result = FALSE;
4699
4700   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
4701
4702   hints = gdk_window_get_mwm_hints (window);
4703   
4704   if (hints)
4705     {
4706       if (hints->flags & MWM_HINTS_DECORATIONS)
4707         {
4708           if (decorations)
4709             *decorations = hints->decorations;
4710           result = TRUE;
4711         }
4712       
4713       XFree (hints);
4714     }
4715
4716   return result;
4717 }
4718
4719 /**
4720  * gdk_window_set_functions:
4721  * @window: a toplevel #GdkWindow
4722  * @functions: bitmask of operations to allow on @window
4723  *
4724  * This function isn't really good for much. It sets the traditional
4725  * Motif window manager hint for which operations the window manager
4726  * should allow on a toplevel window. However, few window managers do
4727  * anything reliable or interesting with this hint. Many ignore it
4728  * entirely.
4729  *
4730  * The @functions argument is the logical OR of values from the
4731  * #GdkWMFunction enumeration. If the bitmask includes #GDK_FUNC_ALL,
4732  * then the other bits indicate which functions to disable; if
4733  * it doesn't include #GDK_FUNC_ALL, it indicates which functions to
4734  * enable.
4735  * 
4736  **/
4737 void
4738 gdk_window_set_functions (GdkWindow    *window,
4739                           GdkWMFunction functions)
4740 {
4741   MotifWmHints hints;
4742   
4743   g_return_if_fail (window != NULL);
4744   g_return_if_fail (GDK_IS_WINDOW (window));
4745   
4746   hints.flags = MWM_HINTS_FUNCTIONS;
4747   hints.functions = functions;
4748   
4749   gdk_window_set_mwm_hints (window, &hints);
4750 }
4751
4752 #ifdef HAVE_SHAPE_EXT
4753
4754 /* 
4755  * propagate the shapes from all child windows of a GDK window to the parent 
4756  * window. Shamelessly ripped from Enlightenment's code
4757  * 
4758  * - Raster
4759  */
4760 struct _gdk_span
4761 {
4762   gint                start;
4763   gint                end;
4764   struct _gdk_span    *next;
4765 };
4766
4767 static void
4768 gdk_add_to_span (struct _gdk_span **s,
4769                  gint               x,
4770                  gint               xx)
4771 {
4772   struct _gdk_span *ptr1, *ptr2, *noo, *ss;
4773   gchar             spanning;
4774   
4775   ptr2 = NULL;
4776   ptr1 = *s;
4777   spanning = 0;
4778   ss = NULL;
4779   /* scan the spans for this line */
4780   while (ptr1)
4781     {
4782       /* -- -> new span */
4783       /* == -> existing span */
4784       /* ## -> spans intersect */
4785       /* if we are in the middle of spanning the span into the line */
4786       if (spanning)
4787         {
4788           /* case: ---- ==== */
4789           if (xx < ptr1->start - 1)
4790             {
4791               /* ends before next span - extend to here */
4792               ss->end = xx;
4793               return;
4794             }
4795           /* case: ----##=== */
4796           else if (xx <= ptr1->end)
4797             {
4798               /* crosses into next span - delete next span and append */
4799               ss->end = ptr1->end;
4800               ss->next = ptr1->next;
4801               g_free (ptr1);
4802               return;
4803             }
4804           /* case: ---###--- */
4805           else
4806             {
4807               /* overlaps next span - delete and keep checking */
4808               ss->next = ptr1->next;
4809               g_free (ptr1);
4810               ptr1 = ss;
4811             }
4812         }
4813       /* otherwise havent started spanning it in yet */
4814       else
4815         {
4816           /* case: ---- ==== */
4817           if (xx < ptr1->start - 1)
4818             {
4819               /* insert span here in list */
4820               noo = g_malloc (sizeof (struct _gdk_span));
4821               
4822               if (noo)
4823                 {
4824                   noo->start = x;
4825                   noo->end = xx;
4826                   noo->next = ptr1;
4827                   if (ptr2)
4828                     ptr2->next = noo;
4829                   else
4830                     *s = noo;
4831                 }
4832               return;
4833             }
4834           /* case: ----##=== */
4835           else if ((x < ptr1->start) && (xx <= ptr1->end))
4836             {
4837               /* expand this span to the left point of the new one */
4838               ptr1->start = x;
4839               return;
4840             }
4841           /* case: ===###=== */
4842           else if ((x >= ptr1->start) && (xx <= ptr1->end))
4843             {
4844               /* throw the span away */
4845               return;
4846             }
4847           /* case: ---###--- */
4848           else if ((x < ptr1->start) && (xx > ptr1->end))
4849             {
4850               ss = ptr1;
4851               spanning = 1;
4852               ptr1->start = x;
4853               ptr1->end = xx;
4854             }
4855           /* case: ===##---- */
4856           else if ((x >= ptr1->start) && (x <= ptr1->end + 1) && (xx > ptr1->end))
4857             {
4858               ss = ptr1;
4859               spanning = 1;
4860               ptr1->end = xx;
4861             }
4862           /* case: ==== ---- */
4863           /* case handled by next loop iteration - first case */
4864         }
4865       ptr2 = ptr1;
4866       ptr1 = ptr1->next;
4867     }
4868   /* it started in the middle but spans beyond your current list */
4869   if (spanning)
4870     {
4871       ptr2->end = xx;
4872       return;
4873     }
4874   /* it does not start inside a span or in the middle, so add it to the end */
4875   noo = g_malloc (sizeof (struct _gdk_span));
4876   
4877   if (noo)
4878     {
4879       noo->start = x;
4880       noo->end = xx;
4881       if (ptr2)
4882         {
4883           noo->next = ptr2->next;
4884           ptr2->next = noo;
4885         }
4886       else
4887         {
4888           noo->next = NULL;
4889           *s = noo;
4890         }
4891     }
4892   return;
4893 }
4894
4895 static void
4896 gdk_add_rectangles (Display           *disp,
4897                     Window             win,
4898                     struct _gdk_span **spans,
4899                     gint               basew,
4900                     gint               baseh,
4901                     gint               x,
4902                     gint               y)
4903 {
4904   gint a, k;
4905   gint x1, y1, x2, y2;
4906   gint rn, ord;
4907   XRectangle *rl;
4908   
4909   rl = XShapeGetRectangles (disp, win, ShapeBounding, &rn, &ord);
4910   if (rl)
4911     {
4912       /* go through all clip rects in this window's shape */
4913       for (k = 0; k < rn; k++)
4914         {
4915           /* for each clip rect, add it to each line's spans */
4916           x1 = x + rl[k].x;
4917           x2 = x + rl[k].x + (rl[k].width - 1);
4918           y1 = y + rl[k].y;
4919           y2 = y + rl[k].y + (rl[k].height - 1);
4920           if (x1 < 0)
4921             x1 = 0;
4922           if (y1 < 0)
4923             y1 = 0;
4924           if (x2 >= basew)
4925             x2 = basew - 1;
4926           if (y2 >= baseh)
4927             y2 = baseh - 1;
4928           for (a = y1; a <= y2; a++)
4929             {
4930               if ((x2 - x1) >= 0)
4931                 gdk_add_to_span (&spans[a], x1, x2);
4932             }
4933         }
4934       XFree (rl);
4935     }
4936 }
4937
4938 static void
4939 gdk_propagate_shapes (Display *disp,
4940                       Window   win,
4941                       gboolean merge)
4942 {
4943   Window              rt, par, *list = NULL;
4944   gint                i, j, num = 0, num_rects = 0;
4945   gint                x, y, contig;
4946   guint               w, h, d;
4947   gint                baseh, basew;
4948   XRectangle         *rects = NULL;
4949   struct _gdk_span  **spans = NULL, *ptr1, *ptr2, *ptr3;
4950   XWindowAttributes   xatt;
4951   
4952   XGetGeometry (disp, win, &rt, &x, &y, &w, &h, &d, &d);
4953   if (h <= 0)
4954     return;
4955   basew = w;
4956   baseh = h;
4957   spans = g_malloc (sizeof (struct _gdk_span *) * h);
4958   
4959   for (i = 0; i < h; i++)
4960     spans[i] = NULL;
4961   XQueryTree (disp, win, &rt, &par, &list, (unsigned int *)&num);
4962   if (list)
4963     {
4964       /* go through all child windows and create/insert spans */
4965       for (i = 0; i < num; i++)
4966         {
4967           if (XGetWindowAttributes (disp, list[i], &xatt) && (xatt.map_state != IsUnmapped))
4968             if (XGetGeometry (disp, list[i], &rt, &x, &y, &w, &h, &d, &d))
4969               gdk_add_rectangles (disp, list[i], spans, basew, baseh, x, y);
4970         }
4971       if (merge)
4972         gdk_add_rectangles (disp, win, spans, basew, baseh, x, y);
4973       
4974       /* go through the spans list and build a list of rects */
4975       rects = g_malloc (sizeof (XRectangle) * 256);
4976       num_rects = 0;
4977       for (i = 0; i < baseh; i++)
4978         {
4979           ptr1 = spans[i];
4980           /* go through the line for all spans */
4981           while (ptr1)
4982             {
4983               rects[num_rects].x = ptr1->start;
4984               rects[num_rects].y = i;
4985               rects[num_rects].width = ptr1->end - ptr1->start + 1;
4986               rects[num_rects].height = 1;
4987               j = i + 1;
4988               /* if there are more lines */
4989               contig = 1;
4990               /* while contigous rects (same start/end coords) exist */
4991               while ((contig) && (j < baseh))
4992                 {
4993                   /* search next line for spans matching this one */
4994                   contig = 0;
4995                   ptr2 = spans[j];
4996                   ptr3 = NULL;
4997                   while (ptr2)
4998                     {
4999                       /* if we have an exact span match set contig */
5000                       if ((ptr2->start == ptr1->start) &&
5001                           (ptr2->end == ptr1->end))
5002                         {
5003                           contig = 1;
5004                           /* remove the span - not needed */
5005                           if (ptr3)
5006                             {
5007                               ptr3->next = ptr2->next;
5008                               g_free (ptr2);
5009                               ptr2 = NULL;
5010                             }
5011                           else
5012                             {
5013                               spans[j] = ptr2->next;
5014                               g_free (ptr2);
5015                               ptr2 = NULL;
5016                             }
5017                           break;
5018                         }
5019                       /* gone past the span point no point looking */
5020                       else if (ptr2->start < ptr1->start)
5021                         break;
5022                       if (ptr2)
5023                         {
5024                           ptr3 = ptr2;
5025                           ptr2 = ptr2->next;
5026                         }
5027                     }
5028                   /* if a contiguous span was found increase the rect h */
5029                   if (contig)
5030                     {
5031                       rects[num_rects].height++;
5032                       j++;
5033                     }
5034                 }
5035               /* up the rect count */
5036               num_rects++;
5037               /* every 256 new rects increase the rect array */
5038               if ((num_rects % 256) == 0)
5039                 rects = g_realloc (rects, sizeof (XRectangle) * (num_rects + 256));
5040               ptr1 = ptr1->next;
5041             }
5042         }
5043       /* set the rects as the shape mask */
5044       if (rects)
5045         {
5046           XShapeCombineRectangles (disp, win, ShapeBounding, 0, 0, rects, num_rects,
5047                                    ShapeSet, YXSorted);
5048           g_free (rects);
5049         }
5050       XFree (list);
5051     }
5052   /* free up all the spans we made */
5053   for (i = 0; i < baseh; i++)
5054     {
5055       ptr1 = spans[i];
5056       while (ptr1)
5057         {
5058           ptr2 = ptr1;
5059           ptr1 = ptr1->next;
5060           g_free (ptr2);
5061         }
5062     }
5063   g_free (spans);
5064 }
5065
5066 #endif /* HAVE_SHAPE_EXT */
5067
5068 /**
5069  * gdk_window_set_child_shapes:
5070  * @window: a #GdkWindow
5071  * 
5072  * Sets the shape mask of @window to the union of shape masks
5073  * for all children of @window, ignoring the shape mask of @window
5074  * itself. Contrast with gdk_window_merge_child_shapes() which includes
5075  * the shape mask of @window in the masks to be merged.
5076  **/
5077 void
5078 gdk_window_set_child_shapes (GdkWindow *window)
5079 {
5080   g_return_if_fail (window != NULL);
5081   g_return_if_fail (GDK_IS_WINDOW (window));
5082   
5083 #ifdef HAVE_SHAPE_EXT
5084   if (!GDK_WINDOW_DESTROYED (window) &&
5085       gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
5086     gdk_propagate_shapes (GDK_WINDOW_XDISPLAY (window),
5087                           GDK_WINDOW_XID (window), FALSE);
5088 #endif   
5089 }
5090
5091 /**
5092  * gdk_window_merge_child_shapes:
5093  * @window: a #GdkWindow
5094  * 
5095  * Merges the shape masks for any child windows into the
5096  * shape mask for @window. i.e. the union of all masks
5097  * for @window and its children will become the new mask
5098  * for @window. See gdk_window_shape_combine_mask().
5099  *
5100  * This function is distinct from gdk_window_set_child_shapes()
5101  * because it includes @window's shape mask in the set of shapes to
5102  * be merged.
5103  * 
5104  **/
5105 void
5106 gdk_window_merge_child_shapes (GdkWindow *window)
5107 {
5108   g_return_if_fail (window != NULL);
5109   g_return_if_fail (GDK_IS_WINDOW (window));
5110   
5111 #ifdef HAVE_SHAPE_EXT
5112   if (!GDK_WINDOW_DESTROYED (window) &&
5113       gdk_window_have_shape_ext (GDK_WINDOW_DISPLAY (window)))
5114     gdk_propagate_shapes (GDK_WINDOW_XDISPLAY (window),
5115                           GDK_WINDOW_XID (window), TRUE);
5116 #endif   
5117 }
5118
5119 static void
5120 gdk_window_set_static_bit_gravity (GdkWindow *window, gboolean on)
5121 {
5122   XSetWindowAttributes xattributes;
5123   GdkWindowObject *private;
5124   guint xattributes_mask = 0;
5125   
5126   g_return_if_fail (window != NULL);
5127
5128   private = GDK_WINDOW_OBJECT (window);
5129   if (private->input_only)
5130     return;
5131   
5132   xattributes.bit_gravity = StaticGravity;
5133   xattributes_mask |= CWBitGravity;
5134   xattributes.bit_gravity = on ? StaticGravity : ForgetGravity;
5135   XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
5136                            GDK_WINDOW_XID (window),
5137                            CWBitGravity,  &xattributes);
5138 }
5139
5140 static void
5141 gdk_window_set_static_win_gravity (GdkWindow *window, gboolean on)
5142 {
5143   XSetWindowAttributes xattributes;
5144   
5145   g_return_if_fail (window != NULL);
5146   
5147   xattributes.win_gravity = on ? StaticGravity : NorthWestGravity;
5148   
5149   XChangeWindowAttributes (GDK_WINDOW_XDISPLAY (window),
5150                            GDK_WINDOW_XID (window),
5151                            CWWinGravity,  &xattributes);
5152 }
5153
5154 /**
5155  * gdk_window_set_static_gravities:
5156  * @window: a #GdkWindow
5157  * @use_static: %TRUE to turn on static gravity
5158  *
5159  * Set the bit gravity of the given window to static, and flag it so
5160  * all children get static subwindow gravity. This is used if you are
5161  * implementing scary features that involve deep knowledge of the
5162  * windowing system. Don't worry about it unless you have to.
5163  * 
5164  * Return value: %TRUE if the server supports static gravity
5165  **/
5166 gboolean 
5167 gdk_window_set_static_gravities (GdkWindow *window,
5168                                  gboolean   use_static)
5169 {
5170   GdkWindowObject *private = (GdkWindowObject *)window;
5171   GList *tmp_list;
5172   
5173   g_return_val_if_fail (window != NULL, FALSE);
5174   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
5175
5176   if (!use_static == !private->guffaw_gravity)
5177     return TRUE;
5178
5179   private->guffaw_gravity = use_static;
5180   
5181   if (!GDK_WINDOW_DESTROYED (window))
5182     {
5183       gdk_window_set_static_bit_gravity (window, use_static);
5184       
5185       tmp_list = private->children;
5186       while (tmp_list)
5187         {
5188           gdk_window_set_static_win_gravity (tmp_list->data, use_static);
5189           
5190           tmp_list = tmp_list->next;
5191         }
5192     }
5193   
5194   return TRUE;
5195 }
5196
5197 static void
5198 wmspec_moveresize (GdkWindow *window,
5199                    gint       direction,
5200                    gint       root_x,
5201                    gint       root_y,
5202                    guint32    timestamp)     
5203 {
5204   GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
5205   
5206   XEvent xev;
5207
5208   /* Release passive grab */
5209   gdk_display_pointer_ungrab (display, timestamp);
5210
5211   xev.xclient.type = ClientMessage;
5212   xev.xclient.serial = 0;
5213   xev.xclient.send_event = True;
5214   xev.xclient.window = GDK_WINDOW_XID (window);
5215   xev.xclient.message_type =
5216     gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_MOVERESIZE");
5217   xev.xclient.format = 32;
5218   xev.xclient.data.l[0] = root_x;
5219   xev.xclient.data.l[1] = root_y;
5220   xev.xclient.data.l[2] = direction;
5221   xev.xclient.data.l[3] = 0;
5222   xev.xclient.data.l[4] = 0;
5223   
5224   XSendEvent (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XROOTWIN (window), False,
5225               SubstructureRedirectMask | SubstructureNotifyMask,
5226               &xev);
5227 }
5228
5229 typedef struct _MoveResizeData MoveResizeData;
5230
5231 struct _MoveResizeData
5232 {
5233   GdkDisplay *display;
5234   
5235   GdkWindow *moveresize_window;
5236   GdkWindow *moveresize_emulation_window;
5237   gboolean is_resize;
5238   GdkWindowEdge resize_edge;
5239   gint moveresize_button;
5240   gint moveresize_x;
5241   gint moveresize_y;
5242   gint moveresize_orig_x;
5243   gint moveresize_orig_y;
5244   gint moveresize_orig_width;
5245   gint moveresize_orig_height;
5246   GdkWindowHints moveresize_geom_mask;
5247   GdkGeometry moveresize_geometry;
5248   Time moveresize_process_time;
5249   XEvent *moveresize_pending_event;
5250 };
5251
5252 /* From the WM spec */
5253 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT      0
5254 #define _NET_WM_MOVERESIZE_SIZE_TOP          1
5255 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT     2
5256 #define _NET_WM_MOVERESIZE_SIZE_RIGHT        3
5257 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT  4
5258 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM       5
5259 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT   6
5260 #define _NET_WM_MOVERESIZE_SIZE_LEFT         7
5261 #define _NET_WM_MOVERESIZE_MOVE              8
5262
5263 static void
5264 wmspec_resize_drag (GdkWindow     *window,
5265                     GdkWindowEdge  edge,
5266                     gint           button,
5267                     gint           root_x,
5268                     gint           root_y,
5269                     guint32        timestamp)
5270 {
5271   gint direction;
5272   
5273   /* Let the compiler turn a switch into a table, instead
5274    * of doing the table manually, this way is easier to verify.
5275    */
5276   switch (edge)
5277     {
5278     case GDK_WINDOW_EDGE_NORTH_WEST:
5279       direction = _NET_WM_MOVERESIZE_SIZE_TOPLEFT;
5280       break;
5281
5282     case GDK_WINDOW_EDGE_NORTH:
5283       direction = _NET_WM_MOVERESIZE_SIZE_TOP;
5284       break;
5285
5286     case GDK_WINDOW_EDGE_NORTH_EAST:
5287       direction = _NET_WM_MOVERESIZE_SIZE_TOPRIGHT;
5288       break;
5289
5290     case GDK_WINDOW_EDGE_WEST:
5291       direction = _NET_WM_MOVERESIZE_SIZE_LEFT;
5292       break;
5293
5294     case GDK_WINDOW_EDGE_EAST:
5295       direction = _NET_WM_MOVERESIZE_SIZE_RIGHT;
5296       break;
5297
5298     case GDK_WINDOW_EDGE_SOUTH_WEST:
5299       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT;
5300       break;
5301
5302     case GDK_WINDOW_EDGE_SOUTH:
5303       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOM;
5304       break;
5305
5306     case GDK_WINDOW_EDGE_SOUTH_EAST:
5307       direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT;
5308       break;
5309
5310     default:
5311       g_warning ("gdk_window_begin_resize_drag: bad resize edge %d!",
5312                  edge);
5313       return;
5314       break;
5315     }
5316   
5317   wmspec_moveresize (window, direction, root_x, root_y, timestamp);
5318 }
5319
5320 static MoveResizeData *
5321 get_move_resize_data (GdkDisplay *display,
5322                       gboolean    create)
5323 {
5324   MoveResizeData *mv_resize;
5325   static GQuark move_resize_quark = 0;
5326
5327   if (!move_resize_quark)
5328     move_resize_quark = g_quark_from_static_string ("gdk-window-moveresize");
5329   
5330   mv_resize = g_object_get_qdata (G_OBJECT (display), move_resize_quark);
5331
5332   if (!mv_resize && create)
5333     {
5334       mv_resize = g_new0 (MoveResizeData, 1);
5335       mv_resize->display = display;
5336       
5337       g_object_set_qdata (G_OBJECT (display), move_resize_quark, mv_resize);
5338     }
5339
5340   return mv_resize;
5341 }
5342
5343 static void
5344 update_pos (MoveResizeData *mv_resize,
5345             gint            new_root_x,
5346             gint            new_root_y)
5347 {
5348   gint dx, dy;
5349
5350   dx = new_root_x - mv_resize->moveresize_x;
5351   dy = new_root_y - mv_resize->moveresize_y;
5352
5353   if (mv_resize->is_resize)
5354     {
5355       gint x, y, w, h;
5356
5357       x = mv_resize->moveresize_orig_x;
5358       y = mv_resize->moveresize_orig_y;
5359
5360       w = mv_resize->moveresize_orig_width;
5361       h = mv_resize->moveresize_orig_height;
5362
5363       switch (mv_resize->resize_edge)
5364         {
5365         case GDK_WINDOW_EDGE_NORTH_WEST:
5366           x += dx;
5367           y += dy;
5368           w -= dx;
5369           h -= dy;
5370           break;
5371         case GDK_WINDOW_EDGE_NORTH:
5372           y += dy;
5373           h -= dy;
5374           break;
5375         case GDK_WINDOW_EDGE_NORTH_EAST:
5376           y += dy;
5377           h -= dy;
5378           w += dx;
5379           break;
5380         case GDK_WINDOW_EDGE_SOUTH_WEST:
5381           h += dy;
5382           x += dx;
5383           w -= dx;
5384           break;
5385         case GDK_WINDOW_EDGE_SOUTH_EAST:
5386           w += dx;
5387           h += dy;
5388           break;
5389         case GDK_WINDOW_EDGE_SOUTH:
5390           h += dy;
5391           break;
5392         case GDK_WINDOW_EDGE_EAST:
5393           w += dx;
5394           break;
5395         case GDK_WINDOW_EDGE_WEST:
5396           x += dx;
5397           w -= dx;
5398           break;
5399         }
5400
5401       x = MAX (x, 0);
5402       y = MAX (y, 0);
5403       w = MAX (w, 1);
5404       h = MAX (h, 1);
5405
5406       if (mv_resize->moveresize_geom_mask)
5407         {
5408           gdk_window_constrain_size (&mv_resize->moveresize_geometry,
5409                                      mv_resize->moveresize_geom_mask,
5410                                      w, h, &w, &h);
5411         }
5412
5413       gdk_window_move_resize (mv_resize->moveresize_window, x, y, w, h);
5414     }
5415   else
5416     {
5417       gint x, y;
5418
5419       x = mv_resize->moveresize_orig_x + dx;
5420       y = mv_resize->moveresize_orig_y + dy;
5421
5422       gdk_window_move (mv_resize->moveresize_window, x, y);
5423     }
5424 }
5425
5426 static void
5427 finish_drag (MoveResizeData *mv_resize)
5428 {
5429   gdk_window_destroy (mv_resize->moveresize_emulation_window);
5430   mv_resize->moveresize_emulation_window = NULL;
5431   mv_resize->moveresize_window = NULL;
5432
5433   if (mv_resize->moveresize_pending_event)
5434     {
5435       g_free (mv_resize->moveresize_pending_event);
5436       mv_resize->moveresize_pending_event = NULL;
5437     }
5438 }
5439
5440 static int
5441 lookahead_motion_predicate (Display *xdisplay,
5442                             XEvent  *event,
5443                             XPointer arg)
5444 {
5445   gboolean *seen_release = (gboolean *)arg;
5446   GdkDisplay *display = gdk_x11_lookup_xdisplay (xdisplay);
5447   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5448
5449   if (*seen_release)
5450     return False;
5451
5452   switch (event->xany.type)
5453     {
5454     case ButtonRelease:
5455       *seen_release = TRUE;
5456       break;
5457     case MotionNotify:
5458       mv_resize->moveresize_process_time = event->xmotion.time;
5459       break;
5460     default:
5461       break;
5462     }
5463
5464   return False;
5465 }
5466
5467 static gboolean
5468 moveresize_lookahead (MoveResizeData *mv_resize,
5469                       XEvent         *event)
5470 {
5471   XEvent tmp_event;
5472   gboolean seen_release = FALSE;
5473
5474   if (mv_resize->moveresize_process_time)
5475     {
5476       if (event->xmotion.time == mv_resize->moveresize_process_time)
5477         {
5478           mv_resize->moveresize_process_time = 0;
5479           return TRUE;
5480         }
5481       else
5482         return FALSE;
5483     }
5484
5485   XCheckIfEvent (event->xany.display, &tmp_event,
5486                  lookahead_motion_predicate, (XPointer) & seen_release);
5487
5488   return mv_resize->moveresize_process_time == 0;
5489 }
5490         
5491 gboolean
5492 _gdk_moveresize_handle_event (XEvent *event)
5493 {
5494   guint button_mask = 0;
5495   GdkWindowObject *window_private;
5496   GdkDisplay *display = gdk_x11_lookup_xdisplay (event->xany.display);
5497   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5498
5499   if (!mv_resize || !mv_resize->moveresize_window)
5500     return FALSE;
5501
5502   window_private = (GdkWindowObject *) mv_resize->moveresize_window;
5503
5504   button_mask = GDK_BUTTON1_MASK << (mv_resize->moveresize_button - 1);
5505
5506   switch (event->xany.type)
5507     {
5508     case MotionNotify:
5509       if (window_private->resize_count > 0)
5510         {
5511           if (mv_resize->moveresize_pending_event)
5512             *mv_resize->moveresize_pending_event = *event;
5513           else
5514             mv_resize->moveresize_pending_event =
5515               g_memdup (event, sizeof (XEvent));
5516
5517           break;
5518         }
5519       if (!moveresize_lookahead (mv_resize, event))
5520         break;
5521
5522       update_pos (mv_resize,
5523                   event->xmotion.x_root,
5524                   event->xmotion.y_root);
5525
5526       /* This should never be triggered in normal cases, but in the
5527        * case where the drag started without an implicit grab being
5528        * in effect, we could miss the release if it occurs before
5529        * we grab the pointer; this ensures that we will never
5530        * get a permanently stuck grab.
5531        */
5532       if ((event->xmotion.state & button_mask) == 0)
5533         finish_drag (mv_resize);
5534       break;
5535
5536     case ButtonRelease:
5537       update_pos (mv_resize,
5538                   event->xbutton.x_root,
5539                   event->xbutton.y_root);
5540
5541       if (event->xbutton.button == mv_resize->moveresize_button)
5542         finish_drag (mv_resize);
5543       break;
5544     }
5545   return TRUE;
5546 }
5547
5548 gboolean 
5549 _gdk_moveresize_configure_done (GdkDisplay *display,
5550                                 GdkWindow  *window)
5551 {
5552   XEvent *tmp_event;
5553   MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
5554   
5555   if (!mv_resize || window != mv_resize->moveresize_window)
5556     return FALSE;
5557
5558   if (mv_resize->moveresize_pending_event)
5559     {
5560       tmp_event = mv_resize->moveresize_pending_event;
5561       mv_resize->moveresize_pending_event = NULL;
5562       _gdk_moveresize_handle_event (tmp_event);
5563       g_free (tmp_event);
5564     }
5565   
5566   return TRUE;
5567 }
5568
5569 static void
5570 create_moveresize_window (MoveResizeData *mv_resize,
5571                           guint32         timestamp)
5572 {
5573   GdkWindowAttr attributes;
5574   gint attributes_mask;
5575   GdkGrabStatus status;
5576
5577   g_assert (mv_resize->moveresize_emulation_window == NULL);
5578
5579   attributes.x = -100;
5580   attributes.y = -100;
5581   attributes.width = 10;
5582   attributes.height = 10;
5583   attributes.window_type = GDK_WINDOW_TEMP;
5584   attributes.wclass = GDK_INPUT_ONLY;
5585   attributes.override_redirect = TRUE;
5586   attributes.event_mask = 0;
5587
5588   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
5589
5590   mv_resize->moveresize_emulation_window = 
5591     gdk_window_new (gdk_screen_get_root_window (gdk_display_get_default_screen (mv_resize->display)),
5592                     &attributes,
5593                     attributes_mask);
5594
5595   gdk_window_show (mv_resize->moveresize_emulation_window);
5596
5597   status = gdk_pointer_grab (mv_resize->moveresize_emulation_window,
5598                              FALSE,
5599                              GDK_BUTTON_RELEASE_MASK |
5600                              GDK_POINTER_MOTION_MASK,
5601                              NULL,
5602                              NULL,
5603                              timestamp);
5604
5605   if (status != GDK_GRAB_SUCCESS)
5606     {
5607       /* If this fails, some other client has grabbed the window
5608        * already.
5609        */
5610       gdk_window_destroy (mv_resize->moveresize_emulation_window);
5611       mv_resize->moveresize_emulation_window = NULL;
5612     }
5613
5614   mv_resize->moveresize_process_time = 0;
5615 }
5616
5617 /* 
5618    Calculate mv_resize->moveresize_orig_x and mv_resize->moveresize_orig_y
5619    so that calling XMoveWindow with these coordinates will not move the 
5620    window.
5621    Note that this depends on the WM to implement ICCCM-compliant reference
5622    point handling.
5623 */
5624 static void 
5625 calculate_unmoving_origin (MoveResizeData *mv_resize)
5626 {
5627   GdkRectangle rect;
5628   gint width, height;
5629
5630   if (mv_resize->moveresize_geom_mask & GDK_HINT_WIN_GRAVITY &&
5631       mv_resize->moveresize_geometry.win_gravity == GDK_GRAVITY_STATIC)
5632     {
5633       gdk_window_get_origin (mv_resize->moveresize_window,
5634                              &mv_resize->moveresize_orig_x,
5635                              &mv_resize->moveresize_orig_y);
5636     }
5637   else
5638     {
5639       gdk_window_get_frame_extents (mv_resize->moveresize_window, &rect);
5640       gdk_window_get_geometry (mv_resize->moveresize_window, 
5641                                NULL, NULL, &width, &height, NULL);
5642       
5643       switch (mv_resize->moveresize_geometry.win_gravity) 
5644         {
5645         case GDK_GRAVITY_NORTH_WEST:
5646           mv_resize->moveresize_orig_x = rect.x;
5647           mv_resize->moveresize_orig_y = rect.y;
5648           break;
5649         case GDK_GRAVITY_NORTH:
5650           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5651           mv_resize->moveresize_orig_y = rect.y;
5652           break;          
5653         case GDK_GRAVITY_NORTH_EAST:
5654           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5655           mv_resize->moveresize_orig_y = rect.y;
5656           break;
5657         case GDK_GRAVITY_WEST:
5658           mv_resize->moveresize_orig_x = rect.x;
5659           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5660           break;
5661         case GDK_GRAVITY_CENTER:
5662           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5663           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5664           break;
5665         case GDK_GRAVITY_EAST:
5666           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5667           mv_resize->moveresize_orig_y = rect.y + rect.height / 2 - height / 2;
5668           break;
5669         case GDK_GRAVITY_SOUTH_WEST:
5670           mv_resize->moveresize_orig_x = rect.x;
5671           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5672           break;
5673         case GDK_GRAVITY_SOUTH:
5674           mv_resize->moveresize_orig_x = rect.x + rect.width / 2 - width / 2;
5675           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5676           break;
5677         case GDK_GRAVITY_SOUTH_EAST:
5678           mv_resize->moveresize_orig_x = rect.x + rect.width - width;
5679           mv_resize->moveresize_orig_y = rect.y + rect.height - height;
5680           break;
5681         default:
5682           mv_resize->moveresize_orig_x = rect.x;
5683           mv_resize->moveresize_orig_y = rect.y;
5684           break; 
5685         }
5686     }  
5687 }
5688
5689 static void
5690 emulate_resize_drag (GdkWindow     *window,
5691                      GdkWindowEdge  edge,
5692                      gint           button,
5693                      gint           root_x,
5694                      gint           root_y,
5695                      guint32        timestamp)
5696 {
5697   MoveResizeData *mv_resize = get_move_resize_data (GDK_WINDOW_DISPLAY (window), TRUE);
5698
5699   mv_resize->is_resize = TRUE;
5700   mv_resize->moveresize_button = button;
5701   mv_resize->resize_edge = edge;
5702   mv_resize->moveresize_x = root_x;
5703   mv_resize->moveresize_y = root_y;
5704   mv_resize->moveresize_window = g_object_ref (window);
5705
5706   gdk_drawable_get_size (window,
5707                          &mv_resize->moveresize_orig_width,
5708                          &mv_resize->moveresize_orig_height);
5709
5710   mv_resize->moveresize_geom_mask = 0;
5711   gdk_window_get_geometry_hints (window,
5712                                  &mv_resize->moveresize_geometry,
5713                                  &mv_resize->moveresize_geom_mask);
5714
5715   calculate_unmoving_origin (mv_resize);
5716
5717   create_moveresize_window (mv_resize, timestamp);
5718 }
5719
5720 static void
5721 emulate_move_drag (GdkWindow     *window,
5722                    gint           button,
5723                    gint           root_x,
5724                    gint           root_y,
5725                    guint32        timestamp)
5726 {
5727   MoveResizeData *mv_resize = get_move_resize_data (GDK_WINDOW_DISPLAY (window), TRUE);
5728   
5729   mv_resize->is_resize = FALSE;
5730   mv_resize->moveresize_button = button;
5731   mv_resize->moveresize_x = root_x;
5732   mv_resize->moveresize_y = root_y;
5733
5734   mv_resize->moveresize_window = g_object_ref (window);
5735
5736   calculate_unmoving_origin (mv_resize);
5737
5738   create_moveresize_window (mv_resize, timestamp);
5739 }
5740
5741 /**
5742  * gdk_window_begin_resize_drag:
5743  * @window: a toplevel #GdkWindow
5744  * @edge: the edge or corner from which the drag is started
5745  * @button: the button being used to drag
5746  * @root_x: root window X coordinate of mouse click that began the drag
5747  * @root_y: root window Y coordinate of mouse click that began the drag
5748  * @timestamp: timestamp of mouse click that began the drag (use gdk_event_get_time())
5749  *
5750  * Begins a window resize operation (for a toplevel window).
5751  * You might use this function to implement a "window resize grip," for
5752  * example; in fact #GtkStatusbar uses it. The function works best
5753  * with window managers that support the Extended Window Manager Hints spec
5754  * (see http://www.freedesktop.org), but has a fallback implementation
5755  * for other window managers.
5756  * 
5757  **/
5758 void
5759 gdk_window_begin_resize_drag (GdkWindow     *window,
5760                               GdkWindowEdge  edge,
5761                               gint           button,
5762                               gint           root_x,
5763                               gint           root_y,
5764                               guint32        timestamp)
5765 {
5766   g_return_if_fail (GDK_IS_WINDOW (window));
5767
5768   if (GDK_WINDOW_DESTROYED (window))
5769     return;
5770
5771   if (gdk_x11_screen_supports_net_wm_hint (GDK_WINDOW_SCREEN (window),
5772                                            gdk_atom_intern ("_NET_WM_MOVERESIZE", FALSE)))
5773     wmspec_resize_drag (window, edge, button, root_x, root_y, timestamp);
5774   else
5775     emulate_resize_drag (window, edge, button, root_x, root_y, timestamp);
5776 }
5777
5778 /**
5779  * gdk_window_begin_move_drag:
5780  * @window: a toplevel #GdkWindow
5781  * @button: the button being used to drag
5782  * @root_x: root window X coordinate of mouse click that began the drag
5783  * @root_y: root window Y coordinate of mouse click that began the drag
5784  * @timestamp: timestamp of mouse click that began the drag
5785  *
5786  * Begins a window move operation (for a toplevel window).  You might
5787  * use this function to implement a "window move grip," for
5788  * example. The function works best with window managers that support
5789  * the Extended Window Manager Hints spec (see
5790  * http://www.freedesktop.org), but has a fallback implementation for
5791  * other window managers.
5792  * 
5793  **/
5794 void
5795 gdk_window_begin_move_drag (GdkWindow *window,
5796                             gint       button,
5797                             gint       root_x,
5798                             gint       root_y,
5799                             guint32    timestamp)
5800 {
5801   g_return_if_fail (GDK_IS_WINDOW (window));
5802
5803   if (GDK_WINDOW_DESTROYED (window))
5804     return;
5805
5806   if (gdk_x11_screen_supports_net_wm_hint (GDK_WINDOW_SCREEN (window),
5807                                            gdk_atom_intern ("_NET_WM_MOVERESIZE", FALSE)))
5808     wmspec_moveresize (window, _NET_WM_MOVERESIZE_MOVE, root_x, root_y,
5809                        timestamp);
5810   else
5811     emulate_move_drag (window, button, root_x, root_y, timestamp);
5812 }
5813
5814 /**
5815  * gdk_window_enable_synchronized_configure:
5816  * @window: a toplevel #GdkWindow
5817  * 
5818  * Indicates that the application will cooperate with the window
5819  * system in synchronizing the window repaint with the window
5820  * manager during resizing operations. After an application calls
5821  * this function, it must call gdk_window_configure_finished() every
5822  * time it has finished all processing associated with a set of
5823  * Configure events. Toplevel GTK+ windows automatically use this
5824  * protocol.
5825  * 
5826  * On X, calling this function makes @window participate in the
5827  * _NET_WM_SYNC_REQUEST window manager protocol.
5828  * 
5829  * Since: 2.6
5830  **/
5831 void
5832 gdk_window_enable_synchronized_configure (GdkWindow *window)
5833 {
5834   GdkWindowObject *private = (GdkWindowObject *)window;
5835   GdkWindowImplX11 *impl;
5836
5837   g_return_if_fail (GDK_IS_WINDOW (window));
5838
5839   impl = GDK_WINDOW_IMPL_X11 (private->impl);
5840           
5841   if (!impl->use_synchronized_configure)
5842     {
5843       impl->use_synchronized_configure = TRUE;
5844       ensure_sync_counter (window);
5845     }
5846 }
5847
5848 /**
5849  * gdk_window_configure_finished:
5850  * @window: a toplevel #GdkWindow
5851  * 
5852  * Signal to the window system that the application has finished
5853  * handling Configure events it has received. Window Managers can
5854  * use this to better synchronize the frame repaint with the
5855  * application. GTK+ applications will automatically call this
5856  * function when appropriate.
5857  *
5858  * This function can only be called if gdk_window_use_configure()
5859  * was called previously.
5860  *
5861  * Since: 2.6
5862  **/
5863 void
5864 gdk_window_configure_finished (GdkWindow *window)
5865 {
5866   GdkWindowImplX11 *impl;
5867
5868   g_return_if_fail (GDK_IS_WINDOW (window));
5869   
5870   impl = GDK_WINDOW_IMPL_X11 (((GdkWindowObject *)window)->impl);
5871   if (!impl->use_synchronized_configure)
5872     return;
5873   
5874 #ifdef HAVE_XSYNC
5875   if (!GDK_WINDOW_DESTROYED (window))
5876     {
5877       GdkDisplay *display = GDK_WINDOW_DISPLAY (window);
5878       GdkToplevelX11 *toplevel = _gdk_x11_window_get_toplevel (window);
5879
5880       if (toplevel && toplevel->update_counter != None &&
5881           GDK_DISPLAY_X11 (display)->use_sync &&
5882           !XSyncValueIsZero (toplevel->current_counter_value))
5883         {
5884           XSyncSetCounter (GDK_WINDOW_XDISPLAY (window), 
5885                            toplevel->update_counter,
5886                            toplevel->current_counter_value);
5887           
5888           XSyncIntToValue (&toplevel->current_counter_value, 0);
5889         }
5890     }
5891 #endif
5892 }