]> Pileus Git - ~andy/gtk/blob - gtk/gtkwindow.c
Inspect geometry when setting resize grip cursors
[~andy/gtk] / gtk / gtkwindow.c
1 /* GTK - The GIMP Toolkit
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 #include <string.h>
29 #include <stdlib.h>
30 #include <errno.h>
31 #include <limits.h>
32 #include "gdk/gdk.h"
33 #include "gdk/gdkkeysyms.h"
34
35 #include "gtkintl.h"
36
37 #include "gtkprivate.h"
38 #include "gtkrc.h"
39 #include "gtkwindow.h"
40 #include "gtkwindow-decorate.h"
41 #include "gtkbindings.h"
42 #include "gtkkeyhash.h"
43 #include "gtkmain.h"
44 #include "gtkmnemonichash.h"
45 #include "gtkmenubar.h"
46 #include "gtkiconfactory.h"
47 #include "gtkicontheme.h"
48 #include "gtkmarshalers.h"
49 #include "gtkplug.h"
50 #include "gtkprivate.h"
51 #include "gtkbuildable.h"
52
53 #ifdef GDK_WINDOWING_X11
54 #include "x11/gdkx.h"
55 #endif
56
57 /**
58  * SECTION:gtkwindow
59  * @title: GtkWindow
60  * @short_description: Toplevel which can contain other widgets
61  *
62  * A GtkWindow is a toplevel window which can contain other widgets.
63  * Windows normally have decorations that are under the control
64  * of the windowing system and allow the user to manipulate the window
65  * (resize it, move it, close it,...).
66  *
67  * GTK+ also allows windows to have a resize grip (a small area in the lower
68  * right or left corner) which can be clicked to reszie the window. To
69  * control whether a window has a resize grip, use
70  * gtk_window_set_has_resize_grip().
71  *
72  * <refsect2 id="GtkWindow-BUILDER-UI">
73  * <title>GtkWindow as GtkBuildable</title>
74  * <para>
75  * The GtkWindow implementation of the GtkBuildable interface supports a
76  * custom <tag class="starttag">accel-groups</tag> element, which supports
77  * any number of <tag class="starttag">group</tag> elements representing the
78  * #GtkAccelGroup objects you want to add to your window (synonymous with
79  * gtk_window_add_accel_group().
80  * </para>
81  * <example>
82  * <title>A UI definition fragment with accel groups</title>
83  * <programlisting><![CDATA[
84  * <object class="GtkWindow">
85  *   <accel-groups>
86  *     <group name="accelgroup1"/>
87  *   </accel-groups>
88  * </object>
89  * <!-- -->
90  * ...
91  * <!-- -->
92  * <object class="GtkAccelGroup" id="accelgroup1"/>
93  * ]]></programlisting>
94  * </example>
95  * </refsect2>
96  */
97
98 typedef struct _GtkDeviceGrabInfo GtkDeviceGrabInfo;
99 typedef struct _GtkWindowGroupPrivate GtkWindowGroupPrivate;
100
101 struct _GtkWindowPrivate
102 {
103   GtkMnemonicHash       *mnemonic_hash;
104
105   GtkWidget             *default_widget;
106   GtkWidget             *focus_widget;
107   GtkWindow             *transient_parent;
108   GtkWindowGeometryInfo *geometry_info;
109   GtkWindowGroup        *group;
110
111   GdkModifierType        mnemonic_modifier;
112   GdkScreen             *screen;
113   GdkWindow             *frame;
114   GdkWindowTypeHint      gdk_type_hint;
115
116   gdouble  opacity;
117
118   gboolean   has_resize_grip;
119   GdkWindow *grip_window;
120
121   gchar   *startup_id;
122   gchar   *title;
123   gchar   *wmclass_class;
124   gchar   *wmclass_name;
125   gchar   *wm_role;
126
127   guint    frame_bottom;
128   guint    frame_left;
129   guint    frame_right;
130   guint    frame_top;
131   guint    keys_changed_handler;
132
133   /* Don't use this value, it's only used for determining when
134    * to fire notify events on the "resize-grip-visible" property.
135    */
136   gboolean resize_grip_visible;
137
138   guint16  configure_request_count;
139
140   /* The following flags are initially TRUE (before a window is mapped).
141    * They cause us to compute a configure request that involves
142    * default-only parameters. Once mapped, we set them to FALSE.
143    * Then we set them to TRUE again on unmap (for position)
144    * and on unrealize (for size).
145    */
146   guint    need_default_position     : 1;
147   guint    need_default_size         : 1;
148
149   guint    above_initially           : 1;
150   guint    accept_focus              : 1;
151   guint    below_initially           : 1;
152   guint    builder_visible           : 1;
153   guint    configure_notify_received : 1;
154   guint    decorated                 : 1;
155   guint    deletable                 : 1;
156   guint    destroy_with_parent       : 1;
157   guint    focus_on_map              : 1;
158   guint    fullscreen_initially      : 1;
159   guint    gravity                   : 5; /* GdkGravity */
160   guint    has_focus                 : 1;
161   guint    has_user_ref_count        : 1;
162   guint    has_frame                 : 1;
163   guint    has_toplevel_focus        : 1;
164   guint    iconify_initially         : 1; /* gtk_window_iconify() called before realization */
165   guint    is_active                 : 1;
166   guint    maximize_initially        : 1;
167   guint    mnemonics_visible         : 1;
168   guint    mnemonics_visible_set     : 1;
169   guint    modal                     : 1;
170   guint    opacity_set               : 1;
171   guint    position                  : 3;
172   guint    reset_type_hint           : 1;
173   guint    resizable                 : 1;
174   guint    skips_pager               : 1;
175   guint    skips_taskbar             : 1;
176   guint    stick_initially           : 1;
177   guint    transient_parent_group    : 1;
178   guint    type                      : 4; /* GtkWindowType */
179   guint    type_hint                 : 3; /* GdkWindowTypeHint if the hint is one of the original eight. If not, then
180                                            * it contains GDK_WINDOW_TYPE_HINT_NORMAL */
181   guint    urgent                    : 1;
182 };
183
184 enum {
185   SET_FOCUS,
186   FRAME_EVENT,
187   ACTIVATE_FOCUS,
188   ACTIVATE_DEFAULT,
189   KEYS_CHANGED,
190   LAST_SIGNAL
191 };
192
193 enum {
194   PROP_0,
195
196   /* Construct */
197   PROP_TYPE,
198
199   /* Normal Props */
200   PROP_TITLE,
201   PROP_ROLE,
202   PROP_RESIZABLE,
203   PROP_MODAL,
204   PROP_WIN_POS,
205   PROP_DEFAULT_WIDTH,
206   PROP_DEFAULT_HEIGHT,
207   PROP_DESTROY_WITH_PARENT,
208   PROP_ICON,
209   PROP_ICON_NAME,
210   PROP_SCREEN,
211   PROP_TYPE_HINT,
212   PROP_SKIP_TASKBAR_HINT,
213   PROP_SKIP_PAGER_HINT,
214   PROP_URGENCY_HINT,
215   PROP_ACCEPT_FOCUS,
216   PROP_FOCUS_ON_MAP,
217   PROP_DECORATED,
218   PROP_DELETABLE,
219   PROP_GRAVITY,
220   PROP_TRANSIENT_FOR,
221   PROP_OPACITY,
222   PROP_HAS_RESIZE_GRIP,
223   PROP_RESIZE_GRIP_VISIBLE,
224
225   /* Readonly properties */
226   PROP_IS_ACTIVE,
227   PROP_HAS_TOPLEVEL_FOCUS,
228   
229   /* Writeonly properties */
230   PROP_STARTUP_ID,
231   
232   PROP_MNEMONICS_VISIBLE,
233
234   LAST_ARG
235 };
236
237 typedef struct
238 {
239   GList     *icon_list;
240   gchar     *icon_name;
241   guint      realized : 1;
242   guint      using_default_icon : 1;
243   guint      using_parent_icon : 1;
244   guint      using_themed_icon : 1;
245 } GtkWindowIconInfo;
246
247 typedef struct {
248   GdkGeometry    geometry; /* Last set of geometry hints we set */
249   GdkWindowHints flags;
250   GdkRectangle   configure_request;
251 } GtkWindowLastGeometryInfo;
252
253 struct _GtkWindowGeometryInfo
254 {
255   /* Properties that the app has set on the window
256    */
257   GdkGeometry    geometry;      /* Geometry hints */
258   GdkWindowHints mask;
259   GtkWidget     *widget;        /* subwidget to which hints apply */
260   /* from last gtk_window_resize () - if > 0, indicates that
261    * we should resize to this size.
262    */
263   gint           resize_width;  
264   gint           resize_height;
265
266   /* From last gtk_window_move () prior to mapping -
267    * only used if initial_pos_set
268    */
269   gint           initial_x;
270   gint           initial_y;
271   
272   /* Default size - used only the FIRST time we map a window,
273    * only if > 0.
274    */
275   gint           default_width; 
276   gint           default_height;
277   /* whether to use initial_x, initial_y */
278   guint          initial_pos_set : 1;
279   /* CENTER_ALWAYS or other position constraint changed since
280    * we sent the last configure request.
281    */
282   guint          position_constraints_changed : 1;
283
284   /* if true, default_width, height should be multiplied by the
285    * increments and affect the geometry widget only
286    */
287   guint          default_is_geometry : 1;
288
289   /* if true, resize_width, height should be multiplied by the
290    * increments and affect the geometry widget only
291    */
292   guint          resize_is_geometry : 1;
293   
294   GtkWindowLastGeometryInfo last;
295 };
296
297 #define GTK_WINDOW_GROUP_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_WINDOW_GROUP, GtkWindowGroupPrivate))
298
299 struct _GtkDeviceGrabInfo
300 {
301   GtkWidget *widget;
302   GdkDevice *device;
303   guint block_others : 1;
304 };
305
306 struct _GtkWindowGroupPrivate
307 {
308   GSList *device_grabs;
309 };
310
311 static void gtk_window_dispose            (GObject           *object);
312 static void gtk_window_finalize           (GObject           *object);
313 static void gtk_window_destroy            (GtkWidget         *widget);
314 static void gtk_window_show               (GtkWidget         *widget);
315 static void gtk_window_hide               (GtkWidget         *widget);
316 static void gtk_window_map                (GtkWidget         *widget);
317 static void gtk_window_unmap              (GtkWidget         *widget);
318 static void gtk_window_realize            (GtkWidget         *widget);
319 static void gtk_window_unrealize          (GtkWidget         *widget);
320 static void gtk_window_size_allocate      (GtkWidget         *widget,
321                                            GtkAllocation     *allocation);
322 static gint gtk_window_event              (GtkWidget *widget,
323                                            GdkEvent *event);
324 static gboolean gtk_window_map_event      (GtkWidget         *widget,
325                                            GdkEventAny       *event);
326 static gboolean gtk_window_frame_event    (GtkWindow *window,
327                                            GdkEvent *event);
328 static gint gtk_window_configure_event    (GtkWidget         *widget,
329                                            GdkEventConfigure *event);
330 static gint gtk_window_key_press_event    (GtkWidget         *widget,
331                                            GdkEventKey       *event);
332 static gint gtk_window_key_release_event  (GtkWidget         *widget,
333                                            GdkEventKey       *event);
334 static gint gtk_window_button_press_event (GtkWidget         *widget,
335                                            GdkEventButton    *event);
336 static gint gtk_window_enter_notify_event (GtkWidget         *widget,
337                                            GdkEventCrossing  *event);
338 static gint gtk_window_leave_notify_event (GtkWidget         *widget,
339                                            GdkEventCrossing  *event);
340 static gint gtk_window_focus_in_event     (GtkWidget         *widget,
341                                            GdkEventFocus     *event);
342 static gint gtk_window_focus_out_event    (GtkWidget         *widget,
343                                            GdkEventFocus     *event);
344 static gint gtk_window_client_event       (GtkWidget         *widget,
345                                            GdkEventClient    *event);
346 static gboolean gtk_window_state_event    (GtkWidget          *widget,
347                                            GdkEventWindowState *event);
348 static void gtk_window_check_resize       (GtkContainer      *container);
349 static gint gtk_window_focus              (GtkWidget        *widget,
350                                            GtkDirectionType  direction);
351 static void gtk_window_real_set_focus     (GtkWindow         *window,
352                                            GtkWidget         *focus);
353 static void gtk_window_direction_changed  (GtkWidget         *widget,
354                                            GtkTextDirection   prev_dir);
355 static void gtk_window_state_changed      (GtkWidget         *widget,
356                                            GtkStateType       previous_state);
357
358 static void gtk_window_real_activate_default (GtkWindow         *window);
359 static void gtk_window_real_activate_focus   (GtkWindow         *window);
360 static void gtk_window_move_focus            (GtkWindow         *window,
361                                               GtkDirectionType   dir);
362 static void gtk_window_keys_changed          (GtkWindow         *window);
363 static gint gtk_window_draw                  (GtkWidget         *widget,
364                                               cairo_t           *cr);
365 static void gtk_window_unset_transient_for         (GtkWindow  *window);
366 static void gtk_window_transient_parent_realized   (GtkWidget  *parent,
367                                                     GtkWidget  *window);
368 static void gtk_window_transient_parent_unrealized (GtkWidget  *parent,
369                                                     GtkWidget  *window);
370
371 static GdkScreen *gtk_window_check_screen (GtkWindow *window);
372
373 static GtkWindowGeometryInfo* gtk_window_get_geometry_info         (GtkWindow    *window,
374                                                                     gboolean      create);
375
376 static void     gtk_window_move_resize               (GtkWindow    *window);
377 static gboolean gtk_window_compare_hints             (GdkGeometry  *geometry_a,
378                                                       guint         flags_a,
379                                                       GdkGeometry  *geometry_b,
380                                                       guint         flags_b);
381 static void     gtk_window_constrain_size            (GtkWindow    *window,
382                                                       GdkGeometry  *geometry,
383                                                       guint         flags,
384                                                       gint          width,
385                                                       gint          height,
386                                                       gint         *new_width,
387                                                       gint         *new_height);
388 static void     gtk_window_constrain_position        (GtkWindow    *window,
389                                                       gint          new_width,
390                                                       gint          new_height,
391                                                       gint         *x,
392                                                       gint         *y);
393 static void     gtk_window_compute_hints             (GtkWindow    *window,
394                                                       GdkGeometry  *new_geometry,
395                                                       guint        *new_flags);
396 static void     gtk_window_compute_configure_request (GtkWindow    *window,
397                                                       GdkRectangle *request,
398                                                       GdkGeometry  *geometry,
399                                                       guint        *flags);
400
401 static void     gtk_window_set_default_size_internal (GtkWindow    *window,
402                                                       gboolean      change_width,
403                                                       gint          width,
404                                                       gboolean      change_height,
405                                                       gint          height,
406                                                       gboolean      is_geometry);
407
408 static void     update_themed_icon                    (GtkIconTheme *theme,
409                                                        GtkWindow    *window);
410 static GList   *icon_list_from_theme                  (GtkWidget    *widget,
411                                                        const gchar  *name);
412 static void     gtk_window_realize_icon               (GtkWindow    *window);
413 static void     gtk_window_unrealize_icon             (GtkWindow    *window);
414 static void     resize_grip_create_window             (GtkWindow    *window);
415 static void     resize_grip_destroy_window            (GtkWindow    *window);
416 static void     update_grip_visibility                (GtkWindow    *window);
417
418 static void        gtk_window_notify_keys_changed (GtkWindow   *window);
419 static GtkKeyHash *gtk_window_get_key_hash        (GtkWindow   *window);
420 static void        gtk_window_free_key_hash       (GtkWindow   *window);
421 static void        gtk_window_on_composited_changed (GdkScreen *screen,
422                                                      GtkWindow *window);
423
424 static GSList      *toplevel_list = NULL;
425 static guint        window_signals[LAST_SIGNAL] = { 0 };
426 static GList       *default_icon_list = NULL;
427 static gchar       *default_icon_name = NULL;
428 static guint        default_icon_serial = 0;
429 static gboolean     disable_startup_notification = FALSE;
430 static gboolean     sent_startup_notification = FALSE;
431
432 static GQuark       quark_gtk_embedded = 0;
433 static GQuark       quark_gtk_window_key_hash = 0;
434 static GQuark       quark_gtk_window_icon_info = 0;
435 static GQuark       quark_gtk_buildable_accels = 0;
436
437 static GtkBuildableIface *parent_buildable_iface;
438
439 static void gtk_window_set_property (GObject         *object,
440                                      guint            prop_id,
441                                      const GValue    *value,
442                                      GParamSpec      *pspec);
443 static void gtk_window_get_property (GObject         *object,
444                                      guint            prop_id,
445                                      GValue          *value,
446                                      GParamSpec      *pspec);
447
448 /* GtkBuildable */
449 static void gtk_window_buildable_interface_init  (GtkBuildableIface *iface);
450 static void gtk_window_buildable_set_buildable_property (GtkBuildable        *buildable,
451                                                          GtkBuilder          *builder,
452                                                          const gchar         *name,
453                                                          const GValue        *value);
454 static void gtk_window_buildable_parser_finished (GtkBuildable     *buildable,
455                                                   GtkBuilder       *builder);
456 static gboolean gtk_window_buildable_custom_tag_start (GtkBuildable  *buildable,
457                                                        GtkBuilder    *builder,
458                                                        GObject       *child,
459                                                        const gchar   *tagname,
460                                                        GMarkupParser *parser,
461                                                        gpointer      *data);
462 static void gtk_window_buildable_custom_finished (GtkBuildable  *buildable,
463                                                       GtkBuilder    *builder,
464                                                       GObject       *child,
465                                                       const gchar   *tagname,
466                                                       gpointer       user_data);
467
468
469 static void gtk_window_get_preferred_width    (GtkWidget           *widget,
470                                                gint                *minimum_size,
471                                                gint                *natural_size);
472 static void gtk_window_get_preferred_height   (GtkWidget           *widget,
473                                                gint                *minimum_size,
474                                                gint                *natural_size);
475
476 G_DEFINE_TYPE_WITH_CODE (GtkWindow, gtk_window, GTK_TYPE_BIN,
477                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
478                                                 gtk_window_buildable_interface_init))
479
480 static void
481 add_tab_bindings (GtkBindingSet    *binding_set,
482                   GdkModifierType   modifiers,
483                   GtkDirectionType  direction)
484 {
485   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Tab, modifiers,
486                                 "move-focus", 1,
487                                 GTK_TYPE_DIRECTION_TYPE, direction);
488   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Tab, modifiers,
489                                 "move-focus", 1,
490                                 GTK_TYPE_DIRECTION_TYPE, direction);
491 }
492
493 static void
494 add_arrow_bindings (GtkBindingSet    *binding_set,
495                     guint             keysym,
496                     GtkDirectionType  direction)
497 {
498   guint keypad_keysym = keysym - GDK_KEY_Left + GDK_KEY_KP_Left;
499   
500   gtk_binding_entry_add_signal (binding_set, keysym, 0,
501                                 "move-focus", 1,
502                                 GTK_TYPE_DIRECTION_TYPE, direction);
503   gtk_binding_entry_add_signal (binding_set, keysym, GDK_CONTROL_MASK,
504                                 "move-focus", 1,
505                                 GTK_TYPE_DIRECTION_TYPE, direction);
506   gtk_binding_entry_add_signal (binding_set, keypad_keysym, 0,
507                                 "move-focus", 1,
508                                 GTK_TYPE_DIRECTION_TYPE, direction);
509   gtk_binding_entry_add_signal (binding_set, keypad_keysym, GDK_CONTROL_MASK,
510                                 "move-focus", 1,
511                                 GTK_TYPE_DIRECTION_TYPE, direction);
512 }
513
514 static guint32
515 extract_time_from_startup_id (const gchar* startup_id)
516 {
517   gchar *timestr = g_strrstr (startup_id, "_TIME");
518   guint32 retval = GDK_CURRENT_TIME;
519
520   if (timestr)
521     {
522       gchar *end;
523       guint32 timestamp; 
524     
525       /* Skip past the "_TIME" part */
526       timestr += 5;
527
528       errno = 0;
529       timestamp = strtoul (timestr, &end, 0);
530       if (end != timestr && errno == 0)
531         retval = timestamp;
532     }
533
534   return retval;
535 }
536
537 static gboolean
538 startup_id_is_fake (const gchar* startup_id)
539 {
540   return strncmp (startup_id, "_TIME", 5) == 0;
541 }
542
543 static void
544 gtk_window_class_init (GtkWindowClass *klass)
545 {
546   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
547   GtkWidgetClass *widget_class;
548   GtkContainerClass *container_class;
549   GtkBindingSet *binding_set;
550
551   widget_class = (GtkWidgetClass*) klass;
552   container_class = (GtkContainerClass*) klass;
553   
554   quark_gtk_embedded = g_quark_from_static_string ("gtk-embedded");
555   quark_gtk_window_key_hash = g_quark_from_static_string ("gtk-window-key-hash");
556   quark_gtk_window_icon_info = g_quark_from_static_string ("gtk-window-icon-info");
557   quark_gtk_buildable_accels = g_quark_from_static_string ("gtk-window-buildable-accels");
558
559   gobject_class->dispose = gtk_window_dispose;
560   gobject_class->finalize = gtk_window_finalize;
561
562   gobject_class->set_property = gtk_window_set_property;
563   gobject_class->get_property = gtk_window_get_property;
564
565   widget_class->destroy = gtk_window_destroy;
566   widget_class->show = gtk_window_show;
567   widget_class->hide = gtk_window_hide;
568   widget_class->map = gtk_window_map;
569   widget_class->map_event = gtk_window_map_event;
570   widget_class->unmap = gtk_window_unmap;
571   widget_class->realize = gtk_window_realize;
572   widget_class->unrealize = gtk_window_unrealize;
573   widget_class->size_allocate = gtk_window_size_allocate;
574   widget_class->configure_event = gtk_window_configure_event;
575   widget_class->key_press_event = gtk_window_key_press_event;
576   widget_class->key_release_event = gtk_window_key_release_event;
577   widget_class->enter_notify_event = gtk_window_enter_notify_event;
578   widget_class->leave_notify_event = gtk_window_leave_notify_event;
579   widget_class->focus_in_event = gtk_window_focus_in_event;
580   widget_class->button_press_event = gtk_window_button_press_event;
581   widget_class->focus_out_event = gtk_window_focus_out_event;
582   widget_class->client_event = gtk_window_client_event;
583   widget_class->focus = gtk_window_focus;
584   widget_class->draw = gtk_window_draw;
585   widget_class->get_preferred_width = gtk_window_get_preferred_width;
586   widget_class->get_preferred_height = gtk_window_get_preferred_height;
587   widget_class->window_state_event = gtk_window_state_event;
588   widget_class->direction_changed = gtk_window_direction_changed;
589   widget_class->state_changed = gtk_window_state_changed;
590
591   container_class->check_resize = gtk_window_check_resize;
592
593   klass->set_focus = gtk_window_real_set_focus;
594   klass->frame_event = gtk_window_frame_event;
595
596   klass->activate_default = gtk_window_real_activate_default;
597   klass->activate_focus = gtk_window_real_activate_focus;
598   klass->move_focus = gtk_window_move_focus;
599   klass->keys_changed = gtk_window_keys_changed;
600
601   g_type_class_add_private (gobject_class, sizeof (GtkWindowPrivate));
602
603   /* Construct */
604   g_object_class_install_property (gobject_class,
605                                    PROP_TYPE,
606                                    g_param_spec_enum ("type",
607                                                       P_("Window Type"),
608                                                       P_("The type of the window"),
609                                                       GTK_TYPE_WINDOW_TYPE,
610                                                       GTK_WINDOW_TOPLEVEL,
611                                                       GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
612   /* Regular Props */
613   g_object_class_install_property (gobject_class,
614                                    PROP_TITLE,
615                                    g_param_spec_string ("title",
616                                                         P_("Window Title"),
617                                                         P_("The title of the window"),
618                                                         NULL,
619                                                         GTK_PARAM_READWRITE));
620
621   g_object_class_install_property (gobject_class,
622                                    PROP_ROLE,
623                                    g_param_spec_string ("role",
624                                                         P_("Window Role"),
625                                                         P_("Unique identifier for the window to be used when restoring a session"),
626                                                         NULL,
627                                                         GTK_PARAM_READWRITE));
628
629   /**
630    * GtkWindow:startup-id:
631    *
632    * The :startup-id is a write-only property for setting window's
633    * startup notification identifier. See gtk_window_set_startup_id()
634    * for more details.
635    *
636    * Since: 2.12
637    */
638   g_object_class_install_property (gobject_class,
639                                    PROP_STARTUP_ID,
640                                    g_param_spec_string ("startup-id",
641                                                         P_("Startup ID"),
642                                                         P_("Unique startup identifier for the window used by startup-notification"),
643                                                         NULL,
644                                                         GTK_PARAM_WRITABLE));
645
646   g_object_class_install_property (gobject_class,
647                                    PROP_RESIZABLE,
648                                    g_param_spec_boolean ("resizable",
649                                                          P_("Resizable"),
650                                                          P_("If TRUE, users can resize the window"),
651                                                          TRUE,
652                                                          GTK_PARAM_READWRITE));
653   
654   g_object_class_install_property (gobject_class,
655                                    PROP_MODAL,
656                                    g_param_spec_boolean ("modal",
657                                                          P_("Modal"),
658                                                          P_("If TRUE, the window is modal (other windows are not usable while this one is up)"),
659                                                          FALSE,
660                                                          GTK_PARAM_READWRITE));
661
662   g_object_class_install_property (gobject_class,
663                                    PROP_WIN_POS,
664                                    g_param_spec_enum ("window-position",
665                                                       P_("Window Position"),
666                                                       P_("The initial position of the window"),
667                                                       GTK_TYPE_WINDOW_POSITION,
668                                                       GTK_WIN_POS_NONE,
669                                                       GTK_PARAM_READWRITE));
670  
671   g_object_class_install_property (gobject_class,
672                                    PROP_DEFAULT_WIDTH,
673                                    g_param_spec_int ("default-width",
674                                                      P_("Default Width"),
675                                                      P_("The default width of the window, used when initially showing the window"),
676                                                      -1,
677                                                      G_MAXINT,
678                                                      -1,
679                                                      GTK_PARAM_READWRITE));
680   
681   g_object_class_install_property (gobject_class,
682                                    PROP_DEFAULT_HEIGHT,
683                                    g_param_spec_int ("default-height",
684                                                      P_("Default Height"),
685                                                      P_("The default height of the window, used when initially showing the window"),
686                                                      -1,
687                                                      G_MAXINT,
688                                                      -1,
689                                                      GTK_PARAM_READWRITE));
690   
691   g_object_class_install_property (gobject_class,
692                                    PROP_DESTROY_WITH_PARENT,
693                                    g_param_spec_boolean ("destroy-with-parent",
694                                                          P_("Destroy with Parent"),
695                                                          P_("If this window should be destroyed when the parent is destroyed"),
696                                                          FALSE,
697                                                          GTK_PARAM_READWRITE));
698
699   g_object_class_install_property (gobject_class,
700                                    PROP_ICON,
701                                    g_param_spec_object ("icon",
702                                                         P_("Icon"),
703                                                         P_("Icon for this window"),
704                                                         GDK_TYPE_PIXBUF,
705                                                         GTK_PARAM_READWRITE));
706   g_object_class_install_property (gobject_class,
707                                    PROP_MNEMONICS_VISIBLE,
708                                    g_param_spec_boolean ("mnemonics-visible",
709                                                          P_("Mnemonics Visible"),
710                                                          P_("Whether mnemonics are currently visible in this window"),
711                                                          TRUE,
712                                                          GTK_PARAM_READWRITE));
713   
714   /**
715    * GtkWindow:icon-name:
716    *
717    * The :icon-name property specifies the name of the themed icon to
718    * use as the window icon. See #GtkIconTheme for more details.
719    *
720    * Since: 2.6
721    */
722   g_object_class_install_property (gobject_class,
723                                    PROP_ICON_NAME,
724                                    g_param_spec_string ("icon-name",
725                                                         P_("Icon Name"),
726                                                         P_("Name of the themed icon for this window"),
727                                                         NULL,
728                                                         GTK_PARAM_READWRITE));
729   
730   g_object_class_install_property (gobject_class,
731                                    PROP_SCREEN,
732                                    g_param_spec_object ("screen",
733                                                         P_("Screen"),
734                                                         P_("The screen where this window will be displayed"),
735                                                         GDK_TYPE_SCREEN,
736                                                         GTK_PARAM_READWRITE));
737
738   g_object_class_install_property (gobject_class,
739                                    PROP_IS_ACTIVE,
740                                    g_param_spec_boolean ("is-active",
741                                                          P_("Is Active"),
742                                                          P_("Whether the toplevel is the current active window"),
743                                                          FALSE,
744                                                          GTK_PARAM_READABLE));
745   
746   g_object_class_install_property (gobject_class,
747                                    PROP_HAS_TOPLEVEL_FOCUS,
748                                    g_param_spec_boolean ("has-toplevel-focus",
749                                                          P_("Focus in Toplevel"),
750                                                          P_("Whether the input focus is within this GtkWindow"),
751                                                          FALSE,
752                                                          GTK_PARAM_READABLE));
753
754   g_object_class_install_property (gobject_class,
755                                    PROP_TYPE_HINT,
756                                    g_param_spec_enum ("type-hint",
757                                                       P_("Type hint"),
758                                                       P_("Hint to help the desktop environment understand what kind of window this is and how to treat it."),
759                                                       GDK_TYPE_WINDOW_TYPE_HINT,
760                                                       GDK_WINDOW_TYPE_HINT_NORMAL,
761                                                       GTK_PARAM_READWRITE));
762
763   g_object_class_install_property (gobject_class,
764                                    PROP_SKIP_TASKBAR_HINT,
765                                    g_param_spec_boolean ("skip-taskbar-hint",
766                                                          P_("Skip taskbar"),
767                                                          P_("TRUE if the window should not be in the task bar."),
768                                                          FALSE,
769                                                          GTK_PARAM_READWRITE));
770
771   g_object_class_install_property (gobject_class,
772                                    PROP_SKIP_PAGER_HINT,
773                                    g_param_spec_boolean ("skip-pager-hint",
774                                                          P_("Skip pager"),
775                                                          P_("TRUE if the window should not be in the pager."),
776                                                          FALSE,
777                                                          GTK_PARAM_READWRITE));  
778
779   g_object_class_install_property (gobject_class,
780                                    PROP_URGENCY_HINT,
781                                    g_param_spec_boolean ("urgency-hint",
782                                                          P_("Urgent"),
783                                                          P_("TRUE if the window should be brought to the user's attention."),
784                                                          FALSE,
785                                                          GTK_PARAM_READWRITE));  
786
787   /**
788    * GtkWindow:accept-focus:
789    *
790    * Whether the window should receive the input focus.
791    *
792    * Since: 2.4
793    */
794   g_object_class_install_property (gobject_class,
795                                    PROP_ACCEPT_FOCUS,
796                                    g_param_spec_boolean ("accept-focus",
797                                                          P_("Accept focus"),
798                                                          P_("TRUE if the window should receive the input focus."),
799                                                          TRUE,
800                                                          GTK_PARAM_READWRITE));  
801
802   /**
803    * GtkWindow:focus-on-map:
804    *
805    * Whether the window should receive the input focus when mapped.
806    *
807    * Since: 2.6
808    */
809   g_object_class_install_property (gobject_class,
810                                    PROP_FOCUS_ON_MAP,
811                                    g_param_spec_boolean ("focus-on-map",
812                                                          P_("Focus on map"),
813                                                          P_("TRUE if the window should receive the input focus when mapped."),
814                                                          TRUE,
815                                                          GTK_PARAM_READWRITE));  
816
817   /**
818    * GtkWindow:decorated:
819    *
820    * Whether the window should be decorated by the window manager.
821    *
822    * Since: 2.4
823    */
824   g_object_class_install_property (gobject_class,
825                                    PROP_DECORATED,
826                                    g_param_spec_boolean ("decorated",
827                                                          P_("Decorated"),
828                                                          P_("Whether the window should be decorated by the window manager"),
829                                                          TRUE,
830                                                          GTK_PARAM_READWRITE));
831
832   /**
833    * GtkWindow:deletable:
834    *
835    * Whether the window frame should have a close button.
836    *
837    * Since: 2.10
838    */
839   g_object_class_install_property (gobject_class,
840                                    PROP_DELETABLE,
841                                    g_param_spec_boolean ("deletable",
842                                                          P_("Deletable"),
843                                                          P_("Whether the window frame should have a close button"),
844                                                          TRUE,
845                                                          GTK_PARAM_READWRITE));
846
847   /**
848    * GtkWindow:has-resize-grip
849    *
850    * Whether the window has a corner resize grip.
851    *
852    * Note that the resize grip is only shown if the window is
853    * actually resizable and not maximized. Use
854    * #GtkWindow:resize-grip-visible to find out if the resize
855    * grip is currently shown.
856    *
857    * Since: 3.0
858    */
859   g_object_class_install_property (gobject_class,
860                                    PROP_HAS_RESIZE_GRIP,
861                                    g_param_spec_boolean ("has-resize-grip",
862                                                          P_("Resize grip"),
863                                                          P_("Specifies whether the window should have a resize grip"),
864                                                          TRUE,
865                                                          GTK_PARAM_READWRITE));
866
867   /**
868    * GtkWindow: resize-grip-visible:
869    *
870    * Whether a corner resize grip is currently shown.
871    *
872    * Since: 3.0
873    */
874   g_object_class_install_property (gobject_class,
875                                    PROP_RESIZE_GRIP_VISIBLE,
876                                    g_param_spec_boolean ("resize-grip-visible",
877                                                          P_("Resize grip is visible"),
878                                                          P_("Specifies whether the window's resize grip is visible."),
879                                                          FALSE,
880                                                          GTK_PARAM_READABLE));
881
882
883   /**
884    * GtkWindow:gravity:
885    *
886    * The window gravity of the window. See gtk_window_move() and #GdkGravity for
887    * more details about window gravity.
888    *
889    * Since: 2.4
890    */
891   g_object_class_install_property (gobject_class,
892                                    PROP_GRAVITY,
893                                    g_param_spec_enum ("gravity",
894                                                       P_("Gravity"),
895                                                       P_("The window gravity of the window"),
896                                                       GDK_TYPE_GRAVITY,
897                                                       GDK_GRAVITY_NORTH_WEST,
898                                                       GTK_PARAM_READWRITE));
899
900
901   /**
902    * GtkWindow:transient-for:
903    *
904    * The transient parent of the window. See gtk_window_set_transient_for() for
905    * more details about transient windows.
906    *
907    * Since: 2.10
908    */
909   g_object_class_install_property (gobject_class,
910                                    PROP_TRANSIENT_FOR,
911                                    g_param_spec_object ("transient-for",
912                                                         P_("Transient for Window"),
913                                                         P_("The transient parent of the dialog"),
914                                                         GTK_TYPE_WINDOW,
915                                                         GTK_PARAM_READWRITE| G_PARAM_CONSTRUCT));
916
917   /**
918    * GtkWindow:opacity:
919    *
920    * The requested opacity of the window. See gtk_window_set_opacity() for
921    * more details about window opacity.
922    *
923    * Since: 2.12
924    */
925   g_object_class_install_property (gobject_class,
926                                    PROP_OPACITY,
927                                    g_param_spec_double ("opacity",
928                                                         P_("Opacity for Window"),
929                                                         P_("The opacity of the window, from 0 to 1"),
930                                                         0.0,
931                                                         1.0,
932                                                         1.0,
933                                                         GTK_PARAM_READWRITE));
934
935
936   /* Style properties.
937    */
938   gtk_widget_class_install_style_property (widget_class,
939                                            g_param_spec_int ("resize-grip-width",
940                                                              P_("Width of resize grip"),
941                                                              P_("Width of resize grip"),
942                                                              0, G_MAXINT, 16, GTK_PARAM_READWRITE));
943
944   gtk_widget_class_install_style_property (widget_class,
945                                            g_param_spec_int ("resize-grip-height",
946                                                              P_("Height of resize grip"),
947                                                              P_("Height of resize grip"),
948                                                              0, G_MAXINT, 16, GTK_PARAM_READWRITE));
949
950
951   /* Signals
952    */
953   window_signals[SET_FOCUS] =
954     g_signal_new (I_("set-focus"),
955                   G_TYPE_FROM_CLASS (gobject_class),
956                   G_SIGNAL_RUN_LAST,
957                   G_STRUCT_OFFSET (GtkWindowClass, set_focus),
958                   NULL, NULL,
959                   _gtk_marshal_VOID__OBJECT,
960                   G_TYPE_NONE, 1,
961                   GTK_TYPE_WIDGET);
962   
963   window_signals[FRAME_EVENT] =
964     g_signal_new (I_("frame-event"),
965                   G_TYPE_FROM_CLASS (gobject_class),
966                   G_SIGNAL_RUN_LAST,
967                   G_STRUCT_OFFSET(GtkWindowClass, frame_event),
968                   _gtk_boolean_handled_accumulator, NULL,
969                   _gtk_marshal_BOOLEAN__BOXED,
970                   G_TYPE_BOOLEAN, 1,
971                   GDK_TYPE_EVENT);
972
973   /**
974    * GtkWindow::activate-focus:
975    * @window: the window which received the signal
976    *
977    * The ::activate-focus signal is a
978    * <link linkend="keybinding-signals">keybinding signal</link>
979    * which gets emitted when the user activates the currently
980    * focused widget of @window.
981    */
982   window_signals[ACTIVATE_FOCUS] =
983     g_signal_new (I_("activate-focus"),
984                   G_TYPE_FROM_CLASS (gobject_class),
985                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
986                   G_STRUCT_OFFSET (GtkWindowClass, activate_focus),
987                   NULL, NULL,
988                   _gtk_marshal_VOID__VOID,
989                   G_TYPE_NONE,
990                   0);
991
992   /**
993    * GtkWindow::activate-default:
994    * @window: the window which received the signal
995    *
996    * The ::activate-default signal is a
997    * <link linkend="keybinding-signals">keybinding signal</link>
998    * which gets emitted when the user activates the default widget
999    * of @window.
1000    */
1001   window_signals[ACTIVATE_DEFAULT] =
1002     g_signal_new (I_("activate-default"),
1003                   G_TYPE_FROM_CLASS (gobject_class),
1004                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1005                   G_STRUCT_OFFSET (GtkWindowClass, activate_default),
1006                   NULL, NULL,
1007                   _gtk_marshal_VOID__VOID,
1008                   G_TYPE_NONE,
1009                   0);
1010
1011   /**
1012    * GtkWindow::keys-changed:
1013    * @window: the window which received the signal
1014    *
1015    * The ::keys-changed signal gets emitted when the set of accelerators
1016    * or mnemonics that are associated with @window changes.
1017    */
1018   window_signals[KEYS_CHANGED] =
1019     g_signal_new (I_("keys-changed"),
1020                   G_TYPE_FROM_CLASS (gobject_class),
1021                   G_SIGNAL_RUN_FIRST,
1022                   G_STRUCT_OFFSET (GtkWindowClass, keys_changed),
1023                   NULL, NULL,
1024                   _gtk_marshal_VOID__VOID,
1025                   G_TYPE_NONE,
1026                   0);
1027
1028   /*
1029    * Key bindings
1030    */
1031
1032   binding_set = gtk_binding_set_by_class (klass);
1033
1034   gtk_binding_entry_add_signal (binding_set, GDK_KEY_space, 0,
1035                                 "activate-focus", 0);
1036   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Space, 0,
1037                                 "activate-focus", 0);
1038   
1039   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Return, 0,
1040                                 "activate-default", 0);
1041   gtk_binding_entry_add_signal (binding_set, GDK_KEY_ISO_Enter, 0,
1042                                 "activate-default", 0);
1043   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Enter, 0,
1044                                 "activate-default", 0);
1045
1046   add_arrow_bindings (binding_set, GDK_KEY_Up, GTK_DIR_UP);
1047   add_arrow_bindings (binding_set, GDK_KEY_Down, GTK_DIR_DOWN);
1048   add_arrow_bindings (binding_set, GDK_KEY_Left, GTK_DIR_LEFT);
1049   add_arrow_bindings (binding_set, GDK_KEY_Right, GTK_DIR_RIGHT);
1050
1051   add_tab_bindings (binding_set, 0, GTK_DIR_TAB_FORWARD);
1052   add_tab_bindings (binding_set, GDK_CONTROL_MASK, GTK_DIR_TAB_FORWARD);
1053   add_tab_bindings (binding_set, GDK_SHIFT_MASK, GTK_DIR_TAB_BACKWARD);
1054   add_tab_bindings (binding_set, GDK_CONTROL_MASK | GDK_SHIFT_MASK, GTK_DIR_TAB_BACKWARD);
1055 }
1056
1057 static void
1058 gtk_window_init (GtkWindow *window)
1059 {
1060   GtkWindowPrivate *priv;
1061
1062   window->priv = G_TYPE_INSTANCE_GET_PRIVATE (window,
1063                                               GTK_TYPE_WINDOW,
1064                                               GtkWindowPrivate);
1065   priv = window->priv;
1066   
1067   gtk_widget_set_has_window (GTK_WIDGET (window), TRUE);
1068   _gtk_widget_set_is_toplevel (GTK_WIDGET (window), TRUE);
1069
1070   _gtk_widget_set_anchored (GTK_WIDGET (window), TRUE);
1071
1072   gtk_container_set_resize_mode (GTK_CONTAINER (window), GTK_RESIZE_QUEUE);
1073
1074   priv->title = NULL;
1075   priv->wmclass_name = g_strdup (g_get_prgname ());
1076   priv->wmclass_class = g_strdup (gdk_get_program_class ());
1077   priv->wm_role = NULL;
1078   priv->geometry_info = NULL;
1079   priv->type = GTK_WINDOW_TOPLEVEL;
1080   priv->focus_widget = NULL;
1081   priv->default_widget = NULL;
1082   priv->configure_request_count = 0;
1083   priv->resizable = TRUE;
1084   priv->configure_notify_received = FALSE;
1085   priv->position = GTK_WIN_POS_NONE;
1086   priv->need_default_size = TRUE;
1087   priv->need_default_position = TRUE;
1088   priv->modal = FALSE;
1089   priv->frame = NULL;
1090   priv->has_frame = FALSE;
1091   priv->frame_left = 0;
1092   priv->frame_right = 0;
1093   priv->frame_top = 0;
1094   priv->frame_bottom = 0;
1095   priv->gdk_type_hint = GDK_WINDOW_TYPE_HINT_NORMAL;
1096   priv->gravity = GDK_GRAVITY_NORTH_WEST;
1097   priv->decorated = TRUE;
1098   priv->mnemonic_modifier = GDK_MOD1_MASK;
1099   priv->screen = gdk_screen_get_default ();
1100
1101   priv->accept_focus = TRUE;
1102   priv->focus_on_map = TRUE;
1103   priv->deletable = TRUE;
1104   priv->type_hint = GDK_WINDOW_TYPE_HINT_NORMAL;
1105   priv->opacity = 1.0;
1106   priv->startup_id = NULL;
1107   priv->has_resize_grip = TRUE;
1108   priv->mnemonics_visible = TRUE;
1109
1110   g_object_ref_sink (window);
1111   priv->has_user_ref_count = TRUE;
1112   toplevel_list = g_slist_prepend (toplevel_list, window);
1113
1114   gtk_decorated_window_init (window);
1115
1116   g_signal_connect (priv->screen, "composited-changed",
1117                     G_CALLBACK (gtk_window_on_composited_changed), window);
1118 }
1119
1120 static void
1121 gtk_window_set_property (GObject      *object,
1122                          guint         prop_id,
1123                          const GValue *value,
1124                          GParamSpec   *pspec)
1125 {
1126   GtkWindow  *window = GTK_WINDOW (object);
1127   GtkWindowPrivate *priv = window->priv;
1128
1129   switch (prop_id)
1130     {
1131     case PROP_TYPE:
1132       priv->type = g_value_get_enum (value);
1133       break;
1134     case PROP_TITLE:
1135       gtk_window_set_title (window, g_value_get_string (value));
1136       break;
1137     case PROP_ROLE:
1138       gtk_window_set_role (window, g_value_get_string (value));
1139       break;
1140     case PROP_STARTUP_ID:
1141       gtk_window_set_startup_id (window, g_value_get_string (value));
1142       break;
1143     case PROP_RESIZABLE:
1144       gtk_window_set_resizable (window, g_value_get_boolean (value));
1145       break;
1146     case PROP_MODAL:
1147       gtk_window_set_modal (window, g_value_get_boolean (value));
1148       break;
1149     case PROP_WIN_POS:
1150       gtk_window_set_position (window, g_value_get_enum (value));
1151       break;
1152     case PROP_DEFAULT_WIDTH:
1153       gtk_window_set_default_size_internal (window,
1154                                             TRUE, g_value_get_int (value),
1155                                             FALSE, -1, FALSE);
1156       break;
1157     case PROP_DEFAULT_HEIGHT:
1158       gtk_window_set_default_size_internal (window,
1159                                             FALSE, -1,
1160                                             TRUE, g_value_get_int (value), FALSE);
1161       break;
1162     case PROP_DESTROY_WITH_PARENT:
1163       gtk_window_set_destroy_with_parent (window, g_value_get_boolean (value));
1164       break;
1165     case PROP_ICON:
1166       gtk_window_set_icon (window,
1167                            g_value_get_object (value));
1168       break;
1169     case PROP_ICON_NAME:
1170       gtk_window_set_icon_name (window, g_value_get_string (value));
1171       break;
1172     case PROP_SCREEN:
1173       gtk_window_set_screen (window, g_value_get_object (value));
1174       break;
1175     case PROP_TYPE_HINT:
1176       gtk_window_set_type_hint (window,
1177                                 g_value_get_enum (value));
1178       break;
1179     case PROP_SKIP_TASKBAR_HINT:
1180       gtk_window_set_skip_taskbar_hint (window,
1181                                         g_value_get_boolean (value));
1182       break;
1183     case PROP_SKIP_PAGER_HINT:
1184       gtk_window_set_skip_pager_hint (window,
1185                                       g_value_get_boolean (value));
1186       break;
1187     case PROP_URGENCY_HINT:
1188       gtk_window_set_urgency_hint (window,
1189                                    g_value_get_boolean (value));
1190       break;
1191     case PROP_ACCEPT_FOCUS:
1192       gtk_window_set_accept_focus (window,
1193                                    g_value_get_boolean (value));
1194       break;
1195     case PROP_FOCUS_ON_MAP:
1196       gtk_window_set_focus_on_map (window,
1197                                    g_value_get_boolean (value));
1198       break;
1199     case PROP_DECORATED:
1200       gtk_window_set_decorated (window, g_value_get_boolean (value));
1201       break;
1202     case PROP_DELETABLE:
1203       gtk_window_set_deletable (window, g_value_get_boolean (value));
1204       break;
1205     case PROP_GRAVITY:
1206       gtk_window_set_gravity (window, g_value_get_enum (value));
1207       break;
1208     case PROP_TRANSIENT_FOR:
1209       gtk_window_set_transient_for (window, g_value_get_object (value));
1210       break;
1211     case PROP_OPACITY:
1212       gtk_window_set_opacity (window, g_value_get_double (value));
1213       break;
1214     case PROP_HAS_RESIZE_GRIP:
1215       gtk_window_set_has_resize_grip (window, g_value_get_boolean (value));
1216       break;
1217     case PROP_MNEMONICS_VISIBLE:
1218       gtk_window_set_mnemonics_visible (window, g_value_get_boolean (value));
1219       break;
1220     default:
1221       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1222       break;
1223     }
1224 }
1225
1226 static void
1227 gtk_window_get_property (GObject      *object,
1228                          guint         prop_id,
1229                          GValue       *value,
1230                          GParamSpec   *pspec)
1231 {
1232   GtkWindow  *window = GTK_WINDOW (object);
1233   GtkWindowPrivate *priv = window->priv;
1234
1235   switch (prop_id)
1236     {
1237       GtkWindowGeometryInfo *info;
1238     case PROP_TYPE:
1239       g_value_set_enum (value, priv->type);
1240       break;
1241     case PROP_ROLE:
1242       g_value_set_string (value, priv->wm_role);
1243       break;
1244     case PROP_TITLE:
1245       g_value_set_string (value, priv->title);
1246       break;
1247     case PROP_RESIZABLE:
1248       g_value_set_boolean (value, priv->resizable);
1249       break;
1250     case PROP_MODAL:
1251       g_value_set_boolean (value, priv->modal);
1252       break;
1253     case PROP_WIN_POS:
1254       g_value_set_enum (value, priv->position);
1255       break;
1256     case PROP_DEFAULT_WIDTH:
1257       info = gtk_window_get_geometry_info (window, FALSE);
1258       if (!info)
1259         g_value_set_int (value, -1);
1260       else
1261         g_value_set_int (value, info->default_width);
1262       break;
1263     case PROP_DEFAULT_HEIGHT:
1264       info = gtk_window_get_geometry_info (window, FALSE);
1265       if (!info)
1266         g_value_set_int (value, -1);
1267       else
1268         g_value_set_int (value, info->default_height);
1269       break;
1270     case PROP_DESTROY_WITH_PARENT:
1271       g_value_set_boolean (value, priv->destroy_with_parent);
1272       break;
1273     case PROP_ICON:
1274       g_value_set_object (value, gtk_window_get_icon (window));
1275       break;
1276     case PROP_ICON_NAME:
1277       g_value_set_string (value, gtk_window_get_icon_name (window));
1278       break;
1279     case PROP_SCREEN:
1280       g_value_set_object (value, priv->screen);
1281       break;
1282     case PROP_IS_ACTIVE:
1283       g_value_set_boolean (value, priv->is_active);
1284       break;
1285     case PROP_HAS_TOPLEVEL_FOCUS:
1286       g_value_set_boolean (value, priv->has_toplevel_focus);
1287       break;
1288     case PROP_TYPE_HINT:
1289       g_value_set_enum (value, priv->type_hint);
1290       break;
1291     case PROP_SKIP_TASKBAR_HINT:
1292       g_value_set_boolean (value,
1293                            gtk_window_get_skip_taskbar_hint (window));
1294       break;
1295     case PROP_SKIP_PAGER_HINT:
1296       g_value_set_boolean (value,
1297                            gtk_window_get_skip_pager_hint (window));
1298       break;
1299     case PROP_URGENCY_HINT:
1300       g_value_set_boolean (value,
1301                            gtk_window_get_urgency_hint (window));
1302       break;
1303     case PROP_ACCEPT_FOCUS:
1304       g_value_set_boolean (value,
1305                            gtk_window_get_accept_focus (window));
1306       break;
1307     case PROP_FOCUS_ON_MAP:
1308       g_value_set_boolean (value,
1309                            gtk_window_get_focus_on_map (window));
1310       break;
1311     case PROP_DECORATED:
1312       g_value_set_boolean (value, gtk_window_get_decorated (window));
1313       break;
1314     case PROP_DELETABLE:
1315       g_value_set_boolean (value, gtk_window_get_deletable (window));
1316       break;
1317     case PROP_GRAVITY:
1318       g_value_set_enum (value, gtk_window_get_gravity (window));
1319       break;
1320     case PROP_TRANSIENT_FOR:
1321       g_value_set_object (value, gtk_window_get_transient_for (window));
1322       break;
1323     case PROP_OPACITY:
1324       g_value_set_double (value, gtk_window_get_opacity (window));
1325       break;
1326     case PROP_HAS_RESIZE_GRIP:
1327       g_value_set_boolean (value, priv->has_resize_grip);
1328       break;
1329     case PROP_RESIZE_GRIP_VISIBLE:
1330       g_value_set_boolean (value, gtk_window_resize_grip_is_visible (window));
1331       break;
1332     case PROP_MNEMONICS_VISIBLE:
1333       g_value_set_boolean (value, priv->mnemonics_visible);
1334       break;
1335     default:
1336       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1337       break;
1338     }
1339 }
1340
1341 static void
1342 gtk_window_buildable_interface_init (GtkBuildableIface *iface)
1343 {
1344   parent_buildable_iface = g_type_interface_peek_parent (iface);
1345   iface->set_buildable_property = gtk_window_buildable_set_buildable_property;
1346   iface->parser_finished = gtk_window_buildable_parser_finished;
1347   iface->custom_tag_start = gtk_window_buildable_custom_tag_start;
1348   iface->custom_finished = gtk_window_buildable_custom_finished;
1349 }
1350
1351 static void
1352 gtk_window_buildable_set_buildable_property (GtkBuildable        *buildable,
1353                                              GtkBuilder          *builder,
1354                                              const gchar         *name,
1355                                              const GValue        *value)
1356 {
1357   GtkWindow *window = GTK_WINDOW (buildable);
1358   GtkWindowPrivate *priv = window->priv;
1359
1360   if (strcmp (name, "visible") == 0 && g_value_get_boolean (value))
1361     priv->builder_visible = TRUE;
1362   else
1363     parent_buildable_iface->set_buildable_property (buildable, builder, name, value);
1364 }
1365
1366 static void
1367 gtk_window_buildable_parser_finished (GtkBuildable *buildable,
1368                                       GtkBuilder   *builder)
1369 {
1370   GtkWindow *window = GTK_WINDOW (buildable);
1371   GtkWindowPrivate *priv = window->priv;
1372   GObject *object;
1373   GSList *accels, *l;
1374
1375   if (priv->builder_visible)
1376     gtk_widget_show (GTK_WIDGET (buildable));
1377
1378   accels = g_object_get_qdata (G_OBJECT (buildable), quark_gtk_buildable_accels);
1379   for (l = accels; l; l = l->next)
1380     {
1381       object = gtk_builder_get_object (builder, l->data);
1382       if (!object)
1383         {
1384           g_warning ("Unknown accel group %s specified in window %s",
1385                      (const gchar*)l->data, gtk_buildable_get_name (buildable));
1386           continue;
1387         }
1388       gtk_window_add_accel_group (GTK_WINDOW (buildable),
1389                                   GTK_ACCEL_GROUP (object));
1390       g_free (l->data);
1391     }
1392
1393   g_object_set_qdata (G_OBJECT (buildable), quark_gtk_buildable_accels, NULL);
1394
1395   parent_buildable_iface->parser_finished (buildable, builder);
1396 }
1397
1398 typedef struct {
1399   GObject *object;
1400   GSList *items;
1401 } GSListSubParserData;
1402
1403 static void
1404 window_start_element (GMarkupParseContext *context,
1405                           const gchar         *element_name,
1406                           const gchar        **names,
1407                           const gchar        **values,
1408                           gpointer            user_data,
1409                           GError            **error)
1410 {
1411   guint i;
1412   GSListSubParserData *data = (GSListSubParserData*)user_data;
1413
1414   if (strcmp (element_name, "group") == 0)
1415     {
1416       for (i = 0; names[i]; i++)
1417         {
1418           if (strcmp (names[i], "name") == 0)
1419             data->items = g_slist_prepend (data->items, g_strdup (values[i]));
1420         }
1421     }
1422   else if (strcmp (element_name, "accel-groups") == 0)
1423     return;
1424   else
1425     g_warning ("Unsupported tag type for GtkWindow: %s\n",
1426                element_name);
1427
1428 }
1429
1430 static const GMarkupParser window_parser =
1431   {
1432     window_start_element
1433   };
1434
1435 static gboolean
1436 gtk_window_buildable_custom_tag_start (GtkBuildable  *buildable,
1437                                        GtkBuilder    *builder,
1438                                        GObject       *child,
1439                                        const gchar   *tagname,
1440                                        GMarkupParser *parser,
1441                                        gpointer      *data)
1442 {
1443   GSListSubParserData *parser_data;
1444
1445   if (parent_buildable_iface->custom_tag_start (buildable, builder, child, 
1446                                                 tagname, parser, data))
1447     return TRUE;
1448
1449   if (strcmp (tagname, "accel-groups") == 0)
1450     {
1451       parser_data = g_slice_new0 (GSListSubParserData);
1452       parser_data->items = NULL;
1453       parser_data->object = G_OBJECT (buildable);
1454
1455       *parser = window_parser;
1456       *data = parser_data;
1457       return TRUE;
1458     }
1459
1460   return FALSE;
1461 }
1462
1463 static void
1464 gtk_window_buildable_custom_finished (GtkBuildable  *buildable,
1465                                           GtkBuilder    *builder,
1466                                           GObject       *child,
1467                                           const gchar   *tagname,
1468                                           gpointer       user_data)
1469 {
1470   GSListSubParserData *data;
1471
1472   parent_buildable_iface->custom_finished (buildable, builder, child, 
1473                                            tagname, user_data);
1474
1475   if (strcmp (tagname, "accel-groups") != 0)
1476     return;
1477   
1478   data = (GSListSubParserData*)user_data;
1479
1480   g_object_set_qdata_full (G_OBJECT (buildable), quark_gtk_buildable_accels, 
1481                            data->items, (GDestroyNotify) g_slist_free);
1482
1483   g_slice_free (GSListSubParserData, data);
1484 }
1485
1486 /**
1487  * gtk_window_new:
1488  * @type: type of window
1489  * 
1490  * Creates a new #GtkWindow, which is a toplevel window that can
1491  * contain other widgets. Nearly always, the type of the window should
1492  * be #GTK_WINDOW_TOPLEVEL. If you're implementing something like a
1493  * popup menu from scratch (which is a bad idea, just use #GtkMenu),
1494  * you might use #GTK_WINDOW_POPUP. #GTK_WINDOW_POPUP is not for
1495  * dialogs, though in some other toolkits dialogs are called "popups".
1496  * In GTK+, #GTK_WINDOW_POPUP means a pop-up menu or pop-up tooltip.
1497  * On X11, popup windows are not controlled by the <link
1498  * linkend="gtk-X11-arch">window manager</link>.
1499  *
1500  * If you simply want an undecorated window (no window borders), use
1501  * gtk_window_set_decorated(), don't use #GTK_WINDOW_POPUP.
1502  * 
1503  * Return value: a new #GtkWindow.
1504  **/
1505 GtkWidget*
1506 gtk_window_new (GtkWindowType type)
1507 {
1508   GtkWindowPrivate *priv;
1509   GtkWindow *window;
1510
1511   g_return_val_if_fail (type >= GTK_WINDOW_TOPLEVEL && type <= GTK_WINDOW_POPUP, NULL);
1512
1513   window = g_object_new (GTK_TYPE_WINDOW, NULL);
1514   priv = window->priv;
1515
1516   priv->type = type;
1517
1518   return GTK_WIDGET (window);
1519 }
1520
1521 /**
1522  * gtk_window_set_title:
1523  * @window: a #GtkWindow
1524  * @title: title of the window
1525  * 
1526  * Sets the title of the #GtkWindow. The title of a window will be
1527  * displayed in its title bar; on the X Window System, the title bar
1528  * is rendered by the <link linkend="gtk-X11-arch">window
1529  * manager</link>, so exactly how the title appears to users may vary
1530  * according to a user's exact configuration. The title should help a
1531  * user distinguish this window from other windows they may have
1532  * open. A good title might include the application name and current
1533  * document filename, for example.
1534  * 
1535  **/
1536 void
1537 gtk_window_set_title (GtkWindow   *window,
1538                       const gchar *title)
1539 {
1540   GtkWindowPrivate *priv;
1541   GtkWidget *widget;
1542   char *new_title;
1543   
1544   g_return_if_fail (GTK_IS_WINDOW (window));
1545
1546   priv = window->priv;
1547   widget = GTK_WIDGET (window);
1548
1549   new_title = g_strdup (title);
1550   g_free (priv->title);
1551   priv->title = new_title;
1552
1553   if (gtk_widget_get_realized (widget))
1554     {
1555       gdk_window_set_title (gtk_widget_get_window (widget),
1556                             priv->title);
1557
1558       gtk_decorated_window_set_title (window, title);
1559     }
1560
1561   g_object_notify (G_OBJECT (window), "title");
1562 }
1563
1564 /**
1565  * gtk_window_get_title:
1566  * @window: a #GtkWindow
1567  *
1568  * Retrieves the title of the window. See gtk_window_set_title().
1569  *
1570  * Return value: the title of the window, or %NULL if none has
1571  *    been set explicitely. The returned string is owned by the widget
1572  *    and must not be modified or freed.
1573  **/
1574 G_CONST_RETURN gchar *
1575 gtk_window_get_title (GtkWindow *window)
1576 {
1577   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
1578
1579   return window->priv->title;
1580 }
1581
1582 /**
1583  * gtk_window_set_wmclass:
1584  * @window: a #GtkWindow
1585  * @wmclass_name: window name hint
1586  * @wmclass_class: window class hint
1587  *
1588  * Don't use this function. It sets the X Window System "class" and
1589  * "name" hints for a window.  According to the ICCCM, you should
1590  * always set these to the same value for all windows in an
1591  * application, and GTK+ sets them to that value by default, so calling
1592  * this function is sort of pointless. However, you may want to call
1593  * gtk_window_set_role() on each window in your application, for the
1594  * benefit of the session manager. Setting the role allows the window
1595  * manager to restore window positions when loading a saved session.
1596  * 
1597  **/
1598 void
1599 gtk_window_set_wmclass (GtkWindow *window,
1600                         const gchar *wmclass_name,
1601                         const gchar *wmclass_class)
1602 {
1603   GtkWindowPrivate *priv;
1604
1605   g_return_if_fail (GTK_IS_WINDOW (window));
1606
1607   priv = window->priv;
1608
1609   g_free (priv->wmclass_name);
1610   priv->wmclass_name = g_strdup (wmclass_name);
1611
1612   g_free (priv->wmclass_class);
1613   priv->wmclass_class = g_strdup (wmclass_class);
1614
1615   if (gtk_widget_get_realized (GTK_WIDGET (window)))
1616     g_warning ("gtk_window_set_wmclass: shouldn't set wmclass after window is realized!\n");
1617 }
1618
1619 /**
1620  * gtk_window_set_role:
1621  * @window: a #GtkWindow
1622  * @role: unique identifier for the window to be used when restoring a session
1623  *
1624  * This function is only useful on X11, not with other GTK+ targets.
1625  * 
1626  * In combination with the window title, the window role allows a
1627  * <link linkend="gtk-X11-arch">window manager</link> to identify "the
1628  * same" window when an application is restarted. So for example you
1629  * might set the "toolbox" role on your app's toolbox window, so that
1630  * when the user restarts their session, the window manager can put
1631  * the toolbox back in the same place.
1632  *
1633  * If a window already has a unique title, you don't need to set the
1634  * role, since the WM can use the title to identify the window when
1635  * restoring the session.
1636  * 
1637  **/
1638 void
1639 gtk_window_set_role (GtkWindow   *window,
1640                      const gchar *role)
1641 {
1642   GtkWindowPrivate *priv;
1643   char *new_role;
1644   
1645   g_return_if_fail (GTK_IS_WINDOW (window));
1646
1647   priv = window->priv;
1648
1649   new_role = g_strdup (role);
1650   g_free (priv->wm_role);
1651   priv->wm_role = new_role;
1652
1653   if (gtk_widget_get_realized (GTK_WIDGET (window)))
1654     gdk_window_set_role (gtk_widget_get_window (GTK_WIDGET (window)),
1655                          priv->wm_role);
1656
1657   g_object_notify (G_OBJECT (window), "role");
1658 }
1659
1660 /**
1661  * gtk_window_set_startup_id:
1662  * @window: a #GtkWindow
1663  * @startup_id: a string with startup-notification identifier
1664  *
1665  * Startup notification identifiers are used by desktop environment to 
1666  * track application startup, to provide user feedback and other 
1667  * features. This function changes the corresponding property on the
1668  * underlying GdkWindow. Normally, startup identifier is managed 
1669  * automatically and you should only use this function in special cases
1670  * like transferring focus from other processes. You should use this
1671  * function before calling gtk_window_present() or any equivalent
1672  * function generating a window map event.
1673  *
1674  * This function is only useful on X11, not with other GTK+ targets.
1675  * 
1676  * Since: 2.12
1677  **/
1678 void
1679 gtk_window_set_startup_id (GtkWindow   *window,
1680                            const gchar *startup_id)
1681 {
1682   GtkWindowPrivate *priv;
1683   GtkWidget *widget;
1684
1685   g_return_if_fail (GTK_IS_WINDOW (window));
1686
1687   priv = window->priv;
1688   widget = GTK_WIDGET (window);
1689
1690   g_free (priv->startup_id);
1691   priv->startup_id = g_strdup (startup_id);
1692
1693   if (gtk_widget_get_realized (widget))
1694     {
1695       GdkWindow *gdk_window;
1696       guint32 timestamp = extract_time_from_startup_id (priv->startup_id);
1697
1698       gdk_window = gtk_widget_get_window (widget);
1699
1700 #ifdef GDK_WINDOWING_X11
1701       if (timestamp != GDK_CURRENT_TIME)
1702         gdk_x11_window_set_user_time (gdk_window, timestamp);
1703 #endif
1704
1705       /* Here we differentiate real and "fake" startup notification IDs,
1706        * constructed on purpose just to pass interaction timestamp
1707        */
1708       if (startup_id_is_fake (priv->startup_id))
1709         gtk_window_present_with_time (window, timestamp);
1710       else 
1711         {
1712           gdk_window_set_startup_id (gdk_window,
1713                                      priv->startup_id);
1714           
1715           /* If window is mapped, terminate the startup-notification too */
1716           if (gtk_widget_get_mapped (widget) &&
1717               !disable_startup_notification)
1718             gdk_notify_startup_complete_with_id (priv->startup_id);
1719         }
1720     }
1721
1722   g_object_notify (G_OBJECT (window), "startup-id");
1723 }
1724
1725 /**
1726  * gtk_window_get_role:
1727  * @window: a #GtkWindow
1728  *
1729  * Returns the role of the window. See gtk_window_set_role() for
1730  * further explanation.
1731  *
1732  * Return value: the role of the window if set, or %NULL. The
1733  *   returned is owned by the widget and must not be modified
1734  *   or freed.
1735  **/
1736 G_CONST_RETURN gchar *
1737 gtk_window_get_role (GtkWindow *window)
1738 {
1739   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
1740
1741   return window->priv->wm_role;
1742 }
1743
1744 /**
1745  * gtk_window_set_focus:
1746  * @window: a #GtkWindow
1747  * @focus: (allow-none): widget to be the new focus widget, or %NULL to unset
1748  *   any focus widget for the toplevel window.
1749  *
1750  * If @focus is not the current focus widget, and is focusable, sets
1751  * it as the focus widget for the window. If @focus is %NULL, unsets
1752  * the focus widget for this window. To set the focus to a particular
1753  * widget in the toplevel, it is usually more convenient to use
1754  * gtk_widget_grab_focus() instead of this function.
1755  **/
1756 void
1757 gtk_window_set_focus (GtkWindow *window,
1758                       GtkWidget *focus)
1759 {
1760   GtkWindowPrivate *priv;
1761   GtkWidget *parent;
1762
1763   g_return_if_fail (GTK_IS_WINDOW (window));
1764
1765   priv = window->priv;
1766
1767   if (focus)
1768     {
1769       g_return_if_fail (GTK_IS_WIDGET (focus));
1770       g_return_if_fail (gtk_widget_get_can_focus (focus));
1771     }
1772
1773   if (focus)
1774     gtk_widget_grab_focus (focus);
1775   else
1776     {
1777       /* Clear the existing focus chain, so that when we focus into
1778        * the window again, we start at the beginnning.
1779        */
1780       GtkWidget *widget = priv->focus_widget;
1781       if (widget)
1782         {
1783           while ((parent = gtk_widget_get_parent (widget)))
1784             {
1785               widget = parent;
1786               gtk_container_set_focus_child (GTK_CONTAINER (widget), NULL);
1787             }
1788         }
1789       
1790       _gtk_window_internal_set_focus (window, NULL);
1791     }
1792 }
1793
1794 void
1795 _gtk_window_internal_set_focus (GtkWindow *window,
1796                                 GtkWidget *focus)
1797 {
1798   GtkWindowPrivate *priv;
1799
1800   g_return_if_fail (GTK_IS_WINDOW (window));
1801
1802   priv = window->priv;
1803
1804   if ((priv->focus_widget != focus) ||
1805       (focus && !gtk_widget_has_focus (focus)))
1806     g_signal_emit (window, window_signals[SET_FOCUS], 0, focus);
1807 }
1808
1809 /**
1810  * gtk_window_set_default:
1811  * @window: a #GtkWindow
1812  * @default_widget: (allow-none): widget to be the default, or %NULL to unset the
1813  *                  default widget for the toplevel.
1814  *
1815  * The default widget is the widget that's activated when the user
1816  * presses Enter in a dialog (for example). This function sets or
1817  * unsets the default widget for a #GtkWindow about. When setting
1818  * (rather than unsetting) the default widget it's generally easier to
1819  * call gtk_widget_grab_focus() on the widget. Before making a widget
1820  * the default widget, you must set the #GTK_CAN_DEFAULT flag on the
1821  * widget you'd like to make the default using GTK_WIDGET_SET_FLAGS().
1822  **/
1823 void
1824 gtk_window_set_default (GtkWindow *window,
1825                         GtkWidget *default_widget)
1826 {
1827   GtkWindowPrivate *priv;
1828
1829   g_return_if_fail (GTK_IS_WINDOW (window));
1830
1831   priv = window->priv;
1832
1833   if (default_widget)
1834     g_return_if_fail (gtk_widget_get_can_default (default_widget));
1835
1836   if (priv->default_widget != default_widget)
1837     {
1838       GtkWidget *old_default_widget = NULL;
1839       
1840       if (default_widget)
1841         g_object_ref (default_widget);
1842
1843       if (priv->default_widget)
1844         {
1845           old_default_widget = priv->default_widget;
1846
1847           if (priv->focus_widget != priv->default_widget ||
1848               !gtk_widget_get_receives_default (priv->default_widget))
1849             _gtk_widget_set_has_default (priv->default_widget, FALSE);
1850
1851           gtk_widget_queue_draw (priv->default_widget);
1852         }
1853
1854       priv->default_widget = default_widget;
1855
1856       if (priv->default_widget)
1857         {
1858           if (priv->focus_widget == NULL ||
1859               !gtk_widget_get_receives_default (priv->focus_widget))
1860             _gtk_widget_set_has_default (priv->default_widget, TRUE);
1861
1862           gtk_widget_queue_draw (priv->default_widget);
1863         }
1864
1865       if (old_default_widget)
1866         g_object_notify (G_OBJECT (old_default_widget), "has-default");
1867       
1868       if (default_widget)
1869         {
1870           g_object_notify (G_OBJECT (default_widget), "has-default");
1871           g_object_unref (default_widget);
1872         }
1873     }
1874 }
1875
1876 /**
1877  * gtk_window_get_default_widget:
1878  * @window: a #GtkWindow
1879  *
1880  * Returns the default widget for @window. See gtk_window_set_default()
1881  * for more details.
1882  *
1883  * Returns: (transfer none): the default widget, or %NULL if there is none.
1884  *
1885  * Since: 2.14
1886  **/
1887 GtkWidget *
1888 gtk_window_get_default_widget (GtkWindow *window)
1889 {
1890   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
1891
1892   return window->priv->default_widget;
1893 }
1894
1895 static gboolean
1896 handle_keys_changed (gpointer data)
1897 {
1898   GtkWindow *window = GTK_WINDOW (data);
1899   GtkWindowPrivate *priv = window->priv;
1900
1901   if (priv->keys_changed_handler)
1902     {
1903       g_source_remove (priv->keys_changed_handler);
1904       priv->keys_changed_handler = 0;
1905     }
1906
1907   g_signal_emit (window, window_signals[KEYS_CHANGED], 0);
1908   
1909   return FALSE;
1910 }
1911
1912 static void
1913 gtk_window_notify_keys_changed (GtkWindow *window)
1914 {
1915   GtkWindowPrivate *priv = window->priv;
1916
1917   if (!priv->keys_changed_handler)
1918     priv->keys_changed_handler = gdk_threads_add_idle (handle_keys_changed, window);
1919 }
1920
1921 /**
1922  * gtk_window_add_accel_group:
1923  * @window: window to attach accelerator group to
1924  * @accel_group: a #GtkAccelGroup
1925  *
1926  * Associate @accel_group with @window, such that calling
1927  * gtk_accel_groups_activate() on @window will activate accelerators
1928  * in @accel_group.
1929  **/
1930 void
1931 gtk_window_add_accel_group (GtkWindow     *window,
1932                             GtkAccelGroup *accel_group)
1933 {
1934   g_return_if_fail (GTK_IS_WINDOW (window));
1935   g_return_if_fail (GTK_IS_ACCEL_GROUP (accel_group));
1936
1937   _gtk_accel_group_attach (accel_group, G_OBJECT (window));
1938   g_signal_connect_object (accel_group, "accel-changed",
1939                            G_CALLBACK (gtk_window_notify_keys_changed),
1940                            window, G_CONNECT_SWAPPED);
1941   gtk_window_notify_keys_changed (window);
1942 }
1943
1944 /**
1945  * gtk_window_remove_accel_group:
1946  * @window: a #GtkWindow
1947  * @accel_group: a #GtkAccelGroup
1948  *
1949  * Reverses the effects of gtk_window_add_accel_group().
1950  **/
1951 void
1952 gtk_window_remove_accel_group (GtkWindow     *window,
1953                                GtkAccelGroup *accel_group)
1954 {
1955   g_return_if_fail (GTK_IS_WINDOW (window));
1956   g_return_if_fail (GTK_IS_ACCEL_GROUP (accel_group));
1957
1958   g_signal_handlers_disconnect_by_func (accel_group,
1959                                         gtk_window_notify_keys_changed,
1960                                         window);
1961   _gtk_accel_group_detach (accel_group, G_OBJECT (window));
1962   gtk_window_notify_keys_changed (window);
1963 }
1964
1965 static GtkMnemonicHash *
1966 gtk_window_get_mnemonic_hash (GtkWindow *window,
1967                               gboolean   create)
1968 {
1969   GtkWindowPrivate *private = window->priv;
1970
1971   if (!private->mnemonic_hash && create)
1972     private->mnemonic_hash = _gtk_mnemonic_hash_new ();
1973
1974   return private->mnemonic_hash;
1975 }
1976
1977 /**
1978  * gtk_window_add_mnemonic:
1979  * @window: a #GtkWindow
1980  * @keyval: the mnemonic
1981  * @target: the widget that gets activated by the mnemonic
1982  *
1983  * Adds a mnemonic to this window.
1984  */
1985 void
1986 gtk_window_add_mnemonic (GtkWindow *window,
1987                          guint      keyval,
1988                          GtkWidget *target)
1989 {
1990   g_return_if_fail (GTK_IS_WINDOW (window));
1991   g_return_if_fail (GTK_IS_WIDGET (target));
1992
1993   _gtk_mnemonic_hash_add (gtk_window_get_mnemonic_hash (window, TRUE),
1994                           keyval, target);
1995   gtk_window_notify_keys_changed (window);
1996 }
1997
1998 /**
1999  * gtk_window_remove_mnemonic:
2000  * @window: a #GtkWindow
2001  * @keyval: the mnemonic
2002  * @target: the widget that gets activated by the mnemonic
2003  *
2004  * Removes a mnemonic from this window.
2005  */
2006 void
2007 gtk_window_remove_mnemonic (GtkWindow *window,
2008                             guint      keyval,
2009                             GtkWidget *target)
2010 {
2011   g_return_if_fail (GTK_IS_WINDOW (window));
2012   g_return_if_fail (GTK_IS_WIDGET (target));
2013   
2014   _gtk_mnemonic_hash_remove (gtk_window_get_mnemonic_hash (window, TRUE),
2015                              keyval, target);
2016   gtk_window_notify_keys_changed (window);
2017 }
2018
2019 /**
2020  * gtk_window_mnemonic_activate:
2021  * @window: a #GtkWindow
2022  * @keyval: the mnemonic
2023  * @modifier: the modifiers 
2024  * @returns: %TRUE if the activation is done. 
2025  * 
2026  * Activates the targets associated with the mnemonic.
2027  */
2028 gboolean
2029 gtk_window_mnemonic_activate (GtkWindow      *window,
2030                               guint           keyval,
2031                               GdkModifierType modifier)
2032 {
2033   GtkWindowPrivate *priv;
2034
2035   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2036
2037   priv = window->priv;
2038
2039   if (priv->mnemonic_modifier == (modifier & gtk_accelerator_get_default_mod_mask ()))
2040       {
2041         GtkMnemonicHash *mnemonic_hash = gtk_window_get_mnemonic_hash (window, FALSE);
2042         if (mnemonic_hash)
2043           return _gtk_mnemonic_hash_activate (mnemonic_hash, keyval);
2044       }
2045
2046   return FALSE;
2047 }
2048
2049 /**
2050  * gtk_window_set_mnemonic_modifier:
2051  * @window: a #GtkWindow
2052  * @modifier: the modifier mask used to activate
2053  *               mnemonics on this window.
2054  *
2055  * Sets the mnemonic modifier for this window. 
2056  **/
2057 void
2058 gtk_window_set_mnemonic_modifier (GtkWindow      *window,
2059                                   GdkModifierType modifier)
2060 {
2061   GtkWindowPrivate *priv;
2062
2063   g_return_if_fail (GTK_IS_WINDOW (window));
2064   g_return_if_fail ((modifier & ~GDK_MODIFIER_MASK) == 0);
2065
2066   priv = window->priv;
2067
2068   priv->mnemonic_modifier = modifier;
2069   gtk_window_notify_keys_changed (window);
2070 }
2071
2072 /**
2073  * gtk_window_get_mnemonic_modifier:
2074  * @window: a #GtkWindow
2075  *
2076  * Returns the mnemonic modifier for this window. See
2077  * gtk_window_set_mnemonic_modifier().
2078  *
2079  * Return value: the modifier mask used to activate
2080  *               mnemonics on this window.
2081  **/
2082 GdkModifierType
2083 gtk_window_get_mnemonic_modifier (GtkWindow *window)
2084 {
2085   g_return_val_if_fail (GTK_IS_WINDOW (window), 0);
2086
2087   return window->priv->mnemonic_modifier;
2088 }
2089
2090 /**
2091  * gtk_window_set_position:
2092  * @window: a #GtkWindow.
2093  * @position: a position constraint.
2094  *
2095  * Sets a position constraint for this window. If the old or new
2096  * constraint is %GTK_WIN_POS_CENTER_ALWAYS, this will also cause
2097  * the window to be repositioned to satisfy the new constraint. 
2098  **/
2099 void
2100 gtk_window_set_position (GtkWindow         *window,
2101                          GtkWindowPosition  position)
2102 {
2103   GtkWindowPrivate *priv;
2104
2105   g_return_if_fail (GTK_IS_WINDOW (window));
2106
2107   priv = window->priv;
2108
2109   if (position == GTK_WIN_POS_CENTER_ALWAYS ||
2110       priv->position == GTK_WIN_POS_CENTER_ALWAYS)
2111     {
2112       GtkWindowGeometryInfo *info;
2113
2114       info = gtk_window_get_geometry_info (window, TRUE);
2115
2116       /* this flag causes us to re-request the CENTER_ALWAYS
2117        * constraint in gtk_window_move_resize(), see
2118        * comment in that function.
2119        */
2120       info->position_constraints_changed = TRUE;
2121
2122       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
2123     }
2124
2125   priv->position = position;
2126   
2127   g_object_notify (G_OBJECT (window), "window-position");
2128 }
2129
2130 /**
2131  * gtk_window_activate_focus:
2132  * @window: a #GtkWindow
2133  * 
2134  * Activates the current focused widget within the window.
2135  * 
2136  * Return value: %TRUE if a widget got activated.
2137  **/
2138 gboolean 
2139 gtk_window_activate_focus (GtkWindow *window)
2140 {
2141   GtkWindowPrivate *priv;
2142
2143   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2144
2145   priv = window->priv;
2146
2147   if (priv->focus_widget && gtk_widget_is_sensitive (priv->focus_widget))
2148     return gtk_widget_activate (priv->focus_widget);
2149
2150   return FALSE;
2151 }
2152
2153 /**
2154  * gtk_window_get_focus:
2155  * @window: a #GtkWindow
2156  * 
2157  * Retrieves the current focused widget within the window.
2158  * Note that this is the widget that would have the focus
2159  * if the toplevel window focused; if the toplevel window
2160  * is not focused then  <literal>gtk_widget_has_focus (widget)</literal> will
2161  * not be %TRUE for the widget.
2162  *
2163  * Return value: (transfer none): the currently focused widget, or %NULL if there is none.
2164  **/
2165 GtkWidget *
2166 gtk_window_get_focus (GtkWindow *window)
2167 {
2168   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
2169
2170   return window->priv->focus_widget;
2171 }
2172
2173 /**
2174  * gtk_window_activate_default:
2175  * @window: a #GtkWindow
2176  * 
2177  * Activates the default widget for the window, unless the current 
2178  * focused widget has been configured to receive the default action 
2179  * (see gtk_widget_set_receives_default()), in which case the
2180  * focused widget is activated. 
2181  * 
2182  * Return value: %TRUE if a widget got activated.
2183  **/
2184 gboolean
2185 gtk_window_activate_default (GtkWindow *window)
2186 {
2187   GtkWindowPrivate *priv;
2188
2189   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2190
2191   priv = window->priv;
2192
2193   if (priv->default_widget && gtk_widget_is_sensitive (priv->default_widget) &&
2194       (!priv->focus_widget || !gtk_widget_get_receives_default (priv->focus_widget)))
2195     return gtk_widget_activate (priv->default_widget);
2196   else if (priv->focus_widget && gtk_widget_is_sensitive (priv->focus_widget))
2197     return gtk_widget_activate (priv->focus_widget);
2198
2199   return FALSE;
2200 }
2201
2202 /**
2203  * gtk_window_set_modal:
2204  * @window: a #GtkWindow
2205  * @modal: whether the window is modal
2206  * 
2207  * Sets a window modal or non-modal. Modal windows prevent interaction
2208  * with other windows in the same application. To keep modal dialogs
2209  * on top of main application windows, use
2210  * gtk_window_set_transient_for() to make the dialog transient for the
2211  * parent; most <link linkend="gtk-X11-arch">window managers</link>
2212  * will then disallow lowering the dialog below the parent.
2213  * 
2214  * 
2215  **/
2216 void
2217 gtk_window_set_modal (GtkWindow *window,
2218                       gboolean   modal)
2219 {
2220   GtkWindowPrivate *priv;
2221   GtkWidget *widget;
2222
2223   g_return_if_fail (GTK_IS_WINDOW (window));
2224
2225   priv = window->priv;
2226
2227   modal = modal != FALSE;
2228   if (priv->modal == modal)
2229     return;
2230
2231   priv->modal = modal;
2232   widget = GTK_WIDGET (window);
2233   
2234   /* adjust desired modality state */
2235   if (gtk_widget_get_realized (widget))
2236     {
2237       if (priv->modal)
2238         gdk_window_set_modal_hint (gtk_widget_get_window (widget), TRUE);
2239       else
2240         gdk_window_set_modal_hint (gtk_widget_get_window (widget), FALSE);
2241     }
2242
2243   if (gtk_widget_get_visible (widget))
2244     {
2245       if (priv->modal)
2246         gtk_grab_add (widget);
2247       else
2248         gtk_grab_remove (widget);
2249     }
2250
2251   g_object_notify (G_OBJECT (window), "modal");
2252 }
2253
2254 /**
2255  * gtk_window_get_modal:
2256  * @window: a #GtkWindow
2257  * 
2258  * Returns whether the window is modal. See gtk_window_set_modal().
2259  *
2260  * Return value: %TRUE if the window is set to be modal and
2261  *               establishes a grab when shown
2262  **/
2263 gboolean
2264 gtk_window_get_modal (GtkWindow *window)
2265 {
2266   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2267
2268   return window->priv->modal;
2269 }
2270
2271 /**
2272  * gtk_window_list_toplevels:
2273  * 
2274  * Returns a list of all existing toplevel windows. The widgets
2275  * in the list are not individually referenced. If you want
2276  * to iterate through the list and perform actions involving
2277  * callbacks that might destroy the widgets, you <emphasis>must</emphasis> call
2278  * <literal>g_list_foreach (result, (GFunc)g_object_ref, NULL)</literal> first, and
2279  * then unref all the widgets afterwards.
2280  *
2281  * Return value: (element-type GtkWidget) (transfer container): list of toplevel widgets
2282  **/
2283 GList*
2284 gtk_window_list_toplevels (void)
2285 {
2286   GList *list = NULL;
2287   GSList *slist;
2288
2289   for (slist = toplevel_list; slist; slist = slist->next)
2290     list = g_list_prepend (list, slist->data);
2291
2292   return list;
2293 }
2294
2295 void
2296 gtk_window_add_embedded_xid (GtkWindow *window, GdkNativeWindow xid)
2297 {
2298   GList *embedded_windows;
2299
2300   g_return_if_fail (GTK_IS_WINDOW (window));
2301
2302   embedded_windows = g_object_get_qdata (G_OBJECT (window), quark_gtk_embedded);
2303   if (embedded_windows)
2304     g_object_steal_qdata (G_OBJECT (window), quark_gtk_embedded);
2305   embedded_windows = g_list_prepend (embedded_windows,
2306                                      GUINT_TO_POINTER (xid));
2307
2308   g_object_set_qdata_full (G_OBJECT (window), quark_gtk_embedded, 
2309                            embedded_windows,
2310                            embedded_windows ?
2311                            (GDestroyNotify) g_list_free : NULL);
2312 }
2313
2314 void
2315 gtk_window_remove_embedded_xid (GtkWindow *window, GdkNativeWindow xid)
2316 {
2317   GList *embedded_windows;
2318   GList *node;
2319
2320   g_return_if_fail (GTK_IS_WINDOW (window));
2321   
2322   embedded_windows = g_object_get_qdata (G_OBJECT (window), quark_gtk_embedded);
2323   if (embedded_windows)
2324     g_object_steal_qdata (G_OBJECT (window), quark_gtk_embedded);
2325
2326   node = g_list_find (embedded_windows, GUINT_TO_POINTER (xid));
2327   if (node)
2328     {
2329       embedded_windows = g_list_remove_link (embedded_windows, node);
2330       g_list_free_1 (node);
2331     }
2332   
2333   g_object_set_qdata_full (G_OBJECT (window), quark_gtk_embedded,
2334                            embedded_windows,
2335                            embedded_windows ?
2336                            (GDestroyNotify) g_list_free : NULL);
2337 }
2338
2339 static void
2340 gtk_window_dispose (GObject *object)
2341 {
2342   GtkWindow *window = GTK_WINDOW (object);
2343
2344   gtk_window_set_focus (window, NULL);
2345   gtk_window_set_default (window, NULL);
2346
2347   G_OBJECT_CLASS (gtk_window_parent_class)->dispose (object);
2348 }
2349
2350 static void
2351 parent_destroyed_callback (GtkWindow *parent, GtkWindow *child)
2352 {
2353   gtk_widget_destroy (GTK_WIDGET (child));
2354 }
2355
2356 static void
2357 connect_parent_destroyed (GtkWindow *window)
2358 {
2359   GtkWindowPrivate *priv = window->priv;
2360
2361   if (priv->transient_parent)
2362     {
2363       g_signal_connect (priv->transient_parent,
2364                         "destroy",
2365                         G_CALLBACK (parent_destroyed_callback),
2366                         window);
2367     }  
2368 }
2369
2370 static void
2371 disconnect_parent_destroyed (GtkWindow *window)
2372 {
2373   GtkWindowPrivate *priv = window->priv;
2374
2375   if (priv->transient_parent)
2376     {
2377       g_signal_handlers_disconnect_by_func (priv->transient_parent,
2378                                             parent_destroyed_callback,
2379                                             window);
2380     }
2381 }
2382
2383 static void
2384 gtk_window_transient_parent_realized (GtkWidget *parent,
2385                                       GtkWidget *window)
2386 {
2387   if (gtk_widget_get_realized (window))
2388     gdk_window_set_transient_for (gtk_widget_get_window (window),
2389                                   gtk_widget_get_window (parent));
2390 }
2391
2392 static void
2393 gtk_window_transient_parent_unrealized (GtkWidget *parent,
2394                                         GtkWidget *window)
2395 {
2396   if (gtk_widget_get_realized (window))
2397     gdk_property_delete (gtk_widget_get_window (window),
2398                          gdk_atom_intern_static_string ("WM_TRANSIENT_FOR"));
2399 }
2400
2401 static void
2402 gtk_window_transient_parent_screen_changed (GtkWindow   *parent,
2403                                             GParamSpec  *pspec,
2404                                             GtkWindow   *window)
2405 {
2406   gtk_window_set_screen (window, parent->priv->screen);
2407 }
2408
2409 static void       
2410 gtk_window_unset_transient_for  (GtkWindow *window)
2411 {
2412   GtkWindowPrivate *priv = window->priv;
2413
2414   if (priv->transient_parent)
2415     {
2416       g_signal_handlers_disconnect_by_func (priv->transient_parent,
2417                                             gtk_window_transient_parent_realized,
2418                                             window);
2419       g_signal_handlers_disconnect_by_func (priv->transient_parent,
2420                                             gtk_window_transient_parent_unrealized,
2421                                             window);
2422       g_signal_handlers_disconnect_by_func (priv->transient_parent,
2423                                             gtk_window_transient_parent_screen_changed,
2424                                             window);
2425       g_signal_handlers_disconnect_by_func (priv->transient_parent,
2426                                             gtk_widget_destroyed,
2427                                             &priv->transient_parent);
2428
2429       if (priv->destroy_with_parent)
2430         disconnect_parent_destroyed (window);
2431
2432       priv->transient_parent = NULL;
2433
2434       if (priv->transient_parent_group)
2435         {
2436           priv->transient_parent_group = FALSE;
2437           gtk_window_group_remove_window (priv->group,
2438                                           window);
2439         }
2440     }
2441 }
2442
2443 /**
2444  * gtk_window_set_transient_for:
2445  * @window: a #GtkWindow
2446  * @parent: (allow-none): parent window, or %NULL
2447  *
2448  * Dialog windows should be set transient for the main application
2449  * window they were spawned from. This allows <link
2450  * linkend="gtk-X11-arch">window managers</link> to e.g. keep the
2451  * dialog on top of the main window, or center the dialog over the
2452  * main window. gtk_dialog_new_with_buttons() and other convenience
2453  * functions in GTK+ will sometimes call
2454  * gtk_window_set_transient_for() on your behalf.
2455  *
2456  * Passing %NULL for @parent unsets the current transient window.
2457  *
2458  * On Windows, this function puts the child window on top of the parent,
2459  * much as the window manager would have done on X.
2460  */
2461 void
2462 gtk_window_set_transient_for  (GtkWindow *window,
2463                                GtkWindow *parent)
2464 {
2465   GtkWindowPrivate *priv;
2466
2467   g_return_if_fail (GTK_IS_WINDOW (window));
2468   g_return_if_fail (parent == NULL || GTK_IS_WINDOW (parent));
2469   g_return_if_fail (window != parent);
2470
2471   priv = window->priv;
2472
2473   if (priv->transient_parent)
2474     {
2475       if (gtk_widget_get_realized (GTK_WIDGET (window)) &&
2476           gtk_widget_get_realized (GTK_WIDGET (priv->transient_parent)) &&
2477           (!parent || !gtk_widget_get_realized (GTK_WIDGET (parent))))
2478         gtk_window_transient_parent_unrealized (GTK_WIDGET (priv->transient_parent),
2479                                                 GTK_WIDGET (window));
2480
2481       gtk_window_unset_transient_for (window);
2482     }
2483
2484   priv->transient_parent = parent;
2485
2486   if (parent)
2487     {
2488       g_signal_connect (parent, "destroy",
2489                         G_CALLBACK (gtk_widget_destroyed),
2490                         &priv->transient_parent);
2491       g_signal_connect (parent, "realize",
2492                         G_CALLBACK (gtk_window_transient_parent_realized),
2493                         window);
2494       g_signal_connect (parent, "unrealize",
2495                         G_CALLBACK (gtk_window_transient_parent_unrealized),
2496                         window);
2497       g_signal_connect (parent, "notify::screen",
2498                         G_CALLBACK (gtk_window_transient_parent_screen_changed),
2499                         window);
2500
2501       gtk_window_set_screen (window, parent->priv->screen);
2502
2503       if (priv->destroy_with_parent)
2504         connect_parent_destroyed (window);
2505       
2506       if (gtk_widget_get_realized (GTK_WIDGET (window)) &&
2507           gtk_widget_get_realized (GTK_WIDGET (parent)))
2508         gtk_window_transient_parent_realized (GTK_WIDGET (parent),
2509                                               GTK_WIDGET (window));
2510
2511       if (parent->priv->group)
2512         {
2513           gtk_window_group_add_window (parent->priv->group, window);
2514           priv->transient_parent_group = TRUE;
2515         }
2516     }
2517 }
2518
2519 /**
2520  * gtk_window_get_transient_for:
2521  * @window: a #GtkWindow
2522  *
2523  * Fetches the transient parent for this window. See
2524  * gtk_window_set_transient_for().
2525  *
2526  * Return value: (transfer none): the transient parent for this window, or %NULL
2527  *    if no transient parent has been set.
2528  **/
2529 GtkWindow *
2530 gtk_window_get_transient_for (GtkWindow *window)
2531 {
2532   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
2533
2534   return window->priv->transient_parent;
2535 }
2536
2537 /**
2538  * gtk_window_set_opacity:
2539  * @window: a #GtkWindow
2540  * @opacity: desired opacity, between 0 and 1
2541  *
2542  * Request the windowing system to make @window partially transparent,
2543  * with opacity 0 being fully transparent and 1 fully opaque. (Values
2544  * of the opacity parameter are clamped to the [0,1] range.) On X11
2545  * this has any effect only on X screens with a compositing manager
2546  * running. See gtk_widget_is_composited(). On Windows it should work
2547  * always.
2548  * 
2549  * Note that setting a window's opacity after the window has been
2550  * shown causes it to flicker once on Windows.
2551  *
2552  * Since: 2.12
2553  **/
2554 void       
2555 gtk_window_set_opacity  (GtkWindow *window, 
2556                          gdouble    opacity)
2557 {
2558   GtkWindowPrivate *priv;
2559
2560   g_return_if_fail (GTK_IS_WINDOW (window));
2561
2562   priv = window->priv;
2563
2564   if (opacity < 0.0)
2565     opacity = 0.0;
2566   else if (opacity > 1.0)
2567     opacity = 1.0;
2568
2569   priv->opacity_set = TRUE;
2570   priv->opacity = opacity;
2571
2572   if (gtk_widget_get_realized (GTK_WIDGET (window)))
2573     gdk_window_set_opacity (gtk_widget_get_window (GTK_WIDGET (window)),
2574                             priv->opacity);
2575 }
2576
2577 /**
2578  * gtk_window_get_opacity:
2579  * @window: a #GtkWindow
2580  *
2581  * Fetches the requested opacity for this window. See
2582  * gtk_window_set_opacity().
2583  *
2584  * Return value: the requested opacity for this window.
2585  *
2586  * Since: 2.12
2587  **/
2588 gdouble
2589 gtk_window_get_opacity (GtkWindow *window)
2590 {
2591   g_return_val_if_fail (GTK_IS_WINDOW (window), 0.0);
2592
2593   return window->priv->opacity;
2594 }
2595
2596 /**
2597  * gtk_window_set_type_hint:
2598  * @window: a #GtkWindow
2599  * @hint: the window type
2600  *
2601  * By setting the type hint for the window, you allow the window
2602  * manager to decorate and handle the window in a way which is
2603  * suitable to the function of the window in your application.
2604  *
2605  * This function should be called before the window becomes visible.
2606  *
2607  * gtk_dialog_new_with_buttons() and other convenience functions in GTK+
2608  * will sometimes call gtk_window_set_type_hint() on your behalf.
2609  * 
2610  **/
2611 void
2612 gtk_window_set_type_hint (GtkWindow           *window, 
2613                           GdkWindowTypeHint    hint)
2614 {
2615   GtkWindowPrivate *priv;
2616
2617   g_return_if_fail (GTK_IS_WINDOW (window));
2618   g_return_if_fail (!gtk_widget_get_mapped (GTK_WIDGET (window)));
2619
2620   priv = window->priv;
2621
2622   if (hint < GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU)
2623     priv->gdk_type_hint = hint;
2624   else
2625     priv->gdk_type_hint = GDK_WINDOW_TYPE_HINT_NORMAL;
2626
2627   priv->reset_type_hint = TRUE;
2628   priv->type_hint = hint;
2629 }
2630
2631 /**
2632  * gtk_window_get_type_hint:
2633  * @window: a #GtkWindow
2634  *
2635  * Gets the type hint for this window. See gtk_window_set_type_hint().
2636  *
2637  * Return value: the type hint for @window.
2638  **/
2639 GdkWindowTypeHint
2640 gtk_window_get_type_hint (GtkWindow *window)
2641 {
2642   g_return_val_if_fail (GTK_IS_WINDOW (window), GDK_WINDOW_TYPE_HINT_NORMAL);
2643
2644   return window->priv->type_hint;
2645 }
2646
2647 /**
2648  * gtk_window_set_skip_taskbar_hint:
2649  * @window: a #GtkWindow 
2650  * @setting: %TRUE to keep this window from appearing in the task bar
2651  * 
2652  * Windows may set a hint asking the desktop environment not to display
2653  * the window in the task bar. This function sets this hint.
2654  * 
2655  * Since: 2.2
2656  **/
2657 void
2658 gtk_window_set_skip_taskbar_hint (GtkWindow *window,
2659                                   gboolean   setting)
2660 {
2661   GtkWindowPrivate *priv;
2662
2663   g_return_if_fail (GTK_IS_WINDOW (window));
2664
2665   priv = window->priv;
2666
2667   setting = setting != FALSE;
2668
2669   if (priv->skips_taskbar != setting)
2670     {
2671       priv->skips_taskbar = setting;
2672       if (gtk_widget_get_realized (GTK_WIDGET (window)))
2673         gdk_window_set_skip_taskbar_hint (gtk_widget_get_window (GTK_WIDGET (window)),
2674                                           priv->skips_taskbar);
2675       g_object_notify (G_OBJECT (window), "skip-taskbar-hint");
2676     }
2677 }
2678
2679 /**
2680  * gtk_window_get_skip_taskbar_hint:
2681  * @window: a #GtkWindow
2682  * 
2683  * Gets the value set by gtk_window_set_skip_taskbar_hint()
2684  * 
2685  * Return value: %TRUE if window shouldn't be in taskbar
2686  * 
2687  * Since: 2.2
2688  **/
2689 gboolean
2690 gtk_window_get_skip_taskbar_hint (GtkWindow *window)
2691 {
2692   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2693
2694   return window->priv->skips_taskbar;
2695 }
2696
2697 /**
2698  * gtk_window_set_skip_pager_hint:
2699  * @window: a #GtkWindow 
2700  * @setting: %TRUE to keep this window from appearing in the pager
2701  * 
2702  * Windows may set a hint asking the desktop environment not to display
2703  * the window in the pager. This function sets this hint.
2704  * (A "pager" is any desktop navigation tool such as a workspace
2705  * switcher that displays a thumbnail representation of the windows
2706  * on the screen.)
2707  * 
2708  * Since: 2.2
2709  **/
2710 void
2711 gtk_window_set_skip_pager_hint (GtkWindow *window,
2712                                 gboolean   setting)
2713 {
2714   GtkWindowPrivate *priv;
2715
2716   g_return_if_fail (GTK_IS_WINDOW (window));
2717
2718   priv = window->priv;
2719
2720   setting = setting != FALSE;
2721
2722   if (priv->skips_pager != setting)
2723     {
2724       priv->skips_pager = setting;
2725       if (gtk_widget_get_realized (GTK_WIDGET (window)))
2726         gdk_window_set_skip_pager_hint (gtk_widget_get_window (GTK_WIDGET (window)),
2727                                         priv->skips_pager);
2728       g_object_notify (G_OBJECT (window), "skip-pager-hint");
2729     }
2730 }
2731
2732 /**
2733  * gtk_window_get_skip_pager_hint:
2734  * @window: a #GtkWindow
2735  * 
2736  * Gets the value set by gtk_window_set_skip_pager_hint().
2737  * 
2738  * Return value: %TRUE if window shouldn't be in pager
2739  * 
2740  * Since: 2.2
2741  **/
2742 gboolean
2743 gtk_window_get_skip_pager_hint (GtkWindow *window)
2744 {
2745   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2746
2747   return window->priv->skips_pager;
2748 }
2749
2750 /**
2751  * gtk_window_set_urgency_hint:
2752  * @window: a #GtkWindow 
2753  * @setting: %TRUE to mark this window as urgent
2754  * 
2755  * Windows may set a hint asking the desktop environment to draw
2756  * the users attention to the window. This function sets this hint.
2757  * 
2758  * Since: 2.8
2759  **/
2760 void
2761 gtk_window_set_urgency_hint (GtkWindow *window,
2762                              gboolean   setting)
2763 {
2764   GtkWindowPrivate *priv;
2765
2766   g_return_if_fail (GTK_IS_WINDOW (window));
2767
2768   priv = window->priv;
2769
2770   setting = setting != FALSE;
2771
2772   if (priv->urgent != setting)
2773     {
2774       priv->urgent = setting;
2775       if (gtk_widget_get_realized (GTK_WIDGET (window)))
2776         gdk_window_set_urgency_hint (gtk_widget_get_window (GTK_WIDGET (window)),
2777                                      priv->urgent);
2778       g_object_notify (G_OBJECT (window), "urgency-hint");
2779     }
2780 }
2781
2782 /**
2783  * gtk_window_get_urgency_hint:
2784  * @window: a #GtkWindow
2785  * 
2786  * Gets the value set by gtk_window_set_urgency_hint()
2787  * 
2788  * Return value: %TRUE if window is urgent
2789  * 
2790  * Since: 2.8
2791  **/
2792 gboolean
2793 gtk_window_get_urgency_hint (GtkWindow *window)
2794 {
2795   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2796
2797   return window->priv->urgent;
2798 }
2799
2800 /**
2801  * gtk_window_set_accept_focus:
2802  * @window: a #GtkWindow 
2803  * @setting: %TRUE to let this window receive input focus
2804  * 
2805  * Windows may set a hint asking the desktop environment not to receive
2806  * the input focus. This function sets this hint.
2807  * 
2808  * Since: 2.4
2809  **/
2810 void
2811 gtk_window_set_accept_focus (GtkWindow *window,
2812                              gboolean   setting)
2813 {
2814   GtkWindowPrivate *priv;
2815
2816   g_return_if_fail (GTK_IS_WINDOW (window));
2817
2818   priv = window->priv;
2819
2820   setting = setting != FALSE;
2821
2822   if (priv->accept_focus != setting)
2823     {
2824       priv->accept_focus = setting;
2825       if (gtk_widget_get_realized (GTK_WIDGET (window)))
2826         gdk_window_set_accept_focus (gtk_widget_get_window (GTK_WIDGET (window)),
2827                                      priv->accept_focus);
2828       g_object_notify (G_OBJECT (window), "accept-focus");
2829     }
2830 }
2831
2832 /**
2833  * gtk_window_get_accept_focus:
2834  * @window: a #GtkWindow
2835  * 
2836  * Gets the value set by gtk_window_set_accept_focus().
2837  * 
2838  * Return value: %TRUE if window should receive the input focus
2839  * 
2840  * Since: 2.4
2841  **/
2842 gboolean
2843 gtk_window_get_accept_focus (GtkWindow *window)
2844 {
2845   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2846
2847   return window->priv->accept_focus;
2848 }
2849
2850 /**
2851  * gtk_window_set_focus_on_map:
2852  * @window: a #GtkWindow 
2853  * @setting: %TRUE to let this window receive input focus on map
2854  * 
2855  * Windows may set a hint asking the desktop environment not to receive
2856  * the input focus when the window is mapped.  This function sets this
2857  * hint.
2858  * 
2859  * Since: 2.6
2860  **/
2861 void
2862 gtk_window_set_focus_on_map (GtkWindow *window,
2863                              gboolean   setting)
2864 {
2865   GtkWindowPrivate *priv;
2866
2867   g_return_if_fail (GTK_IS_WINDOW (window));
2868
2869   priv = window->priv;
2870
2871   setting = setting != FALSE;
2872
2873   if (priv->focus_on_map != setting)
2874     {
2875       priv->focus_on_map = setting;
2876       if (gtk_widget_get_realized (GTK_WIDGET (window)))
2877         gdk_window_set_focus_on_map (gtk_widget_get_window (GTK_WIDGET (window)),
2878                                      priv->focus_on_map);
2879       g_object_notify (G_OBJECT (window), "focus-on-map");
2880     }
2881 }
2882
2883 /**
2884  * gtk_window_get_focus_on_map:
2885  * @window: a #GtkWindow
2886  * 
2887  * Gets the value set by gtk_window_set_focus_on_map().
2888  * 
2889  * Return value: %TRUE if window should receive the input focus when
2890  * mapped.
2891  * 
2892  * Since: 2.6
2893  **/
2894 gboolean
2895 gtk_window_get_focus_on_map (GtkWindow *window)
2896 {
2897   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2898
2899   return window->priv->focus_on_map;
2900 }
2901
2902 /**
2903  * gtk_window_set_destroy_with_parent:
2904  * @window: a #GtkWindow
2905  * @setting: whether to destroy @window with its transient parent
2906  * 
2907  * If @setting is %TRUE, then destroying the transient parent of @window
2908  * will also destroy @window itself. This is useful for dialogs that
2909  * shouldn't persist beyond the lifetime of the main window they're
2910  * associated with, for example.
2911  **/
2912 void
2913 gtk_window_set_destroy_with_parent  (GtkWindow *window,
2914                                      gboolean   setting)
2915 {
2916   GtkWindowPrivate *priv;
2917
2918   g_return_if_fail (GTK_IS_WINDOW (window));
2919
2920   priv = window->priv;
2921
2922   if (priv->destroy_with_parent == (setting != FALSE))
2923     return;
2924
2925   if (priv->destroy_with_parent)
2926     {
2927       disconnect_parent_destroyed (window);
2928     }
2929   else
2930     {
2931       connect_parent_destroyed (window);
2932     }
2933
2934   priv->destroy_with_parent = setting;
2935
2936   g_object_notify (G_OBJECT (window), "destroy-with-parent");
2937 }
2938
2939 /**
2940  * gtk_window_get_destroy_with_parent:
2941  * @window: a #GtkWindow
2942  * 
2943  * Returns whether the window will be destroyed with its transient parent. See
2944  * gtk_window_set_destroy_with_parent ().
2945  *
2946  * Return value: %TRUE if the window will be destroyed with its transient parent.
2947  **/
2948 gboolean
2949 gtk_window_get_destroy_with_parent (GtkWindow *window)
2950 {
2951   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
2952
2953   return window->priv->destroy_with_parent;
2954 }
2955
2956 static GtkWindowGeometryInfo*
2957 gtk_window_get_geometry_info (GtkWindow *window,
2958                               gboolean   create)
2959 {
2960   GtkWindowPrivate *priv = window->priv;
2961   GtkWindowGeometryInfo *info;
2962
2963   info = priv->geometry_info;
2964   if (!info && create)
2965     {
2966       info = g_new0 (GtkWindowGeometryInfo, 1);
2967
2968       info->default_width = -1;
2969       info->default_height = -1;
2970       info->resize_width = -1;
2971       info->resize_height = -1;
2972       info->initial_x = 0;
2973       info->initial_y = 0;
2974       info->initial_pos_set = FALSE;
2975       info->default_is_geometry = FALSE;
2976       info->position_constraints_changed = FALSE;
2977       info->last.configure_request.x = 0;
2978       info->last.configure_request.y = 0;
2979       info->last.configure_request.width = -1;
2980       info->last.configure_request.height = -1;
2981       info->widget = NULL;
2982       info->mask = 0;
2983       priv->geometry_info = info;
2984     }
2985
2986   return info;
2987 }
2988
2989 /**
2990  * gtk_window_set_geometry_hints:
2991  * @window: a #GtkWindow
2992  * @geometry_widget: (allow-none): widget the geometry hints will be applied to or %NULL
2993  * @geometry: (allow-none): struct containing geometry information or %NULL
2994  * @geom_mask: mask indicating which struct fields should be paid attention to
2995  *
2996  * This function sets up hints about how a window can be resized by
2997  * the user.  You can set a minimum and maximum size; allowed resize
2998  * increments (e.g. for xterm, you can only resize by the size of a
2999  * character); aspect ratios; and more. See the #GdkGeometry struct.
3000  * 
3001  **/
3002 void       
3003 gtk_window_set_geometry_hints (GtkWindow       *window,
3004                                GtkWidget       *geometry_widget,
3005                                GdkGeometry     *geometry,
3006                                GdkWindowHints   geom_mask)
3007 {
3008   GtkWindowGeometryInfo *info;
3009
3010   g_return_if_fail (GTK_IS_WINDOW (window));
3011   g_return_if_fail (geometry_widget == NULL || GTK_IS_WIDGET (geometry_widget));
3012
3013   info = gtk_window_get_geometry_info (window, TRUE);
3014   
3015   if (info->widget)
3016     g_signal_handlers_disconnect_by_func (info->widget,
3017                                           gtk_widget_destroyed,
3018                                           &info->widget);
3019   
3020   info->widget = geometry_widget;
3021   if (info->widget)
3022     g_signal_connect (geometry_widget, "destroy",
3023                       G_CALLBACK (gtk_widget_destroyed),
3024                       &info->widget);
3025
3026   if (geometry)
3027     info->geometry = *geometry;
3028
3029   /* We store gravity in priv->gravity not in the hints. */
3030   info->mask = geom_mask & ~(GDK_HINT_WIN_GRAVITY);
3031
3032   if (geom_mask & GDK_HINT_WIN_GRAVITY)
3033     {
3034       gtk_window_set_gravity (window, geometry->win_gravity);
3035     }
3036   
3037   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
3038 }
3039
3040 /**
3041  * gtk_window_set_decorated:
3042  * @window: a #GtkWindow
3043  * @setting: %TRUE to decorate the window
3044  *
3045  * By default, windows are decorated with a title bar, resize
3046  * controls, etc.  Some <link linkend="gtk-X11-arch">window
3047  * managers</link> allow GTK+ to disable these decorations, creating a
3048  * borderless window. If you set the decorated property to %FALSE
3049  * using this function, GTK+ will do its best to convince the window
3050  * manager not to decorate the window. Depending on the system, this
3051  * function may not have any effect when called on a window that is
3052  * already visible, so you should call it before calling gtk_window_show().
3053  *
3054  * On Windows, this function always works, since there's no window manager
3055  * policy involved.
3056  * 
3057  **/
3058 void
3059 gtk_window_set_decorated (GtkWindow *window,
3060                           gboolean   setting)
3061 {
3062   GtkWindowPrivate *priv;
3063   GdkWindow *gdk_window;
3064
3065   g_return_if_fail (GTK_IS_WINDOW (window));
3066
3067   priv = window->priv;
3068
3069   setting = setting != FALSE;
3070
3071   if (setting == priv->decorated)
3072     return;
3073
3074   priv->decorated = setting;
3075
3076   gdk_window = gtk_widget_get_window (GTK_WIDGET (window));
3077   if (gdk_window)
3078     {
3079       if (priv->decorated)
3080         gdk_window_set_decorations (gdk_window,
3081                                     GDK_DECOR_ALL);
3082       else
3083         gdk_window_set_decorations (gdk_window,
3084                                     0);
3085     }
3086
3087   g_object_notify (G_OBJECT (window), "decorated");
3088 }
3089
3090 /**
3091  * gtk_window_get_decorated:
3092  * @window: a #GtkWindow
3093  *
3094  * Returns whether the window has been set to have decorations
3095  * such as a title bar via gtk_window_set_decorated().
3096  *
3097  * Return value: %TRUE if the window has been set to have decorations
3098  **/
3099 gboolean
3100 gtk_window_get_decorated (GtkWindow *window)
3101 {
3102   g_return_val_if_fail (GTK_IS_WINDOW (window), TRUE);
3103
3104   return window->priv->decorated;
3105 }
3106
3107 /**
3108  * gtk_window_set_deletable:
3109  * @window: a #GtkWindow
3110  * @setting: %TRUE to decorate the window as deletable
3111  *
3112  * By default, windows have a close button in the window frame. Some 
3113  * <link linkend="gtk-X11-arch">window managers</link> allow GTK+ to 
3114  * disable this button. If you set the deletable property to %FALSE
3115  * using this function, GTK+ will do its best to convince the window
3116  * manager not to show a close button. Depending on the system, this
3117  * function may not have any effect when called on a window that is
3118  * already visible, so you should call it before calling gtk_window_show().
3119  *
3120  * On Windows, this function always works, since there's no window manager
3121  * policy involved.
3122  *
3123  * Since: 2.10
3124  */
3125 void
3126 gtk_window_set_deletable (GtkWindow *window,
3127                           gboolean   setting)
3128 {
3129   GtkWindowPrivate *priv;
3130   GdkWindow *gdk_window;
3131
3132   g_return_if_fail (GTK_IS_WINDOW (window));
3133
3134   priv = window->priv;
3135
3136   setting = setting != FALSE;
3137
3138   if (setting == priv->deletable)
3139     return;
3140
3141   priv->deletable = setting;
3142
3143   gdk_window = gtk_widget_get_window (GTK_WIDGET (window));
3144   if (gdk_window)
3145     {
3146       if (priv->deletable)
3147         gdk_window_set_functions (gdk_window,
3148                                   GDK_FUNC_ALL);
3149       else
3150         gdk_window_set_functions (gdk_window,
3151                                   GDK_FUNC_ALL | GDK_FUNC_CLOSE);
3152     }
3153
3154   g_object_notify (G_OBJECT (window), "deletable");  
3155 }
3156
3157 /**
3158  * gtk_window_get_deletable:
3159  * @window: a #GtkWindow
3160  *
3161  * Returns whether the window has been set to have a close button
3162  * via gtk_window_set_deletable().
3163  *
3164  * Return value: %TRUE if the window has been set to have a close button
3165  *
3166  * Since: 2.10
3167  **/
3168 gboolean
3169 gtk_window_get_deletable (GtkWindow *window)
3170 {
3171   g_return_val_if_fail (GTK_IS_WINDOW (window), TRUE);
3172
3173   return window->priv->deletable;
3174 }
3175
3176 static GtkWindowIconInfo*
3177 get_icon_info (GtkWindow *window)
3178 {
3179   return g_object_get_qdata (G_OBJECT (window), quark_gtk_window_icon_info);
3180 }
3181      
3182 static void
3183 free_icon_info (GtkWindowIconInfo *info)
3184 {
3185   g_free (info->icon_name);
3186   g_slice_free (GtkWindowIconInfo, info);
3187 }
3188
3189
3190 static GtkWindowIconInfo*
3191 ensure_icon_info (GtkWindow *window)
3192 {
3193   GtkWindowIconInfo *info;
3194
3195   info = get_icon_info (window);
3196   
3197   if (info == NULL)
3198     {
3199       info = g_slice_new0 (GtkWindowIconInfo);
3200       g_object_set_qdata_full (G_OBJECT (window),
3201                               quark_gtk_window_icon_info,
3202                               info,
3203                               (GDestroyNotify)free_icon_info);
3204     }
3205
3206   return info;
3207 }
3208
3209 static GList *
3210 icon_list_from_theme (GtkWidget    *widget,
3211                       const gchar  *name)
3212 {
3213   GList *list;
3214
3215   GtkIconTheme *icon_theme;
3216   GdkPixbuf *icon;
3217   gint *sizes;
3218   gint i;
3219
3220   icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (widget));
3221
3222   sizes = gtk_icon_theme_get_icon_sizes (icon_theme, name);
3223
3224   list = NULL;
3225   for (i = 0; sizes[i]; i++)
3226     {      
3227       /* FIXME
3228        * We need an EWMH extension to handle scalable icons 
3229        * by passing their name to the WM. For now just use a 
3230        * fixed size of 48.
3231        */ 
3232       if (sizes[i] == -1)
3233         icon = gtk_icon_theme_load_icon (icon_theme, name,
3234                                          48, 0, NULL);
3235       else
3236         icon = gtk_icon_theme_load_icon (icon_theme, name,
3237                                          sizes[i], 0, NULL);
3238       if (icon)
3239         list = g_list_append (list, icon);
3240     }
3241
3242   g_free (sizes);
3243
3244   return list;
3245 }
3246
3247
3248 static void
3249 gtk_window_realize_icon (GtkWindow *window)
3250 {
3251   GtkWindowPrivate *priv = window->priv;
3252   GtkWidget *widget;
3253   GtkWindowIconInfo *info;
3254   GdkWindow *gdk_window;
3255   GList *icon_list;
3256
3257   widget = GTK_WIDGET (window);
3258   gdk_window = gtk_widget_get_window (widget);
3259
3260   g_return_if_fail (gdk_window != NULL);
3261
3262   /* no point setting an icon on override-redirect */
3263   if (priv->type == GTK_WINDOW_POPUP)
3264     return;
3265
3266   icon_list = NULL;
3267   
3268   info = ensure_icon_info (window);
3269
3270   if (info->realized)
3271     return;
3272
3273   info->using_default_icon = FALSE;
3274   info->using_parent_icon = FALSE;
3275   info->using_themed_icon = FALSE;
3276   
3277   icon_list = info->icon_list;
3278
3279   /* Look up themed icon */
3280   if (icon_list == NULL && info->icon_name) 
3281     {
3282       icon_list = icon_list_from_theme (widget, info->icon_name);
3283       if (icon_list)
3284         info->using_themed_icon = TRUE;
3285     }
3286
3287   /* Inherit from transient parent */
3288   if (icon_list == NULL && priv->transient_parent)
3289     {
3290       icon_list = ensure_icon_info (priv->transient_parent)->icon_list;
3291       if (icon_list)
3292         info->using_parent_icon = TRUE;
3293     }      
3294
3295   /* Inherit from default */
3296   if (icon_list == NULL)
3297     {
3298       icon_list = default_icon_list;
3299       if (icon_list)
3300         info->using_default_icon = TRUE;
3301     }
3302
3303   /* Look up themed icon */
3304   if (icon_list == NULL && default_icon_name) 
3305     {
3306       icon_list = icon_list_from_theme (widget, default_icon_name);
3307       info->using_default_icon = TRUE;
3308       info->using_themed_icon = TRUE;  
3309     }
3310
3311   info->realized = TRUE;
3312   
3313   if (info->using_themed_icon) 
3314     {
3315       GtkIconTheme *icon_theme;
3316
3317       g_list_foreach (icon_list, (GFunc) g_object_unref, NULL);
3318       g_list_free (icon_list);
3319  
3320       icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (window)));
3321       g_signal_connect (icon_theme, "changed",
3322                         G_CALLBACK (update_themed_icon), window);
3323     }
3324 }
3325
3326 static void
3327 gtk_window_unrealize_icon (GtkWindow *window)
3328 {
3329   GtkWindowIconInfo *info;
3330
3331   info = get_icon_info (window);
3332
3333   if (info == NULL)
3334     return;
3335   
3336   if (info->using_themed_icon)
3337     {
3338       GtkIconTheme *icon_theme;
3339
3340       icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (window)));
3341
3342       g_signal_handlers_disconnect_by_func (icon_theme, update_themed_icon, window);
3343     }
3344     
3345   /* We don't clear the properties on the window, just figure the
3346    * window is going away.
3347    */
3348
3349   info->realized = FALSE;
3350
3351 }
3352
3353 /**
3354  * gtk_window_set_icon_list:
3355  * @window: a #GtkWindow
3356  * @list: (element-type GdkPixbuf) (transfer container): list of #GdkPixbuf
3357  *
3358  * Sets up the icon representing a #GtkWindow. The icon is used when
3359  * the window is minimized (also known as iconified).  Some window
3360  * managers or desktop environments may also place it in the window
3361  * frame, or display it in other contexts.
3362  *
3363  * gtk_window_set_icon_list() allows you to pass in the same icon in
3364  * several hand-drawn sizes. The list should contain the natural sizes
3365  * your icon is available in; that is, don't scale the image before
3366  * passing it to GTK+. Scaling is postponed until the last minute,
3367  * when the desired final size is known, to allow best quality.
3368  *
3369  * By passing several sizes, you may improve the final image quality
3370  * of the icon, by reducing or eliminating automatic image scaling.
3371  *
3372  * Recommended sizes to provide: 16x16, 32x32, 48x48 at minimum, and
3373  * larger images (64x64, 128x128) if you have them.
3374  *
3375  * See also gtk_window_set_default_icon_list() to set the icon
3376  * for all windows in your application in one go.
3377  *
3378  * Note that transient windows (those who have been set transient for another
3379  * window using gtk_window_set_transient_for()) will inherit their
3380  * icon from their transient parent. So there's no need to explicitly
3381  * set the icon on transient windows.
3382  **/
3383 void
3384 gtk_window_set_icon_list (GtkWindow  *window,
3385                           GList      *list)
3386 {
3387   GtkWindowIconInfo *info;
3388
3389   g_return_if_fail (GTK_IS_WINDOW (window));
3390
3391   info = ensure_icon_info (window);
3392
3393   if (info->icon_list == list) /* check for NULL mostly */
3394     return;
3395
3396   g_list_foreach (list,
3397                   (GFunc) g_object_ref, NULL);
3398
3399   g_list_foreach (info->icon_list,
3400                   (GFunc) g_object_unref, NULL);
3401
3402   g_list_free (info->icon_list);
3403
3404   info->icon_list = g_list_copy (list);
3405
3406   g_object_notify (G_OBJECT (window), "icon");
3407   
3408   gtk_window_unrealize_icon (window);
3409   
3410   if (gtk_widget_get_realized (GTK_WIDGET (window)))
3411     gtk_window_realize_icon (window);
3412
3413   /* We could try to update our transient children, but I don't think
3414    * it's really worth it. If we did it, the best way would probably
3415    * be to have children connect to notify::icon-list
3416    */
3417 }
3418
3419 /**
3420  * gtk_window_get_icon_list:
3421  * @window: a #GtkWindow
3422  * 
3423  * Retrieves the list of icons set by gtk_window_set_icon_list().
3424  * The list is copied, but the reference count on each
3425  * member won't be incremented.
3426  *
3427  * Return value: (element-type GdkPixbuf) (transfer container): copy of window's icon list
3428  **/
3429 GList*
3430 gtk_window_get_icon_list (GtkWindow  *window)
3431 {
3432   GtkWindowIconInfo *info;
3433   
3434   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
3435
3436   info = get_icon_info (window);
3437
3438   if (info)
3439     return g_list_copy (info->icon_list);
3440   else
3441     return NULL;  
3442 }
3443
3444 /**
3445  * gtk_window_set_icon:
3446  * @window: a #GtkWindow
3447  * @icon: (allow-none): icon image, or %NULL
3448  *
3449  * Sets up the icon representing a #GtkWindow. This icon is used when
3450  * the window is minimized (also known as iconified).  Some window
3451  * managers or desktop environments may also place it in the window
3452  * frame, or display it in other contexts.
3453  *
3454  * The icon should be provided in whatever size it was naturally
3455  * drawn; that is, don't scale the image before passing it to
3456  * GTK+. Scaling is postponed until the last minute, when the desired
3457  * final size is known, to allow best quality.
3458  *
3459  * If you have your icon hand-drawn in multiple sizes, use
3460  * gtk_window_set_icon_list(). Then the best size will be used.
3461  *
3462  * This function is equivalent to calling gtk_window_set_icon_list()
3463  * with a 1-element list.
3464  *
3465  * See also gtk_window_set_default_icon_list() to set the icon
3466  * for all windows in your application in one go.
3467  **/
3468 void
3469 gtk_window_set_icon (GtkWindow  *window,
3470                      GdkPixbuf  *icon)
3471 {
3472   GList *list;
3473   
3474   g_return_if_fail (GTK_IS_WINDOW (window));
3475   g_return_if_fail (icon == NULL || GDK_IS_PIXBUF (icon));
3476
3477   list = NULL;
3478
3479   if (icon)
3480     list = g_list_append (list, icon);
3481   
3482   gtk_window_set_icon_list (window, list);
3483   g_list_free (list);  
3484 }
3485
3486
3487 static void 
3488 update_themed_icon (GtkIconTheme *icon_theme,
3489                     GtkWindow    *window)
3490 {
3491   g_object_notify (G_OBJECT (window), "icon");
3492   
3493   gtk_window_unrealize_icon (window);
3494   
3495   if (gtk_widget_get_realized (GTK_WIDGET (window)))
3496     gtk_window_realize_icon (window);  
3497 }
3498
3499 /**
3500  * gtk_window_set_icon_name:
3501  * @window: a #GtkWindow
3502  * @name: (allow-none): the name of the themed icon
3503  *
3504  * Sets the icon for the window from a named themed icon. See
3505  * the docs for #GtkIconTheme for more details.
3506  *
3507  * Note that this has nothing to do with the WM_ICON_NAME 
3508  * property which is mentioned in the ICCCM.
3509  *
3510  * Since: 2.6
3511  */
3512 void 
3513 gtk_window_set_icon_name (GtkWindow   *window,
3514                           const gchar *name)
3515 {
3516   GtkWindowIconInfo *info;
3517   gchar *tmp;
3518   
3519   g_return_if_fail (GTK_IS_WINDOW (window));
3520
3521   info = ensure_icon_info (window);
3522
3523   if (g_strcmp0 (info->icon_name, name) == 0)
3524     return;
3525
3526   tmp = info->icon_name;
3527   info->icon_name = g_strdup (name);
3528   g_free (tmp);
3529
3530   g_list_foreach (info->icon_list, (GFunc) g_object_unref, NULL);
3531   g_list_free (info->icon_list);
3532   info->icon_list = NULL;
3533   
3534   update_themed_icon (NULL, window);
3535
3536   g_object_notify (G_OBJECT (window), "icon-name");
3537 }
3538
3539 /**
3540  * gtk_window_get_icon_name:
3541  * @window: a #GtkWindow
3542  *
3543  * Returns the name of the themed icon for the window,
3544  * see gtk_window_set_icon_name().
3545  *
3546  * Returns: the icon name or %NULL if the window has 
3547  * no themed icon
3548  *
3549  * Since: 2.6
3550  */
3551 const gchar *
3552 gtk_window_get_icon_name (GtkWindow *window)
3553 {
3554   GtkWindowIconInfo *info;
3555
3556   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
3557
3558   info = ensure_icon_info (window);
3559
3560   return info->icon_name;
3561 }
3562
3563 /**
3564  * gtk_window_get_icon:
3565  * @window: a #GtkWindow
3566  * 
3567  * Gets the value set by gtk_window_set_icon() (or if you've
3568  * called gtk_window_set_icon_list(), gets the first icon in
3569  * the icon list).
3570  *
3571  * Return value: (transfer none): icon for window
3572  **/
3573 GdkPixbuf*
3574 gtk_window_get_icon (GtkWindow  *window)
3575 {
3576   GtkWindowIconInfo *info;
3577
3578   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
3579
3580   info = get_icon_info (window);
3581   if (info && info->icon_list)
3582     return GDK_PIXBUF (info->icon_list->data);
3583   else
3584     return NULL;
3585 }
3586
3587 /* Load pixbuf, printing warning on failure if error == NULL
3588  */
3589 static GdkPixbuf *
3590 load_pixbuf_verbosely (const char *filename,
3591                        GError    **err)
3592 {
3593   GError *local_err = NULL;
3594   GdkPixbuf *pixbuf;
3595
3596   pixbuf = gdk_pixbuf_new_from_file (filename, &local_err);
3597
3598   if (!pixbuf)
3599     {
3600       if (err)
3601         *err = local_err;
3602       else
3603         {
3604           g_warning ("Error loading icon from file '%s':\n\t%s",
3605                      filename, local_err->message);
3606           g_error_free (local_err);
3607         }
3608     }
3609
3610   return pixbuf;
3611 }
3612
3613 /**
3614  * gtk_window_set_icon_from_file:
3615  * @window: a #GtkWindow
3616  * @filename: location of icon file
3617  * @err: (allow-none): location to store error, or %NULL.
3618  *
3619  * Sets the icon for @window.  
3620  * Warns on failure if @err is %NULL.
3621  *
3622  * This function is equivalent to calling gtk_window_set_icon()
3623  * with a pixbuf created by loading the image from @filename.
3624  *
3625  * Returns: %TRUE if setting the icon succeeded.
3626  *
3627  * Since: 2.2
3628  **/
3629 gboolean
3630 gtk_window_set_icon_from_file (GtkWindow   *window,
3631                                const gchar *filename,
3632                                GError     **err)
3633 {
3634   GdkPixbuf *pixbuf = load_pixbuf_verbosely (filename, err);
3635
3636   if (pixbuf)
3637     {
3638       gtk_window_set_icon (window, pixbuf);
3639       g_object_unref (pixbuf);
3640       
3641       return TRUE;
3642     }
3643   else
3644     return FALSE;
3645 }
3646
3647 /**
3648  * gtk_window_set_default_icon_list:
3649  * @list: (element-type GdkPixbuf) (transfer container): a list of #GdkPixbuf
3650  *
3651  * Sets an icon list to be used as fallback for windows that haven't
3652  * had gtk_window_set_icon_list() called on them to set up a
3653  * window-specific icon list. This function allows you to set up the
3654  * icon for all windows in your app at once.
3655  *
3656  * See gtk_window_set_icon_list() for more details.
3657  * 
3658  **/
3659 void
3660 gtk_window_set_default_icon_list (GList *list)
3661 {
3662   GList *toplevels;
3663   GList *tmp_list;
3664   if (list == default_icon_list)
3665     return;
3666
3667   /* Update serial so we don't used cached pixmaps/masks
3668    */
3669   default_icon_serial++;
3670   
3671   g_list_foreach (list,
3672                   (GFunc) g_object_ref, NULL);
3673
3674   g_list_foreach (default_icon_list,
3675                   (GFunc) g_object_unref, NULL);
3676
3677   g_list_free (default_icon_list);
3678
3679   default_icon_list = g_list_copy (list);
3680   
3681   /* Update all toplevels */
3682   toplevels = gtk_window_list_toplevels ();
3683   tmp_list = toplevels;
3684   while (tmp_list != NULL)
3685     {
3686       GtkWindowIconInfo *info;
3687       GtkWindow *w = tmp_list->data;
3688       
3689       info = get_icon_info (w);
3690       if (info && info->using_default_icon)
3691         {
3692           gtk_window_unrealize_icon (w);
3693           if (gtk_widget_get_realized (GTK_WIDGET (w)))
3694             gtk_window_realize_icon (w);
3695         }
3696
3697       tmp_list = tmp_list->next;
3698     }
3699   g_list_free (toplevels);
3700 }
3701
3702 /**
3703  * gtk_window_set_default_icon:
3704  * @icon: the icon
3705  *
3706  * Sets an icon to be used as fallback for windows that haven't
3707  * had gtk_window_set_icon() called on them from a pixbuf.
3708  *
3709  * Since: 2.4
3710  **/
3711 void
3712 gtk_window_set_default_icon (GdkPixbuf *icon)
3713 {
3714   GList *list;
3715   
3716   g_return_if_fail (GDK_IS_PIXBUF (icon));
3717
3718   list = g_list_prepend (NULL, icon);
3719   gtk_window_set_default_icon_list (list);
3720   g_list_free (list);
3721 }
3722
3723 /**
3724  * gtk_window_set_default_icon_name:
3725  * @name: the name of the themed icon
3726  *
3727  * Sets an icon to be used as fallback for windows that haven't
3728  * had gtk_window_set_icon_list() called on them from a named
3729  * themed icon, see gtk_window_set_icon_name().
3730  *
3731  * Since: 2.6
3732  **/
3733 void
3734 gtk_window_set_default_icon_name (const gchar *name)
3735 {
3736   GList *tmp_list;
3737   GList *toplevels;
3738
3739   /* Update serial so we don't used cached pixmaps/masks
3740    */
3741   default_icon_serial++;
3742
3743   g_free (default_icon_name);
3744   default_icon_name = g_strdup (name);
3745
3746   g_list_foreach (default_icon_list,
3747                   (GFunc) g_object_unref, NULL);
3748
3749   g_list_free (default_icon_list);
3750   default_icon_list = NULL;
3751   
3752   /* Update all toplevels */
3753   toplevels = gtk_window_list_toplevels ();
3754   tmp_list = toplevels;
3755   while (tmp_list != NULL)
3756     {
3757       GtkWindowIconInfo *info;
3758       GtkWindow *w = tmp_list->data;
3759       
3760       info = get_icon_info (w);
3761       if (info && info->using_default_icon && info->using_themed_icon)
3762         {
3763           gtk_window_unrealize_icon (w);
3764           if (gtk_widget_get_realized (GTK_WIDGET (w)))
3765             gtk_window_realize_icon (w);
3766         }
3767
3768       tmp_list = tmp_list->next;
3769     }
3770   g_list_free (toplevels);
3771 }
3772
3773 /**
3774  * gtk_window_get_default_icon_name:
3775  *
3776  * Returns the fallback icon name for windows that has been set
3777  * with gtk_window_set_default_icon_name(). The returned
3778  * string is owned by GTK+ and should not be modified. It
3779  * is only valid until the next call to
3780  * gtk_window_set_default_icon_name().
3781  *
3782  * Returns: the fallback icon name for windows
3783  *
3784  * Since: 2.16
3785  */
3786 const gchar *
3787 gtk_window_get_default_icon_name (void)
3788 {
3789   return default_icon_name;
3790 }
3791
3792 /**
3793  * gtk_window_set_default_icon_from_file:
3794  * @filename: location of icon file
3795  * @err: (allow-none): location to store error, or %NULL.
3796  *
3797  * Sets an icon to be used as fallback for windows that haven't
3798  * had gtk_window_set_icon_list() called on them from a file
3799  * on disk. Warns on failure if @err is %NULL.
3800  *
3801  * Returns: %TRUE if setting the icon succeeded.
3802  *
3803  * Since: 2.2
3804  **/
3805 gboolean
3806 gtk_window_set_default_icon_from_file (const gchar *filename,
3807                                        GError     **err)
3808 {
3809   GdkPixbuf *pixbuf = load_pixbuf_verbosely (filename, err);
3810
3811   if (pixbuf)
3812     {
3813       gtk_window_set_default_icon (pixbuf);
3814       g_object_unref (pixbuf);
3815       
3816       return TRUE;
3817     }
3818   else
3819     return FALSE;
3820 }
3821
3822 /**
3823  * gtk_window_get_default_icon_list:
3824  * 
3825  * Gets the value set by gtk_window_set_default_icon_list().
3826  * The list is a copy and should be freed with g_list_free(),
3827  * but the pixbufs in the list have not had their reference count
3828  * incremented.
3829  * 
3830  * Return value: (element-type GdkPixbuf) (transfer container): copy of default icon list 
3831  **/
3832 GList*
3833 gtk_window_get_default_icon_list (void)
3834 {
3835   return g_list_copy (default_icon_list);
3836 }
3837
3838 static void
3839 gtk_window_set_default_size_internal (GtkWindow    *window,
3840                                       gboolean      change_width,
3841                                       gint          width,
3842                                       gboolean      change_height,
3843                                       gint          height,
3844                                       gboolean      is_geometry)
3845 {
3846   GtkWindowGeometryInfo *info;
3847
3848   g_return_if_fail (change_width == FALSE || width >= -1);
3849   g_return_if_fail (change_height == FALSE || height >= -1);
3850
3851   info = gtk_window_get_geometry_info (window, TRUE);
3852
3853   g_object_freeze_notify (G_OBJECT (window));
3854
3855   info->default_is_geometry = is_geometry != FALSE;
3856
3857   if (change_width)
3858     {
3859       if (width == 0)
3860         width = 1;
3861
3862       if (width < 0)
3863         width = -1;
3864
3865       info->default_width = width;
3866
3867       g_object_notify (G_OBJECT (window), "default-width");
3868     }
3869
3870   if (change_height)
3871     {
3872       if (height == 0)
3873         height = 1;
3874
3875       if (height < 0)
3876         height = -1;
3877
3878       info->default_height = height;
3879       
3880       g_object_notify (G_OBJECT (window), "default-height");
3881     }
3882   
3883   g_object_thaw_notify (G_OBJECT (window));
3884   
3885   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
3886 }
3887
3888 /**
3889  * gtk_window_set_default_size:
3890  * @window: a #GtkWindow
3891  * @width: width in pixels, or -1 to unset the default width
3892  * @height: height in pixels, or -1 to unset the default height
3893  *
3894  * Sets the default size of a window. If the window's "natural" size
3895  * (its size request) is larger than the default, the default will be
3896  * ignored. More generally, if the default size does not obey the
3897  * geometry hints for the window (gtk_window_set_geometry_hints() can
3898  * be used to set these explicitly), the default size will be clamped
3899  * to the nearest permitted size.
3900  * 
3901  * Unlike gtk_widget_set_size_request(), which sets a size request for
3902  * a widget and thus would keep users from shrinking the window, this
3903  * function only sets the initial size, just as if the user had
3904  * resized the window themselves. Users can still shrink the window
3905  * again as they normally would. Setting a default size of -1 means to
3906  * use the "natural" default size (the size request of the window).
3907  *
3908  * For more control over a window's initial size and how resizing works,
3909  * investigate gtk_window_set_geometry_hints().
3910  *
3911  * For some uses, gtk_window_resize() is a more appropriate function.
3912  * gtk_window_resize() changes the current size of the window, rather
3913  * than the size to be used on initial display. gtk_window_resize() always
3914  * affects the window itself, not the geometry widget.
3915  *
3916  * The default size of a window only affects the first time a window is
3917  * shown; if a window is hidden and re-shown, it will remember the size
3918  * it had prior to hiding, rather than using the default size.
3919  *
3920  * Windows can't actually be 0x0 in size, they must be at least 1x1, but
3921  * passing 0 for @width and @height is OK, resulting in a 1x1 default size.
3922  **/
3923 void       
3924 gtk_window_set_default_size (GtkWindow   *window,
3925                              gint         width,
3926                              gint         height)
3927 {
3928   g_return_if_fail (GTK_IS_WINDOW (window));
3929   g_return_if_fail (width >= -1);
3930   g_return_if_fail (height >= -1);
3931
3932   gtk_window_set_default_size_internal (window, TRUE, width, TRUE, height, FALSE);
3933 }
3934
3935 /**
3936  * gtk_window_set_default_geometry:
3937  * @window: a #GtkWindow
3938  * @width: width in resize increments, or -1 to unset the default width
3939  * @height: height in resize increments, or -1 to unset the default height
3940  *
3941  * Like gtk_window_set_default_size(), but @width and @height are interpreted
3942  * in terms of the base size and increment set with
3943  * gtk_window_set_geometry_hints.
3944  *
3945  * Since: 3.0
3946  */
3947 void
3948 gtk_window_set_default_geometry (GtkWindow *window,
3949                                  gint       width,
3950                                  gint       height)
3951 {
3952   g_return_if_fail (GTK_IS_WINDOW (window));
3953   g_return_if_fail (width >= -1);
3954   g_return_if_fail (height >= -1);
3955
3956   gtk_window_set_default_size_internal (window, TRUE, width, TRUE, height, TRUE);
3957 }
3958
3959 /**
3960  * gtk_window_get_default_size:
3961  * @window: a #GtkWindow
3962  * @width: (out) (allow-none): location to store the default width, or %NULL
3963  * @height: (out) (allow-none): location to store the default height, or %NULL
3964  *
3965  * Gets the default size of the window. A value of -1 for the width or
3966  * height indicates that a default size has not been explicitly set
3967  * for that dimension, so the "natural" size of the window will be
3968  * used.
3969  * 
3970  **/
3971 void
3972 gtk_window_get_default_size (GtkWindow *window,
3973                              gint      *width,
3974                              gint      *height)
3975 {
3976   GtkWindowGeometryInfo *info;
3977
3978   g_return_if_fail (GTK_IS_WINDOW (window));
3979
3980   info = gtk_window_get_geometry_info (window, FALSE);
3981
3982   if (width)
3983     *width = info ? info->default_width : -1;
3984
3985   if (height)
3986     *height = info ? info->default_height : -1;
3987 }
3988
3989 /**
3990  * gtk_window_resize:
3991  * @window: a #GtkWindow
3992  * @width: width in pixels to resize the window to
3993  * @height: height in pixels to resize the window to
3994  *
3995  * Resizes the window as if the user had done so, obeying geometry
3996  * constraints. The default geometry constraint is that windows may
3997  * not be smaller than their size request; to override this
3998  * constraint, call gtk_widget_set_size_request() to set the window's
3999  * request to a smaller value.
4000  *
4001  * If gtk_window_resize() is called before showing a window for the
4002  * first time, it overrides any default size set with
4003  * gtk_window_set_default_size().
4004  *
4005  * Windows may not be resized smaller than 1 by 1 pixels.
4006  * 
4007  **/
4008 void
4009 gtk_window_resize (GtkWindow *window,
4010                    gint       width,
4011                    gint       height)
4012 {
4013   GtkWindowGeometryInfo *info;
4014   
4015   g_return_if_fail (GTK_IS_WINDOW (window));
4016   g_return_if_fail (width > 0);
4017   g_return_if_fail (height > 0);
4018
4019   info = gtk_window_get_geometry_info (window, TRUE);
4020
4021   info->resize_width = width;
4022   info->resize_height = height;
4023   info->resize_is_geometry = FALSE;
4024
4025   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
4026 }
4027
4028 /**
4029  * gtk_window_resize_to_geometry:
4030  * @window: a #GtkWindow
4031  * @width: width in resize increments to resize the window to
4032  * @height: height in resize increments to resize the window to
4033  *
4034  * Like gtk_window_resize(), but @width and @height are interpreted
4035  * in terms of the base size and increment set with
4036  * gtk_window_set_geometry_hints.
4037  *
4038  * Since: 3.0
4039  */
4040 void
4041 gtk_window_resize_to_geometry (GtkWindow *window,
4042                                gint       width,
4043                                gint       height)
4044 {
4045   GtkWindowGeometryInfo *info;
4046
4047   g_return_if_fail (GTK_IS_WINDOW (window));
4048   g_return_if_fail (width > 0);
4049   g_return_if_fail (height > 0);
4050
4051   info = gtk_window_get_geometry_info (window, TRUE);
4052
4053   info->resize_width = width;
4054   info->resize_height = height;
4055   info->resize_is_geometry = TRUE;
4056
4057   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
4058 }
4059
4060 /**
4061  * gtk_window_get_size:
4062  * @window: a #GtkWindow
4063  * @width: (out) (allow-none): return location for width, or %NULL
4064  * @height: (out) (allow-none): return location for height, or %NULL
4065  *
4066  * Obtains the current size of @window. If @window is not onscreen,
4067  * it returns the size GTK+ will suggest to the <link
4068  * linkend="gtk-X11-arch">window manager</link> for the initial window
4069  * size (but this is not reliably the same as the size the window
4070  * manager will actually select). The size obtained by
4071  * gtk_window_get_size() is the last size received in a
4072  * #GdkEventConfigure, that is, GTK+ uses its locally-stored size,
4073  * rather than querying the X server for the size. As a result, if you
4074  * call gtk_window_resize() then immediately call
4075  * gtk_window_get_size(), the size won't have taken effect yet. After
4076  * the window manager processes the resize request, GTK+ receives
4077  * notification that the size has changed via a configure event, and
4078  * the size of the window gets updated.
4079  *
4080  * Note 1: Nearly any use of this function creates a race condition,
4081  * because the size of the window may change between the time that you
4082  * get the size and the time that you perform some action assuming
4083  * that size is the current size. To avoid race conditions, connect to
4084  * "configure-event" on the window and adjust your size-dependent
4085  * state to match the size delivered in the #GdkEventConfigure.
4086  *
4087  * Note 2: The returned size does <emphasis>not</emphasis> include the
4088  * size of the window manager decorations (aka the window frame or
4089  * border). Those are not drawn by GTK+ and GTK+ has no reliable
4090  * method of determining their size.
4091  *
4092  * Note 3: If you are getting a window size in order to position
4093  * the window onscreen, there may be a better way. The preferred
4094  * way is to simply set the window's semantic type with
4095  * gtk_window_set_type_hint(), which allows the window manager to
4096  * e.g. center dialogs. Also, if you set the transient parent of
4097  * dialogs with gtk_window_set_transient_for() window managers
4098  * will often center the dialog over its parent window. It's
4099  * much preferred to let the window manager handle these
4100  * things rather than doing it yourself, because all apps will
4101  * behave consistently and according to user prefs if the window
4102  * manager handles it. Also, the window manager can take the size
4103  * of the window decorations/border into account, while your
4104  * application cannot.
4105  *
4106  * In any case, if you insist on application-specified window
4107  * positioning, there's <emphasis>still</emphasis> a better way than
4108  * doing it yourself - gtk_window_set_position() will frequently
4109  * handle the details for you.
4110  * 
4111  **/
4112 void
4113 gtk_window_get_size (GtkWindow *window,
4114                      gint      *width,
4115                      gint      *height)
4116 {
4117   gint w, h;
4118   
4119   g_return_if_fail (GTK_IS_WINDOW (window));
4120
4121   if (width == NULL && height == NULL)
4122     return;
4123
4124   if (gtk_widget_get_mapped (GTK_WIDGET (window)))
4125     {
4126       w = gdk_window_get_width (gtk_widget_get_window (GTK_WIDGET (window)));
4127       h = gdk_window_get_height (gtk_widget_get_window (GTK_WIDGET (window)));
4128     }
4129   else
4130     {
4131       GdkRectangle configure_request;
4132
4133       gtk_window_compute_configure_request (window,
4134                                             &configure_request,
4135                                             NULL, NULL);
4136
4137       w = configure_request.width;
4138       h = configure_request.height;
4139     }
4140   
4141   if (width)
4142     *width = w;
4143   if (height)
4144     *height = h;
4145 }
4146
4147 /**
4148  * gtk_window_move:
4149  * @window: a #GtkWindow
4150  * @x: X coordinate to move window to
4151  * @y: Y coordinate to move window to
4152  *
4153  * Asks the <link linkend="gtk-X11-arch">window manager</link> to move
4154  * @window to the given position.  Window managers are free to ignore
4155  * this; most window managers ignore requests for initial window
4156  * positions (instead using a user-defined placement algorithm) and
4157  * honor requests after the window has already been shown.
4158  *
4159  * Note: the position is the position of the gravity-determined
4160  * reference point for the window. The gravity determines two things:
4161  * first, the location of the reference point in root window
4162  * coordinates; and second, which point on the window is positioned at
4163  * the reference point.
4164  *
4165  * By default the gravity is #GDK_GRAVITY_NORTH_WEST, so the reference
4166  * point is simply the @x, @y supplied to gtk_window_move(). The
4167  * top-left corner of the window decorations (aka window frame or
4168  * border) will be placed at @x, @y.  Therefore, to position a window
4169  * at the top left of the screen, you want to use the default gravity
4170  * (which is #GDK_GRAVITY_NORTH_WEST) and move the window to 0,0.
4171  *
4172  * To position a window at the bottom right corner of the screen, you
4173  * would set #GDK_GRAVITY_SOUTH_EAST, which means that the reference
4174  * point is at @x + the window width and @y + the window height, and
4175  * the bottom-right corner of the window border will be placed at that
4176  * reference point. So, to place a window in the bottom right corner
4177  * you would first set gravity to south east, then write:
4178  * <literal>gtk_window_move (window, gdk_screen_width () - window_width,
4179  * gdk_screen_height () - window_height)</literal> (note that this
4180  * example does not take multi-head scenarios into account).
4181  *
4182  * The Extended Window Manager Hints specification at <ulink 
4183  * url="http://www.freedesktop.org/Standards/wm-spec">
4184  * http://www.freedesktop.org/Standards/wm-spec</ulink> has a 
4185  * nice table of gravities in the "implementation notes" section.
4186  *
4187  * The gtk_window_get_position() documentation may also be relevant.
4188  */
4189 void
4190 gtk_window_move (GtkWindow *window,
4191                  gint       x,
4192                  gint       y)
4193 {
4194   GtkWindowPrivate *priv;
4195   GtkWindowGeometryInfo *info;
4196   GtkWidget *widget;
4197   
4198   g_return_if_fail (GTK_IS_WINDOW (window));
4199
4200   priv = window->priv;
4201   widget = GTK_WIDGET (window);
4202
4203   info = gtk_window_get_geometry_info (window, TRUE);  
4204   
4205   if (gtk_widget_get_mapped (widget))
4206     {
4207       GtkAllocation allocation;
4208
4209       gtk_widget_get_allocation (widget, &allocation);
4210
4211       /* we have now sent a request with this position
4212        * with currently-active constraints, so toggle flag.
4213        */
4214       info->position_constraints_changed = FALSE;
4215
4216       /* we only constrain if mapped - if not mapped,
4217        * then gtk_window_compute_configure_request()
4218        * will apply the constraints later, and we
4219        * don't want to lose information about
4220        * what position the user set before then.
4221        * i.e. if you do a move() then turn off POS_CENTER
4222        * then show the window, your move() will work.
4223        */
4224       gtk_window_constrain_position (window,
4225                                      allocation.width, allocation.height,
4226                                      &x, &y);
4227       
4228       /* Note that this request doesn't go through our standard request
4229        * framework, e.g. doesn't increment configure_request_count,
4230        * doesn't set info->last, etc.; that's because
4231        * we don't save the info needed to arrive at this same request
4232        * again.
4233        *
4234        * To gtk_window_move_resize(), this will end up looking exactly
4235        * the same as the position being changed by the window
4236        * manager.
4237        */
4238       
4239       /* FIXME are we handling gravity properly for framed windows? */
4240       if (priv->frame)
4241         gdk_window_move (priv->frame,
4242                          x - priv->frame_left,
4243                          y - priv->frame_top);
4244       else
4245         gdk_window_move (gtk_widget_get_window (GTK_WIDGET (window)),
4246                          x, y);
4247     }
4248   else
4249     {
4250       /* Save this position to apply on mapping */
4251       info->initial_x = x;
4252       info->initial_y = y;
4253       info->initial_pos_set = TRUE;
4254     }
4255 }
4256
4257 /**
4258  * gtk_window_get_position:
4259  * @window: a #GtkWindow
4260  * @root_x: (out): return location for X coordinate of gravity-determined reference point
4261  * @root_y: (out): return location for Y coordinate of gravity-determined reference point
4262  *
4263  * This function returns the position you need to pass to
4264  * gtk_window_move() to keep @window in its current position.  This
4265  * means that the meaning of the returned value varies with window
4266  * gravity. See gtk_window_move() for more details.
4267  * 
4268  * If you haven't changed the window gravity, its gravity will be
4269  * #GDK_GRAVITY_NORTH_WEST. This means that gtk_window_get_position()
4270  * gets the position of the top-left corner of the window manager
4271  * frame for the window. gtk_window_move() sets the position of this
4272  * same top-left corner.
4273  *
4274  * gtk_window_get_position() is not 100% reliable because the X Window System
4275  * does not specify a way to obtain the geometry of the
4276  * decorations placed on a window by the window manager.
4277  * Thus GTK+ is using a "best guess" that works with most
4278  * window managers.
4279  *
4280  * Moreover, nearly all window managers are historically broken with
4281  * respect to their handling of window gravity. So moving a window to
4282  * its current position as returned by gtk_window_get_position() tends
4283  * to result in moving the window slightly. Window managers are
4284  * slowly getting better over time.
4285  *
4286  * If a window has gravity #GDK_GRAVITY_STATIC the window manager
4287  * frame is not relevant, and thus gtk_window_get_position() will
4288  * always produce accurate results. However you can't use static
4289  * gravity to do things like place a window in a corner of the screen,
4290  * because static gravity ignores the window manager decorations.
4291  *
4292  * If you are saving and restoring your application's window
4293  * positions, you should know that it's impossible for applications to
4294  * do this without getting it somewhat wrong because applications do
4295  * not have sufficient knowledge of window manager state. The Correct
4296  * Mechanism is to support the session management protocol (see the
4297  * "GnomeClient" object in the GNOME libraries for example) and allow
4298  * the window manager to save your window sizes and positions.
4299  * 
4300  **/
4301
4302 void
4303 gtk_window_get_position (GtkWindow *window,
4304                          gint      *root_x,
4305                          gint      *root_y)
4306 {
4307   GtkWindowPrivate *priv;
4308   GtkWidget *widget;
4309   GdkWindow *gdk_window;
4310
4311   g_return_if_fail (GTK_IS_WINDOW (window));
4312
4313   priv = window->priv;
4314   widget = GTK_WIDGET (window);
4315   gdk_window = gtk_widget_get_window (widget);
4316
4317   if (priv->gravity == GDK_GRAVITY_STATIC)
4318     {
4319       if (gtk_widget_get_mapped (widget))
4320         {
4321           /* This does a server round-trip, which is sort of wrong;
4322            * but a server round-trip is inevitable for
4323            * gdk_window_get_frame_extents() in the usual
4324            * NorthWestGravity case below, so not sure what else to
4325            * do. We should likely be consistent about whether we get
4326            * the client-side info or the server-side info.
4327            */
4328           gdk_window_get_origin (gdk_window, root_x, root_y);
4329         }
4330       else
4331         {
4332           GdkRectangle configure_request;
4333           
4334           gtk_window_compute_configure_request (window,
4335                                                 &configure_request,
4336                                                 NULL, NULL);
4337           
4338           *root_x = configure_request.x;
4339           *root_y = configure_request.y;
4340         }
4341     }
4342   else
4343     {
4344       GdkRectangle frame_extents;
4345       
4346       gint x, y;
4347       gint w, h;
4348       
4349       if (gtk_widget_get_mapped (widget))
4350         {
4351           if (priv->frame)
4352             gdk_window_get_frame_extents (priv->frame, &frame_extents);
4353           else
4354             gdk_window_get_frame_extents (gdk_window, &frame_extents);
4355           x = frame_extents.x;
4356           y = frame_extents.y;
4357           gtk_window_get_size (window, &w, &h);
4358         }
4359       else
4360         {
4361           /* We just say the frame has 0 size on all sides.
4362            * Not sure what else to do.
4363            */             
4364           gtk_window_compute_configure_request (window,
4365                                                 &frame_extents,
4366                                                 NULL, NULL);
4367           x = frame_extents.x;
4368           y = frame_extents.y;
4369           w = frame_extents.width;
4370           h = frame_extents.height;
4371         }
4372       
4373       switch (priv->gravity)
4374         {
4375         case GDK_GRAVITY_NORTH:
4376         case GDK_GRAVITY_CENTER:
4377         case GDK_GRAVITY_SOUTH:
4378           /* Find center of frame. */
4379           x += frame_extents.width / 2;
4380           /* Center client window on that point. */
4381           x -= w / 2;
4382           break;
4383
4384         case GDK_GRAVITY_SOUTH_EAST:
4385         case GDK_GRAVITY_EAST:
4386         case GDK_GRAVITY_NORTH_EAST:
4387           /* Find right edge of frame */
4388           x += frame_extents.width;
4389           /* Align left edge of client at that point. */
4390           x -= w;
4391           break;
4392         default:
4393           break;
4394         }
4395
4396       switch (priv->gravity)
4397         {
4398         case GDK_GRAVITY_WEST:
4399         case GDK_GRAVITY_CENTER:
4400         case GDK_GRAVITY_EAST:
4401           /* Find center of frame. */
4402           y += frame_extents.height / 2;
4403           /* Center client window there. */
4404           y -= h / 2;
4405           break;
4406         case GDK_GRAVITY_SOUTH_WEST:
4407         case GDK_GRAVITY_SOUTH:
4408         case GDK_GRAVITY_SOUTH_EAST:
4409           /* Find south edge of frame */
4410           y += frame_extents.height;
4411           /* Place bottom edge of client there */
4412           y -= h;
4413           break;
4414         default:
4415           break;
4416         }
4417       
4418       if (root_x)
4419         *root_x = x;
4420       if (root_y)
4421         *root_y = y;
4422     }
4423 }
4424
4425 /**
4426  * gtk_window_reshow_with_initial_size:
4427  * @window: a #GtkWindow
4428  * 
4429  * Hides @window, then reshows it, resetting the
4430  * default size and position of the window. Used
4431  * by GUI builders only.
4432  **/
4433 void
4434 gtk_window_reshow_with_initial_size (GtkWindow *window)
4435 {
4436   GtkWidget *widget;
4437   
4438   g_return_if_fail (GTK_IS_WINDOW (window));
4439
4440   widget = GTK_WIDGET (window);
4441   
4442   gtk_widget_hide (widget);
4443   gtk_widget_unrealize (widget);
4444   gtk_widget_show (widget);
4445 }
4446
4447 static void
4448 gtk_window_destroy (GtkWidget *widget)
4449 {
4450   GtkWindow *window = GTK_WINDOW (widget);
4451   GtkWindowPrivate *priv = window->priv;
4452
4453   toplevel_list = g_slist_remove (toplevel_list, window);
4454
4455   if (priv->transient_parent)
4456     gtk_window_set_transient_for (window, NULL);
4457
4458   /* frees the icons */
4459   gtk_window_set_icon_list (window, NULL);
4460   
4461   if (priv->has_user_ref_count)
4462     {
4463       priv->has_user_ref_count = FALSE;
4464       g_object_unref (window);
4465     }
4466
4467   if (priv->group)
4468     gtk_window_group_remove_window (priv->group, window);
4469
4470    gtk_window_free_key_hash (window);
4471
4472   GTK_WIDGET_CLASS (gtk_window_parent_class)->destroy (widget);
4473 }
4474
4475 static void
4476 gtk_window_finalize (GObject *object)
4477 {
4478   GtkWindow *window = GTK_WINDOW (object);
4479   GtkWindowPrivate *priv = window->priv;
4480   GtkMnemonicHash *mnemonic_hash;
4481
4482   g_free (priv->title);
4483   g_free (priv->wmclass_name);
4484   g_free (priv->wmclass_class);
4485   g_free (priv->wm_role);
4486
4487   mnemonic_hash = gtk_window_get_mnemonic_hash (window, FALSE);
4488   if (mnemonic_hash)
4489     _gtk_mnemonic_hash_free (mnemonic_hash);
4490
4491   if (priv->geometry_info)
4492     {
4493       if (priv->geometry_info->widget)
4494         g_signal_handlers_disconnect_by_func (priv->geometry_info->widget,
4495                                               gtk_widget_destroyed,
4496                                               &priv->geometry_info->widget);
4497       g_free (priv->geometry_info);
4498     }
4499
4500   if (priv->keys_changed_handler)
4501     {
4502       g_source_remove (priv->keys_changed_handler);
4503       priv->keys_changed_handler = 0;
4504     }
4505
4506   if (priv->screen)
4507     g_signal_handlers_disconnect_by_func (priv->screen,
4508                                           gtk_window_on_composited_changed, window);
4509
4510   g_free (priv->startup_id);
4511
4512   G_OBJECT_CLASS (gtk_window_parent_class)->finalize (object);
4513 }
4514
4515 static void
4516 gtk_window_show (GtkWidget *widget)
4517 {
4518   GtkWindow *window = GTK_WINDOW (widget);
4519   GtkWindowPrivate *priv = window->priv;
4520   GtkContainer *container = GTK_CONTAINER (window);
4521   gboolean need_resize;
4522
4523   _gtk_widget_set_visible_flag (widget, TRUE);
4524
4525   need_resize = _gtk_container_get_need_resize (container) || !gtk_widget_get_realized (widget);
4526   _gtk_container_set_need_resize (container, FALSE);
4527
4528   if (need_resize)
4529     {
4530       GtkWindowGeometryInfo *info = gtk_window_get_geometry_info (window, TRUE);
4531       GtkAllocation allocation = { 0, 0 };
4532       GdkRectangle configure_request;
4533       GdkGeometry new_geometry;
4534       guint new_flags;
4535       gboolean was_realized;
4536
4537       /* We are going to go ahead and perform this configure request
4538        * and then emulate a configure notify by going ahead and
4539        * doing a size allocate. Sort of a synchronous
4540        * mini-copy of gtk_window_move_resize() here.
4541        */
4542       gtk_window_compute_configure_request (window,
4543                                             &configure_request,
4544                                             &new_geometry,
4545                                             &new_flags);
4546       
4547       /* We update this because we are going to go ahead
4548        * and gdk_window_resize() below, rather than
4549        * queuing it.
4550        */
4551       info->last.configure_request.width = configure_request.width;
4552       info->last.configure_request.height = configure_request.height;
4553       
4554       /* and allocate the window - this is normally done
4555        * in move_resize in response to configure notify
4556        */
4557       allocation.width  = configure_request.width;
4558       allocation.height = configure_request.height;
4559       gtk_widget_size_allocate (widget, &allocation);
4560
4561       /* Then we guarantee we have a realize */
4562       was_realized = FALSE;
4563       if (!gtk_widget_get_realized (widget))
4564         {
4565           gtk_widget_realize (widget);
4566           was_realized = TRUE;
4567         }
4568
4569       /* Must be done after the windows are realized,
4570        * so that the decorations can be read
4571        */
4572       gtk_decorated_window_calculate_frame_size (window);
4573
4574       /* We only send configure request if we didn't just finish
4575        * creating the window; if we just created the window
4576        * then we created it with widget->allocation anyhow.
4577        */
4578       if (!was_realized)
4579         gdk_window_move_resize (gtk_widget_get_window (widget),
4580                                 configure_request.x,
4581                                 configure_request.y,
4582                                 configure_request.width,
4583                                 configure_request.height);
4584     }
4585   
4586   gtk_container_check_resize (container);
4587
4588   gtk_widget_map (widget);
4589
4590   /* Try to make sure that we have some focused widget
4591    */
4592   if (!priv->focus_widget && !GTK_IS_PLUG (window))
4593     gtk_window_move_focus (window, GTK_DIR_TAB_FORWARD);
4594   
4595   if (priv->modal)
4596     gtk_grab_add (widget);
4597 }
4598
4599 static void
4600 gtk_window_hide (GtkWidget *widget)
4601 {
4602   GtkWindow *window = GTK_WINDOW (widget);
4603   GtkWindowPrivate *priv = window->priv;
4604
4605   _gtk_widget_set_visible_flag (widget, FALSE);
4606   gtk_widget_unmap (widget);
4607
4608   if (priv->modal)
4609     gtk_grab_remove (widget);
4610 }
4611
4612 static void
4613 gtk_window_map (GtkWidget *widget)
4614 {
4615   GtkWidget *child;
4616   GtkWindow *window = GTK_WINDOW (widget);
4617   GtkWindowPrivate *priv = window->priv;
4618   GdkWindow *toplevel;
4619   GdkWindow *gdk_window;
4620   gboolean auto_mnemonics;
4621
4622   gdk_window = gtk_widget_get_window (widget);
4623
4624   gtk_widget_set_mapped (widget, TRUE);
4625
4626   child = gtk_bin_get_child (&(window->bin));
4627   if (child &&
4628       gtk_widget_get_visible (child) &&
4629       !gtk_widget_get_mapped (child))
4630     gtk_widget_map (child);
4631
4632   if (priv->frame)
4633     toplevel = priv->frame;
4634   else
4635     toplevel = gdk_window;
4636
4637   if (priv->maximize_initially)
4638     gdk_window_maximize (toplevel);
4639   else
4640     gdk_window_unmaximize (toplevel);
4641   
4642   if (priv->stick_initially)
4643     gdk_window_stick (toplevel);
4644   else
4645     gdk_window_unstick (toplevel);
4646   
4647   if (priv->iconify_initially)
4648     gdk_window_iconify (toplevel);
4649   else
4650     gdk_window_deiconify (toplevel);
4651
4652   if (priv->fullscreen_initially)
4653     gdk_window_fullscreen (toplevel);
4654   else
4655     gdk_window_unfullscreen (toplevel);
4656   
4657   gdk_window_set_keep_above (toplevel, priv->above_initially);
4658
4659   gdk_window_set_keep_below (toplevel, priv->below_initially);
4660
4661   /* No longer use the default settings */
4662   priv->need_default_size = FALSE;
4663   priv->need_default_position = FALSE;
4664   
4665   if (priv->reset_type_hint)
4666     {
4667       /* We should only reset the type hint when the application
4668        * used gtk_window_set_type_hint() to change the hint.
4669        * Some applications use X directly to change the properties;
4670        * in that case, we shouldn't overwrite what they did.
4671        */
4672       gdk_window_set_type_hint (gdk_window, priv->type_hint);
4673       priv->reset_type_hint = FALSE;
4674     }
4675
4676   gdk_window_show (gdk_window);
4677
4678   if (priv->frame)
4679     gdk_window_show (priv->frame);
4680
4681   if (priv->grip_window)
4682     gdk_window_show (priv->grip_window);
4683
4684   if (!disable_startup_notification)
4685     {
4686       /* Do we have a custom startup-notification id? */
4687       if (priv->startup_id != NULL)
4688         {
4689           /* Make sure we have a "real" id */
4690           if (!startup_id_is_fake (priv->startup_id)) 
4691             gdk_notify_startup_complete_with_id (priv->startup_id);
4692
4693           g_free (priv->startup_id);
4694           priv->startup_id = NULL;
4695         }
4696       else if (!sent_startup_notification)
4697         {
4698           sent_startup_notification = TRUE;
4699           gdk_notify_startup_complete ();
4700         }
4701     }
4702
4703   /* if auto-mnemonics is enabled and mnemonics visible is not already set
4704    * (as in the case of popup menus), then hide mnemonics initially
4705    */
4706   g_object_get (gtk_widget_get_settings (widget), "gtk-auto-mnemonics",
4707                 &auto_mnemonics, NULL);
4708   if (auto_mnemonics && !priv->mnemonics_visible_set)
4709     gtk_window_set_mnemonics_visible (window, FALSE);
4710 }
4711
4712 static gboolean
4713 gtk_window_map_event (GtkWidget   *widget,
4714                       GdkEventAny *event)
4715 {
4716   if (!gtk_widget_get_mapped (widget))
4717     {
4718       /* we should be be unmapped, but are getting a MapEvent, this may happen
4719        * to toplevel XWindows if mapping was intercepted by a window manager
4720        * and an unmap request occoured while the MapRequestEvent was still
4721        * being handled. we work around this situaiton here by re-requesting
4722        * the window being unmapped. more details can be found in:
4723        *   http://bugzilla.gnome.org/show_bug.cgi?id=316180
4724        */
4725       gdk_window_hide (gtk_widget_get_window (widget));
4726     }
4727   return FALSE;
4728 }
4729
4730 static void
4731 gtk_window_unmap (GtkWidget *widget)
4732 {
4733   GtkWindow *window = GTK_WINDOW (widget);
4734   GtkWindowPrivate *priv = window->priv;
4735   GtkWindowGeometryInfo *info;
4736   GdkWindow *gdk_window;
4737   GdkWindowState state;
4738
4739   gdk_window = gtk_widget_get_window (widget);
4740
4741   gtk_widget_set_mapped (widget, FALSE);
4742   if (priv->frame)
4743     gdk_window_withdraw (priv->frame);
4744   else
4745     gdk_window_withdraw (gdk_window);
4746
4747   priv->configure_request_count = 0;
4748   priv->configure_notify_received = FALSE;
4749
4750   /* on unmap, we reset the default positioning of the window,
4751    * so it's placed again, but we don't reset the default
4752    * size of the window, so it's remembered.
4753    */
4754   priv->need_default_position = TRUE;
4755
4756   info = gtk_window_get_geometry_info (window, FALSE);
4757   if (info)
4758     {
4759       info->initial_pos_set = FALSE;
4760       info->position_constraints_changed = FALSE;
4761     }
4762
4763   state = gdk_window_get_state (gdk_window);
4764   priv->iconify_initially = (state & GDK_WINDOW_STATE_ICONIFIED) != 0;
4765   priv->maximize_initially = (state & GDK_WINDOW_STATE_MAXIMIZED) != 0;
4766   priv->stick_initially = (state & GDK_WINDOW_STATE_STICKY) != 0;
4767   priv->above_initially = (state & GDK_WINDOW_STATE_ABOVE) != 0;
4768   priv->below_initially = (state & GDK_WINDOW_STATE_BELOW) != 0;
4769 }
4770
4771 static void
4772 gtk_window_realize (GtkWidget *widget)
4773 {
4774   GtkAllocation allocation;
4775   GtkWindow *window;
4776   GtkStyle *style;
4777   GdkWindow *parent_window;
4778   GdkWindow *gdk_window;
4779   GdkWindowAttr attributes;
4780   gint attributes_mask;
4781   GtkWindowPrivate *priv;
4782
4783   window = GTK_WINDOW (widget);
4784   priv = window->priv;
4785
4786   gtk_widget_get_allocation (widget, &allocation);
4787
4788   /* ensure widget tree is properly size allocated */
4789   if (allocation.x == -1 &&
4790       allocation.y == -1 &&
4791       allocation.width == 1 &&
4792       allocation.height == 1)
4793     {
4794       GtkRequisition requisition;
4795
4796       allocation.x = 0;
4797       allocation.y = 0;
4798       allocation.width = 200;
4799       allocation.height = 200;
4800
4801       gtk_widget_get_preferred_size (widget, &requisition, NULL);
4802       if (requisition.width || requisition.height)
4803         {
4804           /* non-empty window */
4805           allocation.width = requisition.width;
4806           allocation.height = requisition.height;
4807         }
4808       gtk_widget_size_allocate (widget, &allocation);
4809       
4810       _gtk_container_queue_resize (GTK_CONTAINER (widget));
4811
4812       g_return_if_fail (!gtk_widget_get_realized (widget));
4813     }
4814   
4815   gtk_widget_set_realized (widget, TRUE);
4816   
4817   switch (priv->type)
4818     {
4819     case GTK_WINDOW_TOPLEVEL:
4820       attributes.window_type = GDK_WINDOW_TOPLEVEL;
4821       break;
4822     case GTK_WINDOW_POPUP:
4823       attributes.window_type = GDK_WINDOW_TEMP;
4824       break;
4825     default:
4826       g_warning (G_STRLOC": Unknown window type %d!", priv->type);
4827       break;
4828     }
4829    
4830   attributes.title = priv->title;
4831   attributes.wmclass_name = priv->wmclass_name;
4832   attributes.wmclass_class = priv->wmclass_class;
4833   attributes.wclass = GDK_INPUT_OUTPUT;
4834   attributes.visual = gtk_widget_get_visual (widget);
4835
4836   if (priv->has_frame)
4837     {
4838       gtk_widget_get_allocation (widget, &allocation);
4839       attributes.width = allocation.width + priv->frame_left + priv->frame_right;
4840       attributes.height = allocation.height + priv->frame_top + priv->frame_bottom;
4841       attributes.event_mask = (GDK_EXPOSURE_MASK |
4842                                GDK_KEY_PRESS_MASK |
4843                                GDK_ENTER_NOTIFY_MASK |
4844                                GDK_LEAVE_NOTIFY_MASK |
4845                                GDK_FOCUS_CHANGE_MASK |
4846                                GDK_STRUCTURE_MASK |
4847                                GDK_BUTTON_MOTION_MASK |
4848                                GDK_POINTER_MOTION_HINT_MASK |
4849                                GDK_BUTTON_PRESS_MASK |
4850                                GDK_BUTTON_RELEASE_MASK);
4851       
4852       attributes_mask = GDK_WA_VISUAL;
4853
4854       priv->frame = gdk_window_new (gtk_widget_get_root_window (widget),
4855                                       &attributes, attributes_mask);
4856                                                  
4857       if (priv->opacity_set)
4858         gdk_window_set_opacity (priv->frame, priv->opacity);
4859
4860       gdk_window_set_user_data (priv->frame, widget);
4861       
4862       attributes.window_type = GDK_WINDOW_CHILD;
4863       attributes.x = priv->frame_left;
4864       attributes.y = priv->frame_top;
4865     
4866       attributes_mask = GDK_WA_X | GDK_WA_Y;
4867
4868       parent_window = priv->frame;
4869
4870       g_signal_connect (window,
4871                         "event",
4872                         G_CALLBACK (gtk_window_event),
4873                         NULL);
4874     }
4875   else
4876     {
4877       attributes_mask = 0;
4878       parent_window = gtk_widget_get_root_window (widget);
4879     }
4880
4881   gtk_widget_get_allocation (widget, &allocation);
4882   attributes.width = allocation.width;
4883   attributes.height = allocation.height;
4884   attributes.event_mask = gtk_widget_get_events (widget);
4885   attributes.event_mask |= (GDK_EXPOSURE_MASK |
4886                             GDK_KEY_PRESS_MASK |
4887                             GDK_KEY_RELEASE_MASK |
4888                             GDK_ENTER_NOTIFY_MASK |
4889                             GDK_LEAVE_NOTIFY_MASK |
4890                             GDK_FOCUS_CHANGE_MASK |
4891                             GDK_STRUCTURE_MASK);
4892   attributes.type_hint = priv->type_hint;
4893
4894   attributes_mask |= GDK_WA_VISUAL | GDK_WA_TYPE_HINT;
4895   attributes_mask |= (priv->title ? GDK_WA_TITLE : 0);
4896   attributes_mask |= (priv->wmclass_name ? GDK_WA_WMCLASS : 0);
4897
4898   gdk_window = gdk_window_new (parent_window, &attributes, attributes_mask);
4899   gtk_widget_set_window (widget, gdk_window);
4900
4901   if (!priv->has_frame && priv->opacity_set)
4902     gdk_window_set_opacity (gdk_window, priv->opacity);
4903
4904   gdk_window_enable_synchronized_configure (gdk_window);
4905
4906   gdk_window_set_user_data (gdk_window, window);
4907
4908   gtk_widget_style_attach (widget);
4909   style = gtk_widget_get_style (widget);
4910   gtk_style_set_background (style, gdk_window, GTK_STATE_NORMAL);
4911   if (priv->frame)
4912     gtk_style_set_background (style, priv->frame, GTK_STATE_NORMAL);
4913
4914   if (priv->transient_parent &&
4915       gtk_widget_get_realized (GTK_WIDGET (priv->transient_parent)))
4916     gdk_window_set_transient_for (gdk_window,
4917                                   gtk_widget_get_window (GTK_WIDGET (priv->transient_parent)));
4918
4919   if (priv->wm_role)
4920     gdk_window_set_role (gdk_window, priv->wm_role);
4921
4922   if (!priv->decorated)
4923     gdk_window_set_decorations (gdk_window, 0);
4924
4925   if (!priv->deletable)
4926     gdk_window_set_functions (gdk_window, GDK_FUNC_ALL | GDK_FUNC_CLOSE);
4927
4928   if (gtk_window_get_skip_pager_hint (window))
4929     gdk_window_set_skip_pager_hint (gdk_window, TRUE);
4930
4931   if (gtk_window_get_skip_taskbar_hint (window))
4932     gdk_window_set_skip_taskbar_hint (gdk_window, TRUE);
4933
4934   if (gtk_window_get_accept_focus (window))
4935     gdk_window_set_accept_focus (gdk_window, TRUE);
4936   else
4937     gdk_window_set_accept_focus (gdk_window, FALSE);
4938
4939   if (gtk_window_get_focus_on_map (window))
4940     gdk_window_set_focus_on_map (gdk_window, TRUE);
4941   else
4942     gdk_window_set_focus_on_map (gdk_window, FALSE);
4943
4944   if (priv->modal)
4945     gdk_window_set_modal_hint (gdk_window, TRUE);
4946   else
4947     gdk_window_set_modal_hint (gdk_window, FALSE);
4948
4949   if (priv->startup_id)
4950     {
4951 #ifdef GDK_WINDOWING_X11
4952       guint32 timestamp = extract_time_from_startup_id (priv->startup_id);
4953       if (timestamp != GDK_CURRENT_TIME)
4954         gdk_x11_window_set_user_time (gdk_window, timestamp);
4955 #endif
4956       if (!startup_id_is_fake (priv->startup_id)) 
4957         gdk_window_set_startup_id (gdk_window, priv->startup_id);
4958     }
4959
4960   /* Icons */
4961   gtk_window_realize_icon (window);
4962
4963   if (priv->has_resize_grip)
4964     resize_grip_create_window (window);
4965 }
4966
4967 static void
4968 gtk_window_unrealize (GtkWidget *widget)
4969 {
4970   GtkWindow *window = GTK_WINDOW (widget);
4971   GtkWindowPrivate *priv = window->priv;
4972   GtkWindowGeometryInfo *info;
4973
4974   /* On unrealize, we reset the size of the window such
4975    * that we will re-apply the default sizing stuff
4976    * next time we show the window.
4977    *
4978    * Default positioning is reset on unmap, instead of unrealize.
4979    */
4980   priv->need_default_size = TRUE;
4981   info = gtk_window_get_geometry_info (window, FALSE);
4982   if (info)
4983     {
4984       info->resize_width = -1;
4985       info->resize_height = -1;
4986       info->last.configure_request.x = 0;
4987       info->last.configure_request.y = 0;
4988       info->last.configure_request.width = -1;
4989       info->last.configure_request.height = -1;
4990       /* be sure we reset geom hints on re-realize */
4991       info->last.flags = 0;
4992     }
4993
4994   if (priv->frame)
4995     {
4996       gdk_window_set_user_data (priv->frame, NULL);
4997       gdk_window_destroy (priv->frame);
4998       priv->frame = NULL;
4999     }
5000
5001   /* Icons */
5002   gtk_window_unrealize_icon (window);
5003
5004   if (priv->grip_window != NULL)
5005     resize_grip_destroy_window (window);
5006
5007   GTK_WIDGET_CLASS (gtk_window_parent_class)->unrealize (widget);
5008 }
5009
5010 static GdkWindowEdge
5011 get_grip_edge (GtkWidget *widget)
5012 {
5013   return gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR
5014          ? GDK_WINDOW_EDGE_SOUTH_EAST
5015          : GDK_WINDOW_EDGE_SOUTH_WEST;
5016 }
5017
5018 static GdkWindowEdge
5019 get_drag_edge (GtkWidget *widget)
5020 {
5021   GdkGeometry geometry;
5022   guint flags;
5023   gboolean hresizable;
5024   gboolean vresizable;
5025   GtkTextDirection dir;
5026   GdkWindowEdge edge;
5027
5028   gtk_window_compute_hints (GTK_WINDOW (widget), &geometry, &flags);
5029
5030   if ((flags & GDK_HINT_MIN_SIZE) && (flags & GDK_HINT_MAX_SIZE))
5031     {
5032       hresizable = geometry.min_width < geometry.max_width;
5033       vresizable = geometry.min_height < geometry.max_height;
5034     }
5035   else
5036     {
5037       hresizable = TRUE;
5038       vresizable = TRUE;
5039     }
5040
5041   dir = gtk_widget_get_direction (widget);
5042
5043   if (hresizable && vresizable)
5044     edge = dir == GTK_TEXT_DIR_LTR ? GDK_WINDOW_EDGE_SOUTH_EAST : GDK_WINDOW_EDGE_SOUTH_WEST;
5045   else if (hresizable)
5046     edge = dir == GTK_TEXT_DIR_LTR ? GDK_WINDOW_EDGE_EAST : GDK_WINDOW_EDGE_WEST;
5047   else if (vresizable)
5048     edge = GDK_WINDOW_EDGE_SOUTH;
5049   else
5050     edge = (GdkWindowEdge)-1;
5051
5052   return edge;
5053 }
5054
5055 static void
5056 set_grip_cursor (GtkWindow *window)
5057 {
5058   GtkWidget *widget = GTK_WIDGET (window);
5059   GtkWindowPrivate *priv = window->priv;
5060   GdkWindowEdge edge;
5061   GdkDisplay *display;
5062   GdkCursorType cursor_type;
5063   GdkCursor *cursor;
5064
5065   if (priv->grip_window == NULL)
5066     return;
5067
5068   if (gtk_widget_is_sensitive (widget))
5069     {
5070       edge = get_drag_edge (widget);
5071       switch (edge)
5072         {
5073         case GDK_WINDOW_EDGE_EAST:
5074           cursor_type = GDK_RIGHT_SIDE;
5075           break;
5076         case GDK_WINDOW_EDGE_SOUTH_EAST:
5077           cursor_type = GDK_BOTTOM_RIGHT_CORNER;
5078           break;
5079         case GDK_WINDOW_EDGE_SOUTH:
5080           cursor_type = GDK_BOTTOM_SIDE;
5081           break;
5082         case GDK_WINDOW_EDGE_SOUTH_WEST:
5083           cursor_type = GDK_BOTTOM_LEFT_CORNER;
5084           break;
5085         case GDK_WINDOW_EDGE_WEST:
5086           cursor_type = GDK_LEFT_SIDE;
5087           break;
5088         default:
5089           cursor_type = GDK_LEFT_PTR;
5090           break;
5091         }
5092
5093       display = gtk_widget_get_display (widget);
5094       cursor = gdk_cursor_new_for_display (display, cursor_type);
5095       gdk_window_set_cursor (priv->grip_window, cursor);
5096       gdk_cursor_unref (cursor);
5097     }
5098   else
5099     gdk_window_set_cursor (priv->grip_window, NULL);
5100 }
5101
5102 static void
5103 set_grip_shape (GtkWindow *window)
5104 {
5105   GtkWindowPrivate *priv = window->priv;
5106   cairo_region_t *region;
5107   cairo_surface_t *surface;
5108   cairo_t *cr;
5109   double width, height;
5110
5111   if (priv->grip_window == NULL)
5112     return;
5113
5114   width = gdk_window_get_width (priv->grip_window);
5115   height = gdk_window_get_height (priv->grip_window);
5116   surface = cairo_image_surface_create (CAIRO_FORMAT_A8, width, height);
5117
5118   cr = cairo_create (surface);
5119   cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.0);
5120   cairo_paint (cr);
5121   cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 1.0);
5122   if (get_grip_edge (GTK_WIDGET (window)) == GDK_WINDOW_EDGE_SOUTH_EAST)
5123     {
5124       cairo_move_to (cr, width, 0.0);
5125       cairo_line_to (cr, width, height);
5126       cairo_line_to (cr, 0.0, height);
5127     }
5128   else
5129     {
5130       cairo_move_to (cr, 0.0, 0.0);
5131       cairo_line_to (cr, width, height);
5132       cairo_line_to (cr, 0.0, height);
5133     }
5134   cairo_close_path (cr);
5135   cairo_fill (cr);
5136   cairo_destroy (cr);
5137   region = gdk_cairo_region_create_from_surface (surface);
5138   cairo_surface_destroy (surface);
5139
5140   gdk_window_shape_combine_region (priv->grip_window, region, 0, 0);
5141   cairo_region_destroy (region);
5142 }
5143
5144 static void
5145 set_grip_position (GtkWindow *window)
5146 {
5147   GtkWindowPrivate *priv = window->priv;
5148   GdkRectangle rect;
5149
5150   if (priv->grip_window == NULL)
5151     return;
5152
5153   gtk_window_get_resize_grip_area (window, &rect);
5154   gdk_window_raise (priv->grip_window);
5155   gdk_window_move_resize (priv->grip_window,
5156                           rect.x, rect.y,
5157                           rect.width, rect.height);
5158 }
5159
5160 static void
5161 gtk_window_size_allocate (GtkWidget     *widget,
5162                           GtkAllocation *allocation)
5163 {
5164   GtkWindow *window = GTK_WINDOW (widget);
5165   GtkWindowPrivate *priv = window->priv;
5166   GtkAllocation child_allocation;
5167   GtkWidget *child;
5168   guint border_width;
5169
5170   gtk_widget_set_allocation (widget, allocation);
5171
5172   child = gtk_bin_get_child (&(window->bin));
5173   if (child && gtk_widget_get_visible (child))
5174     {
5175       border_width = gtk_container_get_border_width (GTK_CONTAINER (window));
5176       child_allocation.x = border_width;
5177       child_allocation.y = border_width;
5178       child_allocation.width =
5179         MAX (1, (gint)allocation->width - child_allocation.x * 2);
5180       child_allocation.height =
5181         MAX (1, (gint)allocation->height - child_allocation.y * 2);
5182
5183       gtk_widget_size_allocate (child, &child_allocation);
5184     }
5185
5186   if (gtk_widget_get_realized (widget))
5187     {
5188       if (priv->frame)
5189         gdk_window_resize (priv->frame,
5190                            allocation->width + priv->frame_left + priv->frame_right,
5191                            allocation->height + priv->frame_top + priv->frame_bottom);
5192       set_grip_position (window);
5193     }
5194 }
5195
5196 static gint
5197 gtk_window_event (GtkWidget *widget, GdkEvent *event)
5198 {
5199   GtkWindow *window = GTK_WINDOW (widget);
5200   GtkWindowPrivate *priv = window->priv;
5201   gboolean return_val;
5202
5203   if (priv->frame && (event->any.window == priv->frame))
5204     {
5205       if ((event->type != GDK_KEY_PRESS) &&
5206           (event->type != GDK_KEY_RELEASE) &&
5207           (event->type != GDK_FOCUS_CHANGE))
5208         {
5209           g_signal_stop_emission_by_name (widget, "event");
5210           return_val = FALSE;
5211           g_signal_emit (widget, window_signals[FRAME_EVENT], 0, event, &return_val);
5212           return TRUE;
5213         }
5214       else
5215         {
5216           g_object_unref (event->any.window);
5217           event->any.window = g_object_ref (gtk_widget_get_window (widget));
5218         }
5219     }
5220
5221   return FALSE;
5222 }
5223
5224 static gboolean
5225 gtk_window_frame_event (GtkWindow *window, GdkEvent *event)
5226 {
5227   GtkWindowPrivate *priv = window->priv;
5228   GdkEventConfigure *configure_event;
5229   GdkRectangle rect;
5230
5231   switch (event->type)
5232     {
5233     case GDK_CONFIGURE:
5234       configure_event = (GdkEventConfigure *)event;
5235       
5236       /* Invalidate the decorations */
5237       rect.x = 0;
5238       rect.y = 0;
5239       rect.width = configure_event->width;
5240       rect.height = configure_event->height;
5241       
5242       gdk_window_invalidate_rect (priv->frame, &rect, FALSE);
5243
5244       /* Pass on the (modified) configure event */
5245       configure_event->width -= priv->frame_left + priv->frame_right;
5246       configure_event->height -= priv->frame_top + priv->frame_bottom;
5247       return gtk_window_configure_event (GTK_WIDGET (window), configure_event);
5248       break;
5249     default:
5250       break;
5251     }
5252   return FALSE;
5253 }
5254
5255 static gint
5256 gtk_window_configure_event (GtkWidget         *widget,
5257                             GdkEventConfigure *event)
5258 {
5259   GtkAllocation allocation;
5260   GtkWindow *window = GTK_WINDOW (widget);
5261   GtkWindowPrivate *priv = window->priv;
5262   gboolean expected_reply = priv->configure_request_count > 0;
5263
5264   /* priv->configure_request_count incremented for each
5265    * configure request, and decremented to a min of 0 for
5266    * each configure notify.
5267    *
5268    * All it means is that we know we will get at least
5269    * priv->configure_request_count more configure notifies.
5270    * We could get more configure notifies than that; some
5271    * of the configure notifies we get may be unrelated to
5272    * the configure requests. But we will get at least
5273    * priv->configure_request_count notifies.
5274    */
5275
5276   if (priv->configure_request_count > 0)
5277     {
5278       priv->configure_request_count -= 1;
5279       gdk_window_thaw_toplevel_updates_libgtk_only (gtk_widget_get_window (widget));
5280     }
5281   
5282   /* As an optimization, we avoid a resize when possible.
5283    *
5284    * The only times we can avoid a resize are:
5285    *   - we know only the position changed, not the size
5286    *   - we know we have made more requests and so will get more
5287    *     notifies and can wait to resize when we get them
5288    */
5289   gtk_widget_get_allocation (widget, &allocation);
5290   if (!expected_reply &&
5291       (allocation.width == event->width &&
5292        allocation.height == event->height))
5293     {
5294       gdk_window_configure_finished (gtk_widget_get_window (widget));
5295       return TRUE;
5296     }
5297
5298   /*
5299    * If we do need to resize, we do that by:
5300    *   - filling in widget->allocation with the new size
5301    *   - setting configure_notify_received to TRUE
5302    *     for use in gtk_window_move_resize()
5303    *   - queueing a resize, leading to invocation of
5304    *     gtk_window_move_resize() in an idle handler
5305    *
5306    */
5307   
5308   priv->configure_notify_received = TRUE;
5309
5310   allocation.width = event->width;
5311   allocation.height = event->height;
5312   gtk_widget_set_allocation (widget, &allocation);
5313
5314   gdk_window_invalidate_rect (gtk_widget_get_window (widget), NULL, FALSE); // XXX - What was this for again?
5315
5316   _gtk_container_queue_resize (GTK_CONTAINER (widget));
5317   
5318   return TRUE;
5319 }
5320
5321 static gboolean
5322 gtk_window_state_event (GtkWidget           *widget,
5323                         GdkEventWindowState *event)
5324 {
5325   update_grip_visibility (GTK_WINDOW (widget));
5326
5327   return FALSE;
5328 }
5329
5330 static void
5331 gtk_window_direction_changed (GtkWidget        *widget,
5332                               GtkTextDirection  prev_dir)
5333 {
5334   GtkWindow *window = GTK_WINDOW (widget);
5335
5336   set_grip_cursor (window);
5337   set_grip_position (window);
5338   set_grip_shape (window);
5339 }
5340
5341 static void
5342 gtk_window_state_changed (GtkWidget    *widget,
5343                           GtkStateType  previous_state)
5344 {
5345   GtkWindow *window = GTK_WINDOW (widget);
5346
5347   set_grip_cursor (window);
5348   update_grip_visibility (window);
5349 }
5350
5351 static void
5352 resize_grip_create_window (GtkWindow *window)
5353 {
5354   GtkWidget *widget;
5355   GtkWindowPrivate *priv;
5356   GdkWindowAttr attributes;
5357   gint attributes_mask;
5358   GdkRectangle rect;
5359
5360   priv = window->priv;
5361   widget = GTK_WIDGET (window);
5362
5363   g_return_if_fail (gtk_widget_get_realized (widget));
5364   g_return_if_fail (priv->grip_window == NULL);
5365
5366   gtk_window_get_resize_grip_area (window, &rect);
5367
5368   attributes.x = rect.x;
5369   attributes.y = rect.y;
5370   attributes.width = rect.width;
5371   attributes.height = rect.height;
5372   attributes.window_type = GDK_WINDOW_CHILD;
5373   attributes.wclass = GDK_INPUT_OUTPUT;
5374   attributes.event_mask = gtk_widget_get_events (widget) |
5375                           GDK_EXPOSURE_MASK |
5376                           GDK_BUTTON_PRESS_MASK;
5377
5378   attributes_mask = GDK_WA_X | GDK_WA_Y;
5379
5380   priv->grip_window = gdk_window_new (gtk_widget_get_window (widget),
5381                                       &attributes,
5382                                       attributes_mask);
5383
5384   gdk_window_set_user_data (priv->grip_window, widget);
5385
5386   gdk_window_raise (priv->grip_window);
5387
5388   set_grip_cursor (window);
5389   set_grip_shape (window);
5390   update_grip_visibility (window);
5391 }
5392
5393 static void
5394 resize_grip_destroy_window (GtkWindow *window)
5395 {
5396   GtkWindowPrivate *priv = window->priv;
5397
5398   gdk_window_set_user_data (priv->grip_window, NULL);
5399   gdk_window_destroy (priv->grip_window);
5400   priv->grip_window = NULL;
5401   update_grip_visibility (window);
5402 }
5403
5404 /**
5405  * gtk_window_set_has_resize_grip:
5406  * @window: a #GtkWindow
5407  * @value: %TRUE to allow a resize grip
5408  *
5409  * Sets whether @window has a corner resize grip.
5410  *
5411  * Note that the resize grip is only shown if the window
5412  * is actually resizable and not maximized. Use
5413  * gtk_window_resize_grip_is_visible() to find out if the
5414  * resize grip is currently shown.
5415  *
5416  * Since: 3.0
5417  */
5418 void
5419 gtk_window_set_has_resize_grip (GtkWindow *window,
5420                                 gboolean   value)
5421 {
5422   GtkWidget *widget = GTK_WIDGET (window);
5423   GtkWindowPrivate *priv = window->priv;
5424
5425   value = value != FALSE;
5426
5427   if (value != priv->has_resize_grip)
5428     {
5429       priv->has_resize_grip = value;
5430       gtk_widget_queue_draw (widget);
5431
5432       if (gtk_widget_get_realized (widget))
5433         {
5434           if (priv->has_resize_grip && priv->grip_window == NULL)
5435             resize_grip_create_window (window);
5436           else if (!priv->has_resize_grip && priv->grip_window != NULL)
5437             resize_grip_destroy_window (window);
5438         }
5439
5440       g_object_notify (G_OBJECT (window), "has-resize-grip");
5441     }
5442 }
5443
5444 static void
5445 update_grip_visibility (GtkWindow *window)
5446 {
5447   GtkWindowPrivate *priv = window->priv;
5448   gboolean val;
5449
5450   val = gtk_window_resize_grip_is_visible (window);
5451
5452   if (priv->grip_window != NULL)
5453     {
5454       if (val)
5455         gdk_window_show (priv->grip_window);
5456       else
5457         gdk_window_hide (priv->grip_window);
5458     }
5459
5460   if (priv->resize_grip_visible != val)
5461     {
5462       priv->resize_grip_visible = val;
5463
5464       g_object_notify (G_OBJECT (window), "resize-grip-visible");
5465     }
5466 }
5467
5468 /**
5469  * gtk_window_resize_grip_is_visible:
5470  * @window: a #GtkWindow
5471  *
5472  * Determines whether a resize grip is visible for the specified window.
5473  *
5474  * Returns %TRUE if a resize grip exists and is visible.
5475  *
5476  * Since: 3.0
5477  */
5478 gboolean
5479 gtk_window_resize_grip_is_visible (GtkWindow *window)
5480 {
5481   GtkWindowPrivate *priv;
5482
5483   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
5484
5485   priv = window->priv;
5486
5487   if (priv->type == GTK_WINDOW_POPUP)
5488     return FALSE;
5489
5490   if (!priv->resizable)
5491     return FALSE;
5492
5493   if (gtk_widget_get_realized (GTK_WIDGET (window)))
5494     {
5495       GdkWindowState state;
5496
5497       state = gdk_window_get_state (gtk_widget_get_window (GTK_WIDGET (window)));
5498
5499       if (state & GDK_WINDOW_STATE_MAXIMIZED || state & GDK_WINDOW_STATE_FULLSCREEN)
5500         return FALSE;
5501     }
5502
5503   return window->priv->has_resize_grip;
5504 }
5505
5506 /**
5507  * gtk_window_get_has_resize_grip:
5508  * @window: a #GtkWindow
5509  *
5510  * Determines whether the window may has a resize grip.
5511  *
5512  * Returns: %TRUE if the window has a resize grip.
5513  *
5514  * Since: 3.0
5515  */
5516 gboolean
5517 gtk_window_get_has_resize_grip (GtkWindow *window)
5518 {
5519   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
5520
5521   return window->priv->has_resize_grip;
5522 }
5523
5524 /**
5525  * gtk_window_get_resize_grip_area:
5526  * @window: a #GtkWindow
5527  * @rect: a pointer to a #GdkRectangle which we should store the
5528  *     resize grip area.
5529  *
5530  * If a window has a resize grip, this will retrieve the grip
5531  * position, width and height into the specified #GdkRectangle.
5532  *
5533  * Returns: %TRUE if the resize grip's area was retrieved.
5534  *
5535  * Since: 3.0
5536  */
5537 gboolean
5538 gtk_window_get_resize_grip_area (GtkWindow *window,
5539                                  GdkRectangle *rect)
5540 {
5541   GtkWidget *widget = GTK_WIDGET (window);
5542   GtkAllocation allocation;
5543   GtkStyle *style;
5544   gint grip_width;
5545   gint grip_height;
5546
5547   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
5548
5549   if (!window->priv->has_resize_grip)
5550     return FALSE;
5551
5552   gtk_widget_get_allocation (widget, &allocation);
5553   style = gtk_widget_get_style (widget);
5554
5555   gtk_widget_style_get (widget,
5556                         "resize-grip-width", &grip_width,
5557                         "resize-grip-height", &grip_height,
5558                         NULL);
5559
5560   if (grip_width > allocation.width)
5561     grip_width = allocation.width;
5562
5563   if (grip_height > allocation.height)
5564     grip_height = allocation.height;
5565
5566   rect->width = grip_width;
5567   rect->height = grip_height;
5568   rect->y = allocation.y + allocation.height - grip_height;
5569
5570   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
5571     rect->x = allocation.x + allocation.width - grip_width;
5572   else
5573     rect->x = allocation.x;
5574
5575   return TRUE;
5576 }
5577
5578 /* the accel_key and accel_mods fields of the key have to be setup
5579  * upon calling this function. it'll then return whether that key
5580  * is at all used as accelerator, and if so will OR in the
5581  * accel_flags member of the key.
5582  */
5583 gboolean
5584 _gtk_window_query_nonaccels (GtkWindow      *window,
5585                              guint           accel_key,
5586                              GdkModifierType accel_mods)
5587 {
5588   GtkWindowPrivate *priv;
5589
5590   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
5591
5592   priv = window->priv;
5593
5594   /* movement keys are considered locked accels */
5595   if (!accel_mods)
5596     {
5597       static const guint bindings[] = {
5598         GDK_KEY_space, GDK_KEY_KP_Space, GDK_KEY_Return, GDK_KEY_ISO_Enter, GDK_KEY_KP_Enter, GDK_KEY_Up, GDK_KEY_KP_Up, GDK_KEY_Down, GDK_KEY_KP_Down,
5599         GDK_KEY_Left, GDK_KEY_KP_Left, GDK_KEY_Right, GDK_KEY_KP_Right, GDK_KEY_Tab, GDK_KEY_KP_Tab, GDK_KEY_ISO_Left_Tab,
5600       };
5601       guint i;
5602       
5603       for (i = 0; i < G_N_ELEMENTS (bindings); i++)
5604         if (bindings[i] == accel_key)
5605           return TRUE;
5606     }
5607
5608   /* mnemonics are considered locked accels */
5609   if (accel_mods == priv->mnemonic_modifier)
5610     {
5611       GtkMnemonicHash *mnemonic_hash = gtk_window_get_mnemonic_hash (window, FALSE);
5612       if (mnemonic_hash && _gtk_mnemonic_hash_lookup (mnemonic_hash, accel_key))
5613         return TRUE;
5614     }
5615
5616   return FALSE;
5617 }
5618
5619 /**
5620  * gtk_window_propagate_key_event:
5621  * @window:  a #GtkWindow
5622  * @event:   a #GdkEventKey
5623  *
5624  * Propagate a key press or release event to the focus widget and
5625  * up the focus container chain until a widget handles @event.
5626  * This is normally called by the default ::key_press_event and
5627  * ::key_release_event handlers for toplevel windows,
5628  * however in some cases it may be useful to call this directly when
5629  * overriding the standard key handling for a toplevel window.
5630  *
5631  * Return value: %TRUE if a widget in the focus chain handled the event.
5632  *
5633  * Since: 2.4
5634  */
5635 gboolean
5636 gtk_window_propagate_key_event (GtkWindow        *window,
5637                                 GdkEventKey      *event)
5638 {
5639   GtkWindowPrivate *priv;
5640   gboolean handled = FALSE;
5641   GtkWidget *widget, *focus;
5642
5643   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
5644
5645   priv = window->priv;
5646   widget = GTK_WIDGET (window);
5647
5648   focus = priv->focus_widget;
5649   if (focus)
5650     g_object_ref (focus);
5651   
5652   while (!handled &&
5653          focus && focus != widget &&
5654          gtk_widget_get_toplevel (focus) == widget)
5655     {
5656       GtkWidget *parent;
5657       
5658       if (gtk_widget_is_sensitive (focus))
5659         handled = gtk_widget_event (focus, (GdkEvent*) event);
5660
5661       parent = gtk_widget_get_parent (focus);
5662       if (parent)
5663         g_object_ref (parent);
5664       
5665       g_object_unref (focus);
5666       
5667       focus = parent;
5668     }
5669   
5670   if (focus)
5671     g_object_unref (focus);
5672
5673   return handled;
5674 }
5675
5676 static gint
5677 gtk_window_key_press_event (GtkWidget   *widget,
5678                             GdkEventKey *event)
5679 {
5680   GtkWindow *window = GTK_WINDOW (widget);
5681   gboolean handled = FALSE;
5682
5683   /* handle mnemonics and accelerators */
5684   if (!handled)
5685     handled = gtk_window_activate_key (window, event);
5686
5687   /* handle focus widget key events */
5688   if (!handled)
5689     handled = gtk_window_propagate_key_event (window, event);
5690
5691   /* Chain up, invokes binding set */
5692   if (!handled)
5693     handled = GTK_WIDGET_CLASS (gtk_window_parent_class)->key_press_event (widget, event);
5694
5695   return handled;
5696 }
5697
5698 static gint
5699 gtk_window_key_release_event (GtkWidget   *widget,
5700                               GdkEventKey *event)
5701 {
5702   GtkWindow *window = GTK_WINDOW (widget);
5703   gboolean handled = FALSE;
5704
5705   /* handle focus widget key events */
5706   if (!handled)
5707     handled = gtk_window_propagate_key_event (window, event);
5708
5709   /* Chain up, invokes binding set */
5710   if (!handled)
5711     handled = GTK_WIDGET_CLASS (gtk_window_parent_class)->key_release_event (widget, event);
5712
5713   return handled;
5714 }
5715
5716 static gint
5717 gtk_window_button_press_event (GtkWidget *widget,
5718                                GdkEventButton *event)
5719 {
5720   GtkWindowPrivate *priv = GTK_WINDOW (widget)->priv;
5721
5722   if (event->window == priv->grip_window)
5723     {
5724       gtk_window_begin_resize_drag (GTK_WINDOW (widget),
5725                                     get_drag_edge (widget),
5726                                     event->button,
5727                                     event->x_root,
5728                                     event->y_root,
5729                                     event->time);
5730
5731       return TRUE;
5732     }
5733
5734   return FALSE;
5735 }
5736
5737 static void
5738 gtk_window_real_activate_default (GtkWindow *window)
5739 {
5740   gtk_window_activate_default (window);
5741 }
5742
5743 static void
5744 gtk_window_real_activate_focus (GtkWindow *window)
5745 {
5746   gtk_window_activate_focus (window);
5747 }
5748
5749 static void
5750 gtk_window_move_focus (GtkWindow       *window,
5751                        GtkDirectionType dir)
5752 {
5753   gtk_widget_child_focus (GTK_WIDGET (window), dir);
5754   
5755   if (!gtk_container_get_focus_child (GTK_CONTAINER (window)))
5756     gtk_window_set_focus (window, NULL);
5757 }
5758
5759 static gint
5760 gtk_window_enter_notify_event (GtkWidget        *widget,
5761                                GdkEventCrossing *event)
5762 {
5763   return FALSE;
5764 }
5765
5766 static gint
5767 gtk_window_leave_notify_event (GtkWidget        *widget,
5768                                GdkEventCrossing *event)
5769 {
5770   return FALSE;
5771 }
5772
5773 static void
5774 do_focus_change (GtkWidget *widget,
5775                  gboolean   in)
5776 {
5777   GdkWindow *window;
5778   GdkDeviceManager *device_manager;
5779   GList *devices, *d;
5780
5781   g_object_ref (widget);
5782
5783   device_manager = gdk_display_get_device_manager (gtk_widget_get_display (widget));
5784   devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
5785   devices = g_list_concat (devices, gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_SLAVE));
5786   devices = g_list_concat (devices, gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_FLOATING));
5787
5788   for (d = devices; d; d = d->next)
5789     {
5790       GdkDevice *dev = d->data;
5791       GdkEvent *fevent;
5792
5793       if (dev->source != GDK_SOURCE_KEYBOARD)
5794         continue;
5795
5796       /* Skip non-master keyboards that haven't
5797        * selected for events from this window
5798        */
5799       window = gtk_widget_get_window (widget);
5800       if (gdk_device_get_device_type (dev) != GDK_DEVICE_TYPE_MASTER &&
5801           window && !gdk_window_get_device_events (window, dev))
5802         continue;
5803
5804       fevent = gdk_event_new (GDK_FOCUS_CHANGE);
5805
5806       fevent->focus_change.type = GDK_FOCUS_CHANGE;
5807       fevent->focus_change.window = window;
5808       if (window)
5809         g_object_ref (window);
5810       fevent->focus_change.in = in;
5811       gdk_event_set_device (fevent, dev);
5812
5813       gtk_widget_send_focus_change (widget, fevent);
5814
5815       gdk_event_free (fevent);
5816     }
5817
5818   g_list_free (devices);
5819   g_object_unref (widget);
5820 }
5821
5822 static gint
5823 gtk_window_focus_in_event (GtkWidget     *widget,
5824                            GdkEventFocus *event)
5825 {
5826   GtkWindow *window = GTK_WINDOW (widget);
5827
5828   /* It appears spurious focus in events can occur when
5829    *  the window is hidden. So we'll just check to see if
5830    *  the window is visible before actually handling the
5831    *  event
5832    */
5833   if (gtk_widget_get_visible (widget))
5834     {
5835       _gtk_window_set_has_toplevel_focus (window, TRUE);
5836       _gtk_window_set_is_active (window, TRUE);
5837     }
5838       
5839   return FALSE;
5840 }
5841
5842 static gint
5843 gtk_window_focus_out_event (GtkWidget     *widget,
5844                             GdkEventFocus *event)
5845 {
5846   GtkWindow *window = GTK_WINDOW (widget);
5847   gboolean auto_mnemonics;
5848
5849   _gtk_window_set_has_toplevel_focus (window, FALSE);
5850   _gtk_window_set_is_active (window, FALSE);
5851
5852   /* set the mnemonic-visible property to false */
5853   g_object_get (gtk_widget_get_settings (widget),
5854                 "gtk-auto-mnemonics", &auto_mnemonics, NULL);
5855   if (auto_mnemonics)
5856     gtk_window_set_mnemonics_visible (window, FALSE);
5857
5858   return FALSE;
5859 }
5860
5861 static GdkAtom atom_rcfiles = GDK_NONE;
5862 static GdkAtom atom_iconthemes = GDK_NONE;
5863
5864 static void
5865 send_client_message_to_embedded_windows (GtkWidget *widget,
5866                                          GdkAtom    message_type)
5867 {
5868   GList *embedded_windows;
5869
5870   embedded_windows = g_object_get_qdata (G_OBJECT (widget), quark_gtk_embedded);
5871   if (embedded_windows)
5872     {
5873       GdkEvent *send_event = gdk_event_new (GDK_CLIENT_EVENT);
5874       int i;
5875       
5876       for (i = 0; i < 5; i++)
5877         send_event->client.data.l[i] = 0;
5878       send_event->client.data_format = 32;
5879       send_event->client.message_type = message_type;
5880       
5881       while (embedded_windows)
5882         {
5883           GdkNativeWindow xid = GDK_GPOINTER_TO_NATIVE_WINDOW(embedded_windows->data);
5884           gdk_event_send_client_message_for_display (gtk_widget_get_display (widget), send_event, xid);
5885           embedded_windows = embedded_windows->next;
5886         }
5887
5888       gdk_event_free (send_event);
5889     }
5890 }
5891
5892 static gint
5893 gtk_window_client_event (GtkWidget      *widget,
5894                          GdkEventClient *event)
5895 {
5896   if (!atom_rcfiles)
5897     {
5898       atom_rcfiles = gdk_atom_intern_static_string ("_GTK_READ_RCFILES");
5899       atom_iconthemes = gdk_atom_intern_static_string ("_GTK_LOAD_ICONTHEMES");
5900     }
5901
5902   if (event->message_type == atom_rcfiles) 
5903     {
5904       send_client_message_to_embedded_windows (widget, atom_rcfiles);
5905       gtk_rc_reparse_all_for_settings (gtk_widget_get_settings (widget), FALSE);
5906     }
5907
5908   if (event->message_type == atom_iconthemes) 
5909     {
5910       send_client_message_to_embedded_windows (widget, atom_iconthemes);
5911       _gtk_icon_theme_check_reload (gtk_widget_get_display (widget));    
5912     }
5913
5914   return FALSE;
5915 }
5916
5917 static void
5918 gtk_window_check_resize (GtkContainer *container)
5919 {
5920   if (gtk_widget_get_visible (GTK_WIDGET (container)))
5921     gtk_window_move_resize (GTK_WINDOW (container));
5922 }
5923
5924 static gboolean
5925 gtk_window_focus (GtkWidget        *widget,
5926                   GtkDirectionType  direction)
5927 {
5928   GtkWindowPrivate *priv;
5929   GtkBin *bin;
5930   GtkWindow *window;
5931   GtkContainer *container;
5932   GtkWidget *child;
5933   GtkWidget *old_focus_child;
5934   GtkWidget *parent;
5935
5936   container = GTK_CONTAINER (widget);
5937   window = GTK_WINDOW (widget);
5938   priv = window->priv;
5939   bin = GTK_BIN (widget);
5940
5941   old_focus_child = gtk_container_get_focus_child (container);
5942   
5943   /* We need a special implementation here to deal properly with wrapping
5944    * around in the tab chain without the danger of going into an
5945    * infinite loop.
5946    */
5947   if (old_focus_child)
5948     {
5949       if (gtk_widget_child_focus (old_focus_child, direction))
5950         return TRUE;
5951     }
5952
5953   if (priv->focus_widget)
5954     {
5955       if (direction == GTK_DIR_LEFT ||
5956           direction == GTK_DIR_RIGHT ||
5957           direction == GTK_DIR_UP ||
5958           direction == GTK_DIR_DOWN)
5959         {
5960           return FALSE;
5961         }
5962       
5963       /* Wrapped off the end, clear the focus setting for the toplpevel */
5964       parent = gtk_widget_get_parent (priv->focus_widget);
5965       while (parent)
5966         {
5967           gtk_container_set_focus_child (GTK_CONTAINER (parent), NULL);
5968           parent = gtk_widget_get_parent (parent);
5969         }
5970       
5971       gtk_window_set_focus (GTK_WINDOW (container), NULL);
5972     }
5973
5974   /* Now try to focus the first widget in the window */
5975   child = gtk_bin_get_child (bin);
5976   if (child)
5977     {
5978       if (gtk_widget_child_focus (child, direction))
5979         return TRUE;
5980     }
5981
5982   return FALSE;
5983 }
5984
5985 static void
5986 gtk_window_real_set_focus (GtkWindow *window,
5987                            GtkWidget *focus)
5988 {
5989   GtkWindowPrivate *priv = window->priv;
5990   GtkWidget *old_focus = priv->focus_widget;
5991   gboolean had_default = FALSE;
5992   gboolean focus_had_default = FALSE;
5993   gboolean old_focus_had_default = FALSE;
5994
5995   if (old_focus)
5996     {
5997       g_object_ref (old_focus);
5998       g_object_freeze_notify (G_OBJECT (old_focus));
5999       old_focus_had_default = gtk_widget_has_default (old_focus);
6000     }
6001   if (focus)
6002     {
6003       g_object_ref (focus);
6004       g_object_freeze_notify (G_OBJECT (focus));
6005       focus_had_default = gtk_widget_has_default (focus);
6006     }
6007
6008   if (priv->default_widget)
6009     had_default = gtk_widget_has_default (priv->default_widget);
6010
6011   if (priv->focus_widget)
6012     {
6013       if (gtk_widget_get_receives_default (priv->focus_widget) &&
6014           (priv->focus_widget != priv->default_widget))
6015         {
6016           _gtk_widget_set_has_default (priv->focus_widget, FALSE);
6017           gtk_widget_queue_draw (priv->focus_widget);
6018
6019           if (priv->default_widget)
6020             _gtk_widget_set_has_default (priv->default_widget, TRUE);
6021         }
6022
6023       priv->focus_widget = NULL;
6024
6025       if (priv->has_focus)
6026         do_focus_change (old_focus, FALSE);
6027
6028       g_object_notify (G_OBJECT (old_focus), "is-focus");
6029     }
6030
6031   /* The above notifications may have set a new focus widget,
6032    * if so, we don't want to override it.
6033    */
6034   if (focus && !priv->focus_widget)
6035     {
6036       priv->focus_widget = focus;
6037
6038       if (gtk_widget_get_receives_default (priv->focus_widget) &&
6039           (priv->focus_widget != priv->default_widget))
6040         {
6041           if (gtk_widget_get_can_default (priv->focus_widget))
6042             _gtk_widget_set_has_default (priv->focus_widget, TRUE);
6043
6044           if (priv->default_widget)
6045             _gtk_widget_set_has_default (priv->default_widget, FALSE);
6046         }
6047
6048       if (priv->has_focus)
6049         do_focus_change (priv->focus_widget, TRUE);
6050
6051       g_object_notify (G_OBJECT (priv->focus_widget), "is-focus");
6052     }
6053
6054   /* If the default widget changed, a redraw will have been queued
6055    * on the old and new default widgets by gtk_window_set_default(), so
6056    * we only have to worry about the case where it didn't change.
6057    * We'll sometimes queue a draw twice on the new widget but that
6058    * is harmless.
6059    */
6060   if (priv->default_widget &&
6061       (had_default != gtk_widget_has_default (priv->default_widget)))
6062     gtk_widget_queue_draw (priv->default_widget);
6063   
6064   if (old_focus)
6065     {
6066       if (old_focus_had_default != gtk_widget_has_default (old_focus))
6067         gtk_widget_queue_draw (old_focus);
6068         
6069       g_object_thaw_notify (G_OBJECT (old_focus));
6070       g_object_unref (old_focus);
6071     }
6072   if (focus)
6073     {
6074       if (focus_had_default != gtk_widget_has_default (focus))
6075         gtk_widget_queue_draw (focus);
6076
6077       g_object_thaw_notify (G_OBJECT (focus));
6078       g_object_unref (focus);
6079     }
6080 }
6081
6082
6083 static void 
6084 gtk_window_get_preferred_width (GtkWidget *widget,
6085                                 gint      *minimum_size,
6086                                 gint      *natural_size)
6087 {
6088   GtkWindow *window;
6089   GtkWidget *child;
6090   guint border_width;
6091
6092   window = GTK_WINDOW (widget);
6093   child  = gtk_bin_get_child (GTK_BIN (window));
6094
6095   border_width = gtk_container_get_border_width (GTK_CONTAINER (window));
6096   *minimum_size = border_width * 2;
6097   *natural_size = border_width * 2;
6098
6099   if (child && gtk_widget_get_visible (child))
6100     {
6101       gint child_min, child_nat;
6102       gtk_widget_get_preferred_width (child, &child_min, &child_nat);
6103
6104       *minimum_size += child_min;
6105       *natural_size += child_nat;
6106     }
6107 }
6108
6109 static void 
6110 gtk_window_get_preferred_height (GtkWidget *widget,
6111                                  gint      *minimum_size,
6112                                  gint      *natural_size)
6113 {
6114   GtkWindow *window;
6115   GtkWidget *child;
6116   guint border_width;
6117
6118   window = GTK_WINDOW (widget);
6119   child  = gtk_bin_get_child (GTK_BIN (window));
6120
6121   border_width = gtk_container_get_border_width (GTK_CONTAINER (window));
6122   *minimum_size = border_width * 2;
6123   *natural_size = border_width * 2;
6124
6125   if (child && gtk_widget_get_visible (child))
6126     {
6127       gint child_min, child_nat;
6128       gtk_widget_get_preferred_height (child, &child_min, &child_nat);
6129
6130       *minimum_size += child_min;
6131       *natural_size += child_nat;
6132     }
6133 }
6134
6135
6136 /**
6137  * _gtk_window_unset_focus_and_default:
6138  * @window: a #GtkWindow
6139  * @widget: a widget inside of @window
6140  * 
6141  * Checks whether the focus and default widgets of @window are
6142  * @widget or a descendent of @widget, and if so, unset them.
6143  **/
6144 void
6145 _gtk_window_unset_focus_and_default (GtkWindow *window,
6146                                      GtkWidget *widget)
6147
6148 {
6149   GtkWindowPrivate *priv = window->priv;
6150   GtkWidget *child;
6151   GtkWidget *parent;
6152
6153   g_object_ref (window);
6154   g_object_ref (widget);
6155
6156   parent = gtk_widget_get_parent (widget);
6157   if (gtk_container_get_focus_child (GTK_CONTAINER (parent)) == widget)
6158     {
6159       child = priv->focus_widget;
6160       
6161       while (child && child != widget)
6162         child = gtk_widget_get_parent (child);
6163
6164       if (child == widget)
6165         gtk_window_set_focus (GTK_WINDOW (window), NULL);
6166     }
6167       
6168   child = priv->default_widget;
6169       
6170   while (child && child != widget)
6171     child = gtk_widget_get_parent (child);
6172
6173   if (child == widget)
6174     gtk_window_set_default (window, NULL);
6175   
6176   g_object_unref (widget);
6177   g_object_unref (window);
6178 }
6179
6180 /*********************************
6181  * Functions related to resizing *
6182  *********************************/
6183
6184 static void
6185 geometry_size_to_pixels (GdkGeometry *geometry,
6186                          guint        flags,
6187                          guint       *width,
6188                          guint       *height)
6189 {
6190   gint base_width = 0;
6191   gint base_height = 0;
6192   gint min_width = 0;
6193   gint min_height = 0;
6194   gint width_inc = 1;
6195   gint height_inc = 1;
6196
6197   if (flags & GDK_HINT_BASE_SIZE)
6198     {
6199       base_width = geometry->base_width;
6200       base_height = geometry->base_height;
6201     }
6202   if (flags & GDK_HINT_MIN_SIZE)
6203     {
6204       min_width = geometry->min_width;
6205       min_height = geometry->min_height;
6206     }
6207   if (flags & GDK_HINT_RESIZE_INC)
6208     {
6209       width_inc = geometry->width_inc;
6210       height_inc = geometry->height_inc;
6211     }
6212
6213   if (width)
6214     *width = MAX (*width * width_inc + base_width, min_width);
6215   if (height)
6216     *height = MAX (*height * height_inc + base_height, min_height);
6217 }
6218
6219 /* This function doesn't constrain to geometry hints */
6220 static void 
6221 gtk_window_compute_configure_request_size (GtkWindow   *window,
6222                                            GdkGeometry *geometry,
6223                                            guint        flags,
6224                                            guint       *width,
6225                                            guint       *height)
6226 {
6227   GtkWindowPrivate *priv = window->priv;
6228   GtkRequisition requisition;
6229   GtkWindowGeometryInfo *info;
6230   GtkWidget *widget;
6231
6232   /* Preconditions:
6233    *  - we've done a size request
6234    */
6235   
6236   widget = GTK_WIDGET (window);
6237
6238   info = gtk_window_get_geometry_info (window, FALSE);
6239
6240   if (priv->need_default_size)
6241     {
6242       gtk_widget_get_preferred_size (widget, &requisition, NULL);
6243
6244       /* Default to requisition */
6245       *width = requisition.width;
6246       *height = requisition.height;
6247
6248       /* If window is empty so requests 0, default to random nonzero size */
6249        if (*width == 0 && *height == 0)
6250          {
6251            *width = 200;
6252            *height = 200;
6253          }
6254
6255        /* Override requisition with default size */
6256
6257        if (info)
6258          {
6259            if (info->default_width > 0)
6260              *width = info->default_width;
6261            if (info->default_height > 0)
6262              *height = info->default_height;
6263
6264            if (info->default_is_geometry)
6265              geometry_size_to_pixels (geometry, flags,
6266                                       info->default_width > 0 ? width : NULL,
6267                                       info->default_height > 0 ? height : NULL);
6268          }
6269     }
6270   else
6271     {
6272       GtkAllocation allocation;
6273
6274       gtk_widget_get_allocation (widget, &allocation);
6275
6276       /* Default to keeping current size */
6277       *width = allocation.width;
6278       *height = allocation.height;
6279     }
6280
6281   /* Override any size with gtk_window_resize() values */
6282   if (info)
6283     {
6284       if (info->resize_width > 0)
6285         *width = info->resize_width;
6286       if (info->resize_height > 0)
6287         *height = info->resize_height;
6288
6289       if (info->resize_is_geometry)
6290         geometry_size_to_pixels (geometry, flags,
6291                                  info->resize_width > 0 ? width : NULL,
6292                                  info->resize_height > 0 ? height : NULL);
6293     }
6294
6295   /* Don't ever request zero width or height, its not supported by
6296      gdk. The size allocation code will round it to 1 anyway but if
6297      we do it then the value returned from this function will is
6298      not comparable to the size allocation read from the GtkWindow. */
6299   *width = MAX (*width, 1);
6300   *height = MAX (*height, 1);
6301 }
6302
6303 static GtkWindowPosition
6304 get_effective_position (GtkWindow *window)
6305 {
6306   GtkWindowPrivate *priv = window->priv;
6307   GtkWindowPosition pos = priv->position;
6308
6309   if (pos == GTK_WIN_POS_CENTER_ON_PARENT &&
6310       (priv->transient_parent == NULL ||
6311        !gtk_widget_get_mapped (GTK_WIDGET (priv->transient_parent))))
6312     pos = GTK_WIN_POS_NONE;
6313
6314   return pos;
6315 }
6316
6317 static int
6318 get_center_monitor_of_window (GtkWindow *window)
6319 {
6320   /* We could try to sort out the relative positions of the monitors and
6321    * stuff, or we could just be losers and assume you have a row
6322    * or column of monitors.
6323    */
6324   return gdk_screen_get_n_monitors (gtk_window_check_screen (window)) / 2;
6325 }
6326
6327 static int
6328 get_monitor_containing_pointer (GtkWindow *window)
6329 {
6330   gint px, py;
6331   gint monitor_num;
6332   GdkScreen *window_screen;
6333   GdkScreen *pointer_screen;
6334   GdkDisplay *display;
6335   GdkDeviceManager *device_manager;
6336   GdkDevice *pointer;
6337
6338   window_screen = gtk_window_check_screen (window);
6339   display = gdk_screen_get_display (window_screen);
6340   device_manager = gdk_display_get_device_manager (display);
6341   pointer = gdk_device_manager_get_client_pointer (device_manager);
6342
6343   gdk_display_get_device_state (display, pointer,
6344                                 &pointer_screen,
6345                                 &px, &py, NULL);
6346
6347   if (pointer_screen == window_screen)
6348     monitor_num = gdk_screen_get_monitor_at_point (pointer_screen, px, py);
6349   else
6350     monitor_num = -1;
6351
6352   return monitor_num;
6353 }
6354
6355 static void
6356 center_window_on_monitor (GtkWindow *window,
6357                           gint       w,
6358                           gint       h,
6359                           gint      *x,
6360                           gint      *y)
6361 {
6362   GdkRectangle monitor;
6363   int monitor_num;
6364
6365   monitor_num = get_monitor_containing_pointer (window);
6366   
6367   if (monitor_num == -1)
6368     monitor_num = get_center_monitor_of_window (window);
6369
6370   gdk_screen_get_monitor_geometry (gtk_window_check_screen (window),
6371                                    monitor_num, &monitor);
6372   
6373   *x = (monitor.width - w) / 2 + monitor.x;
6374   *y = (monitor.height - h) / 2 + monitor.y;
6375
6376   /* Be sure we aren't off the monitor, ignoring _NET_WM_STRUT
6377    * and WM decorations.
6378    */
6379   if (*x < monitor.x)
6380     *x = monitor.x;
6381   if (*y < monitor.y)
6382     *y = monitor.y;
6383 }
6384
6385 static void
6386 clamp (gint *base,
6387        gint  extent,
6388        gint  clamp_base,
6389        gint  clamp_extent)
6390 {
6391   if (extent > clamp_extent)
6392     /* Center */
6393     *base = clamp_base + clamp_extent/2 - extent/2;
6394   else if (*base < clamp_base)
6395     *base = clamp_base;
6396   else if (*base + extent > clamp_base + clamp_extent)
6397     *base = clamp_base + clamp_extent - extent;
6398 }
6399
6400 static void
6401 clamp_window_to_rectangle (gint               *x,
6402                            gint               *y,
6403                            gint                w,
6404                            gint                h,
6405                            const GdkRectangle *rect)
6406 {
6407 #ifdef DEBUGGING_OUTPUT
6408   g_print ("%s: %+d%+d %dx%d: %+d%+d: %dx%d", G_STRFUNC, rect->x, rect->y, rect->width, rect->height, *x, *y, w, h);
6409 #endif
6410
6411   /* If it is too large, center it. If it fits on the monitor but is
6412    * partially outside, move it to the closest edge. Do this
6413    * separately in x and y directions.
6414    */
6415   clamp (x, w, rect->x, rect->width);
6416   clamp (y, h, rect->y, rect->height);
6417 #ifdef DEBUGGING_OUTPUT
6418   g_print (" ==> %+d%+d: %dx%d\n", *x, *y, w, h);
6419 #endif
6420 }
6421
6422
6423 static void
6424 gtk_window_compute_configure_request (GtkWindow    *window,
6425                                       GdkRectangle *request,
6426                                       GdkGeometry  *geometry,
6427                                       guint        *flags)
6428 {
6429   GtkWindowPrivate *priv = window->priv;
6430   GdkGeometry new_geometry;
6431   guint new_flags;
6432   int w, h;
6433   GtkWidget *widget;
6434   GtkWindowPosition pos;
6435   GtkWidget *parent_widget;
6436   GtkWindowGeometryInfo *info;
6437   GdkScreen *screen;
6438   int x, y;
6439   
6440   widget = GTK_WIDGET (window);
6441
6442   screen = gtk_window_check_screen (window);
6443
6444   gtk_window_compute_hints (window, &new_geometry, &new_flags);
6445   gtk_window_compute_configure_request_size (window,
6446                                              &new_geometry, new_flags,
6447                                              (guint *)&w, (guint *)&h);
6448
6449   gtk_window_constrain_size (window,
6450                              &new_geometry, new_flags,
6451                              w, h,
6452                              &w, &h);
6453
6454   parent_widget = (GtkWidget*) priv->transient_parent;
6455   
6456   pos = get_effective_position (window);
6457   info = gtk_window_get_geometry_info (window, FALSE);
6458   
6459   /* by default, don't change position requested */
6460   if (info)
6461     {
6462       x = info->last.configure_request.x;
6463       y = info->last.configure_request.y;
6464     }
6465   else
6466     {
6467       x = 0;
6468       y = 0;
6469     }
6470
6471
6472   if (priv->need_default_position)
6473     {
6474
6475       /* FIXME this all interrelates with window gravity.
6476        * For most of them I think we want to set GRAVITY_CENTER.
6477        *
6478        * Not sure how to go about that.
6479        */
6480       
6481       switch (pos)
6482         {
6483           /* here we are only handling CENTER_ALWAYS
6484            * as it relates to default positioning,
6485            * where it's equivalent to simply CENTER
6486            */
6487         case GTK_WIN_POS_CENTER_ALWAYS:
6488         case GTK_WIN_POS_CENTER:
6489           center_window_on_monitor (window, w, h, &x, &y);
6490           break;
6491       
6492         case GTK_WIN_POS_CENTER_ON_PARENT:
6493           {
6494             GtkAllocation allocation;
6495             GdkWindow *gdk_window;
6496             gint monitor_num;
6497             GdkRectangle monitor;
6498             gint ox, oy;
6499             
6500             g_assert (gtk_widget_get_mapped (parent_widget)); /* established earlier */
6501
6502             gdk_window = gtk_widget_get_window (parent_widget);
6503
6504             if (gdk_window != NULL)
6505               monitor_num = gdk_screen_get_monitor_at_window (screen,
6506                                                               gdk_window);
6507             else
6508               monitor_num = -1;
6509
6510             gdk_window_get_origin (gdk_window,
6511                                    &ox, &oy);
6512
6513             gtk_widget_get_allocation (parent_widget, &allocation);
6514             x = ox + (allocation.width - w) / 2;
6515             y = oy + (allocation.height - h) / 2;
6516
6517             /* Clamp onto current monitor, ignoring _NET_WM_STRUT and
6518              * WM decorations. If parent wasn't on a monitor, just
6519              * give up.
6520              */
6521             if (monitor_num >= 0)
6522               {
6523                 gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
6524                 clamp_window_to_rectangle (&x, &y, w, h, &monitor);
6525               }
6526           }
6527           break;
6528
6529         case GTK_WIN_POS_MOUSE:
6530           {
6531             gint screen_width = gdk_screen_get_width (screen);
6532             gint screen_height = gdk_screen_get_height (screen);
6533             gint monitor_num;
6534             GdkRectangle monitor;
6535             GdkDisplay *display;
6536             GdkDeviceManager *device_manager;
6537             GdkDevice *pointer;
6538             GdkScreen *pointer_screen;
6539             gint px, py;
6540
6541             display = gdk_screen_get_display (screen);
6542             device_manager = gdk_display_get_device_manager (display);
6543             pointer = gdk_device_manager_get_client_pointer (device_manager);
6544
6545             gdk_display_get_device_state (display, pointer,
6546                                           &pointer_screen,
6547                                           &px, &py, NULL);
6548
6549             if (pointer_screen == screen)
6550               monitor_num = gdk_screen_get_monitor_at_point (screen, px, py);
6551             else
6552               monitor_num = -1;
6553             
6554             x = px - w / 2;
6555             y = py - h / 2;
6556             x = CLAMP (x, 0, screen_width - w);
6557             y = CLAMP (y, 0, screen_height - h);
6558
6559             /* Clamp onto current monitor, ignoring _NET_WM_STRUT and
6560              * WM decorations. Don't try to figure out what's going
6561              * on if the mouse wasn't inside a monitor.
6562              */
6563             if (monitor_num >= 0)
6564               {
6565                 gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
6566                 clamp_window_to_rectangle (&x, &y, w, h, &monitor);
6567               }
6568           }
6569           break;
6570
6571         default:
6572           break;
6573         }
6574     } /* if (priv->need_default_position) */
6575
6576   if (priv->need_default_position && info &&
6577       info->initial_pos_set)
6578     {
6579       x = info->initial_x;
6580       y = info->initial_y;
6581       gtk_window_constrain_position (window, w, h, &x, &y);
6582     }
6583   
6584   request->x = x;
6585   request->y = y;
6586   request->width = w;
6587   request->height = h;
6588
6589   if (geometry)
6590     *geometry = new_geometry;
6591   if (flags)
6592     *flags = new_flags;
6593 }
6594
6595 static void
6596 gtk_window_constrain_position (GtkWindow    *window,
6597                                gint          new_width,
6598                                gint          new_height,
6599                                gint         *x,
6600                                gint         *y)
6601 {
6602   GtkWindowPrivate *priv = window->priv;
6603
6604   /* See long comments in gtk_window_move_resize()
6605    * on when it's safe to call this function.
6606    */
6607   if (priv->position == GTK_WIN_POS_CENTER_ALWAYS)
6608     {
6609       gint center_x, center_y;
6610
6611       center_window_on_monitor (window, new_width, new_height, &center_x, &center_y);
6612       
6613       *x = center_x;
6614       *y = center_y;
6615     }
6616 }
6617
6618 static void
6619 gtk_window_move_resize (GtkWindow *window)
6620 {
6621   /* Overview:
6622    *
6623    * First we determine whether any information has changed that would
6624    * cause us to revise our last configure request.  If we would send
6625    * a different configure request from last time, then
6626    * configure_request_size_changed = TRUE or
6627    * configure_request_pos_changed = TRUE. configure_request_size_changed
6628    * may be true due to new hints, a gtk_window_resize(), or whatever.
6629    * configure_request_pos_changed may be true due to gtk_window_set_position()
6630    * or gtk_window_move().
6631    *
6632    * If the configure request has changed, we send off a new one.  To
6633    * ensure GTK+ invariants are maintained (resize queue does what it
6634    * should), we go ahead and size_allocate the requested size in this
6635    * function.
6636    *
6637    * If the configure request has not changed, we don't ever resend
6638    * it, because it could mean fighting the user or window manager.
6639    *
6640    * 
6641    *   To prepare the configure request, we come up with a base size/pos:
6642    *      - the one from gtk_window_move()/gtk_window_resize()
6643    *      - else default_width, default_height if we haven't ever
6644    *        been mapped
6645    *      - else the size request if we haven't ever been mapped,
6646    *        as a substitute default size
6647    *      - else the current size of the window, as received from
6648    *        configure notifies (i.e. the current allocation)
6649    *
6650    *   If GTK_WIN_POS_CENTER_ALWAYS is active, we constrain
6651    *   the position request to be centered.
6652    */
6653   GtkWindowPrivate *priv = window->priv;
6654   GtkAllocation allocation;
6655   GtkWidget *widget;
6656   GtkContainer *container;
6657   GtkWindowGeometryInfo *info;
6658   GdkGeometry new_geometry;
6659   GdkWindow *gdk_window;
6660   guint new_flags;
6661   GdkRectangle new_request;
6662   gboolean configure_request_size_changed;
6663   gboolean configure_request_pos_changed;
6664   gboolean hints_changed; /* do we need to send these again */
6665   GtkWindowLastGeometryInfo saved_last_info;
6666   
6667   widget = GTK_WIDGET (window);
6668   gdk_window = gtk_widget_get_window (widget);
6669   container = GTK_CONTAINER (widget);
6670   info = gtk_window_get_geometry_info (window, TRUE);
6671   
6672   configure_request_size_changed = FALSE;
6673   configure_request_pos_changed = FALSE;
6674   
6675   gtk_window_compute_configure_request (window, &new_request,
6676                                         &new_geometry, &new_flags);  
6677   
6678   /* This check implies the invariant that we never set info->last
6679    * without setting the hints and sending off a configure request.
6680    *
6681    * If we change info->last without sending the request, we may
6682    * miss a request.
6683    */
6684   if (info->last.configure_request.x != new_request.x ||
6685       info->last.configure_request.y != new_request.y)
6686     configure_request_pos_changed = TRUE;
6687
6688   if ((info->last.configure_request.width != new_request.width ||
6689        info->last.configure_request.height != new_request.height))
6690     configure_request_size_changed = TRUE;
6691   
6692   hints_changed = FALSE;
6693   
6694   if (!gtk_window_compare_hints (&info->last.geometry, info->last.flags,
6695                                  &new_geometry, new_flags))
6696     {
6697       hints_changed = TRUE;
6698     }
6699   
6700   /* Position Constraints
6701    * ====================
6702    * 
6703    * POS_CENTER_ALWAYS is conceptually a constraint rather than
6704    * a default. The other POS_ values are used only when the
6705    * window is shown, not after that.
6706    * 
6707    * However, we can't implement a position constraint as
6708    * "anytime the window size changes, center the window"
6709    * because this may well end up fighting the WM or user.  In
6710    * fact it gets in an infinite loop with at least one WM.
6711    *
6712    * Basically, applications are in no way in a position to
6713    * constrain the position of a window, with one exception:
6714    * override redirect windows. (Really the intended purpose
6715    * of CENTER_ALWAYS anyhow, I would think.)
6716    *
6717    * So the way we implement this "constraint" is to say that when WE
6718    * cause a move or resize, i.e. we make a configure request changing
6719    * window size, we recompute the CENTER_ALWAYS position to reflect
6720    * the new window size, and include it in our request.  Also, if we
6721    * just turned on CENTER_ALWAYS we snap to center with a new
6722    * request.  Otherwise, if we are just NOTIFIED of a move or resize
6723    * done by someone else e.g. the window manager, we do NOT send a
6724    * new configure request.
6725    *
6726    * For override redirect windows, this works fine; all window
6727    * sizes are from our configure requests. For managed windows,
6728    * it is at least semi-sane, though who knows what the
6729    * app author is thinking.
6730    */
6731
6732   /* This condition should be kept in sync with the condition later on
6733    * that determines whether we send a configure request.  i.e. we
6734    * should do this position constraining anytime we were going to
6735    * send a configure request anyhow, plus when constraints have
6736    * changed.
6737    */
6738   if (configure_request_pos_changed ||
6739       configure_request_size_changed ||
6740       hints_changed ||
6741       info->position_constraints_changed)
6742     {
6743       /* We request the constrained position if:
6744        *  - we were changing position, and need to clamp
6745        *    the change to the constraint
6746        *  - we're changing the size anyway
6747        *  - set_position() was called to toggle CENTER_ALWAYS on
6748        */
6749
6750       gtk_window_constrain_position (window,
6751                                      new_request.width,
6752                                      new_request.height,
6753                                      &new_request.x,
6754                                      &new_request.y);
6755       
6756       /* Update whether we need to request a move */
6757       if (info->last.configure_request.x != new_request.x ||
6758           info->last.configure_request.y != new_request.y)
6759         configure_request_pos_changed = TRUE;
6760       else
6761         configure_request_pos_changed = FALSE;
6762     }
6763
6764 #if 0
6765   if (priv->type == GTK_WINDOW_TOPLEVEL)
6766     {
6767       int notify_x, notify_y;
6768
6769       /* this is the position from the last configure notify */
6770       gdk_window_get_position (widget->window, &notify_x, &notify_y);
6771     
6772       g_message ("--- %s ---\n"
6773                  "last  : %d,%d\t%d x %d\n"
6774                  "this  : %d,%d\t%d x %d\n"
6775                  "alloc : %d,%d\t%d x %d\n"
6776                  "req   :      \t%d x %d\n"
6777                  "resize:      \t%d x %d\n" 
6778                  "size_changed: %d pos_changed: %d hints_changed: %d\n"
6779                  "configure_notify_received: %d\n"
6780                  "configure_request_count: %d\n"
6781                  "position_constraints_changed: %d\n",
6782                  priv->title ? priv->title : "(no title)",
6783                  info->last.configure_request.x,
6784                  info->last.configure_request.y,
6785                  info->last.configure_request.width,
6786                  info->last.configure_request.height,
6787                  new_request.x,
6788                  new_request.y,
6789                  new_request.width,
6790                  new_request.height,
6791                  notify_x, notify_y,
6792                  widget->allocation.width,
6793                  widget->allocation.height,
6794                  widget->requisition.width,
6795                  widget->requisition.height,
6796                  info->resize_width,
6797                  info->resize_height,
6798                  configure_request_pos_changed,
6799                  configure_request_size_changed,
6800                  hints_changed,
6801                  priv->configure_notify_received,
6802                  priv->configure_request_count,
6803                  info->position_constraints_changed);
6804     }
6805 #endif
6806   
6807   saved_last_info = info->last;
6808   info->last.geometry = new_geometry;
6809   info->last.flags = new_flags;
6810   info->last.configure_request = new_request;
6811   
6812   /* need to set PPosition so the WM will look at our position,
6813    * but we don't want to count PPosition coming and going as a hints
6814    * change for future iterations. So we saved info->last prior to
6815    * this.
6816    */
6817   
6818   /* Also, if the initial position was explicitly set, then we always
6819    * toggle on PPosition. This makes gtk_window_move(window, 0, 0)
6820    * work.
6821    */
6822
6823   /* Also, we toggle on PPosition if GTK_WIN_POS_ is in use and
6824    * this is an initial map
6825    */
6826   
6827   if ((configure_request_pos_changed ||
6828        info->initial_pos_set ||
6829        (priv->need_default_position &&
6830         get_effective_position (window) != GTK_WIN_POS_NONE)) &&
6831       (new_flags & GDK_HINT_POS) == 0)
6832     {
6833       new_flags |= GDK_HINT_POS;
6834       hints_changed = TRUE;
6835     }
6836   
6837   /* Set hints if necessary
6838    */
6839   if (hints_changed)
6840     gdk_window_set_geometry_hints (gdk_window,
6841                                    &new_geometry,
6842                                    new_flags);
6843
6844   gtk_widget_get_allocation (widget, &allocation);
6845
6846   /* handle resizing/moving and widget tree allocation
6847    */
6848   if (priv->configure_notify_received)
6849     { 
6850       /* If we have received a configure event since
6851        * the last time in this function, we need to
6852        * accept our new size and size_allocate child widgets.
6853        * (see gtk_window_configure_event() for more details).
6854        *
6855        * 1 or more configure notifies may have been received.
6856        * Also, configure_notify_received will only be TRUE
6857        * if all expected configure notifies have been received
6858        * (one per configure request), as an optimization.
6859        *
6860        */
6861       priv->configure_notify_received = FALSE;
6862
6863       /* gtk_window_configure_event() filled in widget->allocation */
6864       gtk_widget_size_allocate (widget, &allocation);
6865
6866       set_grip_position (window);
6867       set_grip_cursor (window);
6868       set_grip_shape (window);
6869
6870       gdk_window_process_updates (gdk_window, TRUE);
6871
6872       gdk_window_configure_finished (gdk_window);
6873
6874       /* If the configure request changed, it means that
6875        * we either:
6876        *   1) coincidentally changed hints or widget properties
6877        *      impacting the configure request before getting
6878        *      a configure notify, or
6879        *   2) some broken widget is changing its size request
6880        *      during size allocation, resulting in
6881        *      a false appearance of changed configure request.
6882        *
6883        * For 1), we could just go ahead and ask for the
6884        * new size right now, but doing that for 2)
6885        * might well be fighting the user (and can even
6886        * trigger a loop). Since we really don't want to
6887        * do that, we requeue a resize in hopes that
6888        * by the time it gets handled, the child has seen
6889        * the light and is willing to go along with the
6890        * new size. (this happens for the zvt widget, since
6891        * the size_allocate() above will have stored the
6892        * requisition corresponding to the new size in the
6893        * zvt widget)
6894        *
6895        * This doesn't buy us anything for 1), but it shouldn't
6896        * hurt us too badly, since it is what would have
6897        * happened if we had gotten the configure event before
6898        * the new size had been set.
6899        */
6900
6901       if (configure_request_size_changed ||
6902           configure_request_pos_changed)
6903         {
6904           /* Don't change the recorded last info after all, because we
6905            * haven't actually updated to the new info yet - we decided
6906            * to postpone our configure request until later.
6907            */
6908           info->last = saved_last_info;
6909           
6910           gtk_widget_queue_resize_no_redraw (widget); /* migth recurse for GTK_RESIZE_IMMEDIATE */
6911         }
6912
6913       return;                   /* Bail out, we didn't really process the move/resize */
6914     }
6915   else if ((configure_request_size_changed || hints_changed) &&
6916            (allocation.width != new_request.width || allocation.height != new_request.height))
6917
6918     {
6919       /* We are in one of the following situations:
6920        * A. configure_request_size_changed
6921        *    our requisition has changed and we need a different window size,
6922        *    so we request it from the window manager.
6923        * B. !configure_request_size_changed && hints_changed
6924        *    the window manager rejects our size, but we have just changed the
6925        *    window manager hints, so there's a chance our request will
6926        *    be honoured this time, so we try again.
6927        *
6928        * However, if the new requisition is the same as the current allocation,
6929        * we don't request it again, since we won't get a ConfigureNotify back from
6930        * the window manager unless it decides to change our requisition. If
6931        * we don't get the ConfigureNotify back, the resize queue will never be run.
6932        */
6933
6934       /* Now send the configure request */
6935       if (configure_request_pos_changed)
6936         {
6937           if (priv->frame)
6938             {
6939               gdk_window_move_resize (priv->frame,
6940                                       new_request.x - priv->frame_left,
6941                                       new_request.y - priv->frame_top,
6942                                       new_request.width + priv->frame_left + priv->frame_right,
6943                                       new_request.height + priv->frame_top + priv->frame_bottom);
6944               gdk_window_resize (gdk_window,
6945                                  new_request.width, new_request.height);
6946             }
6947           else
6948             gdk_window_move_resize (gdk_window,
6949                                     new_request.x, new_request.y,
6950                                     new_request.width, new_request.height);
6951         }
6952       else  /* only size changed */
6953         {
6954           if (priv->frame)
6955             gdk_window_resize (priv->frame,
6956                                new_request.width + priv->frame_left + priv->frame_right,
6957                                new_request.height + priv->frame_top + priv->frame_bottom);
6958           gdk_window_resize (gdk_window,
6959                              new_request.width, new_request.height);
6960         }
6961
6962       if (priv->type == GTK_WINDOW_POPUP)
6963         {
6964           GtkAllocation allocation;
6965
6966           /* Directly size allocate for override redirect (popup) windows. */
6967           allocation.x = 0;
6968           allocation.y = 0;
6969           allocation.width = new_request.width;
6970           allocation.height = new_request.height;
6971
6972           gtk_widget_size_allocate (widget, &allocation);
6973
6974           gdk_window_process_updates (gdk_window, TRUE);
6975
6976           if (gtk_container_get_resize_mode (container) == GTK_RESIZE_QUEUE)
6977             gtk_widget_queue_draw (widget);
6978         }
6979       else
6980         {
6981           /* Increment the number of have-not-yet-received-notify requests */
6982           priv->configure_request_count += 1;
6983           gdk_window_freeze_toplevel_updates_libgtk_only (gdk_window);
6984
6985           /* for GTK_RESIZE_QUEUE toplevels, we are now awaiting a new
6986            * configure event in response to our resizing request.
6987            * the configure event will cause a new resize with
6988            * ->configure_notify_received=TRUE.
6989            * until then, we want to
6990            * - discard expose events
6991            * - coalesce resizes for our children
6992            * - defer any window resizes until the configure event arrived
6993            * to achieve this, we queue a resize for the window, but remove its
6994            * resizing handler, so resizing will not be handled from the next
6995            * idle handler but when the configure event arrives.
6996            *
6997            * FIXME: we should also dequeue the pending redraws here, since
6998            * we handle those ourselves upon ->configure_notify_received==TRUE.
6999            */
7000           if (gtk_container_get_resize_mode (container) == GTK_RESIZE_QUEUE)
7001             {
7002               gtk_widget_queue_resize_no_redraw (widget);
7003               _gtk_container_dequeue_resize_handler (container);
7004             }
7005         }
7006     }
7007   else
7008     {
7009       /* Handle any position changes.
7010        */
7011       if (configure_request_pos_changed)
7012         {
7013           if (priv->frame)
7014             {
7015               gdk_window_move (priv->frame,
7016                                new_request.x - priv->frame_left,
7017                                new_request.y - priv->frame_top);
7018             }
7019           else
7020             gdk_window_move (gdk_window,
7021                              new_request.x, new_request.y);
7022         }
7023
7024       /* And run the resize queue.
7025        */
7026       gtk_container_resize_children (container);
7027     }
7028   
7029   /* We have now processed a move/resize since the last position
7030    * constraint change, setting of the initial position, or resize.
7031    * (Not resetting these flags here can lead to infinite loops for
7032    * GTK_RESIZE_IMMEDIATE containers)
7033    */
7034   info->position_constraints_changed = FALSE;
7035   info->initial_pos_set = FALSE;
7036   info->resize_width = -1;
7037   info->resize_height = -1;
7038 }
7039
7040 /* Compare two sets of Geometry hints for equality.
7041  */
7042 static gboolean
7043 gtk_window_compare_hints (GdkGeometry *geometry_a,
7044                           guint        flags_a,
7045                           GdkGeometry *geometry_b,
7046                           guint        flags_b)
7047 {
7048   if (flags_a != flags_b)
7049     return FALSE;
7050   
7051   if ((flags_a & GDK_HINT_MIN_SIZE) &&
7052       (geometry_a->min_width != geometry_b->min_width ||
7053        geometry_a->min_height != geometry_b->min_height))
7054     return FALSE;
7055
7056   if ((flags_a & GDK_HINT_MAX_SIZE) &&
7057       (geometry_a->max_width != geometry_b->max_width ||
7058        geometry_a->max_height != geometry_b->max_height))
7059     return FALSE;
7060
7061   if ((flags_a & GDK_HINT_BASE_SIZE) &&
7062       (geometry_a->base_width != geometry_b->base_width ||
7063        geometry_a->base_height != geometry_b->base_height))
7064     return FALSE;
7065
7066   if ((flags_a & GDK_HINT_ASPECT) &&
7067       (geometry_a->min_aspect != geometry_b->min_aspect ||
7068        geometry_a->max_aspect != geometry_b->max_aspect))
7069     return FALSE;
7070
7071   if ((flags_a & GDK_HINT_RESIZE_INC) &&
7072       (geometry_a->width_inc != geometry_b->width_inc ||
7073        geometry_a->height_inc != geometry_b->height_inc))
7074     return FALSE;
7075
7076   if ((flags_a & GDK_HINT_WIN_GRAVITY) &&
7077       geometry_a->win_gravity != geometry_b->win_gravity)
7078     return FALSE;
7079
7080   return TRUE;
7081 }
7082
7083 void
7084 _gtk_window_constrain_size (GtkWindow   *window,
7085                             gint         width,
7086                             gint         height,
7087                             gint        *new_width,
7088                             gint        *new_height)
7089 {
7090   GtkWindowPrivate *priv;
7091   GtkWindowGeometryInfo *info;
7092
7093   g_return_if_fail (GTK_IS_WINDOW (window));
7094
7095   priv = window->priv;
7096
7097   info = priv->geometry_info;
7098   if (info)
7099     {
7100       GdkWindowHints flags = info->last.flags;
7101       GdkGeometry *geometry = &info->last.geometry;
7102       
7103       gtk_window_constrain_size (window,
7104                                  geometry,
7105                                  flags,
7106                                  width,
7107                                  height,
7108                                  new_width,
7109                                  new_height);
7110     }
7111 }
7112
7113 static void 
7114 gtk_window_constrain_size (GtkWindow   *window,
7115                            GdkGeometry *geometry,
7116                            guint        flags,
7117                            gint         width,
7118                            gint         height,
7119                            gint        *new_width,
7120                            gint        *new_height)
7121 {
7122   gdk_window_constrain_size (geometry, flags, width, height,
7123                              new_width, new_height);
7124 }
7125
7126 /* Compute the set of geometry hints and flags for a window
7127  * based on the application set geometry, and requisition
7128  * of the window. gtk_widget_get_preferred_size() must have been
7129  * called first.
7130  */
7131 static void
7132 gtk_window_compute_hints (GtkWindow   *window,
7133                           GdkGeometry *new_geometry,
7134                           guint       *new_flags)
7135 {
7136   GtkWindowPrivate *priv = window->priv;
7137   GtkWidget *widget;
7138   gint extra_width = 0;
7139   gint extra_height = 0;
7140   GtkWindowGeometryInfo *geometry_info;
7141   GtkRequisition requisition;
7142
7143   widget = GTK_WIDGET (window);
7144
7145   gtk_widget_get_preferred_size (widget, &requisition, NULL);
7146   geometry_info = gtk_window_get_geometry_info (GTK_WINDOW (widget), FALSE);
7147
7148   if (geometry_info)
7149     {
7150       *new_flags = geometry_info->mask;
7151       *new_geometry = geometry_info->geometry;
7152     }
7153   else
7154     {
7155       *new_flags = 0;
7156     }
7157   
7158   if (geometry_info && geometry_info->widget)
7159     {
7160       /* If the geometry widget is set, then the hints really apply to that
7161        * widget. This is pretty much meaningless unless the window layout
7162        * is such that the rest of the window adds fixed size borders to
7163        * the geometry widget. Our job is to figure the size of the borders;
7164        * We do that by asking how big the toplevel would be if the
7165        * geometry widget was *really big*.
7166        *
7167        *  +----------+
7168        *  |AAAAAAAAA | At small sizes, the minimum sizes of widgets
7169        *  |GGGGG    B| in the border can confuse things
7170        *  |GGGGG    B|
7171        *  |         B|
7172        *  +----------+
7173        *
7174        *  +-----------+
7175        *  |AAAAAAAAA  | When the geometry widget is large, things are
7176        *  |GGGGGGGGGGB| clearer.
7177        *  |GGGGGGGGGGB|
7178        *  |GGGGGGGGGG |
7179        *  +-----------+
7180        */
7181 #define TEMPORARY_SIZE 10000 /* 10,000 pixels should be bigger than real widget sizes */
7182       GtkRequisition requisition;
7183       int current_width, current_height;
7184
7185       _gtk_widget_override_size_request (geometry_info->widget,
7186                                          TEMPORARY_SIZE, TEMPORARY_SIZE,
7187                                          &current_width, &current_height);
7188       gtk_widget_get_preferred_size (widget,
7189                                      &requisition, NULL);
7190       _gtk_widget_restore_size_request (geometry_info->widget,
7191                                         current_width, current_height);
7192
7193       extra_width = requisition.width - TEMPORARY_SIZE;
7194       extra_height = requisition.height - TEMPORARY_SIZE;
7195
7196       if (extra_width < 0 || extra_width < 0)
7197         {
7198           g_warning("Toplevel size doesn't seem to directly depend on the "
7199                     "size of the geometry widget from gtk_window_set_geometry_hints(). "
7200                     "The geometry widget might not be in the window, or it might not "
7201                     "be packed into the window appropriately");
7202           extra_width = MAX(extra_width, 0);
7203           extra_height = MAX(extra_height, 0);
7204         }
7205 #undef TEMPORARY_SIZE
7206     }
7207
7208   /* We don't want to set GDK_HINT_POS in here, we just set it
7209    * in gtk_window_move_resize() when we want the position
7210    * honored.
7211    */
7212   
7213   if (*new_flags & GDK_HINT_BASE_SIZE)
7214     {
7215       new_geometry->base_width += extra_width;
7216       new_geometry->base_height += extra_height;
7217     }
7218   else
7219     {
7220       /* For simplicity, we always set the base hint, even when we
7221        * don't expect it to have any visible effect.
7222        * (Note: geometry_size_to_pixels() depends on this.)
7223        */
7224       *new_flags |= GDK_HINT_BASE_SIZE;
7225
7226       new_geometry->base_width = extra_width;
7227       new_geometry->base_height = extra_height;
7228
7229       /* As for X, if BASE_SIZE is not set but MIN_SIZE is set, then the
7230        * base size is the minimum size */
7231       if (*new_flags & GDK_HINT_MIN_SIZE)
7232         {
7233           if (new_geometry->min_width > 0)
7234             new_geometry->base_width += new_geometry->min_width;
7235           if (new_geometry->min_height > 0)
7236             new_geometry->base_height += new_geometry->min_height;
7237         }
7238     }
7239
7240   if (*new_flags & GDK_HINT_MIN_SIZE)
7241     {
7242       if (new_geometry->min_width < 0)
7243         new_geometry->min_width = requisition.width;
7244       else
7245         new_geometry->min_width = MAX (requisition.width, new_geometry->min_width + extra_width);
7246
7247       if (new_geometry->min_height < 0)
7248         new_geometry->min_height = requisition.height;
7249       else
7250         new_geometry->min_height = MAX (requisition.height, new_geometry->min_height + extra_height);
7251     }
7252   else
7253     {
7254       *new_flags |= GDK_HINT_MIN_SIZE;
7255       
7256       new_geometry->min_width = requisition.width;
7257       new_geometry->min_height = requisition.height;
7258     }
7259   
7260   if (*new_flags & GDK_HINT_MAX_SIZE)
7261     {
7262       if (new_geometry->max_width < 0)
7263         new_geometry->max_width = requisition.width;
7264       else
7265         new_geometry->max_width += extra_width;
7266
7267       if (new_geometry->max_height < 0)
7268         new_geometry->max_height = requisition.height;
7269       else
7270         new_geometry->max_height += extra_height;
7271     }
7272   else if (!priv->resizable)
7273     {
7274       *new_flags |= GDK_HINT_MAX_SIZE;
7275       
7276       new_geometry->max_width = requisition.width;
7277       new_geometry->max_height = requisition.height;
7278     }
7279
7280   *new_flags |= GDK_HINT_WIN_GRAVITY;
7281   new_geometry->win_gravity = priv->gravity;
7282 }
7283
7284 /***********************
7285  * Redrawing functions *
7286  ***********************/
7287
7288 static gboolean
7289 gtk_window_draw (GtkWidget *widget,
7290                  cairo_t   *cr)
7291 {
7292   GtkWindowPrivate *priv = GTK_WINDOW (widget)->priv;
7293   gboolean ret = FALSE;
7294
7295   if (!gtk_widget_get_app_paintable (widget))
7296     gtk_paint_flat_box (gtk_widget_get_style (widget),
7297                         cr,
7298                         GTK_STATE_NORMAL,
7299                         GTK_SHADOW_NONE, widget, "base",
7300                         0, 0,
7301                         gtk_widget_get_allocated_width (widget),
7302                         gtk_widget_get_allocated_height (widget));
7303
7304   if (GTK_WIDGET_CLASS (gtk_window_parent_class)->draw)
7305     ret = GTK_WIDGET_CLASS (gtk_window_parent_class)->draw (widget, cr);
7306
7307   if (priv->grip_window != NULL &&
7308       gtk_cairo_should_draw_window (cr, priv->grip_window))
7309     {
7310       GdkRectangle rect;
7311
7312       cairo_save (cr);
7313       gtk_cairo_transform_to_window (cr, widget, priv->grip_window);
7314       gtk_window_get_resize_grip_area (GTK_WINDOW (widget), &rect);
7315       gtk_paint_resize_grip (gtk_widget_get_style (widget),
7316                              cr,
7317                              gtk_widget_get_state (widget),
7318                              widget,
7319                              "statusbar",
7320                              get_grip_edge (widget),
7321                              0, 0,
7322                              rect.width, rect.height);
7323       cairo_restore (cr);
7324     }
7325
7326   return ret;
7327 }
7328
7329 /**
7330  * gtk_window_set_has_frame:
7331  * @window: a #GtkWindow
7332  * @setting: a boolean
7333  *
7334  * (Note: this is a special-purpose function for the framebuffer port,
7335  *  that causes GTK+ to draw its own window border. For most applications,
7336  *  you want gtk_window_set_decorated() instead, which tells the window
7337  *  manager whether to draw the window border.)
7338  * 
7339  * If this function is called on a window with setting of %TRUE, before
7340  * it is realized or showed, it will have a "frame" window around
7341  * @window->window, accessible in @window->frame. Using the signal 
7342  * frame_event you can receive all events targeted at the frame.
7343  * 
7344  * This function is used by the linux-fb port to implement managed
7345  * windows, but it could conceivably be used by X-programs that
7346  * want to do their own window decorations.
7347  *
7348  **/
7349 void
7350 gtk_window_set_has_frame (GtkWindow *window, 
7351                           gboolean   setting)
7352 {
7353   GtkWindowPrivate *priv;
7354
7355   g_return_if_fail (GTK_IS_WINDOW (window));
7356   g_return_if_fail (!gtk_widget_get_realized (GTK_WIDGET (window)));
7357
7358   priv = window->priv;
7359
7360   priv->has_frame = setting != FALSE;
7361 }
7362
7363 /**
7364  * gtk_window_get_has_frame:
7365  * @window: a #GtkWindow
7366  * 
7367  * Accessor for whether the window has a frame window exterior to
7368  * @window->window. Gets the value set by gtk_window_set_has_frame ().
7369  *
7370  * Return value: %TRUE if a frame has been added to the window
7371  *   via gtk_window_set_has_frame().
7372  **/
7373 gboolean
7374 gtk_window_get_has_frame (GtkWindow *window)
7375 {
7376   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
7377
7378   return window->priv->has_frame;
7379 }
7380
7381 /**
7382  * gtk_window_set_frame_dimensions:
7383  * @window: a #GtkWindow that has a frame
7384  * @left: The width of the left border
7385  * @top: The height of the top border
7386  * @right: The width of the right border
7387  * @bottom: The height of the bottom border
7388  *
7389  * (Note: this is a special-purpose function intended for the framebuffer
7390  *  port; see gtk_window_set_has_frame(). It will have no effect on the
7391  *  window border drawn by the window manager, which is the normal
7392  *  case when using the X Window system.)
7393  *
7394  * For windows with frames (see gtk_window_set_has_frame()) this function
7395  * can be used to change the size of the frame border.
7396  **/
7397 void
7398 gtk_window_set_frame_dimensions (GtkWindow *window, 
7399                                  gint       left,
7400                                  gint       top,
7401                                  gint       right,
7402                                  gint       bottom)
7403 {
7404   GtkWindowPrivate *priv;
7405   GtkAllocation allocation;
7406   GtkWidget *widget;
7407
7408   g_return_if_fail (GTK_IS_WINDOW (window));
7409
7410   priv = window->priv;
7411   widget = GTK_WIDGET (window);
7412
7413   if (priv->frame_left == left &&
7414       priv->frame_top == top &&
7415       priv->frame_right == right &&
7416       priv->frame_bottom == bottom)
7417     return;
7418
7419   priv->frame_left = left;
7420   priv->frame_top = top;
7421   priv->frame_right = right;
7422   priv->frame_bottom = bottom;
7423
7424   if (gtk_widget_get_realized (widget) && priv->frame)
7425     {
7426       gtk_widget_get_allocation (widget, &allocation);
7427
7428       gint width = allocation.width + left + right;
7429       gint height = allocation.height + top + bottom;
7430       gdk_window_resize (priv->frame, width, height);
7431       gtk_decorated_window_move_resize_window (window,
7432                                                left, top,
7433                                                allocation.width,
7434                                                allocation.height);
7435     }
7436 }
7437
7438 /**
7439  * gtk_window_present:
7440  * @window: a #GtkWindow
7441  *
7442  * Presents a window to the user. This may mean raising the window
7443  * in the stacking order, deiconifying it, moving it to the current
7444  * desktop, and/or giving it the keyboard focus, possibly dependent
7445  * on the user's platform, window manager, and preferences.
7446  *
7447  * If @window is hidden, this function calls gtk_widget_show()
7448  * as well.
7449  * 
7450  * This function should be used when the user tries to open a window
7451  * that's already open. Say for example the preferences dialog is
7452  * currently open, and the user chooses Preferences from the menu
7453  * a second time; use gtk_window_present() to move the already-open dialog
7454  * where the user can see it.
7455  *
7456  * If you are calling this function in response to a user interaction,
7457  * it is preferable to use gtk_window_present_with_time().
7458  * 
7459  **/
7460 void
7461 gtk_window_present (GtkWindow *window)
7462 {
7463   gtk_window_present_with_time (window, GDK_CURRENT_TIME);
7464 }
7465
7466 /**
7467  * gtk_window_present_with_time:
7468  * @window: a #GtkWindow
7469  * @timestamp: the timestamp of the user interaction (typically a 
7470  *   button or key press event) which triggered this call
7471  *
7472  * Presents a window to the user in response to a user interaction.
7473  * If you need to present a window without a timestamp, use 
7474  * gtk_window_present(). See gtk_window_present() for details. 
7475  * 
7476  * Since: 2.8
7477  **/
7478 void
7479 gtk_window_present_with_time (GtkWindow *window,
7480                               guint32    timestamp)
7481 {
7482   GtkWidget *widget;
7483   GdkWindow *gdk_window;
7484
7485   g_return_if_fail (GTK_IS_WINDOW (window));
7486
7487   widget = GTK_WIDGET (window);
7488
7489   if (gtk_widget_get_visible (widget))
7490     {
7491       gdk_window = gtk_widget_get_window (widget);
7492
7493       g_assert (gdk_window != NULL);
7494
7495       gdk_window_show (gdk_window);
7496
7497       /* Translate a timestamp of GDK_CURRENT_TIME appropriately */
7498       if (timestamp == GDK_CURRENT_TIME)
7499         {
7500 #ifdef GDK_WINDOWING_X11
7501           GdkDisplay *display;
7502
7503           display = gtk_widget_get_display (GTK_WIDGET (window));
7504           timestamp = gdk_x11_display_get_user_time (display);
7505 #else
7506           timestamp = gtk_get_current_event_time ();
7507 #endif
7508         }
7509
7510       gdk_window_focus (gdk_window, timestamp);
7511     }
7512   else
7513     {
7514       gtk_widget_show (widget);
7515     }
7516 }
7517
7518 /**
7519  * gtk_window_iconify:
7520  * @window: a #GtkWindow
7521  *
7522  * Asks to iconify (i.e. minimize) the specified @window. Note that
7523  * you shouldn't assume the window is definitely iconified afterward,
7524  * because other entities (e.g. the user or <link
7525  * linkend="gtk-X11-arch">window manager</link>) could deiconify it
7526  * again, or there may not be a window manager in which case
7527  * iconification isn't possible, etc. But normally the window will end
7528  * up iconified. Just don't write code that crashes if not.
7529  *
7530  * It's permitted to call this function before showing a window,
7531  * in which case the window will be iconified before it ever appears
7532  * onscreen.
7533  *
7534  * You can track iconification via the "window-state-event" signal
7535  * on #GtkWidget.
7536  * 
7537  **/
7538 void
7539 gtk_window_iconify (GtkWindow *window)
7540 {
7541   GtkWindowPrivate *priv;
7542   GtkWidget *widget;
7543   GdkWindow *toplevel;
7544   
7545   g_return_if_fail (GTK_IS_WINDOW (window));
7546
7547   priv = window->priv;
7548   widget = GTK_WIDGET (window);
7549
7550   priv->iconify_initially = TRUE;
7551
7552   if (priv->frame)
7553     toplevel = priv->frame;
7554   else
7555     toplevel = gtk_widget_get_window (widget);
7556
7557   if (toplevel != NULL)
7558     gdk_window_iconify (toplevel);
7559 }
7560
7561 /**
7562  * gtk_window_deiconify:
7563  * @window: a #GtkWindow
7564  *
7565  * Asks to deiconify (i.e. unminimize) the specified @window. Note
7566  * that you shouldn't assume the window is definitely deiconified
7567  * afterward, because other entities (e.g. the user or <link
7568  * linkend="gtk-X11-arch">window manager</link>) could iconify it
7569  * again before your code which assumes deiconification gets to run.
7570  *
7571  * You can track iconification via the "window-state-event" signal
7572  * on #GtkWidget.
7573  **/
7574 void
7575 gtk_window_deiconify (GtkWindow *window)
7576 {
7577   GtkWindowPrivate *priv;
7578   GtkWidget *widget;
7579   GdkWindow *toplevel;
7580   
7581   g_return_if_fail (GTK_IS_WINDOW (window));
7582
7583   priv = window->priv;
7584   widget = GTK_WIDGET (window);
7585
7586   priv->iconify_initially = FALSE;
7587
7588   if (priv->frame)
7589     toplevel = priv->frame;
7590   else
7591     toplevel = gtk_widget_get_window (widget);
7592
7593   if (toplevel != NULL)
7594     gdk_window_deiconify (toplevel);
7595 }
7596
7597 /**
7598  * gtk_window_stick:
7599  * @window: a #GtkWindow
7600  *
7601  * Asks to stick @window, which means that it will appear on all user
7602  * desktops. Note that you shouldn't assume the window is definitely
7603  * stuck afterward, because other entities (e.g. the user or <link
7604  * linkend="gtk-X11-arch">window manager</link>) could unstick it
7605  * again, and some window managers do not support sticking
7606  * windows. But normally the window will end up stuck. Just don't
7607  * write code that crashes if not.
7608  *
7609  * It's permitted to call this function before showing a window.
7610  *
7611  * You can track stickiness via the "window-state-event" signal
7612  * on #GtkWidget.
7613  * 
7614  **/
7615 void
7616 gtk_window_stick (GtkWindow *window)
7617 {
7618   GtkWindowPrivate *priv;
7619   GtkWidget *widget;
7620   GdkWindow *toplevel;
7621   
7622   g_return_if_fail (GTK_IS_WINDOW (window));
7623
7624   priv = window->priv;
7625   widget = GTK_WIDGET (window);
7626
7627   priv->stick_initially = TRUE;
7628
7629   if (priv->frame)
7630     toplevel = priv->frame;
7631   else
7632     toplevel = gtk_widget_get_window (widget);
7633
7634   if (toplevel != NULL)
7635     gdk_window_stick (toplevel);
7636 }
7637
7638 /**
7639  * gtk_window_unstick:
7640  * @window: a #GtkWindow
7641  *
7642  * Asks to unstick @window, which means that it will appear on only
7643  * one of the user's desktops. Note that you shouldn't assume the
7644  * window is definitely unstuck afterward, because other entities
7645  * (e.g. the user or <link linkend="gtk-X11-arch">window
7646  * manager</link>) could stick it again. But normally the window will
7647  * end up stuck. Just don't write code that crashes if not.
7648  *
7649  * You can track stickiness via the "window-state-event" signal
7650  * on #GtkWidget.
7651  * 
7652  **/
7653 void
7654 gtk_window_unstick (GtkWindow *window)
7655 {
7656   GtkWindowPrivate *priv;
7657   GtkWidget *widget;
7658   GdkWindow *toplevel;
7659   
7660   g_return_if_fail (GTK_IS_WINDOW (window));
7661
7662   priv = window->priv;
7663   widget = GTK_WIDGET (window);
7664
7665   priv->stick_initially = FALSE;
7666
7667   if (priv->frame)
7668     toplevel = priv->frame;
7669   else
7670     toplevel = gtk_widget_get_window (widget);
7671
7672   if (toplevel != NULL)
7673     gdk_window_unstick (toplevel);
7674 }
7675
7676 /**
7677  * gtk_window_maximize:
7678  * @window: a #GtkWindow
7679  *
7680  * Asks to maximize @window, so that it becomes full-screen. Note that
7681  * you shouldn't assume the window is definitely maximized afterward,
7682  * because other entities (e.g. the user or <link
7683  * linkend="gtk-X11-arch">window manager</link>) could unmaximize it
7684  * again, and not all window managers support maximization. But
7685  * normally the window will end up maximized. Just don't write code
7686  * that crashes if not.
7687  *
7688  * It's permitted to call this function before showing a window,
7689  * in which case the window will be maximized when it appears onscreen
7690  * initially.
7691  *
7692  * You can track maximization via the "window-state-event" signal
7693  * on #GtkWidget.
7694  * 
7695  **/
7696 void
7697 gtk_window_maximize (GtkWindow *window)
7698 {
7699   GtkWindowPrivate *priv;
7700   GtkWidget *widget;
7701   GdkWindow *toplevel;
7702   
7703   g_return_if_fail (GTK_IS_WINDOW (window));
7704
7705   priv = window->priv;
7706   widget = GTK_WIDGET (window);
7707
7708   priv->maximize_initially = TRUE;
7709
7710   if (priv->frame)
7711     toplevel = priv->frame;
7712   else
7713     toplevel = gtk_widget_get_window (widget);
7714
7715   if (toplevel != NULL)
7716     gdk_window_maximize (toplevel);
7717 }
7718
7719 /**
7720  * gtk_window_unmaximize:
7721  * @window: a #GtkWindow
7722  *
7723  * Asks to unmaximize @window. Note that you shouldn't assume the
7724  * window is definitely unmaximized afterward, because other entities
7725  * (e.g. the user or <link linkend="gtk-X11-arch">window
7726  * manager</link>) could maximize it again, and not all window
7727  * managers honor requests to unmaximize. But normally the window will
7728  * end up unmaximized. Just don't write code that crashes if not.
7729  *
7730  * You can track maximization via the "window-state-event" signal
7731  * on #GtkWidget.
7732  * 
7733  **/
7734 void
7735 gtk_window_unmaximize (GtkWindow *window)
7736 {
7737   GtkWindowPrivate *priv;
7738   GtkWidget *widget;
7739   GdkWindow *toplevel;
7740   
7741   g_return_if_fail (GTK_IS_WINDOW (window));
7742
7743   priv = window->priv;
7744   widget = GTK_WIDGET (window);
7745
7746   priv->maximize_initially = FALSE;
7747
7748   if (priv->frame)
7749     toplevel = priv->frame;
7750   else
7751     toplevel = gtk_widget_get_window (widget);
7752
7753   if (toplevel != NULL)
7754     gdk_window_unmaximize (toplevel);
7755 }
7756
7757 /**
7758  * gtk_window_fullscreen:
7759  * @window: a #GtkWindow
7760  *
7761  * Asks to place @window in the fullscreen state. Note that you
7762  * shouldn't assume the window is definitely full screen afterward,
7763  * because other entities (e.g. the user or <link
7764  * linkend="gtk-X11-arch">window manager</link>) could unfullscreen it
7765  * again, and not all window managers honor requests to fullscreen
7766  * windows. But normally the window will end up fullscreen. Just
7767  * don't write code that crashes if not.
7768  *
7769  * You can track the fullscreen state via the "window-state-event" signal
7770  * on #GtkWidget.
7771  * 
7772  * Since: 2.2
7773  **/
7774 void
7775 gtk_window_fullscreen (GtkWindow *window)
7776 {
7777   GtkWindowPrivate *priv;
7778   GtkWidget *widget;
7779   GdkWindow *toplevel;
7780
7781   g_return_if_fail (GTK_IS_WINDOW (window));
7782
7783   priv = window->priv;
7784   widget = GTK_WIDGET (window);
7785
7786   priv->fullscreen_initially = TRUE;
7787
7788   if (priv->frame)
7789     toplevel = priv->frame;
7790   else
7791     toplevel = gtk_widget_get_window (widget);
7792
7793   if (toplevel != NULL)
7794     gdk_window_fullscreen (toplevel);
7795 }
7796
7797 /**
7798  * gtk_window_unfullscreen:
7799  * @window: a #GtkWindow
7800  *
7801  * Asks to toggle off the fullscreen state for @window. Note that you
7802  * shouldn't assume the window is definitely not full screen
7803  * afterward, because other entities (e.g. the user or <link
7804  * linkend="gtk-X11-arch">window manager</link>) could fullscreen it
7805  * again, and not all window managers honor requests to unfullscreen
7806  * windows. But normally the window will end up restored to its normal
7807  * state. Just don't write code that crashes if not.
7808  *
7809  * You can track the fullscreen state via the "window-state-event" signal
7810  * on #GtkWidget.
7811  * 
7812  * Since: 2.2
7813  **/
7814 void
7815 gtk_window_unfullscreen (GtkWindow *window)
7816 {
7817   GtkWidget *widget;
7818   GdkWindow *toplevel;
7819   GtkWindowPrivate *priv;
7820
7821   g_return_if_fail (GTK_IS_WINDOW (window));
7822
7823   priv = window->priv;
7824   widget = GTK_WIDGET (window);
7825
7826   priv->fullscreen_initially = FALSE;
7827
7828   if (priv->frame)
7829     toplevel = priv->frame;
7830   else
7831     toplevel = gtk_widget_get_window (widget);
7832
7833   if (toplevel != NULL)
7834     gdk_window_unfullscreen (toplevel);
7835 }
7836
7837 /**
7838  * gtk_window_set_keep_above:
7839  * @window: a #GtkWindow
7840  * @setting: whether to keep @window above other windows
7841  *
7842  * Asks to keep @window above, so that it stays on top. Note that
7843  * you shouldn't assume the window is definitely above afterward,
7844  * because other entities (e.g. the user or <link
7845  * linkend="gtk-X11-arch">window manager</link>) could not keep it above,
7846  * and not all window managers support keeping windows above. But
7847  * normally the window will end kept above. Just don't write code
7848  * that crashes if not.
7849  *
7850  * It's permitted to call this function before showing a window,
7851  * in which case the window will be kept above when it appears onscreen
7852  * initially.
7853  *
7854  * You can track the above state via the "window-state-event" signal
7855  * on #GtkWidget.
7856  *
7857  * Note that, according to the <ulink 
7858  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window 
7859  * Manager Hints</ulink> specification, the above state is mainly meant 
7860  * for user preferences and should not be used by applications e.g. for 
7861  * drawing attention to their dialogs.
7862  *
7863  * Since: 2.4
7864  **/
7865 void
7866 gtk_window_set_keep_above (GtkWindow *window,
7867                            gboolean   setting)
7868 {
7869   GtkWidget *widget;
7870   GtkWindowPrivate *priv;
7871   GdkWindow *toplevel;
7872
7873   g_return_if_fail (GTK_IS_WINDOW (window));
7874
7875   priv = window->priv;
7876   widget = GTK_WIDGET (window);
7877
7878   priv->above_initially = setting != FALSE;
7879   if (setting)
7880     priv->below_initially = FALSE;
7881
7882   if (priv->frame)
7883     toplevel = priv->frame;
7884   else
7885     toplevel = gtk_widget_get_window (widget);
7886
7887   if (toplevel != NULL)
7888     gdk_window_set_keep_above (toplevel, setting);
7889 }
7890
7891 /**
7892  * gtk_window_set_keep_below:
7893  * @window: a #GtkWindow
7894  * @setting: whether to keep @window below other windows
7895  *
7896  * Asks to keep @window below, so that it stays in bottom. Note that
7897  * you shouldn't assume the window is definitely below afterward,
7898  * because other entities (e.g. the user or <link
7899  * linkend="gtk-X11-arch">window manager</link>) could not keep it below,
7900  * and not all window managers support putting windows below. But
7901  * normally the window will be kept below. Just don't write code
7902  * that crashes if not.
7903  *
7904  * It's permitted to call this function before showing a window,
7905  * in which case the window will be kept below when it appears onscreen
7906  * initially.
7907  *
7908  * You can track the below state via the "window-state-event" signal
7909  * on #GtkWidget.
7910  *
7911  * Note that, according to the <ulink 
7912  * url="http://www.freedesktop.org/Standards/wm-spec">Extended Window 
7913  * Manager Hints</ulink> specification, the above state is mainly meant 
7914  * for user preferences and should not be used by applications e.g. for 
7915  * drawing attention to their dialogs.
7916  *
7917  * Since: 2.4
7918  **/
7919 void
7920 gtk_window_set_keep_below (GtkWindow *window,
7921                            gboolean   setting)
7922 {
7923   GtkWidget *widget;
7924   GtkWindowPrivate *priv;
7925   GdkWindow *toplevel;
7926
7927   g_return_if_fail (GTK_IS_WINDOW (window));
7928
7929   priv = window->priv;
7930   widget = GTK_WIDGET (window);
7931
7932   priv->below_initially = setting != FALSE;
7933   if (setting)
7934     priv->above_initially = FALSE;
7935
7936   if (priv->frame)
7937     toplevel = priv->frame;
7938   else
7939     toplevel = gtk_widget_get_window (widget);
7940
7941   if (toplevel != NULL)
7942     gdk_window_set_keep_below (toplevel, setting);
7943 }
7944
7945 /**
7946  * gtk_window_set_resizable:
7947  * @window: a #GtkWindow
7948  * @resizable: %TRUE if the user can resize this window
7949  *
7950  * Sets whether the user can resize a window. Windows are user resizable
7951  * by default.
7952  **/
7953 void
7954 gtk_window_set_resizable (GtkWindow *window,
7955                           gboolean   resizable)
7956 {
7957   GtkWindowPrivate *priv;
7958
7959   g_return_if_fail (GTK_IS_WINDOW (window));
7960
7961   priv = window->priv;
7962
7963   priv->resizable = (resizable != FALSE);
7964
7965   g_object_notify (G_OBJECT (window), "resizable");
7966
7967   if (priv->grip_window != NULL)
7968     update_grip_visibility (window);
7969
7970   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
7971 }
7972
7973 /**
7974  * gtk_window_get_resizable:
7975  * @window: a #GtkWindow
7976  *
7977  * Gets the value set by gtk_window_set_resizable().
7978  *
7979  * Return value: %TRUE if the user can resize the window
7980  **/
7981 gboolean
7982 gtk_window_get_resizable (GtkWindow *window)
7983 {
7984   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
7985
7986   return window->priv->resizable;
7987 }
7988
7989 /**
7990  * gtk_window_set_gravity:
7991  * @window: a #GtkWindow
7992  * @gravity: window gravity
7993  *
7994  * Window gravity defines the meaning of coordinates passed to
7995  * gtk_window_move(). See gtk_window_move() and #GdkGravity for
7996  * more details.
7997  *
7998  * The default window gravity is #GDK_GRAVITY_NORTH_WEST which will
7999  * typically "do what you mean."
8000  *
8001  **/
8002 void
8003 gtk_window_set_gravity (GtkWindow *window,
8004                         GdkGravity gravity)
8005 {
8006   GtkWindowPrivate *priv;
8007
8008   g_return_if_fail (GTK_IS_WINDOW (window));
8009
8010   priv = window->priv;
8011
8012   if (gravity != priv->gravity)
8013     {
8014       priv->gravity = gravity;
8015
8016       /* gtk_window_move_resize() will adapt gravity
8017        */
8018       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (window));
8019
8020       g_object_notify (G_OBJECT (window), "gravity");
8021     }
8022 }
8023
8024 /**
8025  * gtk_window_get_gravity:
8026  * @window: a #GtkWindow
8027  *
8028  * Gets the value set by gtk_window_set_gravity().
8029  *
8030  * Return value: (transfer none): window gravity
8031  **/
8032 GdkGravity
8033 gtk_window_get_gravity (GtkWindow *window)
8034 {
8035   g_return_val_if_fail (GTK_IS_WINDOW (window), 0);
8036
8037   return window->priv->gravity;
8038 }
8039
8040 /**
8041  * gtk_window_begin_resize_drag:
8042  * @window: a #GtkWindow
8043  * @button: mouse button that initiated the drag
8044  * @edge: position of the resize control
8045  * @root_x: X position where the user clicked to initiate the drag, in root window coordinates
8046  * @root_y: Y position where the user clicked to initiate the drag
8047  * @timestamp: timestamp from the click event that initiated the drag
8048  *
8049  * Starts resizing a window. This function is used if an application
8050  * has window resizing controls. When GDK can support it, the resize
8051  * will be done using the standard mechanism for the <link
8052  * linkend="gtk-X11-arch">window manager</link> or windowing
8053  * system. Otherwise, GDK will try to emulate window resizing,
8054  * potentially not all that well, depending on the windowing system.
8055  * 
8056  **/
8057 void
8058 gtk_window_begin_resize_drag  (GtkWindow    *window,
8059                                GdkWindowEdge edge,
8060                                gint          button,
8061                                gint          root_x,
8062                                gint          root_y,
8063                                guint32       timestamp)
8064 {
8065   GtkWindowPrivate *priv;
8066   GtkWidget *widget;
8067   GdkWindow *toplevel;
8068   
8069   g_return_if_fail (GTK_IS_WINDOW (window));
8070   widget = GTK_WIDGET (window);
8071   g_return_if_fail (gtk_widget_get_visible (widget));
8072
8073   priv = window->priv;
8074
8075   if (priv->frame)
8076     toplevel = priv->frame;
8077   else
8078     toplevel = gtk_widget_get_window (widget);
8079
8080   gdk_window_begin_resize_drag (toplevel,
8081                                 edge, button,
8082                                 root_x, root_y,
8083                                 timestamp);
8084 }
8085
8086 /**
8087  * gtk_window_get_frame_dimensions:
8088  * @window: a #GtkWindow
8089  * @left: (out) (allow-none): location to store the width of the frame at the left, or %NULL
8090  * @top: (out) (allow-none): location to store the height of the frame at the top, or %NULL
8091  * @right: (out) (allow-none): location to store the width of the frame at the returns, or %NULL
8092  * @bottom: (out) (allow-none): location to store the height of the frame at the bottom, or %NULL
8093  *
8094  * (Note: this is a special-purpose function intended for the
8095  *  framebuffer port; see gtk_window_set_has_frame(). It will not
8096  *  return the size of the window border drawn by the <link
8097  *  linkend="gtk-X11-arch">window manager</link>, which is the normal
8098  *  case when using a windowing system.  See
8099  *  gdk_window_get_frame_extents() to get the standard window border
8100  *  extents.)
8101  * 
8102  * Retrieves the dimensions of the frame window for this toplevel.
8103  * See gtk_window_set_has_frame(), gtk_window_set_frame_dimensions().
8104  **/
8105 void
8106 gtk_window_get_frame_dimensions (GtkWindow *window,
8107                                  gint      *left,
8108                                  gint      *top,
8109                                  gint      *right,
8110                                  gint      *bottom)
8111 {
8112   GtkWindowPrivate *priv;
8113
8114   g_return_if_fail (GTK_IS_WINDOW (window));
8115
8116   priv = window->priv;
8117
8118   if (left)
8119     *left = priv->frame_left;
8120   if (top)
8121     *top = priv->frame_top;
8122   if (right)
8123     *right = priv->frame_right;
8124   if (bottom)
8125     *bottom = priv->frame_bottom;
8126 }
8127
8128 /**
8129  * gtk_window_begin_move_drag:
8130  * @window: a #GtkWindow
8131  * @button: mouse button that initiated the drag
8132  * @root_x: X position where the user clicked to initiate the drag, in root window coordinates
8133  * @root_y: Y position where the user clicked to initiate the drag
8134  * @timestamp: timestamp from the click event that initiated the drag
8135  *
8136  * Starts moving a window. This function is used if an application has
8137  * window movement grips. When GDK can support it, the window movement
8138  * will be done using the standard mechanism for the <link
8139  * linkend="gtk-X11-arch">window manager</link> or windowing
8140  * system. Otherwise, GDK will try to emulate window movement,
8141  * potentially not all that well, depending on the windowing system.
8142  * 
8143  **/
8144 void
8145 gtk_window_begin_move_drag  (GtkWindow *window,
8146                              gint       button,
8147                              gint       root_x,
8148                              gint       root_y,
8149                              guint32    timestamp)
8150 {
8151   GtkWindowPrivate *priv;
8152   GtkWidget *widget;
8153   GdkWindow *toplevel;
8154   
8155   g_return_if_fail (GTK_IS_WINDOW (window));
8156   widget = GTK_WIDGET (window);
8157   g_return_if_fail (gtk_widget_get_visible (widget));
8158
8159   priv = window->priv;
8160
8161   if (priv->frame)
8162     toplevel = priv->frame;
8163   else
8164     toplevel = gtk_widget_get_window (widget);
8165
8166   gdk_window_begin_move_drag (toplevel,
8167                               button,
8168                               root_x, root_y,
8169                               timestamp);
8170 }
8171
8172 /** 
8173  * gtk_window_set_screen:
8174  * @window: a #GtkWindow.
8175  * @screen: a #GdkScreen.
8176  *
8177  * Sets the #GdkScreen where the @window is displayed; if
8178  * the window is already mapped, it will be unmapped, and
8179  * then remapped on the new screen.
8180  *
8181  * Since: 2.2
8182  */
8183 void
8184 gtk_window_set_screen (GtkWindow *window,
8185                        GdkScreen *screen)
8186 {
8187   GtkWindowPrivate *priv;
8188   GtkWidget *widget;
8189   GdkScreen *previous_screen;
8190   gboolean was_mapped;
8191   
8192   g_return_if_fail (GTK_IS_WINDOW (window));
8193   g_return_if_fail (GDK_IS_SCREEN (screen));
8194
8195   priv = window->priv;
8196
8197   if (screen == priv->screen)
8198     return;
8199
8200   widget = GTK_WIDGET (window);
8201
8202   previous_screen = priv->screen;
8203   was_mapped = gtk_widget_get_mapped (widget);
8204
8205   if (was_mapped)
8206     gtk_widget_unmap (widget);
8207   if (gtk_widget_get_realized (widget))
8208     gtk_widget_unrealize (widget);
8209       
8210   gtk_window_free_key_hash (window);
8211   priv->screen = screen;
8212   gtk_widget_reset_rc_styles (widget);
8213   if (screen != previous_screen)
8214     {
8215       g_signal_handlers_disconnect_by_func (previous_screen,
8216                                             gtk_window_on_composited_changed, window);
8217       g_signal_connect (screen, "composited-changed", 
8218                         G_CALLBACK (gtk_window_on_composited_changed), window);
8219       
8220       _gtk_widget_propagate_screen_changed (widget, previous_screen);
8221       _gtk_widget_propagate_composited_changed (widget);
8222     }
8223   g_object_notify (G_OBJECT (window), "screen");
8224
8225   if (was_mapped)
8226     gtk_widget_map (widget);
8227 }
8228
8229 static void
8230 gtk_window_on_composited_changed (GdkScreen *screen,
8231                                   GtkWindow *window)
8232 {
8233   gtk_widget_queue_draw (GTK_WIDGET (window));
8234   
8235   _gtk_widget_propagate_composited_changed (GTK_WIDGET (window));
8236 }
8237
8238 static GdkScreen *
8239 gtk_window_check_screen (GtkWindow *window)
8240 {
8241   GtkWindowPrivate *priv = window->priv;
8242
8243   if (priv->screen)
8244     return priv->screen;
8245   else
8246     {
8247       g_warning ("Screen for GtkWindow not set; you must always set\n"
8248                  "a screen for a GtkWindow before using the window");
8249       return NULL;
8250     }
8251 }
8252
8253 /**
8254  * gtk_window_get_screen:
8255  * @window: a #GtkWindow.
8256  *
8257  * Returns the #GdkScreen associated with @window.
8258  *
8259  * Return value: (transfer none): a #GdkScreen.
8260  *
8261  * Since: 2.2
8262  */
8263 GdkScreen*
8264 gtk_window_get_screen (GtkWindow *window)
8265 {
8266   g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
8267
8268   return window->priv->screen;
8269 }
8270
8271 /**
8272  * gtk_window_is_active:
8273  * @window: a #GtkWindow
8274  * 
8275  * Returns whether the window is part of the current active toplevel.
8276  * (That is, the toplevel window receiving keystrokes.)
8277  * The return value is %TRUE if the window is active toplevel
8278  * itself, but also if it is, say, a #GtkPlug embedded in the active toplevel.
8279  * You might use this function if you wanted to draw a widget
8280  * differently in an active window from a widget in an inactive window.
8281  * See gtk_window_has_toplevel_focus()
8282  * 
8283  * Return value: %TRUE if the window part of the current active window.
8284  *
8285  * Since: 2.4
8286  **/
8287 gboolean
8288 gtk_window_is_active (GtkWindow *window)
8289 {
8290   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
8291
8292   return window->priv->is_active;
8293 }
8294
8295 /**
8296  * gtk_window_has_toplevel_focus:
8297  * @window: a #GtkWindow
8298  * 
8299  * Returns whether the input focus is within this GtkWindow.
8300  * For real toplevel windows, this is identical to gtk_window_is_active(),
8301  * but for embedded windows, like #GtkPlug, the results will differ.
8302  * 
8303  * Return value: %TRUE if the input focus is within this GtkWindow
8304  *
8305  * Since: 2.4
8306  **/
8307 gboolean
8308 gtk_window_has_toplevel_focus (GtkWindow *window)
8309 {
8310   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
8311
8312   return window->priv->has_toplevel_focus;
8313 }
8314
8315 static void
8316 gtk_window_group_class_init (GtkWindowGroupClass *klass)
8317 {
8318   g_type_class_add_private (klass, sizeof (GtkWindowGroupPrivate));
8319 }
8320
8321 GType
8322 gtk_window_group_get_type (void)
8323 {
8324   static GType window_group_type = 0;
8325
8326   if (!window_group_type)
8327     {
8328       const GTypeInfo window_group_info =
8329       {
8330         sizeof (GtkWindowGroupClass),
8331         NULL,           /* base_init */
8332         NULL,           /* base_finalize */
8333         (GClassInitFunc) gtk_window_group_class_init,
8334         NULL,           /* class_finalize */
8335         NULL,           /* class_data */
8336         sizeof (GtkWindowGroup),
8337         0,              /* n_preallocs */
8338         (GInstanceInitFunc) NULL,
8339       };
8340
8341       window_group_type = g_type_register_static (G_TYPE_OBJECT, I_("GtkWindowGroup"), 
8342                                                   &window_group_info, 0);
8343     }
8344
8345   return window_group_type;
8346 }
8347
8348 /**
8349  * gtk_window_group_new:
8350  * 
8351  * Creates a new #GtkWindowGroup object. Grabs added with
8352  * gtk_grab_add() only affect windows within the same #GtkWindowGroup.
8353  * 
8354  * Return value: a new #GtkWindowGroup. 
8355  **/
8356 GtkWindowGroup *
8357 gtk_window_group_new (void)
8358 {
8359   return g_object_new (GTK_TYPE_WINDOW_GROUP, NULL);
8360 }
8361
8362 static void
8363 window_group_cleanup_grabs (GtkWindowGroup *group,
8364                             GtkWindow      *window)
8365 {
8366   GtkWindowGroupPrivate *priv;
8367   GtkDeviceGrabInfo *info;
8368   GSList *tmp_list;
8369   GSList *to_remove = NULL;
8370
8371   tmp_list = group->grabs;
8372   while (tmp_list)
8373     {
8374       if (gtk_widget_get_toplevel (tmp_list->data) == (GtkWidget*) window)
8375         to_remove = g_slist_prepend (to_remove, g_object_ref (tmp_list->data));
8376       tmp_list = tmp_list->next;
8377     }
8378
8379   while (to_remove)
8380     {
8381       gtk_grab_remove (to_remove->data);
8382       g_object_unref (to_remove->data);
8383       to_remove = g_slist_delete_link (to_remove, to_remove);
8384     }
8385
8386   priv = GTK_WINDOW_GROUP_GET_PRIVATE (group);
8387   tmp_list = priv->device_grabs;
8388
8389   while (tmp_list)
8390     {
8391       info = tmp_list->data;
8392
8393       if (gtk_widget_get_toplevel (info->widget) == (GtkWidget *) window)
8394         to_remove = g_slist_prepend (to_remove, info);
8395
8396       tmp_list = tmp_list->next;
8397     }
8398
8399   while (to_remove)
8400     {
8401       info = to_remove->data;
8402
8403       gtk_device_grab_remove (info->widget, info->device);
8404       to_remove = g_slist_delete_link (to_remove, to_remove);
8405     }
8406 }
8407
8408 /**
8409  * gtk_window_group_add_window:
8410  * @window_group: a #GtkWindowGroup
8411  * @window: the #GtkWindow to add
8412  * 
8413  * Adds a window to a #GtkWindowGroup. 
8414  **/
8415 void
8416 gtk_window_group_add_window (GtkWindowGroup *window_group,
8417                              GtkWindow      *window)
8418 {
8419   GtkWindowPrivate *priv;
8420
8421   g_return_if_fail (GTK_IS_WINDOW_GROUP (window_group));
8422   g_return_if_fail (GTK_IS_WINDOW (window));
8423
8424   priv = window->priv;
8425
8426   if (priv->group != window_group)
8427     {
8428       g_object_ref (window);
8429       g_object_ref (window_group);
8430
8431       if (priv->group)
8432         gtk_window_group_remove_window (priv->group, window);
8433       else
8434         window_group_cleanup_grabs (gtk_window_get_group (NULL), window);
8435
8436       priv->group = window_group;
8437
8438       g_object_unref (window);
8439     }
8440 }
8441
8442 /**
8443  * gtk_window_group_remove_window:
8444  * @window_group: a #GtkWindowGroup
8445  * @window: the #GtkWindow to remove
8446  * 
8447  * Removes a window from a #GtkWindowGroup.
8448  **/
8449 void
8450 gtk_window_group_remove_window (GtkWindowGroup *window_group,
8451                                 GtkWindow      *window)
8452 {
8453   GtkWindowPrivate *priv;
8454
8455   g_return_if_fail (GTK_IS_WINDOW_GROUP (window_group));
8456   g_return_if_fail (GTK_IS_WINDOW (window));
8457   priv = window->priv;
8458   g_return_if_fail (priv->group == window_group);
8459
8460   g_object_ref (window);
8461
8462   window_group_cleanup_grabs (window_group, window);
8463   priv->group = NULL;
8464
8465   g_object_unref (window_group);
8466   g_object_unref (window);
8467 }
8468
8469 /**
8470  * gtk_window_group_list_windows:
8471  * @window_group: a #GtkWindowGroup
8472  *
8473  * Returns a list of the #GtkWindows that belong to @window_group.
8474  *
8475  * Returns: (element-type GtkWidget) (transfer container): A newly-allocated list of
8476  *   windows inside the group.
8477  *
8478  * Since: 2.14
8479  **/
8480 GList *
8481 gtk_window_group_list_windows (GtkWindowGroup *window_group)
8482 {
8483   GList *toplevels, *toplevel, *group_windows;
8484
8485   g_return_val_if_fail (GTK_IS_WINDOW_GROUP (window_group), NULL);
8486
8487   group_windows = NULL;
8488   toplevels = gtk_window_list_toplevels ();
8489
8490   for (toplevel = toplevels; toplevel; toplevel = toplevel->next)
8491     {
8492       GtkWindow *window = toplevel->data;
8493
8494       if (window_group == window->priv->group)
8495         group_windows = g_list_prepend (group_windows, window);
8496     }
8497
8498   return g_list_reverse (group_windows);
8499 }
8500
8501 /**
8502  * gtk_window_get_group:
8503  * @window: (allow-none): a #GtkWindow, or %NULL
8504  *
8505  * Returns the group for @window or the default group, if
8506  * @window is %NULL or if @window does not have an explicit
8507  * window group.
8508  *
8509  * Returns: (transfer none): the #GtkWindowGroup for a window or the default group
8510  *
8511  * Since: 2.10
8512  */
8513 GtkWindowGroup *
8514 gtk_window_get_group (GtkWindow *window)
8515 {
8516   if (window && window->priv->group)
8517     return window->priv->group;
8518   else
8519     {
8520       static GtkWindowGroup *default_group = NULL;
8521
8522       if (!default_group)
8523         default_group = gtk_window_group_new ();
8524
8525       return default_group;
8526     }
8527 }
8528
8529 /**
8530  * gtk_window_has_group:
8531  * @window: a #GtkWindow
8532  *
8533  * Returns whether @window has an explicit window group.
8534  *
8535  * Return value: %TRUE if @window has an explicit window group.
8536  *
8537  * Since 2.22
8538  **/
8539 gboolean
8540 gtk_window_has_group (GtkWindow *window)
8541 {
8542   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
8543
8544   return window->priv->group != NULL;
8545 }
8546
8547 /**
8548  * gtk_window_group_get_current_grab:
8549  * @window_group: a #GtkWindowGroup
8550  *
8551  * Gets the current grab widget of the given group,
8552  * see gtk_grab_add().
8553  *
8554  * Returns: the current grab widget of the group
8555  *
8556  * Since: 2.22
8557  */
8558 GtkWidget *
8559 gtk_window_group_get_current_grab (GtkWindowGroup *window_group)
8560 {
8561   g_return_val_if_fail (GTK_IS_WINDOW_GROUP (window_group), NULL);
8562
8563   if (window_group->grabs)
8564     return GTK_WIDGET (window_group->grabs->data);
8565   return NULL;
8566 }
8567
8568 void
8569 _gtk_window_group_add_device_grab (GtkWindowGroup *window_group,
8570                                    GtkWidget      *widget,
8571                                    GdkDevice      *device,
8572                                    gboolean        block_others)
8573 {
8574   GtkWindowGroupPrivate *priv;
8575   GtkDeviceGrabInfo *info;
8576
8577   priv = GTK_WINDOW_GROUP_GET_PRIVATE (window_group);
8578
8579   info = g_slice_new0 (GtkDeviceGrabInfo);
8580   info->widget = widget;
8581   info->device = device;
8582   info->block_others = block_others;
8583
8584   priv->device_grabs = g_slist_prepend (priv->device_grabs, info);
8585 }
8586
8587 void
8588 _gtk_window_group_remove_device_grab (GtkWindowGroup *window_group,
8589                                       GtkWidget      *widget,
8590                                       GdkDevice      *device)
8591 {
8592   GtkWindowGroupPrivate *priv;
8593   GtkDeviceGrabInfo *info;
8594   GSList *list, *node = NULL;
8595   GdkDevice *other_device;
8596
8597   priv = GTK_WINDOW_GROUP_GET_PRIVATE (window_group);
8598   other_device = gdk_device_get_associated_device (device);
8599   list = priv->device_grabs;
8600
8601   while (list)
8602     {
8603       info = list->data;
8604
8605       if (info->widget == widget &&
8606           (info->device == device ||
8607            info->device == other_device))
8608         {
8609           node = list;
8610           break;
8611         }
8612
8613       list = list->next;
8614     }
8615
8616   if (node)
8617     {
8618       info = node->data;
8619
8620       priv->device_grabs = g_slist_delete_link (priv->device_grabs, node);
8621       g_slice_free (GtkDeviceGrabInfo, info);
8622     }
8623 }
8624
8625 /**
8626  * gtk_window_group_get_current_device_grab:
8627  * @window_group: a #GtkWindowGroup
8628  * @device: a #GdkDevice
8629  *
8630  * Returns the current grab widget for @device, or %NULL if none.
8631  *
8632  * Returns: The grab widget, or %NULL
8633  *
8634  * Since: 3.0
8635  */
8636 GtkWidget *
8637 gtk_window_group_get_current_device_grab (GtkWindowGroup *window_group,
8638                                           GdkDevice      *device)
8639 {
8640   GtkWindowGroupPrivate *priv;
8641   GtkDeviceGrabInfo *info;
8642   GdkDevice *other_device;
8643   GSList *list;
8644
8645   g_return_val_if_fail (GTK_IS_WINDOW_GROUP (window_group), NULL);
8646   g_return_val_if_fail (GDK_IS_DEVICE (device), NULL);
8647
8648   priv = GTK_WINDOW_GROUP_GET_PRIVATE (window_group);
8649   list = priv->device_grabs;
8650   other_device = gdk_device_get_associated_device (device);
8651
8652   while (list)
8653     {
8654       info = list->data;
8655       list = list->next;
8656
8657       if (info->device == device ||
8658           info->device == other_device)
8659         return info->widget;
8660     }
8661
8662   return NULL;
8663 }
8664
8665 gboolean
8666 _gtk_window_group_widget_is_blocked_for_device (GtkWindowGroup *window_group,
8667                                                 GtkWidget      *widget,
8668                                                 GdkDevice      *device)
8669 {
8670   GtkWindowGroupPrivate *priv;
8671   GtkDeviceGrabInfo *info;
8672   GdkDevice *other_device;
8673   GSList *list;
8674
8675   priv = GTK_WINDOW_GROUP_GET_PRIVATE (window_group);
8676   other_device = gdk_device_get_associated_device (device);
8677   list = priv->device_grabs;
8678
8679   while (list)
8680     {
8681       info = list->data;
8682       list = list->next;
8683
8684       /* Look for blocking grabs on other device pairs
8685        * that have the passed widget within the GTK+ grab.
8686        */
8687       if (info->block_others &&
8688           info->device != device &&
8689           info->device != other_device &&
8690           (info->widget == widget ||
8691            gtk_widget_is_ancestor (widget, info->widget)))
8692         return TRUE;
8693     }
8694
8695   return FALSE;
8696 }
8697
8698 /*
8699   Derived from XParseGeometry() in XFree86  
8700
8701   Copyright 1985, 1986, 1987,1998  The Open Group
8702
8703   All Rights Reserved.
8704
8705   The above copyright notice and this permission notice shall be included
8706   in all copies or substantial portions of the Software.
8707
8708   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
8709   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
8710   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
8711   IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
8712   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
8713   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
8714   OTHER DEALINGS IN THE SOFTWARE.
8715
8716   Except as contained in this notice, the name of The Open Group shall
8717   not be used in advertising or otherwise to promote the sale, use or
8718   other dealings in this Software without prior written authorization
8719   from The Open Group.
8720 */
8721
8722
8723 /*
8724  *    XParseGeometry parses strings of the form
8725  *   "=<width>x<height>{+-}<xoffset>{+-}<yoffset>", where
8726  *   width, height, xoffset, and yoffset are unsigned integers.
8727  *   Example:  "=80x24+300-49"
8728  *   The equal sign is optional.
8729  *   It returns a bitmask that indicates which of the four values
8730  *   were actually found in the string.  For each value found,
8731  *   the corresponding argument is updated;  for each value
8732  *   not found, the corresponding argument is left unchanged. 
8733  */
8734
8735 /* The following code is from Xlib, and is minimally modified, so we
8736  * can track any upstream changes if required.  Don't change this
8737  * code. Or if you do, put in a huge comment marking which thing
8738  * changed.
8739  */
8740
8741 static int
8742 read_int (gchar   *string,
8743           gchar  **next)
8744 {
8745   int result = 0;
8746   int sign = 1;
8747   
8748   if (*string == '+')
8749     string++;
8750   else if (*string == '-')
8751     {
8752       string++;
8753       sign = -1;
8754     }
8755
8756   for (; (*string >= '0') && (*string <= '9'); string++)
8757     {
8758       result = (result * 10) + (*string - '0');
8759     }
8760
8761   *next = string;
8762
8763   if (sign >= 0)
8764     return (result);
8765   else
8766     return (-result);
8767 }
8768
8769 /* 
8770  * Bitmask returned by XParseGeometry().  Each bit tells if the corresponding
8771  * value (x, y, width, height) was found in the parsed string.
8772  */
8773 #define NoValue         0x0000
8774 #define XValue          0x0001
8775 #define YValue          0x0002
8776 #define WidthValue      0x0004
8777 #define HeightValue     0x0008
8778 #define AllValues       0x000F
8779 #define XNegative       0x0010
8780 #define YNegative       0x0020
8781
8782 /* Try not to reformat/modify, so we can compare/sync with X sources */
8783 static int
8784 gtk_XParseGeometry (const char   *string,
8785                     int          *x,
8786                     int          *y,
8787                     unsigned int *width,   
8788                     unsigned int *height)  
8789 {
8790   int mask = NoValue;
8791   char *strind;
8792   unsigned int tempWidth, tempHeight;
8793   int tempX, tempY;
8794   char *nextCharacter;
8795
8796   /* These initializations are just to silence gcc */
8797   tempWidth = 0;
8798   tempHeight = 0;
8799   tempX = 0;
8800   tempY = 0;
8801   
8802   if ( (string == NULL) || (*string == '\0')) return(mask);
8803   if (*string == '=')
8804     string++;  /* ignore possible '=' at beg of geometry spec */
8805
8806   strind = (char *)string;
8807   if (*strind != '+' && *strind != '-' && *strind != 'x') {
8808     tempWidth = read_int(strind, &nextCharacter);
8809     if (strind == nextCharacter) 
8810       return (0);
8811     strind = nextCharacter;
8812     mask |= WidthValue;
8813   }
8814
8815   if (*strind == 'x' || *strind == 'X') {       
8816     strind++;
8817     tempHeight = read_int(strind, &nextCharacter);
8818     if (strind == nextCharacter)
8819       return (0);
8820     strind = nextCharacter;
8821     mask |= HeightValue;
8822   }
8823
8824   if ((*strind == '+') || (*strind == '-')) {
8825     if (*strind == '-') {
8826       strind++;
8827       tempX = -read_int(strind, &nextCharacter);
8828       if (strind == nextCharacter)
8829         return (0);
8830       strind = nextCharacter;
8831       mask |= XNegative;
8832
8833     }
8834     else
8835       { strind++;
8836       tempX = read_int(strind, &nextCharacter);
8837       if (strind == nextCharacter)
8838         return(0);
8839       strind = nextCharacter;
8840       }
8841     mask |= XValue;
8842     if ((*strind == '+') || (*strind == '-')) {
8843       if (*strind == '-') {
8844         strind++;
8845         tempY = -read_int(strind, &nextCharacter);
8846         if (strind == nextCharacter)
8847           return(0);
8848         strind = nextCharacter;
8849         mask |= YNegative;
8850
8851       }
8852       else
8853         {
8854           strind++;
8855           tempY = read_int(strind, &nextCharacter);
8856           if (strind == nextCharacter)
8857             return(0);
8858           strind = nextCharacter;
8859         }
8860       mask |= YValue;
8861     }
8862   }
8863         
8864   /* If strind isn't at the end of the string the it's an invalid
8865                 geometry specification. */
8866
8867   if (*strind != '\0') return (0);
8868
8869   if (mask & XValue)
8870     *x = tempX;
8871   if (mask & YValue)
8872     *y = tempY;
8873   if (mask & WidthValue)
8874     *width = tempWidth;
8875   if (mask & HeightValue)
8876     *height = tempHeight;
8877   return (mask);
8878 }
8879
8880 /**
8881  * gtk_window_parse_geometry:
8882  * @window: a #GtkWindow
8883  * @geometry: geometry string
8884  * 
8885  * Parses a standard X Window System geometry string - see the
8886  * manual page for X (type 'man X') for details on this.
8887  * gtk_window_parse_geometry() does work on all GTK+ ports
8888  * including Win32 but is primarily intended for an X environment.
8889  *
8890  * If either a size or a position can be extracted from the
8891  * geometry string, gtk_window_parse_geometry() returns %TRUE
8892  * and calls gtk_window_set_default_size() and/or gtk_window_move()
8893  * to resize/move the window.
8894  *
8895  * If gtk_window_parse_geometry() returns %TRUE, it will also
8896  * set the #GDK_HINT_USER_POS and/or #GDK_HINT_USER_SIZE hints
8897  * indicating to the window manager that the size/position of
8898  * the window was user-specified. This causes most window
8899  * managers to honor the geometry.
8900  *
8901  * Note that for gtk_window_parse_geometry() to work as expected, it has
8902  * to be called when the window has its "final" size, i.e. after calling
8903  * gtk_widget_show_all() on the contents and gtk_window_set_geometry_hints()
8904  * on the window.
8905  * |[
8906  * #include <gtk/gtk.h>
8907  *    
8908  * static void
8909  * fill_with_content (GtkWidget *vbox)
8910  * {
8911  *   /&ast; fill with content... &ast;/
8912  * }
8913  *    
8914  * int
8915  * main (int argc, char *argv[])
8916  * {
8917  *   GtkWidget *window, *vbox;
8918  *   GdkGeometry size_hints = {
8919  *     100, 50, 0, 0, 100, 50, 10, 10, 0.0, 0.0, GDK_GRAVITY_NORTH_WEST  
8920  *   };
8921  *    
8922  *   gtk_init (&argc, &argv);
8923  *   
8924  *   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
8925  *   vbox = gtk_vbox_new (FALSE, 0);
8926  *   
8927  *   gtk_container_add (GTK_CONTAINER (window), vbox);
8928  *   fill_with_content (vbox);
8929  *   gtk_widget_show_all (vbox);
8930  *   
8931  *   gtk_window_set_geometry_hints (GTK_WINDOW (window),
8932  *                                  window,
8933  *                                  &size_hints,
8934  *                                  GDK_HINT_MIN_SIZE | 
8935  *                                  GDK_HINT_BASE_SIZE | 
8936  *                                  GDK_HINT_RESIZE_INC);
8937  *   
8938  *   if (argc &gt; 1)
8939  *     {
8940  *       if (!gtk_window_parse_geometry (GTK_WINDOW (window), argv[1]))
8941  *         fprintf (stderr, "Failed to parse '%s'\n", argv[1]);
8942  *     }
8943  *    
8944  *   gtk_widget_show_all (window);
8945  *   gtk_main ();
8946  *    
8947  *   return 0;
8948  * }
8949  * ]|
8950  *
8951  * Return value: %TRUE if string was parsed successfully
8952  **/
8953 gboolean
8954 gtk_window_parse_geometry (GtkWindow   *window,
8955                            const gchar *geometry)
8956 {
8957   gint result, x = 0, y = 0;
8958   guint w, h;
8959   GtkWidget *child;
8960   GdkGravity grav;
8961   gboolean size_set, pos_set;
8962   GdkScreen *screen;
8963   
8964   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
8965   g_return_val_if_fail (geometry != NULL, FALSE);
8966
8967   child = gtk_bin_get_child (GTK_BIN (window));
8968   if (!child || !gtk_widget_get_visible (child))
8969     g_warning ("gtk_window_parse_geometry() called on a window with no "
8970                "visible children; the window should be set up before "
8971                "gtk_window_parse_geometry() is called.");
8972
8973   screen = gtk_window_check_screen (window);
8974   
8975   result = gtk_XParseGeometry (geometry, &x, &y, &w, &h);
8976
8977   size_set = FALSE;
8978   if ((result & WidthValue) || (result & HeightValue))
8979     {
8980       gtk_window_set_default_size_internal (window, 
8981                                             TRUE, result & WidthValue ? w : -1,
8982                                             TRUE, result & HeightValue ? h : -1, 
8983                                             TRUE);
8984       size_set = TRUE;
8985     }
8986
8987   gtk_window_get_size (window, (gint *)&w, (gint *)&h);
8988   
8989   grav = GDK_GRAVITY_NORTH_WEST;
8990
8991   if ((result & XNegative) && (result & YNegative))
8992     grav = GDK_GRAVITY_SOUTH_EAST;
8993   else if (result & XNegative)
8994     grav = GDK_GRAVITY_NORTH_EAST;
8995   else if (result & YNegative)
8996     grav = GDK_GRAVITY_SOUTH_WEST;
8997
8998   if ((result & XValue) == 0)
8999     x = 0;
9000
9001   if ((result & YValue) == 0)
9002     y = 0;
9003
9004   if (grav == GDK_GRAVITY_SOUTH_WEST ||
9005       grav == GDK_GRAVITY_SOUTH_EAST)
9006     y = gdk_screen_get_height (screen) - h + y;
9007
9008   if (grav == GDK_GRAVITY_SOUTH_EAST ||
9009       grav == GDK_GRAVITY_NORTH_EAST)
9010     x = gdk_screen_get_width (screen) - w + x;
9011
9012   /* we don't let you put a window offscreen; maybe some people would
9013    * prefer to be able to, but it's kind of a bogus thing to do.
9014    */
9015   if (y < 0)
9016     y = 0;
9017
9018   if (x < 0)
9019     x = 0;
9020
9021   pos_set = FALSE;
9022   if ((result & XValue) || (result & YValue))
9023     {
9024       gtk_window_set_gravity (window, grav);
9025       gtk_window_move (window, x, y);
9026       pos_set = TRUE;
9027     }
9028
9029   if (size_set || pos_set)
9030     {
9031       /* Set USSize, USPosition hints */
9032       GtkWindowGeometryInfo *info;
9033
9034       info = gtk_window_get_geometry_info (window, TRUE);
9035
9036       if (pos_set)
9037         info->mask |= GDK_HINT_USER_POS;
9038       if (size_set)
9039         info->mask |= GDK_HINT_USER_SIZE;
9040     }
9041   
9042   return result != 0;
9043 }
9044
9045 static void
9046 gtk_window_mnemonic_hash_foreach (guint      keyval,
9047                                   GSList    *targets,
9048                                   gpointer   data)
9049 {
9050   struct {
9051     GtkWindow *window;
9052     GtkWindowKeysForeachFunc func;
9053     gpointer func_data;
9054   } *info = data;
9055
9056   (*info->func) (info->window, keyval, info->window->priv->mnemonic_modifier, TRUE, info->func_data);
9057 }
9058
9059 void
9060 _gtk_window_keys_foreach (GtkWindow                *window,
9061                           GtkWindowKeysForeachFunc func,
9062                           gpointer                 func_data)
9063 {
9064   GSList *groups;
9065   GtkMnemonicHash *mnemonic_hash;
9066
9067   struct {
9068     GtkWindow *window;
9069     GtkWindowKeysForeachFunc func;
9070     gpointer func_data;
9071   } info;
9072
9073   info.window = window;
9074   info.func = func;
9075   info.func_data = func_data;
9076
9077   mnemonic_hash = gtk_window_get_mnemonic_hash (window, FALSE);
9078   if (mnemonic_hash)
9079     _gtk_mnemonic_hash_foreach (mnemonic_hash,
9080                                 gtk_window_mnemonic_hash_foreach, &info);
9081
9082   groups = gtk_accel_groups_from_object (G_OBJECT (window));
9083   while (groups)
9084     {
9085       GtkAccelGroup *group = groups->data;
9086       gint i;
9087
9088       for (i = 0; i < group->priv->n_accels; i++)
9089         {
9090           GtkAccelKey *key = &group->priv->priv_accels[i].key;
9091           
9092           if (key->accel_key)
9093             (*func) (window, key->accel_key, key->accel_mods, FALSE, func_data);
9094         }
9095       
9096       groups = groups->next;
9097     }
9098 }
9099
9100 static void
9101 gtk_window_keys_changed (GtkWindow *window)
9102 {
9103   gtk_window_free_key_hash (window);
9104   gtk_window_get_key_hash (window);
9105 }
9106
9107 typedef struct _GtkWindowKeyEntry GtkWindowKeyEntry;
9108
9109 struct _GtkWindowKeyEntry
9110 {
9111   guint keyval;
9112   guint modifiers;
9113   guint is_mnemonic : 1;
9114 };
9115
9116 static void 
9117 window_key_entry_destroy (gpointer data)
9118 {
9119   g_slice_free (GtkWindowKeyEntry, data);
9120 }
9121
9122 static void
9123 add_to_key_hash (GtkWindow      *window,
9124                  guint           keyval,
9125                  GdkModifierType modifiers,
9126                  gboolean        is_mnemonic,
9127                  gpointer        data)
9128 {
9129   GtkKeyHash *key_hash = data;
9130
9131   GtkWindowKeyEntry *entry = g_slice_new (GtkWindowKeyEntry);
9132
9133   entry->keyval = keyval;
9134   entry->modifiers = modifiers;
9135   entry->is_mnemonic = is_mnemonic;
9136
9137   /* GtkAccelGroup stores lowercased accelerators. To deal
9138    * with this, if <Shift> was specified, uppercase.
9139    */
9140   if (modifiers & GDK_SHIFT_MASK)
9141     {
9142       if (keyval == GDK_KEY_Tab)
9143         keyval = GDK_KEY_ISO_Left_Tab;
9144       else
9145         keyval = gdk_keyval_to_upper (keyval);
9146     }
9147   
9148   _gtk_key_hash_add_entry (key_hash, keyval, entry->modifiers, entry);
9149 }
9150
9151 static GtkKeyHash *
9152 gtk_window_get_key_hash (GtkWindow *window)
9153 {
9154   GdkScreen *screen = gtk_window_check_screen (window);
9155   GtkKeyHash *key_hash = g_object_get_qdata (G_OBJECT (window), quark_gtk_window_key_hash);
9156   
9157   if (key_hash)
9158     return key_hash;
9159   
9160   key_hash = _gtk_key_hash_new (gdk_keymap_get_for_display (gdk_screen_get_display (screen)),
9161                                 (GDestroyNotify)window_key_entry_destroy);
9162   _gtk_window_keys_foreach (window, add_to_key_hash, key_hash);
9163   g_object_set_qdata (G_OBJECT (window), quark_gtk_window_key_hash, key_hash);
9164
9165   return key_hash;
9166 }
9167
9168 static void
9169 gtk_window_free_key_hash (GtkWindow *window)
9170 {
9171   GtkKeyHash *key_hash = g_object_get_qdata (G_OBJECT (window), quark_gtk_window_key_hash);
9172   if (key_hash)
9173     {
9174       _gtk_key_hash_free (key_hash);
9175       g_object_set_qdata (G_OBJECT (window), quark_gtk_window_key_hash, NULL);
9176     }
9177 }
9178
9179 /**
9180  * gtk_window_activate_key:
9181  * @window:  a #GtkWindow
9182  * @event:   a #GdkEventKey
9183  *
9184  * Activates mnemonics and accelerators for this #GtkWindow. This is normally
9185  * called by the default ::key_press_event handler for toplevel windows,
9186  * however in some cases it may be useful to call this directly when
9187  * overriding the standard key handling for a toplevel window.
9188  *
9189  * Return value: %TRUE if a mnemonic or accelerator was found and activated.
9190  *
9191  * Since: 2.4
9192  */
9193 gboolean
9194 gtk_window_activate_key (GtkWindow   *window,
9195                          GdkEventKey *event)
9196 {
9197   GtkKeyHash *key_hash;
9198   GtkWindowKeyEntry *found_entry = NULL;
9199   gboolean enable_mnemonics;
9200   gboolean enable_accels;
9201
9202   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
9203   g_return_val_if_fail (event != NULL, FALSE);
9204
9205   key_hash = gtk_window_get_key_hash (window);
9206
9207   if (key_hash)
9208     {
9209       GSList *tmp_list;
9210       GSList *entries = _gtk_key_hash_lookup (key_hash,
9211                                               event->hardware_keycode,
9212                                               event->state,
9213                                               gtk_accelerator_get_default_mod_mask (),
9214                                               event->group);
9215
9216       g_object_get (gtk_widget_get_settings (GTK_WIDGET (window)),
9217                     "gtk-enable-mnemonics", &enable_mnemonics,
9218                     "gtk-enable-accels", &enable_accels,
9219                     NULL);
9220
9221       for (tmp_list = entries; tmp_list; tmp_list = tmp_list->next)
9222         {
9223           GtkWindowKeyEntry *entry = tmp_list->data;
9224           if (entry->is_mnemonic)
9225             {
9226               if (enable_mnemonics)
9227                 {
9228                   found_entry = entry;
9229                   break;
9230                 }
9231             }
9232           else 
9233             {
9234               if (enable_accels && !found_entry)
9235                 {
9236                   found_entry = entry;
9237                 }
9238             }
9239         }
9240
9241       g_slist_free (entries);
9242     }
9243
9244   if (found_entry)
9245     {
9246       if (found_entry->is_mnemonic)
9247         {
9248           if (enable_mnemonics)
9249             return gtk_window_mnemonic_activate (window, found_entry->keyval,
9250                                                  found_entry->modifiers);
9251         }
9252       else
9253         {
9254           if (enable_accels)
9255             return gtk_accel_groups_activate (G_OBJECT (window), found_entry->keyval,
9256                                               found_entry->modifiers);
9257         }
9258     }
9259
9260   return FALSE;
9261 }
9262
9263 static void
9264 window_update_has_focus (GtkWindow *window)
9265 {
9266   GtkWindowPrivate *priv = window->priv;
9267   GtkWidget *widget = GTK_WIDGET (window);
9268   gboolean has_focus = priv->has_toplevel_focus && priv->is_active;
9269
9270   if (has_focus != priv->has_focus)
9271     {
9272       priv->has_focus = has_focus;
9273
9274       if (has_focus)
9275         {
9276           if (priv->focus_widget &&
9277               priv->focus_widget != widget &&
9278               !gtk_widget_has_focus (priv->focus_widget))
9279             do_focus_change (priv->focus_widget, TRUE);
9280         }
9281       else
9282         {
9283           if (priv->focus_widget &&
9284               priv->focus_widget != widget &&
9285               gtk_widget_has_focus (priv->focus_widget))
9286             do_focus_change (priv->focus_widget, FALSE);
9287         }
9288     }
9289 }
9290
9291 /**
9292  * _gtk_window_set_is_active:
9293  * @window: a #GtkWindow
9294  * @is_active: %TRUE if the window is in the currently active toplevel
9295  * 
9296  * Internal function that sets whether the #GtkWindow is part
9297  * of the currently active toplevel window (taking into account inter-process
9298  * embedding.)
9299  **/
9300 void
9301 _gtk_window_set_is_active (GtkWindow *window,
9302                            gboolean   is_active)
9303 {
9304   GtkWindowPrivate *priv;
9305
9306   g_return_if_fail (GTK_IS_WINDOW (window));
9307
9308   priv = window->priv;
9309
9310   is_active = is_active != FALSE;
9311
9312   if (is_active != priv->is_active)
9313     {
9314       priv->is_active = is_active;
9315       window_update_has_focus (window);
9316
9317       g_object_notify (G_OBJECT (window), "is-active");
9318     }
9319 }
9320
9321 /**
9322  * _gtk_window_set_is_toplevel:
9323  * @window: a #GtkWindow
9324  * @is_toplevel: %TRUE if the window is still a real toplevel (nominally a
9325  * parent of the root window); %FALSE if it is not (for example, for an
9326  * in-process, parented GtkPlug)
9327  *
9328  * Internal function used by #GtkPlug when it gets parented/unparented by a
9329  * #GtkSocket.  This keeps the @window's #GTK_TOPLEVEL flag in sync with the
9330  * global list of toplevel windows.
9331  */
9332 void
9333 _gtk_window_set_is_toplevel (GtkWindow *window,
9334                              gboolean   is_toplevel)
9335 {
9336   GtkWidget *widget;
9337
9338   widget = GTK_WIDGET (window);
9339
9340   if (gtk_widget_is_toplevel (widget))
9341     g_assert (g_slist_find (toplevel_list, window) != NULL);
9342   else
9343     g_assert (g_slist_find (toplevel_list, window) == NULL);
9344
9345   if (is_toplevel == gtk_widget_is_toplevel (widget))
9346     return;
9347
9348   if (is_toplevel)
9349     {
9350       _gtk_widget_set_is_toplevel (widget, TRUE);
9351       toplevel_list = g_slist_prepend (toplevel_list, window);
9352     }
9353   else
9354     {
9355       _gtk_widget_set_is_toplevel (widget, FALSE);
9356       toplevel_list = g_slist_remove (toplevel_list, window);
9357     }
9358 }
9359
9360 /**
9361  * _gtk_window_set_has_toplevel_focus:
9362  * @window: a #GtkWindow
9363  * @has_toplevel_focus: %TRUE if the in
9364  * 
9365  * Internal function that sets whether the keyboard focus for the
9366  * toplevel window (taking into account inter-process embedding.)
9367  **/
9368 void
9369 _gtk_window_set_has_toplevel_focus (GtkWindow *window,
9370                                    gboolean   has_toplevel_focus)
9371 {
9372   GtkWindowPrivate *priv;
9373
9374   g_return_if_fail (GTK_IS_WINDOW (window));
9375
9376   priv = window->priv;
9377
9378   has_toplevel_focus = has_toplevel_focus != FALSE;
9379
9380   if (has_toplevel_focus != priv->has_toplevel_focus)
9381     {
9382       priv->has_toplevel_focus = has_toplevel_focus;
9383       window_update_has_focus (window);
9384
9385       g_object_notify (G_OBJECT (window), "has-toplevel-focus");
9386     }
9387 }
9388
9389 /**
9390  * gtk_window_set_auto_startup_notification:
9391  * @setting: %TRUE to automatically do startup notification
9392  *
9393  * By default, after showing the first #GtkWindow, GTK+ calls 
9394  * gdk_notify_startup_complete().  Call this function to disable 
9395  * the automatic startup notification. You might do this if your 
9396  * first window is a splash screen, and you want to delay notification 
9397  * until after your real main window has been shown, for example.
9398  *
9399  * In that example, you would disable startup notification
9400  * temporarily, show your splash screen, then re-enable it so that
9401  * showing the main window would automatically result in notification.
9402  * 
9403  * Since: 2.2
9404  **/
9405 void
9406 gtk_window_set_auto_startup_notification (gboolean setting)
9407 {
9408   disable_startup_notification = !setting;
9409 }
9410
9411 /**
9412  * gtk_window_get_window_type:
9413  * @window: a #GtkWindow
9414  *
9415  * Gets the type of the window. See #GtkWindowType.
9416  *
9417  * Return value: the type of the window
9418  *
9419  * Since: 2.20
9420  **/
9421 GtkWindowType
9422 gtk_window_get_window_type (GtkWindow *window)
9423 {
9424   g_return_val_if_fail (GTK_IS_WINDOW (window), GTK_WINDOW_TOPLEVEL);
9425
9426   return window->priv->type;
9427 }
9428
9429 /**
9430  * gtk_window_get_mnemonics_visible:
9431  * @window: a #GtkWindow
9432  *
9433  * Gets the value of the #GtkWindow:mnemonics-visible property.
9434  *
9435  * Returns: %TRUE if mnemonics are supposed to be visible
9436  * in this window.
9437  *
9438  * Since: 2.20
9439  */
9440 gboolean
9441 gtk_window_get_mnemonics_visible (GtkWindow *window)
9442 {
9443   g_return_val_if_fail (GTK_IS_WINDOW (window), FALSE);
9444
9445   return window->priv->mnemonics_visible;
9446 }
9447
9448 /**
9449  * gtk_window_set_mnemonics_visible:
9450  * @window: a #GtkWindow
9451  * @setting: the new value
9452  *
9453  * Sets the #GtkWindow:mnemonics-visible property.
9454  *
9455  * Since: 2.20
9456  */
9457 void
9458 gtk_window_set_mnemonics_visible (GtkWindow *window,
9459                                   gboolean   setting)
9460 {
9461   GtkWindowPrivate *priv;
9462
9463   g_return_if_fail (GTK_IS_WINDOW (window));
9464
9465   priv = window->priv;
9466
9467   setting = setting != FALSE;
9468
9469   if (priv->mnemonics_visible != setting)
9470     {
9471       priv->mnemonics_visible = setting;
9472       g_object_notify (G_OBJECT (window), "mnemonics-visible");
9473     }
9474
9475   priv->mnemonics_visible_set = TRUE;
9476 }
9477
9478 void
9479 _gtk_window_get_wmclass (GtkWindow  *window,
9480                          gchar     **wmclass_name,
9481                          gchar     **wmclass_class)
9482 {
9483   GtkWindowPrivate *priv = window->priv;
9484
9485   *wmclass_name = priv->wmclass_name;
9486   *wmclass_class = priv->wmclass_class;
9487 }