]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenu.c
Always chain up in ::style-updated
[~andy/gtk] / gtk / gtkmenu.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 /**
28  * SECTION:gtkmenu
29  * @Short_description: A menu widget
30  * @Title: GtkMenu
31  *
32  * A #GtkMenu is a #GtkMenuShell that implements a drop down menu
33  * consisting of a list of #GtkMenuItem objects which can be navigated
34  * and activated by the user to perform application functions.
35  *
36  * A #GtkMenu is most commonly dropped down by activating a
37  * #GtkMenuItem in a #GtkMenuBar or popped up by activating a
38  * #GtkMenuItem in another #GtkMenu.
39  *
40  * A #GtkMenu can also be popped up by activating a #GtkOptionMenu.
41  * Other composite widgets such as the #GtkNotebook can pop up a
42  * #GtkMenu as well.
43  *
44  * Applications can display a #GtkMenu as a popup menu by calling the 
45  * gtk_menu_popup() function.  The example below shows how an application
46  * can pop up a menu when the 3rd mouse button is pressed.  
47  *
48  * <example>
49  * <title>Connecting the popup signal handler.</title>
50  * <programlisting>
51  *   /<!---->* connect our handler which will popup the menu *<!---->/
52  *   g_signal_connect_swapped (window, "button_press_event",
53  *      G_CALLBACK (my_popup_handler), menu);
54  * </programlisting>
55  * </example>
56  *
57  * <example>
58  * <title>Signal handler which displays a popup menu.</title>
59  * <programlisting>
60  * static gint
61  * my_popup_handler (GtkWidget *widget, GdkEvent *event)
62  * {
63  *   GtkMenu *menu;
64  *   GdkEventButton *event_button;
65  *
66  *   g_return_val_if_fail (widget != NULL, FALSE);
67  *   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
68  *   g_return_val_if_fail (event != NULL, FALSE);
69  *
70  *   /<!---->* The "widget" is the menu that was supplied when 
71  *    * g_signal_connect_swapped() was called.
72  *    *<!---->/
73  *   menu = GTK_MENU (widget);
74  *
75  *   if (event->type == GDK_BUTTON_PRESS)
76  *     {
77  *       event_button = (GdkEventButton *) event;
78  *       if (event_button->button == 3)
79  *         {
80  *           gtk_menu_popup (menu, NULL, NULL, NULL, NULL, 
81  *                           event_button->button, event_button->time);
82  *           return TRUE;
83  *         }
84  *     }
85  * 
86  *   return FALSE;
87  * }
88  * </programlisting>
89  * </example>
90  */
91
92 #include "config.h"
93
94 #include <string.h>
95
96 #include  <gobject/gvaluecollector.h>
97
98 #include "gtkaccellabel.h"
99 #include "gtkaccelmap.h"
100 #include "gtkbindings.h"
101 #include "gtkcheckmenuitem.h"
102 #include "gtkmain.h"
103 #include "gtkmarshalers.h"
104 #include "gtkmenuprivate.h"
105 #include "gtkmenuitemprivate.h"
106 #include "gtkmenushellprivate.h"
107 #include "gtktearoffmenuitem.h"
108 #include "gtkwindow.h"
109 #include "gtkhbox.h"
110 #include "gtkvscrollbar.h"
111 #include "gtksettings.h"
112 #include "gtkprivate.h"
113 #include "gtkintl.h"
114 #include "gtktypebuiltins.h"
115
116 #define NAVIGATION_REGION_OVERSHOOT 50  /* How much the navigation region
117                                          * extends below the submenu
118                                          */
119
120 #define MENU_SCROLL_STEP1      8
121 #define MENU_SCROLL_STEP2     15
122 #define MENU_SCROLL_FAST_ZONE  8
123 #define MENU_SCROLL_TIMEOUT1  50
124 #define MENU_SCROLL_TIMEOUT2  20
125
126 #define ATTACH_INFO_KEY "gtk-menu-child-attach-info-key"
127 #define ATTACHED_MENUS "gtk-attached-menus"
128
129 typedef struct _GtkMenuAttachData  GtkMenuAttachData;
130 typedef struct _GtkMenuPopdownData GtkMenuPopdownData;
131
132 struct _GtkMenuAttachData
133 {
134   GtkWidget *attach_widget;
135   GtkMenuDetachFunc detacher;
136 };
137
138 struct _OldGtkMenuPrivate
139 {
140   gint x;
141   gint y;
142   gboolean initially_pushed_in;
143
144   GDestroyNotify position_func_data_destroy;
145
146   /* info used for the table */
147   guint *heights;
148   gint heights_length;
149   gint requested_height;
150
151   gint monitor_num;
152
153   /* Cached layout information */
154   gint n_rows;
155   gint n_columns;
156
157   guint accel_size;
158
159   gchar *title;
160
161   /* Arrow states */
162   GtkStateFlags lower_arrow_state;
163   GtkStateFlags upper_arrow_state;
164
165   /* navigation region */
166   int navigation_x;
167   int navigation_y;
168   int navigation_width;
169   int navigation_height;
170
171   guint have_layout           : 1;
172   guint seen_item_enter       : 1;
173   guint have_position         : 1;
174   guint ignore_button_release : 1;
175   guint no_toggle_size        : 1;
176 };
177
178 struct _GtkMenuPopdownData
179 {
180   GtkMenu *menu;
181   GdkDevice *device;
182 };
183
184 typedef struct
185 {
186   gint left_attach;
187   gint right_attach;
188   gint top_attach;
189   gint bottom_attach;
190   gint effective_left_attach;
191   gint effective_right_attach;
192   gint effective_top_attach;
193   gint effective_bottom_attach;
194 } AttachInfo;
195
196 enum {
197   MOVE_SCROLL,
198   LAST_SIGNAL
199 };
200
201 enum {
202   PROP_0,
203   PROP_ACTIVE,
204   PROP_ACCEL_GROUP,
205   PROP_ACCEL_PATH,
206   PROP_ATTACH_WIDGET,
207   PROP_TEAROFF_STATE,
208   PROP_TEAROFF_TITLE,
209   PROP_MONITOR,
210   PROP_RESERVE_TOGGLE_SIZE
211 };
212
213 enum {
214   CHILD_PROP_0,
215   CHILD_PROP_LEFT_ATTACH,
216   CHILD_PROP_RIGHT_ATTACH,
217   CHILD_PROP_TOP_ATTACH,
218   CHILD_PROP_BOTTOM_ATTACH
219 };
220
221 static void     gtk_menu_set_property      (GObject          *object,
222                                             guint             prop_id,
223                                             const GValue     *value,
224                                             GParamSpec       *pspec);
225 static void     gtk_menu_get_property      (GObject          *object,
226                                             guint             prop_id,
227                                             GValue           *value,
228                                             GParamSpec       *pspec);
229 static void     gtk_menu_set_child_property(GtkContainer     *container,
230                                             GtkWidget        *child,
231                                             guint             property_id,
232                                             const GValue     *value,
233                                             GParamSpec       *pspec);
234 static void     gtk_menu_get_child_property(GtkContainer     *container,
235                                             GtkWidget        *child,
236                                             guint             property_id,
237                                             GValue           *value,
238                                             GParamSpec       *pspec);
239 static void     gtk_menu_destroy           (GtkWidget        *widget);
240 static void     gtk_menu_realize           (GtkWidget        *widget);
241 static void     gtk_menu_unrealize         (GtkWidget        *widget);
242 static void     gtk_menu_size_allocate     (GtkWidget        *widget,
243                                             GtkAllocation    *allocation);
244 static void     gtk_menu_show              (GtkWidget        *widget);
245 static gboolean gtk_menu_draw              (GtkWidget        *widget,
246                                             cairo_t          *cr);
247 static gboolean gtk_menu_key_press         (GtkWidget        *widget,
248                                             GdkEventKey      *event);
249 static gboolean gtk_menu_scroll            (GtkWidget        *widget,
250                                             GdkEventScroll   *event);
251 static gboolean gtk_menu_button_press      (GtkWidget        *widget,
252                                             GdkEventButton   *event);
253 static gboolean gtk_menu_button_release    (GtkWidget        *widget,
254                                             GdkEventButton   *event);
255 static gboolean gtk_menu_motion_notify     (GtkWidget        *widget,
256                                             GdkEventMotion   *event);
257 static gboolean gtk_menu_enter_notify      (GtkWidget        *widget,
258                                             GdkEventCrossing *event);
259 static gboolean gtk_menu_leave_notify      (GtkWidget        *widget,
260                                             GdkEventCrossing *event);
261 static void     gtk_menu_scroll_to         (GtkMenu          *menu,
262                                             gint              offset);
263 static void     gtk_menu_grab_notify       (GtkWidget        *widget,
264                                             gboolean          was_grabbed);
265
266 static void     gtk_menu_stop_scrolling         (GtkMenu  *menu);
267 static void     gtk_menu_remove_scroll_timeout  (GtkMenu  *menu);
268 static gboolean gtk_menu_scroll_timeout         (gpointer  data);
269 static gboolean gtk_menu_scroll_timeout_initial (gpointer  data);
270 static void     gtk_menu_start_scrolling        (GtkMenu  *menu);
271
272 static void     gtk_menu_scroll_item_visible (GtkMenuShell    *menu_shell,
273                                               GtkWidget       *menu_item);
274 static void     gtk_menu_select_item       (GtkMenuShell     *menu_shell,
275                                             GtkWidget        *menu_item);
276 static void     gtk_menu_real_insert       (GtkMenuShell     *menu_shell,
277                                             GtkWidget        *child,
278                                             gint              position);
279 static void     gtk_menu_scrollbar_changed (GtkAdjustment    *adjustment,
280                                             GtkMenu          *menu);
281 static void     gtk_menu_handle_scrolling  (GtkMenu          *menu,
282                                             gint              event_x,
283                                             gint              event_y,
284                                             gboolean          enter,
285                                             gboolean          motion);
286 static void     gtk_menu_set_tearoff_hints (GtkMenu          *menu,
287                                             gint             width);
288 static void     gtk_menu_style_updated     (GtkWidget        *widget);
289 static gboolean gtk_menu_focus             (GtkWidget        *widget,
290                                             GtkDirectionType direction);
291 static gint     gtk_menu_get_popup_delay   (GtkMenuShell     *menu_shell);
292 static void     gtk_menu_move_current      (GtkMenuShell     *menu_shell,
293                                             GtkMenuDirectionType direction);
294 static void     gtk_menu_real_move_scroll  (GtkMenu          *menu,
295                                             GtkScrollType     type);
296
297 static void     gtk_menu_stop_navigating_submenu       (GtkMenu          *menu);
298 static gboolean gtk_menu_stop_navigating_submenu_cb    (gpointer          user_data);
299 static gboolean gtk_menu_navigating_submenu            (GtkMenu          *menu,
300                                                         gint              event_x,
301                                                         gint              event_y);
302 static void     gtk_menu_set_submenu_navigation_region (GtkMenu          *menu,
303                                                         GtkMenuItem      *menu_item,
304                                                         GdkEventCrossing *event);
305  
306 static void gtk_menu_deactivate     (GtkMenuShell      *menu_shell);
307 static void gtk_menu_show_all       (GtkWidget         *widget);
308 static void gtk_menu_position       (GtkMenu           *menu,
309                                      gboolean           set_scroll_offset);
310 static void gtk_menu_reparent       (GtkMenu           *menu,
311                                      GtkWidget         *new_parent,
312                                      gboolean           unrealize);
313 static void gtk_menu_remove         (GtkContainer      *menu,
314                                      GtkWidget         *widget);
315
316 static void gtk_menu_update_title   (GtkMenu           *menu);
317
318 static void       menu_grab_transfer_window_destroy (GtkMenu *menu);
319 static GdkWindow *menu_grab_transfer_window_get     (GtkMenu *menu);
320
321 static gboolean gtk_menu_real_can_activate_accel (GtkWidget *widget,
322                                                   guint      signal_id);
323 static void _gtk_menu_refresh_accel_paths (GtkMenu *menu,
324                                            gboolean group_changed);
325
326 static void gtk_menu_get_preferred_width            (GtkWidget           *widget,
327                                                      gint                *minimum_size,
328                                                      gint                *natural_size);
329 static void gtk_menu_get_preferred_height           (GtkWidget           *widget,
330                                                      gint                *minimum_size,
331                                                      gint                *natural_size);
332 static void gtk_menu_get_preferred_height_for_width (GtkWidget           *widget,
333                                                      gint                 for_size,
334                                                      gint                *minimum_size,
335                                                      gint                *natural_size);
336
337
338 static const gchar attach_data_key[] = "gtk-menu-attach-data";
339
340 static guint menu_signals[LAST_SIGNAL] = { 0 };
341
342 G_DEFINE_TYPE (GtkMenu, gtk_menu, GTK_TYPE_MENU_SHELL)
343
344 static void
345 menu_queue_resize (GtkMenu *menu)
346 {
347   GtkMenuPrivate *priv = menu->priv;
348
349   priv->have_layout = FALSE;
350   gtk_widget_queue_resize (GTK_WIDGET (menu));
351 }
352
353 static void
354 attach_info_free (AttachInfo *info)
355 {
356   g_slice_free (AttachInfo, info);
357 }
358
359 static AttachInfo *
360 get_attach_info (GtkWidget *child)
361 {
362   GObject *object = G_OBJECT (child);
363   AttachInfo *ai = g_object_get_data (object, ATTACH_INFO_KEY);
364
365   if (!ai)
366     {
367       ai = g_slice_new0 (AttachInfo);
368       g_object_set_data_full (object, I_(ATTACH_INFO_KEY), ai,
369                               (GDestroyNotify) attach_info_free);
370     }
371
372   return ai;
373 }
374
375 static gboolean
376 is_grid_attached (AttachInfo *ai)
377 {
378   return (ai->left_attach >= 0 &&
379           ai->right_attach >= 0 &&
380           ai->top_attach >= 0 &&
381           ai->bottom_attach >= 0);
382 }
383
384 static void
385 menu_ensure_layout (GtkMenu *menu)
386 {
387   GtkMenuPrivate *priv = menu->priv;
388
389   if (!priv->have_layout)
390     {
391       GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
392       GList *l;
393       gchar *row_occupied;
394       gint current_row;
395       gint max_right_attach;
396       gint max_bottom_attach;
397
398       /* Find extents of gridded portion
399        */
400       max_right_attach = 1;
401       max_bottom_attach = 0;
402
403       for (l = menu_shell->priv->children; l; l = l->next)
404         {
405           GtkWidget *child = l->data;
406           AttachInfo *ai = get_attach_info (child);
407
408           if (is_grid_attached (ai))
409             {
410               max_bottom_attach = MAX (max_bottom_attach, ai->bottom_attach);
411               max_right_attach = MAX (max_right_attach, ai->right_attach);
412             }
413         }
414
415       /* Find empty rows */
416       row_occupied = g_malloc0 (max_bottom_attach);
417
418       for (l = menu_shell->priv->children; l; l = l->next)
419         {
420           GtkWidget *child = l->data;
421           AttachInfo *ai = get_attach_info (child);
422
423           if (is_grid_attached (ai))
424             {
425               gint i;
426
427               for (i = ai->top_attach; i < ai->bottom_attach; i++)
428                 row_occupied[i] = TRUE;
429             }
430         }
431
432       /* Lay non-grid-items out in those rows
433        */
434       current_row = 0;
435       for (l = menu_shell->priv->children; l; l = l->next)
436         {
437           GtkWidget *child = l->data;
438           AttachInfo *ai = get_attach_info (child);
439
440           if (!is_grid_attached (ai))
441             {
442               while (current_row < max_bottom_attach && row_occupied[current_row])
443                 current_row++;
444
445               ai->effective_left_attach = 0;
446               ai->effective_right_attach = max_right_attach;
447               ai->effective_top_attach = current_row;
448               ai->effective_bottom_attach = current_row + 1;
449
450               current_row++;
451             }
452           else
453             {
454               ai->effective_left_attach = ai->left_attach;
455               ai->effective_right_attach = ai->right_attach;
456               ai->effective_top_attach = ai->top_attach;
457               ai->effective_bottom_attach = ai->bottom_attach;
458             }
459         }
460
461       g_free (row_occupied);
462
463       priv->n_rows = MAX (current_row, max_bottom_attach);
464       priv->n_columns = max_right_attach;
465       priv->have_layout = TRUE;
466     }
467 }
468
469
470 static gint
471 gtk_menu_get_n_columns (GtkMenu *menu)
472 {
473   GtkMenuPrivate *priv = menu->priv;
474
475   menu_ensure_layout (menu);
476
477   return priv->n_columns;
478 }
479
480 static gint
481 gtk_menu_get_n_rows (GtkMenu *menu)
482 {
483   GtkMenuPrivate *priv = menu->priv;
484
485   menu_ensure_layout (menu);
486
487   return priv->n_rows;
488 }
489
490 static void
491 get_effective_child_attach (GtkWidget *child,
492                             int       *l,
493                             int       *r,
494                             int       *t,
495                             int       *b)
496 {
497   GtkMenu *menu = GTK_MENU (gtk_widget_get_parent (child));
498   AttachInfo *ai;
499   
500   menu_ensure_layout (menu);
501
502   ai = get_attach_info (child);
503
504   if (l)
505     *l = ai->effective_left_attach;
506   if (r)
507     *r = ai->effective_right_attach;
508   if (t)
509     *t = ai->effective_top_attach;
510   if (b)
511     *b = ai->effective_bottom_attach;
512
513 }
514
515 static void
516 gtk_menu_class_init (GtkMenuClass *class)
517 {
518   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
519   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
520   GtkContainerClass *container_class = GTK_CONTAINER_CLASS (class);
521   GtkMenuShellClass *menu_shell_class = GTK_MENU_SHELL_CLASS (class);
522   GtkBindingSet *binding_set;
523   
524   gobject_class->set_property = gtk_menu_set_property;
525   gobject_class->get_property = gtk_menu_get_property;
526
527   widget_class->destroy = gtk_menu_destroy;
528   widget_class->realize = gtk_menu_realize;
529   widget_class->unrealize = gtk_menu_unrealize;
530   widget_class->size_allocate = gtk_menu_size_allocate;
531   widget_class->show = gtk_menu_show;
532   widget_class->draw = gtk_menu_draw;
533   widget_class->scroll_event = gtk_menu_scroll;
534   widget_class->key_press_event = gtk_menu_key_press;
535   widget_class->button_press_event = gtk_menu_button_press;
536   widget_class->button_release_event = gtk_menu_button_release;
537   widget_class->motion_notify_event = gtk_menu_motion_notify;
538   widget_class->show_all = gtk_menu_show_all;
539   widget_class->enter_notify_event = gtk_menu_enter_notify;
540   widget_class->leave_notify_event = gtk_menu_leave_notify;
541   widget_class->style_updated = gtk_menu_style_updated;
542   widget_class->focus = gtk_menu_focus;
543   widget_class->can_activate_accel = gtk_menu_real_can_activate_accel;
544   widget_class->grab_notify = gtk_menu_grab_notify;
545   widget_class->get_preferred_width = gtk_menu_get_preferred_width;
546   widget_class->get_preferred_height = gtk_menu_get_preferred_height;
547   widget_class->get_preferred_height_for_width = gtk_menu_get_preferred_height_for_width;
548
549   container_class->remove = gtk_menu_remove;
550   container_class->get_child_property = gtk_menu_get_child_property;
551   container_class->set_child_property = gtk_menu_set_child_property;
552   
553   menu_shell_class->submenu_placement = GTK_LEFT_RIGHT;
554   menu_shell_class->deactivate = gtk_menu_deactivate;
555   menu_shell_class->select_item = gtk_menu_select_item;
556   menu_shell_class->insert = gtk_menu_real_insert;
557   menu_shell_class->get_popup_delay = gtk_menu_get_popup_delay;
558   menu_shell_class->move_current = gtk_menu_move_current;
559
560   /**
561    * GtkMenu::move-scroll:
562    * @menu: a #GtkMenu
563    * @scroll_type: a #GtkScrollType
564    */
565   menu_signals[MOVE_SCROLL] =
566     g_signal_new_class_handler (I_("move-scroll"),
567                                 G_OBJECT_CLASS_TYPE (gobject_class),
568                                 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
569                                 G_CALLBACK (gtk_menu_real_move_scroll),
570                                 NULL, NULL,
571                                 _gtk_marshal_VOID__ENUM,
572                                 G_TYPE_NONE, 1,
573                                 GTK_TYPE_SCROLL_TYPE);
574
575   /**
576    * GtkMenu:active:
577    *
578    * The index of the currently selected menu item, or -1 if no
579    * menu item is selected.
580    *
581    * Since: 2.14
582    **/
583   g_object_class_install_property (gobject_class,
584                                    PROP_ACTIVE,
585                                    g_param_spec_int ("active",
586                                                      P_("Active"),
587                                                      P_("The currently selected menu item"),
588                                                      -1, G_MAXINT, -1,
589                                                      GTK_PARAM_READWRITE));
590
591   /**
592    * GtkMenu:accel-group:
593    *
594    * The accel group holding accelerators for the menu.
595    *
596    * Since: 2.14
597    **/
598   g_object_class_install_property (gobject_class,
599                                    PROP_ACCEL_GROUP,
600                                    g_param_spec_object ("accel-group",
601                                                         P_("Accel Group"),
602                                                         P_("The accel group holding accelerators for the menu"),
603                                                         GTK_TYPE_ACCEL_GROUP,
604                                                         GTK_PARAM_READWRITE));
605
606   /**
607    * GtkMenu:accel-path:
608    *
609    * An accel path used to conveniently construct accel paths of child items.
610    *
611    * Since: 2.14
612    **/
613   g_object_class_install_property (gobject_class,
614                                    PROP_ACCEL_PATH,
615                                    g_param_spec_string ("accel-path",
616                                                         P_("Accel Path"),
617                                                         P_("An accel path used to conveniently construct accel paths of child items"),
618                                                         NULL,
619                                                         GTK_PARAM_READWRITE));
620
621   /**
622    * GtkMenu:attach-widget:
623    *
624    * The widget the menu is attached to. Setting this property attaches
625    * the menu without a #GtkMenuDetachFunc. If you need to use a detacher,
626    * use gtk_menu_attach_to_widget() directly.
627    *
628    * Since: 2.14
629    **/
630   g_object_class_install_property (gobject_class,
631                                    PROP_ATTACH_WIDGET,
632                                    g_param_spec_object ("attach-widget",
633                                                         P_("Attach Widget"),
634                                                         P_("The widget the menu is attached to"),
635                                                         GTK_TYPE_WIDGET,
636                                                         GTK_PARAM_READWRITE));
637
638   g_object_class_install_property (gobject_class,
639                                    PROP_TEAROFF_TITLE,
640                                    g_param_spec_string ("tearoff-title",
641                                                         P_("Tearoff Title"),
642                                                         P_("A title that may be displayed by the window manager when this menu is torn-off"),
643                                                         NULL,
644                                                         GTK_PARAM_READWRITE));
645
646   /**
647    * GtkMenu:tearoff-state:
648    *
649    * A boolean that indicates whether the menu is torn-off.
650    *
651    * Since: 2.6
652    **/
653   g_object_class_install_property (gobject_class,
654                                    PROP_TEAROFF_STATE,
655                                    g_param_spec_boolean ("tearoff-state",
656                                                          P_("Tearoff State"),
657                                                          P_("A boolean that indicates whether the menu is torn-off"),
658                                                          FALSE,
659                                                          GTK_PARAM_READWRITE));
660
661   /**
662    * GtkMenu:monitor:
663    *
664    * The monitor the menu will be popped up on.
665    *
666    * Since: 2.14
667    **/
668   g_object_class_install_property (gobject_class,
669                                    PROP_MONITOR,
670                                    g_param_spec_int ("monitor",
671                                                      P_("Monitor"),
672                                                      P_("The monitor the menu will be popped up on"),
673                                                      -1, G_MAXINT, -1,
674                                                      GTK_PARAM_READWRITE));
675
676   gtk_widget_class_install_style_property (widget_class,
677                                            g_param_spec_int ("vertical-padding",
678                                                              P_("Vertical Padding"),
679                                                              P_("Extra space at the top and bottom of the menu"),
680                                                              0,
681                                                              G_MAXINT,
682                                                              1,
683                                                              GTK_PARAM_READABLE));
684
685   /**
686    * GtkMenu:reserve-toggle-size:
687    *
688    * A boolean that indicates whether the menu reserves space for
689    * toggles and icons, regardless of their actual presence.
690    *
691    * This property should only be changed from its default value
692    * for special-purposes such as tabular menus. Regular menus that
693    * are connected to a menu bar or context menus should reserve
694    * toggle space for consistency.
695    *
696    * Since: 2.18
697    */
698   g_object_class_install_property (gobject_class,
699                                    PROP_RESERVE_TOGGLE_SIZE,
700                                    g_param_spec_boolean ("reserve-toggle-size",
701                                                          P_("Reserve Toggle Size"),
702                                                          P_("A boolean that indicates whether the menu reserves space for toggles and icons"),
703                                                          TRUE,
704                                                          GTK_PARAM_READWRITE));
705
706   gtk_widget_class_install_style_property (widget_class,
707                                            g_param_spec_int ("horizontal-padding",
708                                                              P_("Horizontal Padding"),
709                                                              P_("Extra space at the left and right edges of the menu"),
710                                                              0,
711                                                              G_MAXINT,
712                                                              0,
713                                                              GTK_PARAM_READABLE));
714
715   gtk_widget_class_install_style_property (widget_class,
716                                            g_param_spec_int ("vertical-offset",
717                                                              P_("Vertical Offset"),
718                                                              P_("When the menu is a submenu, position it this number of pixels offset vertically"),
719                                                              G_MININT,
720                                                              G_MAXINT,
721                                                              0,
722                                                              GTK_PARAM_READABLE));
723
724   gtk_widget_class_install_style_property (widget_class,
725                                            g_param_spec_int ("horizontal-offset",
726                                                              P_("Horizontal Offset"),
727                                                              P_("When the menu is a submenu, position it this number of pixels offset horizontally"),
728                                                              G_MININT,
729                                                              G_MAXINT,
730                                                              -2,
731                                                              GTK_PARAM_READABLE));
732
733   gtk_widget_class_install_style_property (widget_class,
734                                            g_param_spec_boolean ("double-arrows",
735                                                                  P_("Double Arrows"),
736                                                                  P_("When scrolling, always show both arrows."),
737                                                                  TRUE,
738                                                                  GTK_PARAM_READABLE));
739
740   /**
741    * GtkMenu:arrow-placement:
742    *
743    * Indicates where scroll arrows should be placed.
744    *
745    * Since: 2.16
746    **/
747   gtk_widget_class_install_style_property (widget_class,
748                                            g_param_spec_enum ("arrow-placement",
749                                                               P_("Arrow Placement"),
750                                                               P_("Indicates where scroll arrows should be placed"),
751                                                               GTK_TYPE_ARROW_PLACEMENT,
752                                                               GTK_ARROWS_BOTH,
753                                                               GTK_PARAM_READABLE));
754
755  gtk_container_class_install_child_property (container_class,
756                                              CHILD_PROP_LEFT_ATTACH,
757                                               g_param_spec_int ("left-attach",
758                                                                P_("Left Attach"),
759                                                                P_("The column number to attach the left side of the child to"),
760                                                                 -1, INT_MAX, -1,
761                                                                GTK_PARAM_READWRITE));
762
763  gtk_container_class_install_child_property (container_class,
764                                              CHILD_PROP_RIGHT_ATTACH,
765                                               g_param_spec_int ("right-attach",
766                                                                P_("Right Attach"),
767                                                                P_("The column number to attach the right side of the child to"),
768                                                                 -1, INT_MAX, -1,
769                                                                GTK_PARAM_READWRITE));
770
771  gtk_container_class_install_child_property (container_class,
772                                              CHILD_PROP_TOP_ATTACH,
773                                               g_param_spec_int ("top-attach",
774                                                                P_("Top Attach"),
775                                                                P_("The row number to attach the top of the child to"),
776                                                                 -1, INT_MAX, -1,
777                                                                GTK_PARAM_READWRITE));
778
779  gtk_container_class_install_child_property (container_class,
780                                              CHILD_PROP_BOTTOM_ATTACH,
781                                               g_param_spec_int ("bottom-attach",
782                                                                P_("Bottom Attach"),
783                                                                P_("The row number to attach the bottom of the child to"),
784                                                                 -1, INT_MAX, -1,
785                                                                GTK_PARAM_READWRITE));
786
787  /**
788   * GtkMenu:arrow-scaling
789   *
790   * Arbitrary constant to scale down the size of the scroll arrow.
791   *
792   * Since: 2.16
793   */
794   gtk_widget_class_install_style_property (widget_class,
795                                            g_param_spec_float ("arrow-scaling",
796                                                                P_("Arrow Scaling"),
797                                                                P_("Arbitrary constant to scale down the size of the scroll arrow"),
798                                                                0.0, 1.0, 0.7,
799                                                                GTK_PARAM_READABLE));
800
801   binding_set = gtk_binding_set_by_class (class);
802   gtk_binding_entry_add_signal (binding_set,
803                                 GDK_KEY_Up, 0,
804                                 I_("move-current"), 1,
805                                 GTK_TYPE_MENU_DIRECTION_TYPE,
806                                 GTK_MENU_DIR_PREV);
807   gtk_binding_entry_add_signal (binding_set,
808                                 GDK_KEY_KP_Up, 0,
809                                 "move-current", 1,
810                                 GTK_TYPE_MENU_DIRECTION_TYPE,
811                                 GTK_MENU_DIR_PREV);
812   gtk_binding_entry_add_signal (binding_set,
813                                 GDK_KEY_Down, 0,
814                                 "move-current", 1,
815                                 GTK_TYPE_MENU_DIRECTION_TYPE,
816                                 GTK_MENU_DIR_NEXT);
817   gtk_binding_entry_add_signal (binding_set,
818                                 GDK_KEY_KP_Down, 0,
819                                 "move-current", 1,
820                                 GTK_TYPE_MENU_DIRECTION_TYPE,
821                                 GTK_MENU_DIR_NEXT);
822   gtk_binding_entry_add_signal (binding_set,
823                                 GDK_KEY_Left, 0,
824                                 "move-current", 1,
825                                 GTK_TYPE_MENU_DIRECTION_TYPE,
826                                 GTK_MENU_DIR_PARENT);
827   gtk_binding_entry_add_signal (binding_set,
828                                 GDK_KEY_KP_Left, 0,
829                                 "move-current", 1,
830                                 GTK_TYPE_MENU_DIRECTION_TYPE,
831                                 GTK_MENU_DIR_PARENT);
832   gtk_binding_entry_add_signal (binding_set,
833                                 GDK_KEY_Right, 0,
834                                 "move-current", 1,
835                                 GTK_TYPE_MENU_DIRECTION_TYPE,
836                                 GTK_MENU_DIR_CHILD);
837   gtk_binding_entry_add_signal (binding_set,
838                                 GDK_KEY_KP_Right, 0,
839                                 "move-current", 1,
840                                 GTK_TYPE_MENU_DIRECTION_TYPE,
841                                 GTK_MENU_DIR_CHILD);
842   gtk_binding_entry_add_signal (binding_set,
843                                 GDK_KEY_Home, 0,
844                                 "move-scroll", 1,
845                                 GTK_TYPE_SCROLL_TYPE,
846                                 GTK_SCROLL_START);
847   gtk_binding_entry_add_signal (binding_set,
848                                 GDK_KEY_KP_Home, 0,
849                                 "move-scroll", 1,
850                                 GTK_TYPE_SCROLL_TYPE,
851                                 GTK_SCROLL_START);
852   gtk_binding_entry_add_signal (binding_set,
853                                 GDK_KEY_End, 0,
854                                 "move-scroll", 1,
855                                 GTK_TYPE_SCROLL_TYPE,
856                                 GTK_SCROLL_END);
857   gtk_binding_entry_add_signal (binding_set,
858                                 GDK_KEY_KP_End, 0,
859                                 "move-scroll", 1,
860                                 GTK_TYPE_SCROLL_TYPE,
861                                 GTK_SCROLL_END);
862   gtk_binding_entry_add_signal (binding_set,
863                                 GDK_KEY_Page_Up, 0,
864                                 "move-scroll", 1,
865                                 GTK_TYPE_SCROLL_TYPE,
866                                 GTK_SCROLL_PAGE_UP);
867   gtk_binding_entry_add_signal (binding_set,
868                                 GDK_KEY_KP_Page_Up, 0,
869                                 "move-scroll", 1,
870                                 GTK_TYPE_SCROLL_TYPE,
871                                 GTK_SCROLL_PAGE_UP);
872   gtk_binding_entry_add_signal (binding_set,
873                                 GDK_KEY_Page_Down, 0,
874                                 "move-scroll", 1,
875                                 GTK_TYPE_SCROLL_TYPE,
876                                 GTK_SCROLL_PAGE_DOWN);
877   gtk_binding_entry_add_signal (binding_set,
878                                 GDK_KEY_KP_Page_Down, 0,
879                                 "move-scroll", 1,
880                                 GTK_TYPE_SCROLL_TYPE,
881                                 GTK_SCROLL_PAGE_DOWN);
882
883   g_type_class_add_private (gobject_class, sizeof (GtkMenuPrivate));
884 }
885
886
887 static void
888 gtk_menu_set_property (GObject      *object,
889                        guint         prop_id,
890                        const GValue *value,
891                        GParamSpec   *pspec)
892 {
893   GtkMenu *menu = GTK_MENU (object);
894
895   switch (prop_id)
896     {
897     case PROP_ACTIVE:
898       gtk_menu_set_active (menu, g_value_get_int (value));
899       break;
900     case PROP_ACCEL_GROUP:
901       gtk_menu_set_accel_group (menu, g_value_get_object (value));
902       break;
903     case PROP_ACCEL_PATH:
904       gtk_menu_set_accel_path (menu, g_value_get_string (value));
905       break;
906     case PROP_ATTACH_WIDGET:
907       {
908         GtkWidget *widget;
909
910         widget = gtk_menu_get_attach_widget (menu);
911         if (widget)
912           gtk_menu_detach (menu);
913
914         widget = (GtkWidget*) g_value_get_object (value); 
915         if (widget)
916           gtk_menu_attach_to_widget (menu, widget, NULL);
917       }
918       break;
919     case PROP_TEAROFF_STATE:
920       gtk_menu_set_tearoff_state (menu, g_value_get_boolean (value));
921       break;
922     case PROP_TEAROFF_TITLE:
923       gtk_menu_set_title (menu, g_value_get_string (value));
924       break;
925     case PROP_MONITOR:
926       gtk_menu_set_monitor (menu, g_value_get_int (value));
927       break;
928     case PROP_RESERVE_TOGGLE_SIZE:
929       gtk_menu_set_reserve_toggle_size (menu, g_value_get_boolean (value));
930       break;
931     default:
932       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
933       break;
934     }
935 }
936
937 static void
938 gtk_menu_get_property (GObject     *object,
939                        guint        prop_id,
940                        GValue      *value,
941                        GParamSpec  *pspec)
942 {
943   GtkMenu *menu = GTK_MENU (object);
944
945   switch (prop_id)
946     {
947     case PROP_ACTIVE:
948       g_value_set_int (value, g_list_index (GTK_MENU_SHELL (menu)->priv->children, gtk_menu_get_active (menu)));
949       break;
950     case PROP_ACCEL_GROUP:
951       g_value_set_object (value, gtk_menu_get_accel_group (menu));
952       break;
953     case PROP_ACCEL_PATH:
954       g_value_set_string (value, gtk_menu_get_accel_path (menu));
955       break;
956     case PROP_ATTACH_WIDGET:
957       g_value_set_object (value, gtk_menu_get_attach_widget (menu));
958       break;
959     case PROP_TEAROFF_STATE:
960       g_value_set_boolean (value, gtk_menu_get_tearoff_state (menu));
961       break;
962     case PROP_TEAROFF_TITLE:
963       g_value_set_string (value, gtk_menu_get_title (menu));
964       break;
965     case PROP_MONITOR:
966       g_value_set_int (value, gtk_menu_get_monitor (menu));
967       break;
968     case PROP_RESERVE_TOGGLE_SIZE:
969       g_value_set_boolean (value, gtk_menu_get_reserve_toggle_size (menu));
970       break;
971     default:
972       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
973       break;
974     }
975 }
976
977 static void
978 gtk_menu_set_child_property (GtkContainer *container,
979                              GtkWidget    *child,
980                              guint         property_id,
981                              const GValue *value,
982                              GParamSpec   *pspec)
983 {
984   GtkMenu *menu = GTK_MENU (container);
985   AttachInfo *ai = get_attach_info (child);
986
987   switch (property_id)
988     {
989     case CHILD_PROP_LEFT_ATTACH:
990       ai->left_attach = g_value_get_int (value);
991       break;
992     case CHILD_PROP_RIGHT_ATTACH:
993       ai->right_attach = g_value_get_int (value);
994       break;
995     case CHILD_PROP_TOP_ATTACH:
996       ai->top_attach = g_value_get_int (value);
997       break;
998     case CHILD_PROP_BOTTOM_ATTACH:
999       ai->bottom_attach = g_value_get_int (value);
1000       break;
1001
1002     default:
1003       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
1004       return;
1005     }
1006
1007   menu_queue_resize (menu);
1008 }
1009
1010 static void
1011 gtk_menu_get_child_property (GtkContainer *container,
1012                              GtkWidget    *child,
1013                              guint         property_id,
1014                              GValue       *value,
1015                              GParamSpec   *pspec)
1016 {
1017   AttachInfo *ai = get_attach_info (child);
1018
1019   switch (property_id)
1020     {
1021     case CHILD_PROP_LEFT_ATTACH:
1022       g_value_set_int (value, ai->left_attach);
1023       break;
1024     case CHILD_PROP_RIGHT_ATTACH:
1025       g_value_set_int (value, ai->right_attach);
1026       break;
1027     case CHILD_PROP_TOP_ATTACH:
1028       g_value_set_int (value, ai->top_attach);
1029       break;
1030     case CHILD_PROP_BOTTOM_ATTACH:
1031       g_value_set_int (value, ai->bottom_attach);
1032       break;
1033       
1034     default:
1035       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
1036       return;
1037     }
1038 }
1039
1040 static gboolean
1041 gtk_menu_window_event (GtkWidget *window,
1042                        GdkEvent  *event,
1043                        GtkWidget *menu)
1044 {
1045   gboolean handled = FALSE;
1046
1047   g_object_ref (window);
1048   g_object_ref (menu);
1049
1050   switch (event->type)
1051     {
1052     case GDK_KEY_PRESS:
1053     case GDK_KEY_RELEASE:
1054       handled = gtk_widget_event (menu, event);
1055       break;
1056     default:
1057       break;
1058     }
1059
1060   g_object_unref (window);
1061   g_object_unref (menu);
1062
1063   return handled;
1064 }
1065
1066 static void
1067 gtk_menu_init (GtkMenu *menu)
1068 {
1069   GtkMenuPrivate *priv;
1070   GtkStyleContext *context;
1071
1072   priv = G_TYPE_INSTANCE_GET_PRIVATE (menu, GTK_TYPE_MENU, GtkMenuPrivate);
1073
1074   menu->priv = priv;
1075
1076   priv->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
1077                                                    "type", GTK_WINDOW_POPUP,
1078                                                    "child", menu,
1079                                                    NULL),
1080                                      "signal::event", gtk_menu_window_event, menu,
1081                                      "signal::destroy", gtk_widget_destroyed, &priv->toplevel,
1082                                      NULL);
1083   gtk_window_set_resizable (GTK_WINDOW (priv->toplevel), FALSE);
1084   gtk_window_set_mnemonic_modifier (GTK_WINDOW (priv->toplevel), 0);
1085
1086   /* Refloat the menu, so that reference counting for the menu isn't
1087    * affected by it being a child of the toplevel
1088    */
1089   g_object_force_floating (G_OBJECT (menu));
1090   priv->needs_destruction_ref = TRUE;
1091
1092   priv->monitor_num = -1;
1093
1094   context = gtk_widget_get_style_context (GTK_WIDGET (menu));
1095   gtk_style_context_add_class (context, GTK_STYLE_CLASS_MENU);
1096 }
1097
1098 static void
1099 gtk_menu_destroy (GtkWidget *widget)
1100 {
1101   GtkMenu *menu = GTK_MENU (widget);
1102   GtkMenuPrivate *priv = menu->priv;
1103   GtkMenuAttachData *data;
1104
1105   gtk_menu_remove_scroll_timeout (menu);
1106
1107   data = g_object_get_data (G_OBJECT (widget), attach_data_key);
1108   if (data)
1109     gtk_menu_detach (menu);
1110
1111   gtk_menu_stop_navigating_submenu (menu);
1112
1113   if (priv->old_active_menu_item)
1114     g_clear_object (&priv->old_active_menu_item);
1115
1116   /* Add back the reference count for being a child */
1117   if (priv->needs_destruction_ref)
1118     {
1119       priv->needs_destruction_ref = FALSE;
1120       g_object_ref (widget);
1121     }
1122
1123   if (priv->accel_group)
1124     g_clear_object (&priv->accel_group);
1125
1126   if (priv->toplevel)
1127     gtk_widget_destroy (priv->toplevel);
1128
1129   if (priv->tearoff_window)
1130     gtk_widget_destroy (priv->tearoff_window);
1131
1132   if (priv->heights)
1133     {
1134       g_free (priv->heights);
1135       priv->heights = NULL;
1136     }
1137
1138   if (priv->title)
1139     {
1140       g_free (priv->title);
1141       priv->title = NULL;
1142     }
1143
1144   if (priv->position_func_data_destroy)
1145     {
1146       priv->position_func_data_destroy (priv->position_func_data);
1147       priv->position_func_data = NULL;
1148       priv->position_func_data_destroy = NULL;
1149     }
1150
1151   GTK_WIDGET_CLASS (gtk_menu_parent_class)->destroy (widget);
1152 }
1153
1154 static void
1155 menu_change_screen (GtkMenu   *menu,
1156                     GdkScreen *new_screen)
1157 {
1158   GtkMenuPrivate *priv = menu->priv;
1159
1160   if (gtk_widget_has_screen (GTK_WIDGET (menu)))
1161     {
1162       if (new_screen == gtk_widget_get_screen (GTK_WIDGET (menu)))
1163         return;
1164     }
1165
1166   if (priv->torn_off)
1167     {
1168       gtk_window_set_screen (GTK_WINDOW (priv->tearoff_window), new_screen);
1169       gtk_menu_position (menu, TRUE);
1170     }
1171
1172   gtk_window_set_screen (GTK_WINDOW (priv->toplevel), new_screen);
1173   priv->monitor_num = -1;
1174 }
1175
1176 static void
1177 attach_widget_screen_changed (GtkWidget *attach_widget,
1178                               GdkScreen *previous_screen,
1179                               GtkMenu   *menu)
1180 {
1181   if (gtk_widget_has_screen (attach_widget) &&
1182       !g_object_get_data (G_OBJECT (menu), "gtk-menu-explicit-screen"))
1183     menu_change_screen (menu, gtk_widget_get_screen (attach_widget));
1184 }
1185
1186 /**
1187  * gtk_menu_attach_to_widget: (skip)
1188  * @menu: a #GtkMenu
1189  * @attach_widget: the #GtkWidget that the menu will be attached to
1190  * @detacher: the user supplied callback function that will be called
1191  *            when the menu calls gtk_menu_detach()
1192  *
1193  * Attaches the menu to the widget and provides a callback function
1194  * that will be invoked when the menu calls gtk_menu_detach() during
1195  * its destruction.
1196  */
1197 void
1198 gtk_menu_attach_to_widget (GtkMenu           *menu,
1199                            GtkWidget         *attach_widget,
1200                            GtkMenuDetachFunc  detacher)
1201 {
1202   GtkMenuAttachData *data;
1203   GList *list;
1204
1205   g_return_if_fail (GTK_IS_MENU (menu));
1206   g_return_if_fail (GTK_IS_WIDGET (attach_widget));
1207
1208   /* keep this function in sync with gtk_widget_set_parent() */
1209   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1210   if (data)
1211     {
1212       g_warning ("gtk_menu_attach_to_widget(): menu already attached to %s",
1213                  g_type_name (G_TYPE_FROM_INSTANCE (data->attach_widget)));
1214      return;
1215     }
1216
1217   g_object_ref_sink (menu);
1218
1219   data = g_slice_new (GtkMenuAttachData);
1220   data->attach_widget = attach_widget;
1221
1222   g_signal_connect (attach_widget, "screen-changed",
1223                     G_CALLBACK (attach_widget_screen_changed), menu);
1224   attach_widget_screen_changed (attach_widget, NULL, menu);
1225
1226   data->detacher = detacher;
1227   g_object_set_data (G_OBJECT (menu), I_(attach_data_key), data);
1228   list = g_object_steal_data (G_OBJECT (attach_widget), ATTACHED_MENUS);
1229   if (!g_list_find (list, menu))
1230     list = g_list_prepend (list, menu);
1231
1232   g_object_set_data_full (G_OBJECT (attach_widget), I_(ATTACHED_MENUS), list,
1233                           (GDestroyNotify) g_list_free);
1234
1235   if (gtk_widget_get_state_flags (GTK_WIDGET (menu)) != 0)
1236     gtk_widget_set_state_flags (GTK_WIDGET (menu), 0, TRUE);
1237
1238   /* we don't need to set the style here, since
1239    * we are a toplevel widget.
1240    */
1241
1242   /* Fallback title for menu comes from attach widget */
1243   gtk_menu_update_title (menu);
1244
1245   g_object_notify (G_OBJECT (menu), "attach-widget");
1246 }
1247
1248 /**
1249  * gtk_menu_get_attach_widget:
1250  * @menu: a #GtkMenu
1251  *
1252  * Returns the #GtkWidget that the menu is attached to.
1253  *
1254  * Returns: (transfer none): the #GtkWidget that the menu is attached to
1255  */
1256 GtkWidget*
1257 gtk_menu_get_attach_widget (GtkMenu *menu)
1258 {
1259   GtkMenuAttachData *data;
1260
1261   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1262
1263   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1264   if (data)
1265     return data->attach_widget;
1266   return NULL;
1267 }
1268
1269 /**
1270  * gtk_menu_detach:
1271  * @menu: a #GtkMenu
1272  *
1273  * Detaches the menu from the widget to which it had been attached.
1274  * This function will call the callback function, @detacher, provided
1275  * when the gtk_menu_attach_to_widget() function was called.
1276  */
1277 void
1278 gtk_menu_detach (GtkMenu *menu)
1279 {
1280   GtkMenuAttachData *data;
1281   GList *list;
1282
1283   g_return_if_fail (GTK_IS_MENU (menu));
1284
1285   /* keep this function in sync with gtk_widget_unparent() */
1286   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1287   if (!data)
1288     {
1289       g_warning ("gtk_menu_detach(): menu is not attached");
1290       return;
1291     }
1292   g_object_set_data (G_OBJECT (menu), I_(attach_data_key), NULL);
1293
1294   g_signal_handlers_disconnect_by_func (data->attach_widget,
1295                                         (gpointer) attach_widget_screen_changed,
1296                                         menu);
1297
1298   if (data->detacher)
1299     data->detacher (data->attach_widget, menu);
1300   list = g_object_steal_data (G_OBJECT (data->attach_widget), ATTACHED_MENUS);
1301   list = g_list_remove (list, menu);
1302   if (list)
1303     g_object_set_data_full (G_OBJECT (data->attach_widget), I_(ATTACHED_MENUS), list,
1304                             (GDestroyNotify) g_list_free);
1305   else
1306     g_object_set_data (G_OBJECT (data->attach_widget), I_(ATTACHED_MENUS), NULL);
1307
1308   if (gtk_widget_get_realized (GTK_WIDGET (menu)))
1309     gtk_widget_unrealize (GTK_WIDGET (menu));
1310
1311   g_slice_free (GtkMenuAttachData, data);
1312
1313   /* Fallback title for menu comes from attach widget */
1314   gtk_menu_update_title (menu);
1315
1316   g_object_unref (menu);
1317 }
1318
1319 static void
1320 gtk_menu_remove (GtkContainer *container,
1321                  GtkWidget    *widget)
1322 {
1323   GtkMenu *menu = GTK_MENU (container);
1324   GtkMenuPrivate *priv = menu->priv;
1325
1326   /* Clear out old_active_menu_item if it matches the item we are removing */
1327   if (priv->old_active_menu_item == widget)
1328     g_clear_object (&priv->old_active_menu_item);
1329
1330   GTK_CONTAINER_CLASS (gtk_menu_parent_class)->remove (container, widget);
1331
1332   g_object_set_data (G_OBJECT (widget), I_(ATTACH_INFO_KEY), NULL);
1333
1334   menu_queue_resize (menu);
1335 }
1336
1337 /**
1338  * gtk_menu_new:
1339  *
1340  * Creates a new #GtkMenu
1341  *
1342  * Returns: a new #GtkMenu
1343  */
1344 GtkWidget*
1345 gtk_menu_new (void)
1346 {
1347   return g_object_new (GTK_TYPE_MENU, NULL);
1348 }
1349
1350 static void
1351 gtk_menu_real_insert (GtkMenuShell *menu_shell,
1352                       GtkWidget    *child,
1353                       gint          position)
1354 {
1355   GtkMenu *menu = GTK_MENU (menu_shell);
1356   GtkMenuPrivate *priv = menu->priv;
1357   AttachInfo *ai = get_attach_info (child);
1358
1359   ai->left_attach = -1;
1360   ai->right_attach = -1;
1361   ai->top_attach = -1;
1362   ai->bottom_attach = -1;
1363
1364   if (gtk_widget_get_realized (GTK_WIDGET (menu_shell)))
1365     gtk_widget_set_parent_window (child, priv->bin_window);
1366
1367   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->insert (menu_shell, child, position);
1368
1369   menu_queue_resize (menu);
1370 }
1371
1372 static void
1373 gtk_menu_tearoff_bg_copy (GtkMenu *menu)
1374 {
1375   GtkMenuPrivate *priv = menu->priv;
1376   gint width, height;
1377
1378   if (priv->torn_off)
1379     {
1380       GdkWindow *window;
1381       cairo_surface_t *surface;
1382       cairo_pattern_t *pattern;
1383       cairo_t *cr;
1384
1385       priv->tearoff_active = FALSE;
1386       priv->saved_scroll_offset = priv->scroll_offset;
1387
1388       window = gtk_widget_get_window (priv->tearoff_window);
1389       width = gdk_window_get_width (window);
1390       height = gdk_window_get_height (window);
1391
1392       surface = gdk_window_create_similar_surface (window,
1393                                                    CAIRO_CONTENT_COLOR,
1394                                                    width,
1395                                                    height);
1396
1397       cr = cairo_create (surface);
1398       gdk_cairo_set_source_window (cr, window, 0, 0);
1399       cairo_paint (cr);
1400       cairo_destroy (cr);
1401
1402       gtk_widget_set_size_request (priv->tearoff_window, width, height);
1403
1404       pattern = cairo_pattern_create_for_surface (surface);
1405       gdk_window_set_background_pattern (window, pattern);
1406
1407       cairo_pattern_destroy (pattern);
1408       cairo_surface_destroy (surface);
1409     }
1410 }
1411
1412 static gboolean
1413 popup_grab_on_window (GdkWindow *window,
1414                       GdkDevice *keyboard,
1415                       GdkDevice *pointer,
1416                       guint32    activate_time)
1417 {
1418   if (keyboard &&
1419       gdk_device_grab (keyboard, window,
1420                        GDK_OWNERSHIP_WINDOW, TRUE,
1421                        GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK,
1422                        NULL, activate_time) != GDK_GRAB_SUCCESS)
1423     return FALSE;
1424
1425   if (pointer &&
1426       gdk_device_grab (pointer, window,
1427                        GDK_OWNERSHIP_WINDOW, TRUE,
1428                        GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
1429                        GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
1430                        GDK_POINTER_MOTION_MASK,
1431                        NULL, activate_time) != GDK_GRAB_SUCCESS)
1432     {
1433       if (keyboard)
1434         gdk_device_ungrab (keyboard, activate_time);
1435
1436       return FALSE;
1437     }
1438
1439   return TRUE;
1440 }
1441
1442 /**
1443  * gtk_menu_popup_for_device:
1444  * @menu: a #GtkMenu
1445  * @device: (allow-none): a #GdkDevice
1446  * @parent_menu_shell: (allow-none): the menu shell containing the triggering
1447  *     menu item, or %NULL
1448  * @parent_menu_item: (allow-none): the menu item whose activation triggered
1449  *     the popup, or %NULL
1450  * @func: (allow-none): a user supplied function used to position the menu,
1451  *     or %NULL
1452  * @data: (allow-none): user supplied data to be passed to @func
1453  * @destroy: (allow-none): destroy notify for @data
1454  * @button: the mouse button which was pressed to initiate the event
1455  * @activate_time: the time at which the activation event occurred
1456  *
1457  * Displays a menu and makes it available for selection.
1458  *
1459  * Applications can use this function to display context-sensitive menus,
1460  * and will typically supply %NULL for the @parent_menu_shell,
1461  * @parent_menu_item, @func, @data and @destroy parameters. The default
1462  * menu positioning function will position the menu at the current position
1463  * of @device (or its corresponding pointer).
1464  *
1465  * The @button parameter should be the mouse button pressed to initiate
1466  * the menu popup. If the menu popup was initiated by something other than
1467  * a mouse button press, such as a mouse button release or a keypress,
1468  * @button should be 0.
1469  *
1470  * The @activate_time parameter is used to conflict-resolve initiation of
1471  * concurrent requests for mouse/keyboard grab requests. To function
1472  * properly, this needs to be the time stamp of the user event (such as
1473  * a mouse click or key press) that caused the initiation of the popup.
1474  * Only if no such event is available, gtk_get_current_event_time() can
1475  * be used instead.
1476  *
1477  * Since: 3.0
1478  */
1479 void
1480 gtk_menu_popup_for_device (GtkMenu             *menu,
1481                            GdkDevice           *device,
1482                            GtkWidget           *parent_menu_shell,
1483                            GtkWidget           *parent_menu_item,
1484                            GtkMenuPositionFunc  func,
1485                            gpointer             data,
1486                            GDestroyNotify       destroy,
1487                            guint                button,
1488                            guint32              activate_time)
1489 {
1490   GtkMenuPrivate *priv = menu->priv;
1491   GtkWidget *widget;
1492   GtkWidget *xgrab_shell;
1493   GtkWidget *parent;
1494   GdkEvent *current_event;
1495   GtkMenuShell *menu_shell;
1496   gboolean grab_keyboard;
1497   GtkWidget *parent_toplevel;
1498   GdkDevice *keyboard, *pointer;
1499
1500   g_return_if_fail (GTK_IS_MENU (menu));
1501   g_return_if_fail (device == NULL || GDK_IS_DEVICE (device));
1502
1503   if (device == NULL)
1504     device = gtk_get_current_event_device ();
1505
1506   if (device == NULL)
1507     {
1508       GdkDisplay *display;
1509       GdkDeviceManager *device_manager;
1510       GList *devices;
1511
1512       display = gtk_widget_get_display (GTK_WIDGET (menu));
1513       device_manager = gdk_display_get_device_manager (display);
1514       devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
1515
1516       device = devices->data;
1517
1518       g_list_free (devices);
1519     }
1520
1521   widget = GTK_WIDGET (menu);
1522   menu_shell = GTK_MENU_SHELL (menu);
1523
1524   if (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
1525     {
1526       keyboard = device;
1527       pointer = gdk_device_get_associated_device (device);
1528     }
1529   else
1530     {
1531       pointer = device;
1532       keyboard = gdk_device_get_associated_device (device);
1533     }
1534
1535   menu_shell->priv->parent_menu_shell = parent_menu_shell;
1536
1537   priv->seen_item_enter = FALSE;
1538
1539   /* Find the last viewable ancestor, and make an X grab on it
1540    */
1541   parent = GTK_WIDGET (menu);
1542   xgrab_shell = NULL;
1543   while (parent)
1544     {
1545       gboolean viewable = TRUE;
1546       GtkWidget *tmp = parent;
1547
1548       while (tmp)
1549         {
1550           if (!gtk_widget_get_mapped (tmp))
1551             {
1552               viewable = FALSE;
1553               break;
1554             }
1555           tmp = gtk_widget_get_parent (tmp);
1556         }
1557
1558       if (viewable)
1559         xgrab_shell = parent;
1560
1561       parent = GTK_MENU_SHELL (parent)->priv->parent_menu_shell;
1562     }
1563
1564   /* We want to receive events generated when we map the menu;
1565    * unfortunately, since there is probably already an implicit
1566    * grab in place from the button that the user used to pop up
1567    * the menu, we won't receive then -- in particular, the EnterNotify
1568    * when the menu pops up under the pointer.
1569    *
1570    * If we are grabbing on a parent menu shell, no problem; just grab
1571    * on that menu shell first before popping up the window with
1572    * owner_events = TRUE.
1573    *
1574    * When grabbing on the menu itself, things get more convoluted --
1575    * we do an explicit grab on a specially created window with
1576    * owner_events = TRUE, which we override further down with a
1577    * grab on the menu. (We can't grab on the menu until it is mapped;
1578    * we probably could just leave the grab on the other window,
1579    * with a little reorganization of the code in gtkmenu*).
1580    */
1581   grab_keyboard = gtk_menu_shell_get_take_focus (menu_shell);
1582   gtk_window_set_accept_focus (GTK_WINDOW (priv->toplevel), grab_keyboard);
1583
1584   if (!grab_keyboard)
1585     keyboard = NULL;
1586
1587   if (xgrab_shell && xgrab_shell != widget)
1588     {
1589       if (popup_grab_on_window (gtk_widget_get_window (xgrab_shell), keyboard, pointer, activate_time))
1590         {
1591           _gtk_menu_shell_set_grab_device (GTK_MENU_SHELL (xgrab_shell), pointer);
1592           GTK_MENU_SHELL (xgrab_shell)->priv->have_xgrab = TRUE;
1593         }
1594     }
1595   else
1596     {
1597       GdkWindow *transfer_window;
1598
1599       xgrab_shell = widget;
1600       transfer_window = menu_grab_transfer_window_get (menu);
1601       if (popup_grab_on_window (transfer_window, keyboard, pointer, activate_time))
1602         {
1603           _gtk_menu_shell_set_grab_device (GTK_MENU_SHELL (xgrab_shell), pointer);
1604           GTK_MENU_SHELL (xgrab_shell)->priv->have_xgrab = TRUE;
1605         }
1606     }
1607
1608   if (!GTK_MENU_SHELL (xgrab_shell)->priv->have_xgrab)
1609     {
1610       /* We failed to make our pointer/keyboard grab.
1611        * Rather than leaving the user with a stuck up window,
1612        * we just abort here. Presumably the user will try again.
1613        */
1614       menu_shell->priv->parent_menu_shell = NULL;
1615       menu_grab_transfer_window_destroy (menu);
1616       return;
1617     }
1618
1619   _gtk_menu_shell_set_grab_device (GTK_MENU_SHELL (menu), pointer);
1620   menu_shell->priv->active = TRUE;
1621   menu_shell->priv->button = button;
1622
1623   /* If we are popping up the menu from something other than, a button
1624    * press then, as a heuristic, we ignore enter events for the menu
1625    * until we get a MOTION_NOTIFY.
1626    */
1627
1628   current_event = gtk_get_current_event ();
1629   if (current_event)
1630     {
1631       if ((current_event->type != GDK_BUTTON_PRESS) &&
1632           (current_event->type != GDK_ENTER_NOTIFY))
1633         menu_shell->priv->ignore_enter = TRUE;
1634
1635       gdk_event_free (current_event);
1636     }
1637   else
1638     menu_shell->priv->ignore_enter = TRUE;
1639
1640   if (priv->torn_off)
1641     {
1642       gtk_menu_tearoff_bg_copy (menu);
1643
1644       gtk_menu_reparent (menu, priv->toplevel, FALSE);
1645     }
1646
1647   parent_toplevel = NULL;
1648   if (parent_menu_shell)
1649     parent_toplevel = gtk_widget_get_toplevel (parent_menu_shell);
1650   else if (!g_object_get_data (G_OBJECT (menu), "gtk-menu-explicit-screen"))
1651     {
1652       GtkWidget *attach_widget = gtk_menu_get_attach_widget (menu);
1653       if (attach_widget)
1654         parent_toplevel = gtk_widget_get_toplevel (attach_widget);
1655     }
1656
1657   /* Set transient for to get the right window group and parent */
1658   if (GTK_IS_WINDOW (parent_toplevel))
1659     gtk_window_set_transient_for (GTK_WINDOW (priv->toplevel),
1660                                   GTK_WINDOW (parent_toplevel));
1661
1662   priv->parent_menu_item = parent_menu_item;
1663   priv->position_func = func;
1664   priv->position_func_data = data;
1665   priv->position_func_data_destroy = destroy;
1666   menu_shell->priv->activate_time = activate_time;
1667
1668   /* We need to show the menu here rather in the init function
1669    * because code expects to be able to tell if the menu is onscreen
1670    * by looking at gtk_widget_get_visible (menu)
1671    */
1672   gtk_widget_show (GTK_WIDGET (menu));
1673
1674   /* Position the menu, possibly changing the size request
1675    */
1676   gtk_menu_position (menu, TRUE);
1677
1678   /* Compute the size of the toplevel and realize it so we
1679    * can scroll correctly.
1680    */
1681   {
1682     GtkRequisition tmp_request;
1683     GtkAllocation tmp_allocation = { 0, };
1684
1685     /* Instead of trusting the menu position function to queue a
1686      * resize when the menu goes out of bounds, invalidate the cached
1687      * size here.
1688      */
1689     gtk_widget_queue_resize (GTK_WIDGET (menu));
1690     gtk_widget_get_preferred_size (priv->toplevel, &tmp_request, NULL);
1691
1692     tmp_allocation.width = tmp_request.width;
1693     tmp_allocation.height = tmp_request.height;
1694
1695     gtk_widget_size_allocate (priv->toplevel, &tmp_allocation);
1696
1697     gtk_widget_realize (GTK_WIDGET (menu));
1698   }
1699
1700   gtk_menu_scroll_to (menu, priv->scroll_offset);
1701
1702   /* if no item is selected, select the first one */
1703   if (!menu_shell->priv->active_menu_item)
1704     {
1705       gboolean touchscreen_mode;
1706
1707       g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
1708                     "gtk-touchscreen-mode", &touchscreen_mode,
1709                     NULL);
1710
1711       if (touchscreen_mode)
1712         gtk_menu_shell_select_first (menu_shell, TRUE);
1713     }
1714
1715   /* Once everything is set up correctly, map the toplevel */
1716   gtk_widget_show (priv->toplevel);
1717
1718   if (xgrab_shell == widget)
1719     popup_grab_on_window (gtk_widget_get_window (widget), keyboard, pointer, activate_time); /* Should always succeed */
1720
1721   gtk_device_grab_add (GTK_WIDGET (menu), pointer, TRUE);
1722
1723   if (parent_menu_shell)
1724     {
1725       gboolean keyboard_mode;
1726
1727       keyboard_mode = _gtk_menu_shell_get_keyboard_mode (GTK_MENU_SHELL (parent_menu_shell));
1728       _gtk_menu_shell_set_keyboard_mode (menu_shell, keyboard_mode);
1729     }
1730   else if (menu_shell->priv->button == 0) /* a keynav-activated context menu */
1731     _gtk_menu_shell_set_keyboard_mode (menu_shell, TRUE);
1732
1733   _gtk_menu_shell_update_mnemonics (menu_shell);
1734 }
1735
1736 /**
1737  * gtk_menu_popup: (skip)
1738  * @menu: a #GtkMenu
1739  * @parent_menu_shell: (allow-none): the menu shell containing the
1740  *     triggering menu item, or %NULL
1741  * @parent_menu_item: (allow-none): the menu item whose activation
1742  *     triggered the popup, or %NULL
1743  * @func: (allow-none): a user supplied function used to position
1744  *     the menu, or %NULL
1745  * @data: user supplied data to be passed to @func.
1746  * @button: the mouse button which was pressed to initiate the event.
1747  * @activate_time: the time at which the activation event occurred.
1748  *
1749  * Displays a menu and makes it available for selection.
1750  *
1751  * Applications can use this function to display context-sensitive
1752  * menus, and will typically supply %NULL for the @parent_menu_shell,
1753  * @parent_menu_item, @func and @data parameters. The default menu
1754  * positioning function will position the menu at the current mouse
1755  * cursor position.
1756  *
1757  * The @button parameter should be the mouse button pressed to initiate
1758  * the menu popup. If the menu popup was initiated by something other
1759  * than a mouse button press, such as a mouse button release or a keypress,
1760  * @button should be 0.
1761  *
1762  * The @activate_time parameter is used to conflict-resolve initiation
1763  * of concurrent requests for mouse/keyboard grab requests. To function
1764  * properly, this needs to be the timestamp of the user event (such as
1765  * a mouse click or key press) that caused the initiation of the popup.
1766  * Only if no such event is available, gtk_get_current_event_time() can
1767  * be used instead.
1768  */
1769 void
1770 gtk_menu_popup (GtkMenu             *menu,
1771                 GtkWidget           *parent_menu_shell,
1772                 GtkWidget           *parent_menu_item,
1773                 GtkMenuPositionFunc  func,
1774                 gpointer             data,
1775                 guint                button,
1776                 guint32              activate_time)
1777 {
1778   g_return_if_fail (GTK_IS_MENU (menu));
1779
1780   gtk_menu_popup_for_device (menu,
1781                              NULL,
1782                              parent_menu_shell,
1783                              parent_menu_item,
1784                              func, data, NULL,
1785                              button, activate_time);
1786 }
1787
1788 /**
1789  * gtk_menu_popdown:
1790  * @menu: a #GtkMenu
1791  *
1792  * Removes the menu from the screen.
1793  */
1794 void
1795 gtk_menu_popdown (GtkMenu *menu)
1796 {
1797   GtkMenuPrivate *priv;
1798   GtkMenuShell *menu_shell;
1799   GdkDevice *pointer;
1800
1801   g_return_if_fail (GTK_IS_MENU (menu));
1802
1803   menu_shell = GTK_MENU_SHELL (menu);
1804   priv = menu->priv;
1805
1806   menu_shell->priv->parent_menu_shell = NULL;
1807   menu_shell->priv->active = FALSE;
1808   menu_shell->priv->ignore_enter = FALSE;
1809
1810   priv->have_position = FALSE;
1811
1812   gtk_menu_stop_scrolling (menu);
1813   gtk_menu_stop_navigating_submenu (menu);
1814
1815   if (menu_shell->priv->active_menu_item)
1816     {
1817       if (priv->old_active_menu_item)
1818         g_object_unref (priv->old_active_menu_item);
1819       priv->old_active_menu_item = menu_shell->priv->active_menu_item;
1820       g_object_ref (priv->old_active_menu_item);
1821     }
1822
1823   gtk_menu_shell_deselect (menu_shell);
1824
1825   /* The X Grab, if present, will automatically be removed
1826    * when we hide the window
1827    */
1828   if (priv->toplevel)
1829     {
1830       gtk_widget_hide (priv->toplevel);
1831       gtk_window_set_transient_for (GTK_WINDOW (priv->toplevel), NULL);
1832     }
1833
1834   pointer = _gtk_menu_shell_get_grab_device (menu_shell);
1835
1836   if (priv->torn_off)
1837     {
1838       gtk_widget_set_size_request (priv->tearoff_window, -1, -1);
1839
1840       if (gtk_bin_get_child (GTK_BIN (priv->toplevel)))
1841         {
1842           gtk_menu_reparent (menu, priv->tearoff_hbox, TRUE);
1843         }
1844       else
1845         {
1846           /* We popped up the menu from the tearoff, so we need to
1847            * release the grab - we aren't actually hiding the menu.
1848            */
1849           if (menu_shell->priv->have_xgrab && pointer)
1850             {
1851               GdkDevice *keyboard;
1852
1853               gdk_device_ungrab (pointer, GDK_CURRENT_TIME);
1854               keyboard = gdk_device_get_associated_device (pointer);
1855
1856               if (keyboard)
1857                 gdk_device_ungrab (keyboard, GDK_CURRENT_TIME);
1858             }
1859         }
1860
1861       /* gtk_menu_popdown is called each time a menu item is selected from
1862        * a torn off menu. Only scroll back to the saved position if the
1863        * non-tearoff menu was popped down.
1864        */
1865       if (!priv->tearoff_active)
1866         gtk_menu_scroll_to (menu, priv->saved_scroll_offset);
1867       priv->tearoff_active = TRUE;
1868     }
1869   else
1870     gtk_widget_hide (GTK_WIDGET (menu));
1871
1872   menu_shell->priv->have_xgrab = FALSE;
1873
1874   if (pointer)
1875     gtk_device_grab_remove (GTK_WIDGET (menu), pointer);
1876
1877   _gtk_menu_shell_set_grab_device (menu_shell, NULL);
1878
1879   menu_grab_transfer_window_destroy (menu);
1880 }
1881
1882 /**
1883  * gtk_menu_get_active:
1884  * @menu: a #GtkMenu
1885  *
1886  * Returns the selected menu item from the menu.  This is used by the
1887  * #GtkOptionMenu.
1888  *
1889  * Returns: (transfer none): the #GtkMenuItem that was last selected
1890  *          in the menu.  If a selection has not yet been made, the
1891  *          first menu item is selected.
1892  */
1893 GtkWidget*
1894 gtk_menu_get_active (GtkMenu *menu)
1895 {
1896   GtkMenuPrivate *priv = menu->priv;
1897   GtkWidget *child;
1898   GList *children;
1899
1900   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1901
1902   if (!priv->old_active_menu_item)
1903     {
1904       child = NULL;
1905       children = GTK_MENU_SHELL (menu)->priv->children;
1906
1907       while (children)
1908         {
1909           child = children->data;
1910           children = children->next;
1911
1912           if (gtk_bin_get_child (GTK_BIN (child)))
1913             break;
1914           child = NULL;
1915         }
1916
1917       priv->old_active_menu_item = child;
1918       if (priv->old_active_menu_item)
1919         g_object_ref (priv->old_active_menu_item);
1920     }
1921
1922   return priv->old_active_menu_item;
1923 }
1924
1925 /**
1926  * gtk_menu_set_active:
1927  * @menu: a #GtkMenu
1928  * @index: the index of the menu item to select.  Iindex values are
1929  *         from 0 to n-1
1930  *
1931  * Selects the specified menu item within the menu.  This is used by
1932  * the #GtkOptionMenu and should not be used by anyone else.
1933  */
1934 void
1935 gtk_menu_set_active (GtkMenu *menu,
1936                      guint    index)
1937 {
1938   GtkMenuPrivate *priv = menu->priv;
1939   GtkWidget *child;
1940   GList *tmp_list;
1941
1942   g_return_if_fail (GTK_IS_MENU (menu));
1943
1944   tmp_list = g_list_nth (GTK_MENU_SHELL (menu)->priv->children, index);
1945   if (tmp_list)
1946     {
1947       child = tmp_list->data;
1948       if (gtk_bin_get_child (GTK_BIN (child)))
1949         {
1950           if (priv->old_active_menu_item)
1951             g_object_unref (priv->old_active_menu_item);
1952           priv->old_active_menu_item = child;
1953           g_object_ref (priv->old_active_menu_item);
1954         }
1955     }
1956 }
1957
1958 /**
1959  * gtk_menu_set_accel_group:
1960  * @menu: a #GtkMenu
1961  * @accel_group: (allow-none): the #GtkAccelGroup to be associated
1962  *               with the menu.
1963  *
1964  * Set the #GtkAccelGroup which holds global accelerators for the
1965  * menu.  This accelerator group needs to also be added to all windows
1966  * that this menu is being used in with gtk_window_add_accel_group(),
1967  * in order for those windows to support all the accelerators
1968  * contained in this group.
1969  */
1970 void
1971 gtk_menu_set_accel_group (GtkMenu       *menu,
1972                           GtkAccelGroup *accel_group)
1973 {
1974   GtkMenuPrivate *priv = menu->priv;
1975   g_return_if_fail (GTK_IS_MENU (menu));
1976
1977   if (priv->accel_group != accel_group)
1978     {
1979       if (priv->accel_group)
1980         g_object_unref (priv->accel_group);
1981       priv->accel_group = accel_group;
1982       if (priv->accel_group)
1983         g_object_ref (priv->accel_group);
1984       _gtk_menu_refresh_accel_paths (menu, TRUE);
1985     }
1986 }
1987
1988 /**
1989  * gtk_menu_get_accel_group:
1990  * @menu a #GtkMenu
1991  *
1992  * Gets the #GtkAccelGroup which holds global accelerators for the
1993  * menu.  See gtk_menu_set_accel_group().
1994  *
1995  * Returns: (transfer none): the #GtkAccelGroup associated with the menu.
1996  */
1997 GtkAccelGroup*
1998 gtk_menu_get_accel_group (GtkMenu *menu)
1999 {
2000   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
2001
2002   return menu->priv->accel_group;
2003 }
2004
2005 static gboolean
2006 gtk_menu_real_can_activate_accel (GtkWidget *widget,
2007                                   guint      signal_id)
2008 {
2009   /* Menu items chain here to figure whether they can activate their
2010    * accelerators.  Unlike ordinary widgets, menus allow accel
2011    * activation even if invisible since that's the usual case for
2012    * submenus/popup-menus. however, the state of the attach widget
2013    * affects the "activeness" of the menu.
2014    */
2015   GtkWidget *awidget = gtk_menu_get_attach_widget (GTK_MENU (widget));
2016
2017   if (awidget)
2018     return gtk_widget_can_activate_accel (awidget, signal_id);
2019   else
2020     return gtk_widget_is_sensitive (widget);
2021 }
2022
2023 /**
2024  * gtk_menu_set_accel_path
2025  * @menu:       a valid #GtkMenu
2026  * @accel_path: (allow-none): a valid accelerator path
2027  *
2028  * Sets an accelerator path for this menu from which accelerator paths
2029  * for its immediate children, its menu items, can be constructed.
2030  * The main purpose of this function is to spare the programmer the
2031  * inconvenience of having to call gtk_menu_item_set_accel_path() on
2032  * each menu item that should support runtime user changable accelerators.
2033  * Instead, by just calling gtk_menu_set_accel_path() on their parent,
2034  * each menu item of this menu, that contains a label describing its
2035  * purpose, automatically gets an accel path assigned.
2036  *
2037  * For example, a menu containing menu items "New" and "Exit", will, after
2038  * <literal>gtk_menu_set_accel_path (menu, "&lt;Gnumeric-Sheet&gt;/File");</literal>
2039  * has been called, assign its items the accel paths:
2040  * <literal>"&lt;Gnumeric-Sheet&gt;/File/New"</literal> and <literal>"&lt;Gnumeric-Sheet&gt;/File/Exit"</literal>.
2041  *
2042  * Assigning accel paths to menu items then enables the user to change
2043  * their accelerators at runtime. More details about accelerator paths
2044  * and their default setups can be found at gtk_accel_map_add_entry().
2045  *
2046  * Note that @accel_path string will be stored in a #GQuark. Therefore,
2047  * if you pass a static string, you can save some memory by interning
2048  * it first with g_intern_static_string().
2049  */
2050 void
2051 gtk_menu_set_accel_path (GtkMenu     *menu,
2052                          const gchar *accel_path)
2053 {
2054   GtkMenuPrivate *priv = menu->priv;
2055   g_return_if_fail (GTK_IS_MENU (menu));
2056
2057   if (accel_path)
2058     g_return_if_fail (accel_path[0] == '<' && strchr (accel_path, '/')); /* simplistic check */
2059
2060   /* FIXME: accel_path should be defined as const gchar* */
2061   priv->accel_path = (gchar*)g_intern_string (accel_path);
2062   if (priv->accel_path)
2063     _gtk_menu_refresh_accel_paths (menu, FALSE);
2064 }
2065
2066 /**
2067  * gtk_menu_get_accel_path
2068  * @menu: a valid #GtkMenu
2069  *
2070  * Retrieves the accelerator path set on the menu.
2071  *
2072  * Returns: the accelerator path set on the menu.
2073  *
2074  * Since: 2.14
2075  */
2076 const gchar*
2077 gtk_menu_get_accel_path (GtkMenu *menu)
2078 {
2079   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
2080
2081   return menu->priv->accel_path;
2082 }
2083
2084 typedef struct {
2085   GtkMenu *menu;
2086   gboolean group_changed;
2087 } AccelPropagation;
2088
2089 static void
2090 refresh_accel_paths_foreach (GtkWidget *widget,
2091                              gpointer   data)
2092 {
2093   GtkMenuPrivate *priv;
2094   AccelPropagation *prop = data;
2095
2096   if (GTK_IS_MENU_ITEM (widget))  /* should always be true */
2097     {
2098       priv = prop->menu->priv;
2099       _gtk_menu_item_refresh_accel_path (GTK_MENU_ITEM (widget),
2100                                          priv->accel_path,
2101                                          priv->accel_group,
2102                                          prop->group_changed);
2103     }
2104 }
2105
2106 static void
2107 _gtk_menu_refresh_accel_paths (GtkMenu  *menu,
2108                                gboolean  group_changed)
2109 {
2110   GtkMenuPrivate *priv = menu->priv;
2111   g_return_if_fail (GTK_IS_MENU (menu));
2112
2113   if (priv->accel_path && priv->accel_group)
2114     {
2115       AccelPropagation prop;
2116
2117       prop.menu = menu;
2118       prop.group_changed = group_changed;
2119       gtk_container_foreach (GTK_CONTAINER (menu),
2120                              refresh_accel_paths_foreach,
2121                              &prop);
2122     }
2123 }
2124
2125 /**
2126  * gtk_menu_reposition:
2127  * @menu: a #GtkMenu
2128  *
2129  * Repositions the menu according to its position function.
2130  */
2131 void
2132 gtk_menu_reposition (GtkMenu *menu)
2133 {
2134   g_return_if_fail (GTK_IS_MENU (menu));
2135
2136   if (!menu->priv->torn_off && gtk_widget_is_drawable (GTK_WIDGET (menu)))
2137     gtk_menu_position (menu, FALSE);
2138 }
2139
2140 static void
2141 gtk_menu_scrollbar_changed (GtkAdjustment *adjustment,
2142                             GtkMenu       *menu)
2143 {
2144   double value;
2145
2146   value = gtk_adjustment_get_value (adjustment);
2147   if (menu->priv->scroll_offset != value)
2148     gtk_menu_scroll_to (menu, value);
2149 }
2150
2151 static void
2152 gtk_menu_set_tearoff_hints (GtkMenu *menu,
2153                             gint     width)
2154 {
2155   GtkMenuPrivate *priv = menu->priv;
2156   GdkGeometry geometry_hints;
2157
2158   if (!priv->tearoff_window)
2159     return;
2160
2161   if (gtk_widget_get_visible (priv->tearoff_scrollbar))
2162     {
2163       GtkRequisition requisition;
2164
2165       gtk_widget_get_preferred_size (priv->tearoff_scrollbar,
2166                                      &requisition, NULL);
2167       width += requisition.width;
2168     }
2169
2170   geometry_hints.min_width = width;
2171   geometry_hints.max_width = width;
2172
2173   geometry_hints.min_height = 0;
2174   geometry_hints.max_height = priv->requested_height;
2175
2176   gtk_window_set_geometry_hints (GTK_WINDOW (priv->tearoff_window),
2177                                  NULL,
2178                                  &geometry_hints,
2179                                  GDK_HINT_MAX_SIZE|GDK_HINT_MIN_SIZE);
2180 }
2181
2182 static void
2183 gtk_menu_update_title (GtkMenu *menu)
2184 {
2185   GtkMenuPrivate *priv = menu->priv;
2186
2187   if (priv->tearoff_window)
2188     {
2189       const gchar *title;
2190       GtkWidget *attach_widget;
2191
2192       title = gtk_menu_get_title (menu);
2193       if (!title)
2194         {
2195           attach_widget = gtk_menu_get_attach_widget (menu);
2196           if (GTK_IS_MENU_ITEM (attach_widget))
2197             {
2198               GtkWidget *child = gtk_bin_get_child (GTK_BIN (attach_widget));
2199               if (GTK_IS_LABEL (child))
2200                 title = gtk_label_get_text (GTK_LABEL (child));
2201             }
2202         }
2203
2204       if (title)
2205         gtk_window_set_title (GTK_WINDOW (priv->tearoff_window), title);
2206     }
2207 }
2208
2209 static GtkWidget*
2210 gtk_menu_get_toplevel (GtkWidget *menu)
2211 {
2212   GtkWidget *attach, *toplevel;
2213
2214   attach = gtk_menu_get_attach_widget (GTK_MENU (menu));
2215
2216   if (GTK_IS_MENU_ITEM (attach))
2217     attach = gtk_widget_get_parent (attach);
2218
2219   if (GTK_IS_MENU (attach))
2220     return gtk_menu_get_toplevel (attach);
2221   else if (GTK_IS_WIDGET (attach))
2222     {
2223       toplevel = gtk_widget_get_toplevel (attach);
2224       if (gtk_widget_is_toplevel (toplevel))
2225         return toplevel;
2226     }
2227
2228   return NULL;
2229 }
2230
2231 static void
2232 tearoff_window_destroyed (GtkWidget *widget,
2233                           GtkMenu   *menu)
2234 {
2235   gtk_menu_set_tearoff_state (menu, FALSE);
2236 }
2237
2238 /**
2239  * gtk_menu_set_tearoff_state:
2240  * @menu: a #GtkMenu
2241  * @torn_off: If %TRUE, menu is displayed as a tearoff menu.
2242  *
2243  * Changes the tearoff state of the menu.  A menu is normally
2244  * displayed as drop down menu which persists as long as the menu is
2245  * active.  It can also be displayed as a tearoff menu which persists
2246  * until it is closed or reattached.
2247  */
2248 void
2249 gtk_menu_set_tearoff_state (GtkMenu  *menu,
2250                             gboolean  torn_off)
2251 {
2252   GtkMenuPrivate *priv = menu->priv;
2253   gint height;
2254
2255   g_return_if_fail (GTK_IS_MENU (menu));
2256
2257   if (priv->torn_off != torn_off)
2258     {
2259       priv->torn_off = torn_off;
2260       priv->tearoff_active = torn_off;
2261
2262       if (priv->torn_off)
2263         {
2264           if (gtk_widget_get_visible (GTK_WIDGET (menu)))
2265             gtk_menu_popdown (menu);
2266
2267           if (!priv->tearoff_window)
2268             {
2269               GtkWidget *toplevel;
2270
2271               priv->tearoff_window = g_object_new (GTK_TYPE_WINDOW,
2272                                                    "type", GTK_WINDOW_TOPLEVEL,
2273                                                    "screen", gtk_widget_get_screen (priv->toplevel),
2274                                                    "app-paintable", TRUE,
2275                                                    NULL);
2276
2277               gtk_window_set_type_hint (GTK_WINDOW (priv->tearoff_window),
2278                                         GDK_WINDOW_TYPE_HINT_MENU);
2279               gtk_window_set_mnemonic_modifier (GTK_WINDOW (priv->tearoff_window), 0);
2280               g_signal_connect (priv->tearoff_window, "destroy",
2281                                 G_CALLBACK (tearoff_window_destroyed), menu);
2282               g_signal_connect (priv->tearoff_window, "event",
2283                                 G_CALLBACK (gtk_menu_window_event), menu);
2284
2285               gtk_menu_update_title (menu);
2286
2287               gtk_widget_realize (priv->tearoff_window);
2288
2289               toplevel = gtk_menu_get_toplevel (GTK_WIDGET (menu));
2290               if (toplevel != NULL)
2291                 gtk_window_set_transient_for (GTK_WINDOW (priv->tearoff_window),
2292                                               GTK_WINDOW (toplevel));
2293
2294               priv->tearoff_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2295               gtk_container_add (GTK_CONTAINER (priv->tearoff_window),
2296                                  priv->tearoff_hbox);
2297
2298               height = gdk_window_get_height (gtk_widget_get_window (GTK_WIDGET (menu)));
2299               priv->tearoff_adjustment = gtk_adjustment_new (0,
2300                                                              0, priv->requested_height,
2301                                                              MENU_SCROLL_STEP2,
2302                                                              height/2,
2303                                                              height);
2304               g_object_connect (priv->tearoff_adjustment,
2305                                 "signal::value-changed", gtk_menu_scrollbar_changed, menu,
2306                                 NULL);
2307               priv->tearoff_scrollbar = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, priv->tearoff_adjustment);
2308
2309               gtk_box_pack_end (GTK_BOX (priv->tearoff_hbox),
2310                                 priv->tearoff_scrollbar,
2311                                 FALSE, FALSE, 0);
2312
2313               if (gtk_adjustment_get_upper (priv->tearoff_adjustment) > height)
2314                 gtk_widget_show (priv->tearoff_scrollbar);
2315
2316               gtk_widget_show (priv->tearoff_hbox);
2317             }
2318
2319           gtk_menu_reparent (menu, priv->tearoff_hbox, FALSE);
2320
2321           /* Update menu->requisition */
2322           gtk_widget_get_preferred_size (GTK_WIDGET (menu), NULL, NULL);
2323
2324           gtk_menu_set_tearoff_hints (menu, gdk_window_get_width (gtk_widget_get_window (GTK_WIDGET (menu))));
2325
2326           gtk_widget_realize (priv->tearoff_window);
2327           gtk_menu_position (menu, TRUE);
2328
2329           gtk_widget_show (GTK_WIDGET (menu));
2330           gtk_widget_show (priv->tearoff_window);
2331
2332           gtk_menu_scroll_to (menu, 0);
2333
2334         }
2335       else
2336         {
2337           gtk_widget_hide (GTK_WIDGET (menu));
2338           gtk_widget_hide (priv->tearoff_window);
2339           if (GTK_IS_CONTAINER (priv->toplevel))
2340             gtk_menu_reparent (menu, priv->toplevel, FALSE);
2341           gtk_widget_destroy (priv->tearoff_window);
2342
2343           priv->tearoff_window = NULL;
2344           priv->tearoff_hbox = NULL;
2345           priv->tearoff_scrollbar = NULL;
2346           priv->tearoff_adjustment = NULL;
2347         }
2348
2349       g_object_notify (G_OBJECT (menu), "tearoff-state");
2350     }
2351 }
2352
2353 /**
2354  * gtk_menu_get_tearoff_state:
2355  * @menu: a #GtkMenu
2356  *
2357  * Returns whether the menu is torn off.
2358  * See gtk_menu_set_tearoff_state().
2359  *
2360  * Return value: %TRUE if the menu is currently torn off.
2361  */
2362 gboolean
2363 gtk_menu_get_tearoff_state (GtkMenu *menu)
2364 {
2365   g_return_val_if_fail (GTK_IS_MENU (menu), FALSE);
2366
2367   return menu->priv->torn_off;
2368 }
2369
2370 /**
2371  * gtk_menu_set_title:
2372  * @menu: a #GtkMenu
2373  * @title: a string containing the title for the menu
2374  *
2375  * Sets the title string for the menu.
2376  *
2377  * The title is displayed when the menu is shown as a tearoff
2378  * menu. If @title is %NULL, the menu will see if it is attached
2379  * to a parent menu item, and if so it will try to use the same
2380  * text as that menu item's label.
2381  */
2382 void
2383 gtk_menu_set_title (GtkMenu     *menu,
2384                     const gchar *title)
2385 {
2386   GtkMenuPrivate *priv = menu->priv;
2387   char *old_title;
2388
2389   g_return_if_fail (GTK_IS_MENU (menu));
2390
2391   old_title = priv->title;
2392   priv->title = g_strdup (title);
2393   g_free (old_title);
2394
2395   gtk_menu_update_title (menu);
2396   g_object_notify (G_OBJECT (menu), "tearoff-title");
2397 }
2398
2399 /**
2400  * gtk_menu_get_title:
2401  * @menu: a #GtkMenu
2402  *
2403  * Returns the title of the menu. See gtk_menu_set_title().
2404  *
2405  * Return value: the title of the menu, or %NULL if the menu
2406  *     has no title set on it. This string is owned by GTK+
2407  *     and should not be modified or freed.
2408  **/
2409 G_CONST_RETURN gchar *
2410 gtk_menu_get_title (GtkMenu *menu)
2411 {
2412   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
2413
2414   return menu->priv->title;
2415 }
2416
2417 /**
2418  * gtk_menu_reorder_child:
2419  * @menu: a #GtkMenu
2420  * @child: the #GtkMenuItem to move
2421  * @position: the new position to place @child.  Positions are
2422  *            numbered from 0 to n-1.
2423  */
2424 void
2425 gtk_menu_reorder_child (GtkMenu   *menu,
2426                         GtkWidget *child,
2427                         gint       position)
2428 {
2429   GtkMenuShell *menu_shell;
2430
2431   g_return_if_fail (GTK_IS_MENU (menu));
2432   g_return_if_fail (GTK_IS_MENU_ITEM (child));
2433
2434   menu_shell = GTK_MENU_SHELL (menu);
2435
2436   if (g_list_find (menu_shell->priv->children, child))
2437     {
2438       menu_shell->priv->children = g_list_remove (menu_shell->priv->children, child);
2439       menu_shell->priv->children = g_list_insert (menu_shell->priv->children, child, position);
2440
2441       menu_queue_resize (menu);
2442     }
2443 }
2444
2445 static void
2446 gtk_menu_style_updated (GtkWidget *widget)
2447 {
2448   GTK_WIDGET_CLASS (gtk_menu_parent_class)->style_updated (widget);
2449
2450   if (gtk_widget_get_realized (widget))
2451     {
2452       GtkMenu *menu = GTK_MENU (widget);
2453       GtkMenuPrivate *priv = menu->priv;
2454       GtkStyleContext *context;
2455
2456       context = gtk_widget_get_style_context (widget);
2457
2458       gtk_style_context_set_background (context, priv->bin_window);
2459       gtk_style_context_set_background (context, priv->view_window);
2460       gtk_style_context_set_background (context, gtk_widget_get_window (widget));
2461     }
2462 }
2463
2464 static void
2465 get_arrows_border (GtkMenu   *menu,
2466                    GtkBorder *border)
2467 {
2468   GtkMenuPrivate *priv = menu->priv;
2469   guint scroll_arrow_height;
2470   GtkArrowPlacement arrow_placement;
2471
2472   gtk_widget_style_get (GTK_WIDGET (menu),
2473                         "scroll-arrow-vlength", &scroll_arrow_height,
2474                         "arrow_placement", &arrow_placement,
2475                         NULL);
2476
2477   switch (arrow_placement)
2478     {
2479     case GTK_ARROWS_BOTH:
2480       border->top = priv->upper_arrow_visible ? scroll_arrow_height : 0;
2481       border->bottom = priv->lower_arrow_visible ? scroll_arrow_height : 0;
2482       break;
2483
2484     case GTK_ARROWS_START:
2485       border->top = (priv->upper_arrow_visible ||
2486                      priv->lower_arrow_visible) ? scroll_arrow_height : 0;
2487       border->bottom = 0;
2488       break;
2489
2490     case GTK_ARROWS_END:
2491       border->top = 0;
2492       border->bottom = (priv->upper_arrow_visible ||
2493                         priv->lower_arrow_visible) ? scroll_arrow_height : 0;
2494       break;
2495     }
2496
2497   border->left = border->right = 0;
2498 }
2499
2500 static void
2501 get_menu_border (GtkWidget *widget,
2502                  GtkBorder *border)
2503 {
2504   GtkStyleContext *context;
2505   GtkStateFlags state;
2506   GtkBorder padding, border_width;
2507
2508   context = gtk_widget_get_style_context (widget);
2509   state = gtk_widget_get_state_flags (widget);
2510
2511   gtk_style_context_get_padding (context, state, &padding);
2512   gtk_style_context_get_border (context, state, &border_width);
2513
2514   border->left = border_width.left + padding.left;
2515   border->right = border_width.right + padding.right;
2516   border->top = border_width.top + padding.top;
2517   border->bottom = border_width.bottom + padding.bottom;
2518 }
2519
2520 static void
2521 gtk_menu_realize (GtkWidget *widget)
2522 {
2523   GtkMenu *menu = GTK_MENU (widget);
2524   GtkMenuPrivate *priv = menu->priv;
2525   GtkAllocation allocation;
2526   GtkStyleContext *context;
2527   GdkWindow *window;
2528   GdkWindowAttr attributes;
2529   gint attributes_mask;
2530   gint border_width;
2531   GtkWidget *child;
2532   GList *children;
2533   guint vertical_padding;
2534   guint horizontal_padding;
2535   GtkBorder arrow_border, border;
2536
2537   g_return_if_fail (GTK_IS_MENU (widget));
2538
2539   gtk_widget_set_realized (widget, TRUE);
2540
2541   gtk_widget_get_allocation (widget, &allocation);
2542
2543   attributes.window_type = GDK_WINDOW_CHILD;
2544   attributes.x = allocation.x;
2545   attributes.y = allocation.y;
2546   attributes.width = allocation.width;
2547   attributes.height = allocation.height;
2548   attributes.wclass = GDK_INPUT_OUTPUT;
2549   attributes.visual = gtk_widget_get_visual (widget);
2550   attributes.event_mask = gtk_widget_get_events (widget);
2551   attributes.event_mask |= (GDK_EXPOSURE_MASK | GDK_KEY_PRESS_MASK |
2552                             GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
2553
2554   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
2555
2556   window = gdk_window_new (gtk_widget_get_parent_window (widget),
2557                            &attributes, attributes_mask);
2558   gtk_widget_set_window (widget, window);
2559   gdk_window_set_user_data (window, widget);
2560
2561   get_menu_border (widget, &border);
2562   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
2563   context = gtk_widget_get_style_context (widget);
2564
2565   gtk_widget_style_get (GTK_WIDGET (menu),
2566                         "vertical-padding", &vertical_padding,
2567                         "horizontal-padding", &horizontal_padding,
2568                         NULL);
2569
2570   gtk_widget_get_allocation (widget, &allocation);
2571
2572   attributes.x = border_width + border.left + horizontal_padding;
2573   attributes.y = border_width + border.top + vertical_padding;
2574   attributes.width = allocation.width -
2575     (2 * (border_width + horizontal_padding)) - border.left - border.right;
2576   attributes.height = allocation.height -
2577     (2 * (border_width + vertical_padding)) - border.top - border.bottom;
2578
2579   get_arrows_border (menu, &arrow_border);
2580   attributes.y += arrow_border.top;
2581   attributes.height -= arrow_border.top;
2582   attributes.height -= arrow_border.bottom;
2583
2584   attributes.width = MAX (1, attributes.width);
2585   attributes.height = MAX (1, attributes.height);
2586
2587   priv->view_window = gdk_window_new (window,
2588                                       &attributes, attributes_mask);
2589   gdk_window_set_user_data (priv->view_window, menu);
2590
2591   gtk_widget_get_allocation (widget, &allocation);
2592
2593   attributes.x = 0;
2594   attributes.y = 0;
2595   attributes.width = allocation.width + (2 * (border_width + horizontal_padding)) +
2596     border.left + border.right;
2597   attributes.height = priv->requested_height - (2 * (border_width + vertical_padding)) +
2598     border.top + border.bottom;
2599
2600   attributes.width = MAX (1, attributes.width);
2601   attributes.height = MAX (1, attributes.height);
2602
2603   priv->bin_window = gdk_window_new (priv->view_window,
2604                                      &attributes, attributes_mask);
2605   gdk_window_set_user_data (priv->bin_window, menu);
2606
2607   children = GTK_MENU_SHELL (menu)->priv->children;
2608   while (children)
2609     {
2610       child = children->data;
2611       children = children->next;
2612
2613       gtk_widget_set_parent_window (child, priv->bin_window);
2614     }
2615
2616   gtk_style_context_set_background (context, priv->bin_window);
2617   gtk_style_context_set_background (context, priv->view_window);
2618   gtk_style_context_set_background (context, window);
2619
2620   if (GTK_MENU_SHELL (widget)->priv->active_menu_item)
2621     gtk_menu_scroll_item_visible (GTK_MENU_SHELL (widget),
2622                                   GTK_MENU_SHELL (widget)->priv->active_menu_item);
2623
2624   gdk_window_show (priv->bin_window);
2625   gdk_window_show (priv->view_window);
2626 }
2627
2628 static gboolean
2629 gtk_menu_focus (GtkWidget       *widget,
2630                 GtkDirectionType direction)
2631 {
2632   /* A menu or its menu items cannot have focus */
2633   return FALSE;
2634 }
2635
2636 /* See notes in gtk_menu_popup() for information
2637  * about the "grab transfer window"
2638  */
2639 static GdkWindow *
2640 menu_grab_transfer_window_get (GtkMenu *menu)
2641 {
2642   GdkWindow *window = g_object_get_data (G_OBJECT (menu), "gtk-menu-transfer-window");
2643   if (!window)
2644     {
2645       GdkWindowAttr attributes;
2646       gint attributes_mask;
2647
2648       attributes.x = -100;
2649       attributes.y = -100;
2650       attributes.width = 10;
2651       attributes.height = 10;
2652       attributes.window_type = GDK_WINDOW_TEMP;
2653       attributes.wclass = GDK_INPUT_ONLY;
2654       attributes.override_redirect = TRUE;
2655       attributes.event_mask = 0;
2656
2657       attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
2658
2659       window = gdk_window_new (gtk_widget_get_root_window (GTK_WIDGET (menu)),
2660                                &attributes, attributes_mask);
2661       gdk_window_set_user_data (window, menu);
2662
2663       gdk_window_show (window);
2664
2665       g_object_set_data (G_OBJECT (menu), I_("gtk-menu-transfer-window"), window);
2666     }
2667
2668   return window;
2669 }
2670
2671 static void
2672 menu_grab_transfer_window_destroy (GtkMenu *menu)
2673 {
2674   GdkWindow *window = g_object_get_data (G_OBJECT (menu), "gtk-menu-transfer-window");
2675   if (window)
2676     {
2677       gdk_window_set_user_data (window, NULL);
2678       gdk_window_destroy (window);
2679       g_object_set_data (G_OBJECT (menu), I_("gtk-menu-transfer-window"), NULL);
2680     }
2681 }
2682
2683 static void
2684 gtk_menu_unrealize (GtkWidget *widget)
2685 {
2686   GtkMenu *menu = GTK_MENU (widget);
2687   GtkMenuPrivate *priv = menu->priv;
2688
2689   menu_grab_transfer_window_destroy (menu);
2690
2691   gdk_window_set_user_data (priv->view_window, NULL);
2692   gdk_window_destroy (priv->view_window);
2693   priv->view_window = NULL;
2694
2695   gdk_window_set_user_data (priv->bin_window, NULL);
2696   gdk_window_destroy (priv->bin_window);
2697   priv->bin_window = NULL;
2698
2699   GTK_WIDGET_CLASS (gtk_menu_parent_class)->unrealize (widget);
2700 }
2701
2702 static gint
2703 calculate_line_heights (GtkMenu *menu,
2704                         gint     for_width,
2705                         guint  **ret_min_heights,
2706                         guint  **ret_nat_heights)
2707 {
2708   GtkStyleContext *context;
2709   GtkStateFlags   state;
2710   GtkBorder       padding;
2711   GtkMenuPrivate *priv;
2712   GtkMenuShell   *menu_shell;
2713   GtkWidget      *child, *widget;
2714   GList          *children;
2715   guint           horizontal_padding;
2716   guint           border_width;
2717   guint           n_columns;
2718   gint            n_heights;
2719   guint          *min_heights;
2720   guint          *nat_heights;
2721   gint            avail_width;
2722
2723   priv         = menu->priv;
2724   widget       = GTK_WIDGET (menu);
2725   menu_shell   = GTK_MENU_SHELL (widget);
2726
2727   min_heights  = g_new0 (guint, gtk_menu_get_n_rows (menu));
2728   nat_heights  = g_new0 (guint, gtk_menu_get_n_rows (menu));
2729   n_heights    = gtk_menu_get_n_rows (menu);
2730   n_columns    = gtk_menu_get_n_columns (menu);
2731   avail_width  = for_width - (2 * priv->toggle_size + priv->accel_size) * n_columns;
2732
2733   gtk_widget_style_get (GTK_WIDGET (menu),
2734                         "horizontal-padding", &horizontal_padding,
2735                         NULL);
2736
2737   context = gtk_widget_get_style_context (widget);
2738   state = gtk_widget_get_state_flags (widget);
2739   gtk_style_context_get_padding (context, state, &padding);
2740
2741   border_width = gtk_container_get_border_width (GTK_CONTAINER (menu));
2742   avail_width -= (border_width + horizontal_padding) * 2 + padding.left + padding.right;
2743
2744   for (children = menu_shell->priv->children; children; children = children->next)
2745     {
2746       gint part;
2747       gint toggle_size;
2748       gint l, r, t, b;
2749       gint child_min, child_nat;
2750
2751       child = children->data;
2752
2753       if (!gtk_widget_get_visible (child))
2754         continue;
2755
2756       get_effective_child_attach (child, &l, &r, &t, &b);
2757
2758       part = avail_width / (r - l);
2759
2760       gtk_widget_get_preferred_height_for_width (child, part,
2761                                                  &child_min, &child_nat);
2762
2763       gtk_menu_item_toggle_size_request (GTK_MENU_ITEM (child), &toggle_size);
2764
2765       part = MAX (child_min, toggle_size) / (b - t);
2766       min_heights[t] = MAX (min_heights[t], part);
2767
2768       part = MAX (child_nat, toggle_size) / (b - t);
2769       nat_heights[t] = MAX (nat_heights[t], part);
2770     }
2771
2772   if (ret_min_heights)
2773     *ret_min_heights = min_heights;
2774   else
2775     g_free (min_heights);
2776
2777   if (ret_nat_heights)
2778     *ret_nat_heights = nat_heights;
2779   else
2780     g_free (nat_heights);
2781
2782   return n_heights;
2783 }
2784
2785 static void
2786 gtk_menu_size_allocate (GtkWidget     *widget,
2787                         GtkAllocation *allocation)
2788 {
2789   GtkMenu *menu;
2790   GtkMenuPrivate *priv;
2791   GtkMenuShell *menu_shell;
2792   GtkWidget *child;
2793   GtkAllocation child_allocation;
2794   GList *children;
2795   gint x, y, i;
2796   gint width, height;
2797   guint border_width;
2798   guint vertical_padding;
2799   guint horizontal_padding;
2800   GtkBorder border;
2801
2802   g_return_if_fail (GTK_IS_MENU (widget));
2803   g_return_if_fail (allocation != NULL);
2804
2805   menu = GTK_MENU (widget);
2806   menu_shell = GTK_MENU_SHELL (widget);
2807   priv = menu->priv;
2808
2809   gtk_widget_set_allocation (widget, allocation);
2810
2811   gtk_widget_style_get (GTK_WIDGET (menu),
2812                         "vertical-padding", &vertical_padding,
2813                         "horizontal-padding", &horizontal_padding,
2814                         NULL);
2815
2816   get_menu_border (widget, &border);
2817   border_width = gtk_container_get_border_width (GTK_CONTAINER (menu));
2818
2819   g_free (priv->heights);
2820   priv->heights_length = calculate_line_heights (menu,
2821                                                  allocation->width,
2822                                                  &priv->heights,
2823                                                  NULL);
2824
2825   /* refresh our cached height request */
2826   priv->requested_height = (2 * (border_width + vertical_padding)) +
2827     border.top + border.bottom;
2828   for (i = 0; i < priv->heights_length; i++)
2829     priv->requested_height += priv->heights[i];
2830
2831   x = border_width + border.left + horizontal_padding;
2832   y = border_width + border.top + vertical_padding;
2833   width = allocation->width - (2 * (border_width + horizontal_padding)) -
2834     border.left - border.right;
2835   height = allocation->height - (2 * (border_width + vertical_padding)) -
2836     border.top - border.bottom;
2837
2838   if (menu_shell->priv->active)
2839     gtk_menu_scroll_to (menu, priv->scroll_offset);
2840
2841   if (!priv->tearoff_active)
2842     {
2843       GtkBorder arrow_border;
2844
2845       get_arrows_border (menu, &arrow_border);
2846       y += arrow_border.top;
2847       height -= arrow_border.top;
2848       height -= arrow_border.bottom;
2849     }
2850
2851   width = MAX (1, width);
2852   height = MAX (1, height);
2853
2854   if (gtk_widget_get_realized (widget))
2855     {
2856       gdk_window_move_resize (gtk_widget_get_window (widget),
2857                               allocation->x, allocation->y,
2858                               allocation->width, allocation->height);
2859
2860       gdk_window_move_resize (priv->view_window, x, y, width, height);
2861     }
2862
2863   if (menu_shell->priv->children)
2864     {
2865       gint base_width = width / gtk_menu_get_n_columns (menu);
2866
2867       children = menu_shell->priv->children;
2868       while (children)
2869         {
2870           child = children->data;
2871           children = children->next;
2872
2873           if (gtk_widget_get_visible (child))
2874             {
2875               gint i;
2876               gint l, r, t, b;
2877
2878               get_effective_child_attach (child, &l, &r, &t, &b);
2879
2880               if (gtk_widget_get_direction (GTK_WIDGET (menu)) == GTK_TEXT_DIR_RTL)
2881                 {
2882                   guint tmp;
2883                   tmp = gtk_menu_get_n_columns (menu) - l;
2884                   l = gtk_menu_get_n_columns (menu) - r;
2885                   r = tmp;
2886                 }
2887
2888               child_allocation.width = (r - l) * base_width;
2889               child_allocation.height = 0;
2890               child_allocation.x = l * base_width;
2891               child_allocation.y = 0;
2892
2893               for (i = 0; i < b; i++)
2894                 {
2895                   if (i < t)
2896                     child_allocation.y += priv->heights[i];
2897                   else
2898                     child_allocation.height += priv->heights[i];
2899                 }
2900
2901               gtk_menu_item_toggle_size_allocate (GTK_MENU_ITEM (child),
2902                                                   priv->toggle_size);
2903
2904               gtk_widget_size_allocate (child, &child_allocation);
2905               gtk_widget_queue_draw (child);
2906             }
2907         }
2908
2909       /* Resize the item window */
2910       if (gtk_widget_get_realized (widget))
2911         {
2912           gint i;
2913           gint width, height;
2914
2915           height = 0;
2916           for (i = 0; i < gtk_menu_get_n_rows (menu); i++)
2917             height += priv->heights[i];
2918
2919           width = gtk_menu_get_n_columns (menu) * base_width;
2920           gdk_window_resize (priv->bin_window, width, height);
2921         }
2922
2923       if (priv->tearoff_active)
2924         {
2925           if (height >= priv->requested_height)
2926             {
2927               if (gtk_widget_get_visible (priv->tearoff_scrollbar))
2928                 {
2929                   gtk_widget_hide (priv->tearoff_scrollbar);
2930                   gtk_menu_set_tearoff_hints (menu, allocation->width);
2931
2932                   gtk_menu_scroll_to (menu, 0);
2933                 }
2934             }
2935           else
2936             {
2937               gtk_adjustment_configure (priv->tearoff_adjustment,
2938                                         gtk_adjustment_get_value (priv->tearoff_adjustment),
2939                                         0,
2940                                         priv->requested_height,
2941                                         gtk_adjustment_get_step_increment (priv->tearoff_adjustment),
2942                                         gtk_adjustment_get_page_increment (priv->tearoff_adjustment),
2943                                         allocation->height);
2944
2945               if (!gtk_widget_get_visible (priv->tearoff_scrollbar))
2946                 {
2947                   gtk_widget_show (priv->tearoff_scrollbar);
2948                   gtk_menu_set_tearoff_hints (menu, allocation->width);
2949                 }
2950             }
2951         }
2952     }
2953 }
2954
2955 static void
2956 get_arrows_visible_area (GtkMenu      *menu,
2957                          GdkRectangle *border,
2958                          GdkRectangle *upper,
2959                          GdkRectangle *lower,
2960                          gint         *arrow_space)
2961 {
2962   GtkArrowPlacement arrow_placement;
2963   GtkWidget *widget = GTK_WIDGET (menu);
2964   guint border_width;
2965   guint vertical_padding;
2966   guint horizontal_padding;
2967   gint scroll_arrow_height;
2968   GtkBorder menu_border;
2969
2970   gtk_widget_style_get (widget,
2971                         "vertical-padding", &vertical_padding,
2972                         "horizontal-padding", &horizontal_padding,
2973                         "scroll-arrow-vlength", &scroll_arrow_height,
2974                         "arrow-placement", &arrow_placement,
2975                         NULL);
2976
2977   get_menu_border (widget, &menu_border);
2978   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
2979   border->x = border_width + menu_border.left + horizontal_padding;
2980   border->y = border_width + menu_border.top + vertical_padding;
2981   border->width = gdk_window_get_width (gtk_widget_get_window (widget));
2982   border->height = gdk_window_get_height (gtk_widget_get_window (widget));
2983
2984   switch (arrow_placement)
2985     {
2986     case GTK_ARROWS_BOTH:
2987       upper->x = border->x;
2988       upper->y = border->y;
2989       upper->width = border->width - 2 * border->x;
2990       upper->height = scroll_arrow_height;
2991
2992       lower->x = border->x;
2993       lower->y = border->height - border->y - scroll_arrow_height;
2994       lower->width = border->width - 2 * border->x;
2995       lower->height = scroll_arrow_height;
2996       break;
2997
2998     case GTK_ARROWS_START:
2999       upper->x = border->x;
3000       upper->y = border->y;
3001       upper->width = (border->width - 2 * border->x) / 2;
3002       upper->height = scroll_arrow_height;
3003
3004       lower->x = border->x + upper->width;
3005       lower->y = border->y;
3006       lower->width = (border->width - 2 * border->x) / 2;
3007       lower->height = scroll_arrow_height;
3008       break;
3009
3010     case GTK_ARROWS_END:
3011       upper->x = border->x;
3012       upper->y = border->height - border->y - scroll_arrow_height;
3013       upper->width = (border->width - 2 * border->x) / 2;
3014       upper->height = scroll_arrow_height;
3015
3016       lower->x = border->x + upper->width;
3017       lower->y = border->height - border->y - scroll_arrow_height;
3018       lower->width = (border->width - 2 * border->x) / 2;
3019       lower->height = scroll_arrow_height;
3020       break;
3021
3022     default:
3023        g_assert_not_reached();
3024        upper->x = upper->y = upper->width = upper->height = 0;
3025        lower->x = lower->y = lower->width = lower->height = 0;
3026     }
3027
3028   *arrow_space = scroll_arrow_height - menu_border.top - menu_border.bottom;
3029 }
3030
3031 static gboolean
3032 gtk_menu_draw (GtkWidget *widget,
3033                cairo_t   *cr)
3034 {
3035   GtkMenu *menu;
3036   GtkMenuPrivate *priv;
3037   GtkStyleContext *context;
3038   GdkRectangle border;
3039   GdkRectangle upper;
3040   GdkRectangle lower;
3041   gint arrow_space;
3042   GtkBorder menu_border;
3043
3044   menu = GTK_MENU (widget);
3045   priv = menu->priv;
3046   context = gtk_widget_get_style_context (widget);
3047
3048   get_arrows_visible_area (menu, &border, &upper, &lower, &arrow_space);
3049   get_menu_border (widget, &menu_border);
3050
3051   if (gtk_cairo_should_draw_window (cr, gtk_widget_get_window (widget)))
3052     {
3053       gfloat arrow_scaling;
3054       gint arrow_size;
3055
3056       gtk_widget_style_get (widget, "arrow-scaling", &arrow_scaling, NULL);
3057       arrow_size = arrow_scaling * arrow_space;
3058
3059       gtk_render_background (context, cr, 0, 0,
3060                              gtk_widget_get_allocated_width (widget),
3061                              gtk_widget_get_allocated_height (widget));
3062       gtk_render_frame (context, cr, 0, 0,
3063                         gtk_widget_get_allocated_width (widget),
3064                         gtk_widget_get_allocated_height (widget));
3065
3066       gtk_style_context_save (context);
3067       gtk_style_context_add_class (context, GTK_STYLE_CLASS_BUTTON);
3068
3069       if (priv->upper_arrow_visible && !priv->tearoff_active)
3070         {
3071           gtk_style_context_save (context);
3072           gtk_style_context_set_state (context, priv->upper_arrow_state);
3073
3074           gtk_render_background (context, cr,
3075                                  upper.x, upper.y,
3076                                  upper.width, upper.height);
3077           gtk_render_frame (context, cr,
3078                             upper.x, upper.y,
3079                             upper.width, upper.height);
3080
3081           gtk_render_arrow (context, cr, 0,
3082                             upper.x + (upper.width - arrow_size) / 2,
3083                             upper.y + menu_border.top + (arrow_space - arrow_size) / 2,
3084                             arrow_size);
3085
3086           gtk_style_context_restore (context);
3087         }
3088
3089       if (priv->lower_arrow_visible && !priv->tearoff_active)
3090         {
3091           gtk_style_context_save (context);
3092           gtk_style_context_set_state (context, priv->lower_arrow_state);
3093
3094           gtk_render_background (context, cr,
3095                                  lower.x, lower.y,
3096                                  lower.width, lower.height);
3097           gtk_render_frame (context, cr,
3098                             lower.x, lower.y,
3099                             lower.width, lower.height);
3100
3101           gtk_render_arrow (context, cr, G_PI,
3102                             lower.x + (lower.width - arrow_size) / 2,
3103                             lower.y + menu_border.top + (arrow_space - arrow_size) / 2,
3104                             arrow_size);
3105
3106           gtk_style_context_restore (context);
3107         }
3108
3109       gtk_style_context_restore (context);
3110     }
3111
3112   if (gtk_cairo_should_draw_window (cr, priv->bin_window))
3113     {
3114       gint y = -border.y + priv->scroll_offset;
3115
3116       cairo_save (cr);
3117       gtk_cairo_transform_to_window (cr, widget, priv->bin_window);
3118
3119       if (!priv->tearoff_active)
3120         {
3121           GtkBorder arrow_border;
3122
3123           get_arrows_border (menu, &arrow_border);
3124           y -= arrow_border.top;
3125         }
3126
3127       gtk_render_background (context, cr,
3128                              - border.x, y,
3129                              border.width, border.height);
3130       gtk_render_frame (context, cr,
3131                         - border.x, y,
3132                         border.width, border.height);
3133
3134       cairo_restore (cr);
3135     }
3136
3137   GTK_WIDGET_CLASS (gtk_menu_parent_class)->draw (widget, cr);
3138
3139   return FALSE;
3140 }
3141
3142 static void
3143 gtk_menu_show (GtkWidget *widget)
3144 {
3145   GtkMenu *menu = GTK_MENU (widget);
3146
3147   _gtk_menu_refresh_accel_paths (menu, FALSE);
3148
3149   GTK_WIDGET_CLASS (gtk_menu_parent_class)->show (widget);
3150 }
3151
3152
3153 static void 
3154 gtk_menu_get_preferred_width (GtkWidget *widget,
3155                               gint      *minimum_size,
3156                               gint      *natural_size)
3157 {
3158   GtkMenu        *menu;
3159   GtkMenuShell   *menu_shell;
3160   GtkMenuPrivate *priv;
3161   GtkWidget      *child;
3162   GList          *children;
3163   guint           max_toggle_size;
3164   guint           max_accel_width;
3165   guint           horizontal_padding;
3166   guint           border_width;
3167   gint            child_min, child_nat;
3168   gint            min_width, nat_width;
3169   GtkBorder       border;
3170
3171   menu       = GTK_MENU (widget);
3172   menu_shell = GTK_MENU_SHELL (widget);
3173   priv       = menu->priv;
3174
3175   min_width = nat_width = 0;
3176
3177   max_toggle_size = 0;
3178   max_accel_width = 0;
3179
3180   children = menu_shell->priv->children;
3181   while (children)
3182     {
3183       gint part;
3184       gint toggle_size;
3185       gint l, r, t, b;
3186
3187       child = children->data;
3188       children = children->next;
3189
3190       if (! gtk_widget_get_visible (child))
3191         continue;
3192
3193       get_effective_child_attach (child, &l, &r, &t, &b);
3194
3195       /* It's important to size_request the child
3196        * before doing the toggle size request, in
3197        * case the toggle size request depends on the size
3198        * request of a child of the child (e.g. for ImageMenuItem)
3199        */
3200        gtk_widget_get_preferred_width (child, &child_min, &child_nat);
3201
3202        gtk_menu_item_toggle_size_request (GTK_MENU_ITEM (child), &toggle_size);
3203        max_toggle_size = MAX (max_toggle_size, toggle_size);
3204        max_accel_width = MAX (max_accel_width,
3205                               GTK_MENU_ITEM (child)->priv->accelerator_width);
3206
3207        part = child_min / (r - l);
3208        min_width = MAX (min_width, part);
3209
3210        part = child_nat / (r - l);
3211        nat_width = MAX (nat_width, part);
3212     }
3213
3214   /* If the menu doesn't include any images or check items
3215    * reserve the space so that all menus are consistent.
3216    * We only do this for 'ordinary' menus, not for combobox
3217    * menus or multi-column menus
3218    */
3219   if (max_toggle_size == 0 &&
3220       gtk_menu_get_n_columns (menu) == 1 &&
3221       !priv->no_toggle_size)
3222     {
3223       GtkStyleContext *context;
3224       GtkWidgetPath *menu_path, *check_path;
3225       guint toggle_spacing;
3226       guint indicator_size;
3227
3228       context = gtk_widget_get_style_context (widget);
3229       menu_path = gtk_widget_path_copy (gtk_style_context_get_path (context));
3230
3231       /* Create a GtkCheckMenuItem path, only to query indicator spacing */
3232       check_path = gtk_widget_path_copy (menu_path);
3233       gtk_widget_path_append_type (check_path, GTK_TYPE_CHECK_MENU_ITEM);
3234
3235       gtk_style_context_set_path (context, check_path);
3236       gtk_widget_path_free (check_path);
3237
3238       gtk_style_context_get_style (context,
3239                                    "toggle-spacing", &toggle_spacing,
3240                                    "indicator-size", &indicator_size,
3241                                    NULL);
3242
3243       max_toggle_size = indicator_size + toggle_spacing;
3244
3245       /* Restore real widget path */
3246       gtk_style_context_set_path (context, menu_path);
3247       gtk_widget_path_free (menu_path);
3248     }
3249
3250   min_width += 2 * max_toggle_size + max_accel_width;
3251   min_width *= gtk_menu_get_n_columns (menu);
3252
3253   nat_width += 2 * max_toggle_size + max_accel_width;
3254   nat_width *= gtk_menu_get_n_columns (menu);
3255
3256   gtk_widget_style_get (GTK_WIDGET (menu),
3257                         "horizontal-padding", &horizontal_padding,
3258                         NULL);
3259
3260   get_menu_border (widget, &border);
3261   border_width = gtk_container_get_border_width (GTK_CONTAINER (menu));
3262   min_width   += (2 * (border_width + horizontal_padding)) +
3263     border.left + border.right;
3264   nat_width   += (2 * (border_width + horizontal_padding)) +
3265     border.top + border.bottom;
3266
3267   priv->toggle_size = max_toggle_size;
3268   priv->accel_size  = max_accel_width;
3269
3270   if (minimum_size)
3271     *minimum_size = min_width;
3272
3273   if (natural_size)
3274     *natural_size = nat_width;
3275
3276   /* Don't resize the tearoff if it is not active,
3277    * because it won't redraw (it is only a background pixmap).
3278    */
3279   if (priv->tearoff_active)
3280     gtk_menu_set_tearoff_hints (menu, min_width);
3281 }
3282
3283 static void
3284 gtk_menu_get_preferred_height (GtkWidget *widget,
3285                                gint      *minimum_size,
3286                                gint      *natural_size)
3287 {
3288   gint min_width;
3289
3290   /* Menus are height-for-width only, just return the height
3291    * for the minimum width
3292    */
3293   GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, &min_width, NULL);
3294   GTK_WIDGET_GET_CLASS (widget)->get_preferred_height_for_width (widget, min_width, minimum_size, natural_size);
3295 }
3296
3297 static void
3298 gtk_menu_get_preferred_height_for_width (GtkWidget *widget,
3299                                          gint       for_size,
3300                                          gint      *minimum_size,
3301                                          gint      *natural_size)
3302 {
3303   GtkStyleContext *context;
3304   GtkStateFlags   state;
3305   GtkBorder       padding, border;
3306   GtkMenu        *menu = GTK_MENU (widget);
3307   GtkMenuPrivate *priv = menu->priv;
3308   guint          *min_heights, *nat_heights;
3309   guint           vertical_padding, border_width;
3310   gint            n_heights, i;
3311   gint            min_height, nat_height;
3312
3313   gtk_widget_style_get (widget, "vertical-padding", &vertical_padding, NULL);
3314   border_width = gtk_container_get_border_width (GTK_CONTAINER (menu));
3315
3316   context = gtk_widget_get_style_context (widget);
3317   state = gtk_widget_get_state_flags (widget);
3318   gtk_style_context_get_padding (context, state, &padding);
3319   gtk_style_context_get_border (context, state, &border);
3320
3321   min_height = nat_height = (border_width + vertical_padding) * 2 +
3322           padding.left + padding.right + border.left + border.right;
3323
3324   n_heights =
3325     calculate_line_heights (menu, for_size, &min_heights, &nat_heights);
3326
3327   for (i = 0; i < n_heights; i++)
3328     {
3329       min_height += min_heights[i];
3330       nat_height += nat_heights[i];
3331     }
3332
3333   if (priv->have_position)
3334     {
3335       GdkScreen *screen = gtk_widget_get_screen (priv->toplevel);
3336       GdkRectangle monitor;
3337
3338       gdk_screen_get_monitor_geometry (screen, priv->monitor_num, &monitor);
3339
3340       if (priv->position_y + min_height > monitor.y + monitor.height)
3341         min_height = monitor.y + monitor.height - priv->position_y;
3342
3343       if (priv->position_y + nat_height > monitor.y + monitor.height)
3344         nat_height = monitor.y + monitor.height - priv->position_y;
3345
3346       if (priv->position_y < monitor.y)
3347         {
3348           min_height -= monitor.y - priv->position_y;
3349           nat_height -= monitor.y - priv->position_y;
3350         }
3351     }
3352
3353   if (minimum_size)
3354     *minimum_size = min_height;
3355
3356   if (natural_size)
3357     *natural_size = nat_height;
3358
3359   g_free (min_heights);
3360   g_free (nat_heights);
3361 }
3362
3363
3364
3365 static gboolean
3366 gtk_menu_button_scroll (GtkMenu        *menu,
3367                         GdkEventButton *event)
3368 {
3369   GtkMenuPrivate *priv = menu->priv;
3370
3371   if (priv->upper_arrow_prelight || priv->lower_arrow_prelight)
3372     {
3373       gboolean touchscreen_mode;
3374
3375       g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3376                     "gtk-touchscreen-mode", &touchscreen_mode,
3377                     NULL);
3378
3379       if (touchscreen_mode)
3380         gtk_menu_handle_scrolling (menu,
3381                                    event->x_root, event->y_root,
3382                                    event->type == GDK_BUTTON_PRESS,
3383                                    FALSE);
3384
3385       return TRUE;
3386     }
3387
3388   return FALSE;
3389 }
3390
3391 static gboolean
3392 pointer_in_menu_window (GtkWidget *widget,
3393                         gdouble    x_root,
3394                         gdouble    y_root)
3395 {
3396   GtkMenu *menu = GTK_MENU (widget);
3397   GtkMenuPrivate *priv = menu->priv;
3398   GtkAllocation allocation;
3399
3400   if (gtk_widget_get_mapped (priv->toplevel))
3401     {
3402       GtkMenuShell *menu_shell;
3403       gint          window_x, window_y;
3404
3405       gdk_window_get_position (gtk_widget_get_window (priv->toplevel),
3406                                &window_x, &window_y);
3407
3408       gtk_widget_get_allocation (widget, &allocation);
3409       if (x_root >= window_x && x_root < window_x + allocation.width &&
3410           y_root >= window_y && y_root < window_y + allocation.height)
3411         return TRUE;
3412
3413       menu_shell = GTK_MENU_SHELL (widget);
3414
3415       if (GTK_IS_MENU (menu_shell->priv->parent_menu_shell))
3416         return pointer_in_menu_window (menu_shell->priv->parent_menu_shell,
3417                                        x_root, y_root);
3418     }
3419
3420   return FALSE;
3421 }
3422
3423 static gboolean
3424 gtk_menu_button_press (GtkWidget      *widget,
3425                        GdkEventButton *event)
3426 {
3427   if (event->type != GDK_BUTTON_PRESS)
3428     return FALSE;
3429
3430   /* Don't pass down to menu shell for presses over scroll arrows
3431    */
3432   if (gtk_menu_button_scroll (GTK_MENU (widget), event))
3433     return TRUE;
3434
3435   /*  Don't pass down to menu shell if a non-menuitem part of the menu
3436    *  was clicked. The check for the event_widget being a GtkMenuShell
3437    *  works because we have the pointer grabbed on menu_shell->window
3438    *  with owner_events=TRUE, so all events that are either outside
3439    *  the menu or on its border are delivered relative to
3440    *  menu_shell->window.
3441    */
3442   if (GTK_IS_MENU_SHELL (gtk_get_event_widget ((GdkEvent *) event)) &&
3443       pointer_in_menu_window (widget, event->x_root, event->y_root))
3444     return TRUE;
3445
3446   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->button_press_event (widget, event);
3447 }
3448
3449 static gboolean
3450 gtk_menu_button_release (GtkWidget      *widget,
3451                          GdkEventButton *event)
3452 {
3453   GtkMenuPrivate *priv = GTK_MENU (widget)->priv;
3454
3455   if (priv->ignore_button_release)
3456     {
3457       priv->ignore_button_release = FALSE;
3458       return FALSE;
3459     }
3460
3461   if (event->type != GDK_BUTTON_RELEASE)
3462     return FALSE;
3463
3464   /* Don't pass down to menu shell for releases over scroll arrows
3465    */
3466   if (gtk_menu_button_scroll (GTK_MENU (widget), event))
3467     return TRUE;
3468
3469   /*  Don't pass down to menu shell if a non-menuitem part of the menu
3470    *  was clicked (see comment in button_press()).
3471    */
3472   if (GTK_IS_MENU_SHELL (gtk_get_event_widget ((GdkEvent *) event)) &&
3473       pointer_in_menu_window (widget, event->x_root, event->y_root))
3474     {
3475       /*  Ugly: make sure menu_shell->button gets reset to 0 when we
3476        *  bail out early here so it is in a consistent state for the
3477        *  next button_press/button_release in GtkMenuShell.
3478        *  See bug #449371.
3479        */
3480       if (GTK_MENU_SHELL (widget)->priv->active)
3481         GTK_MENU_SHELL (widget)->priv->button = 0;
3482
3483       return TRUE;
3484     }
3485
3486   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->button_release_event (widget, event);
3487 }
3488
3489 static const gchar *
3490 get_accel_path (GtkWidget *menu_item,
3491                 gboolean  *locked)
3492 {
3493   const gchar *path;
3494   GtkWidget *label;
3495   GClosure *accel_closure;
3496   GtkAccelGroup *accel_group;
3497
3498   path = _gtk_widget_get_accel_path (menu_item, locked);
3499   if (!path)
3500     {
3501       path = GTK_MENU_ITEM (menu_item)->priv->accel_path;
3502
3503       if (locked)
3504         {
3505           *locked = TRUE;
3506
3507           label = gtk_bin_get_child (GTK_BIN (menu_item));
3508
3509           if (GTK_IS_ACCEL_LABEL (label))
3510             {
3511               g_object_get (label,
3512                             "accel-closure", &accel_closure,
3513                             NULL);
3514               if (accel_closure)
3515                 {
3516                   accel_group = gtk_accel_group_from_accel_closure (accel_closure);
3517
3518                   *locked = gtk_accel_group_get_is_locked (accel_group);
3519                 }
3520             }
3521         }
3522     }
3523
3524   return path;
3525 }
3526
3527 static gboolean
3528 gtk_menu_key_press (GtkWidget   *widget,
3529                     GdkEventKey *event)
3530 {
3531   GtkMenuShell *menu_shell;
3532   GtkMenu *menu;
3533   gboolean delete = FALSE;
3534   gboolean can_change_accels;
3535   gchar *accel = NULL;
3536   guint accel_key, accel_mods;
3537   GdkModifierType consumed_modifiers;
3538   GdkDisplay *display;
3539
3540   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
3541   g_return_val_if_fail (event != NULL, FALSE);
3542
3543   menu_shell = GTK_MENU_SHELL (widget);
3544   menu = GTK_MENU (widget);
3545
3546   gtk_menu_stop_navigating_submenu (menu);
3547
3548   if (GTK_WIDGET_CLASS (gtk_menu_parent_class)->key_press_event (widget, event))
3549     return TRUE;
3550
3551   display = gtk_widget_get_display (widget);
3552
3553   g_object_get (gtk_widget_get_settings (widget),
3554                 "gtk-menu-bar-accel", &accel,
3555                 "gtk-can-change-accels", &can_change_accels,
3556                 NULL);
3557
3558   if (accel && *accel)
3559     {
3560       guint keyval = 0;
3561       GdkModifierType mods = 0;
3562
3563       gtk_accelerator_parse (accel, &keyval, &mods);
3564
3565       if (keyval == 0)
3566         g_warning ("Failed to parse menu bar accelerator '%s'\n", accel);
3567
3568       /* FIXME this is wrong, needs to be in the global accel resolution
3569        * thing, to properly consider i18n etc., but that probably requires
3570        * AccelGroup changes etc.
3571        */
3572       if (event->keyval == keyval && (mods & event->state) == mods)
3573         {
3574           gtk_menu_shell_cancel (menu_shell);
3575           g_free (accel);
3576           return TRUE;
3577         }
3578     }
3579
3580   g_free (accel);
3581
3582   switch (event->keyval)
3583     {
3584     case GDK_KEY_Delete:
3585     case GDK_KEY_KP_Delete:
3586     case GDK_KEY_BackSpace:
3587       delete = TRUE;
3588       break;
3589     default:
3590       break;
3591     }
3592
3593   /* Figure out what modifiers went into determining the key symbol */
3594   gdk_keymap_translate_keyboard_state (gdk_keymap_get_for_display (display),
3595                                        event->hardware_keycode,
3596                                        event->state, event->group,
3597                                        NULL, NULL, NULL, &consumed_modifiers);
3598
3599   accel_key = gdk_keyval_to_lower (event->keyval);
3600   accel_mods = event->state & gtk_accelerator_get_default_mod_mask () & ~consumed_modifiers;
3601
3602   /* If lowercasing affects the keysym, then we need to include SHIFT
3603    * in the modifiers, we re-uppercase when we match against the keyval,
3604    * but display and save in caseless form.
3605    */
3606   if (accel_key != event->keyval)
3607     accel_mods |= GDK_SHIFT_MASK;
3608
3609   /* Modify the accelerators */
3610   if (can_change_accels &&
3611       menu_shell->priv->active_menu_item &&
3612       gtk_bin_get_child (GTK_BIN (menu_shell->priv->active_menu_item)) && /* no separators */
3613       GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->priv->submenu == NULL &&  /* no submenus */
3614       (delete || gtk_accelerator_valid (accel_key, accel_mods)))
3615     {
3616       GtkWidget *menu_item = menu_shell->priv->active_menu_item;
3617       gboolean locked, replace_accels = TRUE;
3618       const gchar *path;
3619
3620       path = get_accel_path (menu_item, &locked);
3621       if (!path || locked)
3622         {
3623           /* Can't change accelerators on menu_items without paths
3624            * (basically, those items are accelerator-locked).
3625            */
3626           gtk_widget_error_bell (widget);
3627         }
3628       else
3629         {
3630           gboolean changed;
3631
3632           /* For the keys that act to delete the current setting,
3633            * we delete the current setting if there is one, otherwise,
3634            * we set the key as the accelerator.
3635            */
3636           if (delete)
3637             {
3638               GtkAccelKey key;
3639
3640               if (gtk_accel_map_lookup_entry (path, &key) &&
3641                   (key.accel_key || key.accel_mods))
3642                 {
3643                   accel_key = 0;
3644                   accel_mods = 0;
3645                 }
3646             }
3647           changed = gtk_accel_map_change_entry (path, accel_key, accel_mods, replace_accels);
3648
3649           if (!changed)
3650             {
3651               /* We failed, probably because this key is in use
3652                * and locked already.
3653                */
3654               gtk_widget_error_bell (widget);
3655             }
3656         }
3657     }
3658
3659   return TRUE;
3660 }
3661
3662 static gboolean
3663 check_threshold (GtkWidget *widget,
3664                  gint       start_x,
3665                  gint       start_y,
3666                  gint       x,
3667                  gint       y)
3668 {
3669 #define THRESHOLD 8
3670
3671   return
3672     ABS (start_x - x) > THRESHOLD ||
3673     ABS (start_y - y) > THRESHOLD;
3674 }
3675
3676 static gboolean
3677 definitely_within_item (GtkWidget *widget,
3678                         gint       x,
3679                         gint       y)
3680 {
3681   GdkWindow *window = GTK_MENU_ITEM (widget)->priv->event_window;
3682   int w, h;
3683
3684   w = gdk_window_get_width (window);
3685   h = gdk_window_get_height (window);
3686
3687   return
3688     check_threshold (widget, 0, 0, x, y) &&
3689     check_threshold (widget, w - 1, 0, x, y) &&
3690     check_threshold (widget, w - 1, h - 1, x, y) &&
3691     check_threshold (widget, 0, h - 1, x, y);
3692 }
3693
3694 static gboolean
3695 gtk_menu_has_navigation_triangle (GtkMenu *menu)
3696 {
3697   GtkMenuPrivate *priv = menu->priv;
3698
3699   return priv->navigation_height && priv->navigation_width;
3700 }
3701
3702 static gboolean
3703 gtk_menu_motion_notify (GtkWidget      *widget,
3704                         GdkEventMotion *event)
3705 {
3706   GtkWidget *menu_item;
3707   GtkMenu *menu;
3708   GtkMenuShell *menu_shell;
3709   GtkWidget *parent;
3710
3711   gboolean need_enter;
3712
3713   if (GTK_IS_MENU (widget))
3714     {
3715       GtkMenuPrivate *priv = GTK_MENU(widget)->priv;
3716
3717       if (priv->ignore_button_release)
3718         priv->ignore_button_release = FALSE;
3719
3720       gtk_menu_handle_scrolling (GTK_MENU (widget), event->x_root, event->y_root,
3721                                  TRUE, TRUE);
3722     }
3723
3724   /* We received the event for one of two reasons:
3725    *
3726    * a) We are the active menu, and did gtk_grab_add()
3727    * b) The widget is a child of ours, and the event was propagated
3728    *
3729    * Since for computation of navigation regions, we want the menu which
3730    * is the parent of the menu item, for a), we need to find that menu,
3731    * which may be different from 'widget'.
3732    */
3733   menu_item = gtk_get_event_widget ((GdkEvent*) event);
3734   parent = gtk_widget_get_parent (menu_item);
3735   if (!GTK_IS_MENU_ITEM (menu_item) ||
3736       !GTK_IS_MENU (parent))
3737     return FALSE;
3738
3739   menu_shell = GTK_MENU_SHELL (parent);
3740   menu = GTK_MENU (menu_shell);
3741
3742   if (definitely_within_item (menu_item, event->x, event->y))
3743     menu_shell->priv->activate_time = 0;
3744
3745   need_enter = (gtk_menu_has_navigation_triangle (menu) || menu_shell->priv->ignore_enter);
3746
3747   /* Check to see if we are within an active submenu's navigation region
3748    */
3749   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
3750     return TRUE;
3751
3752   /* Make sure we pop down if we enter a non-selectable menu item, so we
3753    * don't show a submenu when the cursor is outside the stay-up triangle.
3754    */
3755   if (!_gtk_menu_item_is_selectable (menu_item))
3756     {
3757       /* We really want to deselect, but this gives the menushell code
3758        * a chance to do some bookkeeping about the menuitem.
3759        */
3760       gtk_menu_shell_select_item (menu_shell, menu_item);
3761       return FALSE;
3762     }
3763
3764   if (need_enter)
3765     {
3766       /* The menu is now sensitive to enter events on its items, but
3767        * was previously sensitive.  So we fake an enter event.
3768        */
3769       menu_shell->priv->ignore_enter = FALSE;
3770
3771       if (event->x >= 0 && event->x < gdk_window_get_width (event->window) &&
3772           event->y >= 0 && event->y < gdk_window_get_height (event->window))
3773         {
3774           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
3775           gboolean result;
3776
3777           send_event->crossing.window = g_object_ref (event->window);
3778           send_event->crossing.time = event->time;
3779           send_event->crossing.send_event = TRUE;
3780           send_event->crossing.x_root = event->x_root;
3781           send_event->crossing.y_root = event->y_root;
3782           send_event->crossing.x = event->x;
3783           send_event->crossing.y = event->y;
3784           send_event->crossing.state = event->state;
3785           gdk_event_set_device (send_event, gdk_event_get_device ((GdkEvent *) event));
3786
3787           /* We send the event to 'widget', the currently active menu,
3788            * instead of 'menu', the menu that the pointer is in. This
3789            * will ensure that the event will be ignored unless the
3790            * menuitem is a child of the active menu or some parent
3791            * menu of the active menu.
3792            */
3793           result = gtk_widget_event (widget, send_event);
3794           gdk_event_free (send_event);
3795
3796           return result;
3797         }
3798     }
3799
3800   return FALSE;
3801 }
3802
3803 static gboolean
3804 get_double_arrows (GtkMenu *menu)
3805 {
3806   GtkMenuPrivate   *priv = menu->priv;
3807   gboolean          double_arrows;
3808   GtkArrowPlacement arrow_placement;
3809
3810   gtk_widget_style_get (GTK_WIDGET (menu),
3811                         "double-arrows", &double_arrows,
3812                         "arrow-placement", &arrow_placement,
3813                         NULL);
3814
3815   if (arrow_placement != GTK_ARROWS_BOTH)
3816     return TRUE;
3817
3818   return double_arrows || (priv->initially_pushed_in &&
3819                            priv->scroll_offset != 0);
3820 }
3821
3822 static void
3823 gtk_menu_scroll_by (GtkMenu *menu,
3824                     gint     step)
3825 {
3826   GtkMenuPrivate *priv = menu->priv;
3827   GtkBorder arrow_border;
3828   GtkWidget *widget;
3829   gint offset;
3830   gint view_height;
3831   gboolean double_arrows;
3832
3833   widget = GTK_WIDGET (menu);
3834   offset = priv->scroll_offset + step;
3835
3836   get_arrows_border (menu, &arrow_border);
3837
3838   double_arrows = get_double_arrows (menu);
3839
3840   /* If we scroll upward and the non-visible top part
3841    * is smaller than the scroll arrow it would be
3842    * pretty stupid to show the arrow and taking more
3843    * screen space than just scrolling to the top.
3844    */
3845   if (!double_arrows)
3846     if ((step < 0) && (offset < arrow_border.top))
3847       offset = 0;
3848
3849   /* Don't scroll over the top if we weren't before: */
3850   if ((priv->scroll_offset >= 0) && (offset < 0))
3851     offset = 0;
3852
3853   view_height = gdk_window_get_height (gtk_widget_get_window (widget));
3854
3855   if (priv->scroll_offset == 0 &&
3856       view_height >= priv->requested_height)
3857     return;
3858
3859   /* Don't scroll past the bottom if we weren't before: */
3860   if (priv->scroll_offset > 0)
3861     view_height -= arrow_border.top;
3862
3863   /* When both arrows are always shown,
3864    * reduce view height even more.
3865    */
3866   if (double_arrows)
3867     view_height -= arrow_border.bottom;
3868
3869   if ((priv->scroll_offset + view_height <= priv->requested_height) &&
3870       (offset + view_height > priv->requested_height))
3871     offset = priv->requested_height - view_height;
3872
3873   if (offset != priv->scroll_offset)
3874     gtk_menu_scroll_to (menu, offset);
3875 }
3876
3877 static void
3878 gtk_menu_do_timeout_scroll (GtkMenu  *menu,
3879                             gboolean  touchscreen_mode)
3880 {
3881   GtkMenuPrivate *priv = menu->priv;
3882   gboolean upper_visible;
3883   gboolean lower_visible;
3884
3885   upper_visible = priv->upper_arrow_visible;
3886   lower_visible = priv->lower_arrow_visible;
3887
3888   gtk_menu_scroll_by (menu, priv->scroll_step);
3889
3890   if (touchscreen_mode &&
3891       (upper_visible != priv->upper_arrow_visible ||
3892        lower_visible != priv->lower_arrow_visible))
3893     {
3894       /* We are about to hide a scroll arrow while the mouse is pressed,
3895        * this would cause the uncovered menu item to be activated on button
3896        * release. Therefore we need to ignore button release here
3897        */
3898       GTK_MENU_SHELL (menu)->priv->ignore_enter = TRUE;
3899       priv->ignore_button_release = TRUE;
3900     }
3901 }
3902
3903 static gboolean
3904 gtk_menu_scroll_timeout (gpointer data)
3905 {
3906   GtkMenu  *menu;
3907   gboolean  touchscreen_mode;
3908
3909   menu = GTK_MENU (data);
3910
3911   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3912                 "gtk-touchscreen-mode", &touchscreen_mode,
3913                 NULL);
3914
3915   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3916
3917   return TRUE;
3918 }
3919
3920 static gboolean
3921 gtk_menu_scroll_timeout_initial (gpointer data)
3922 {
3923   GtkMenu  *menu;
3924   guint     timeout;
3925   gboolean  touchscreen_mode;
3926
3927   menu = GTK_MENU (data);
3928
3929   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3930                 "gtk-timeout-repeat", &timeout,
3931                 "gtk-touchscreen-mode", &touchscreen_mode,
3932                 NULL);
3933
3934   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3935
3936   gtk_menu_remove_scroll_timeout (menu);
3937
3938   menu->priv->scroll_timeout =
3939     gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout, menu);
3940
3941   return FALSE;
3942 }
3943
3944 static void
3945 gtk_menu_start_scrolling (GtkMenu *menu)
3946 {
3947   guint    timeout;
3948   gboolean touchscreen_mode;
3949
3950   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3951                 "gtk-timeout-repeat", &timeout,
3952                 "gtk-touchscreen-mode", &touchscreen_mode,
3953                 NULL);
3954
3955   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3956
3957   menu->priv->scroll_timeout =
3958     gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout_initial, menu);
3959 }
3960
3961 static gboolean
3962 gtk_menu_scroll (GtkWidget      *widget,
3963                  GdkEventScroll *event)
3964 {
3965   GtkMenu *menu = GTK_MENU (widget);
3966
3967   switch (event->direction)
3968     {
3969     case GDK_SCROLL_RIGHT:
3970     case GDK_SCROLL_DOWN:
3971       gtk_menu_scroll_by (menu, MENU_SCROLL_STEP2);
3972       break;
3973     case GDK_SCROLL_LEFT:
3974     case GDK_SCROLL_UP:
3975       gtk_menu_scroll_by (menu, - MENU_SCROLL_STEP2);
3976       break;
3977     }
3978
3979   return TRUE;
3980 }
3981
3982 static void
3983 get_arrows_sensitive_area (GtkMenu      *menu,
3984                            GdkRectangle *upper,
3985                            GdkRectangle *lower)
3986 {
3987   GtkArrowPlacement arrow_placement;
3988   GtkWidget *widget = GTK_WIDGET (menu);
3989   GdkWindow *window;
3990   gint width, height;
3991   guint border;
3992   guint vertical_padding;
3993   gint win_x, win_y;
3994   gint scroll_arrow_height;
3995   GtkStyleContext *context;
3996   GtkStateFlags state;
3997   GtkBorder padding;
3998
3999   window = gtk_widget_get_window (widget);
4000   width = gdk_window_get_width (window);
4001   height = gdk_window_get_height (window);
4002
4003   gtk_widget_style_get (widget,
4004                         "vertical-padding", &vertical_padding,
4005                         "scroll-arrow-vlength", &scroll_arrow_height,
4006                         "arrow-placement", &arrow_placement,
4007                         NULL);
4008
4009   border = gtk_container_get_border_width (GTK_CONTAINER (menu)) + vertical_padding;
4010
4011   context = gtk_widget_get_style_context (widget);
4012   state = gtk_widget_get_state_flags (widget);
4013   gtk_style_context_get_padding (context, state, &padding);
4014
4015   gdk_window_get_position (window, &win_x, &win_y);
4016
4017   switch (arrow_placement)
4018     {
4019     case GTK_ARROWS_BOTH:
4020       if (upper)
4021         {
4022           upper->x = win_x;
4023           upper->y = win_y;
4024           upper->width = width;
4025           upper->height = scroll_arrow_height + border + padding.top;
4026         }
4027
4028       if (lower)
4029         {
4030           lower->x = win_x;
4031           lower->y = win_y + height - border - padding.bottom - scroll_arrow_height;
4032           lower->width = width;
4033           lower->height = scroll_arrow_height + border + padding.bottom;
4034         }
4035       break;
4036
4037     case GTK_ARROWS_START:
4038       if (upper)
4039         {
4040           upper->x = win_x;
4041           upper->y = win_y;
4042           upper->width = width / 2;
4043           upper->height = scroll_arrow_height + border + padding.top;
4044         }
4045
4046       if (lower)
4047         {
4048           lower->x = win_x + width / 2;
4049           lower->y = win_y;
4050           lower->width = width / 2;
4051           lower->height = scroll_arrow_height + border + padding.bottom;
4052         }
4053       break;
4054
4055     case GTK_ARROWS_END:
4056       if (upper)
4057         {
4058           upper->x = win_x;
4059           upper->y = win_y + height - border - scroll_arrow_height;
4060           upper->width = width / 2;
4061           upper->height = scroll_arrow_height + border + padding.top;
4062         }
4063
4064       if (lower)
4065         {
4066           lower->x = win_x + width / 2;
4067           lower->y = win_y + height - border - scroll_arrow_height;
4068           lower->width = width / 2;
4069           lower->height = scroll_arrow_height + border + padding.bottom;
4070         }
4071       break;
4072     }
4073 }
4074
4075
4076 static void
4077 gtk_menu_handle_scrolling (GtkMenu *menu,
4078                            gint     x,
4079                            gint     y,
4080                            gboolean enter,
4081                            gboolean motion)
4082 {
4083   GtkMenuPrivate *priv = menu->priv;
4084   GtkMenuShell *menu_shell;
4085   GdkRectangle rect;
4086   gboolean in_arrow;
4087   gboolean scroll_fast = FALSE;
4088   gint top_x, top_y;
4089   gboolean touchscreen_mode;
4090
4091   menu_shell = GTK_MENU_SHELL (menu);
4092
4093   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
4094                 "gtk-touchscreen-mode", &touchscreen_mode,
4095                 NULL);
4096
4097   gdk_window_get_position (gtk_widget_get_window (priv->toplevel),
4098                            &top_x, &top_y);
4099   x -= top_x;
4100   y -= top_y;
4101
4102   /*  upper arrow handling  */
4103
4104   get_arrows_sensitive_area (menu, &rect, NULL);
4105
4106   in_arrow = FALSE;
4107   if (priv->upper_arrow_visible && !priv->tearoff_active &&
4108       (x >= rect.x) && (x < rect.x + rect.width) &&
4109       (y >= rect.y) && (y < rect.y + rect.height))
4110     {
4111       in_arrow = TRUE;
4112     }
4113
4114   if (touchscreen_mode)
4115     priv->upper_arrow_prelight = in_arrow;
4116
4117   if ((priv->upper_arrow_state & GTK_STATE_FLAG_INSENSITIVE) == 0)
4118     {
4119       gboolean arrow_pressed = FALSE;
4120
4121       if (priv->upper_arrow_visible && !priv->tearoff_active)
4122         {
4123           if (touchscreen_mode)
4124             {
4125               if (enter && priv->upper_arrow_prelight)
4126                 {
4127                   if (priv->scroll_timeout == 0)
4128                     {
4129                       /* Deselect the active item so that
4130                        * any submenus are popped down
4131                        */
4132                       gtk_menu_shell_deselect (menu_shell);
4133
4134                       gtk_menu_remove_scroll_timeout (menu);
4135                       priv->scroll_step = -MENU_SCROLL_STEP2; /* always fast */
4136
4137                       if (!motion)
4138                         {
4139                           /* Only do stuff on click. */
4140                           gtk_menu_start_scrolling (menu);
4141                           arrow_pressed = TRUE;
4142                         }
4143                     }
4144                   else
4145                     {
4146                       arrow_pressed = TRUE;
4147                     }
4148                 }
4149               else if (!enter)
4150                 {
4151                   gtk_menu_stop_scrolling (menu);
4152                 }
4153             }
4154           else /* !touchscreen_mode */
4155             {
4156               scroll_fast = (y < rect.y + MENU_SCROLL_FAST_ZONE);
4157
4158               if (enter && in_arrow &&
4159                   (!priv->upper_arrow_prelight ||
4160                    priv->scroll_fast != scroll_fast))
4161                 {
4162                   priv->upper_arrow_prelight = TRUE;
4163                   priv->scroll_fast = scroll_fast;
4164
4165                   /* Deselect the active item so that
4166                    * any submenus are popped down
4167                    */
4168                   gtk_menu_shell_deselect (menu_shell);
4169
4170                   gtk_menu_remove_scroll_timeout (menu);
4171                   priv->scroll_step = scroll_fast
4172                                         ? -MENU_SCROLL_STEP2
4173                                         : -MENU_SCROLL_STEP1;
4174
4175                   priv->scroll_timeout =
4176                     gdk_threads_add_timeout (scroll_fast
4177                                                ? MENU_SCROLL_TIMEOUT2
4178                                                : MENU_SCROLL_TIMEOUT1,
4179                                              gtk_menu_scroll_timeout, menu);
4180                 }
4181               else if (!enter && !in_arrow && priv->upper_arrow_prelight)
4182                 {
4183                   gtk_menu_stop_scrolling (menu);
4184                 }
4185             }
4186         }
4187
4188       /*  gtk_menu_start_scrolling() might have hit the top of the
4189        *  menu, so check if the button isn't insensitive before
4190        *  changing it to something else.
4191        */
4192       if ((priv->upper_arrow_state & GTK_STATE_FLAG_INSENSITIVE) == 0)
4193         {
4194           GtkStateFlags arrow_state = 0;
4195
4196           if (arrow_pressed)
4197             arrow_state |= GTK_STATE_FLAG_ACTIVE;
4198
4199           if (priv->upper_arrow_prelight)
4200             arrow_state |= GTK_STATE_FLAG_PRELIGHT;
4201
4202           if (arrow_state != priv->upper_arrow_state)
4203             {
4204               priv->upper_arrow_state = arrow_state;
4205
4206               gdk_window_invalidate_rect (gtk_widget_get_window (GTK_WIDGET (menu)),
4207                                           &rect, FALSE);
4208             }
4209         }
4210     }
4211
4212   /*  lower arrow handling  */
4213
4214   get_arrows_sensitive_area (menu, NULL, &rect);
4215
4216   in_arrow = FALSE;
4217   if (priv->lower_arrow_visible && !priv->tearoff_active &&
4218       (x >= rect.x) && (x < rect.x + rect.width) &&
4219       (y >= rect.y) && (y < rect.y + rect.height))
4220     {
4221       in_arrow = TRUE;
4222     }
4223
4224   if (touchscreen_mode)
4225     priv->lower_arrow_prelight = in_arrow;
4226
4227   if ((priv->lower_arrow_state & GTK_STATE_FLAG_INSENSITIVE) == 0)
4228     {
4229       gboolean arrow_pressed = FALSE;
4230
4231       if (priv->lower_arrow_visible && !priv->tearoff_active)
4232         {
4233           if (touchscreen_mode)
4234             {
4235               if (enter && priv->lower_arrow_prelight)
4236                 {
4237                   if (priv->scroll_timeout == 0)
4238                     {
4239                       /* Deselect the active item so that
4240                        * any submenus are popped down
4241                        */
4242                       gtk_menu_shell_deselect (menu_shell);
4243
4244                       gtk_menu_remove_scroll_timeout (menu);
4245                       priv->scroll_step = MENU_SCROLL_STEP2; /* always fast */
4246
4247                       if (!motion)
4248                         {
4249                           /* Only do stuff on click. */
4250                           gtk_menu_start_scrolling (menu);
4251                           arrow_pressed = TRUE;
4252                         }
4253                     }
4254                   else
4255                     {
4256                       arrow_pressed = TRUE;
4257                     }
4258                 }
4259               else if (!enter)
4260                 {
4261                   gtk_menu_stop_scrolling (menu);
4262                 }
4263             }
4264           else /* !touchscreen_mode */
4265             {
4266               scroll_fast = (y > rect.y + rect.height - MENU_SCROLL_FAST_ZONE);
4267
4268               if (enter && in_arrow &&
4269                   (!priv->lower_arrow_prelight ||
4270                    priv->scroll_fast != scroll_fast))
4271                 {
4272                   priv->lower_arrow_prelight = TRUE;
4273                   priv->scroll_fast = scroll_fast;
4274
4275                   /* Deselect the active item so that
4276                    * any submenus are popped down
4277                    */
4278                   gtk_menu_shell_deselect (menu_shell);
4279
4280                   gtk_menu_remove_scroll_timeout (menu);
4281                   priv->scroll_step = scroll_fast
4282                                         ? MENU_SCROLL_STEP2
4283                                         : MENU_SCROLL_STEP1;
4284
4285                   priv->scroll_timeout =
4286                     gdk_threads_add_timeout (scroll_fast
4287                                                ? MENU_SCROLL_TIMEOUT2
4288                                                : MENU_SCROLL_TIMEOUT1,
4289                                              gtk_menu_scroll_timeout, menu);
4290                 }
4291               else if (!enter && !in_arrow && priv->lower_arrow_prelight)
4292                 {
4293                   gtk_menu_stop_scrolling (menu);
4294                 }
4295             }
4296         }
4297
4298       /*  gtk_menu_start_scrolling() might have hit the bottom of the
4299        *  menu, so check if the button isn't insensitive before
4300        *  changing it to something else.
4301        */
4302       if ((priv->lower_arrow_state & GTK_STATE_FLAG_INSENSITIVE) == 0)
4303         {
4304           GtkStateFlags arrow_state = 0;
4305
4306           if (arrow_pressed)
4307             arrow_state |= GTK_STATE_FLAG_ACTIVE;
4308
4309           if (priv->lower_arrow_prelight)
4310             arrow_state |= GTK_STATE_FLAG_PRELIGHT;
4311
4312           if (arrow_state != priv->lower_arrow_state)
4313             {
4314               priv->lower_arrow_state = arrow_state;
4315
4316               gdk_window_invalidate_rect (gtk_widget_get_window (GTK_WIDGET (menu)),
4317                                           &rect, FALSE);
4318             }
4319         }
4320     }
4321 }
4322
4323 static gboolean
4324 gtk_menu_enter_notify (GtkWidget        *widget,
4325                        GdkEventCrossing *event)
4326 {
4327   GtkWidget *menu_item;
4328   GtkWidget *parent;
4329   gboolean   touchscreen_mode;
4330
4331   if (event->mode == GDK_CROSSING_GTK_GRAB ||
4332       event->mode == GDK_CROSSING_GTK_UNGRAB ||
4333       event->mode == GDK_CROSSING_STATE_CHANGED)
4334     return TRUE;
4335
4336   g_object_get (gtk_widget_get_settings (widget),
4337                 "gtk-touchscreen-mode", &touchscreen_mode,
4338                 NULL);
4339
4340   menu_item = gtk_get_event_widget ((GdkEvent*) event);
4341   if (GTK_IS_MENU (widget))
4342     {
4343       GtkMenuShell *menu_shell = GTK_MENU_SHELL (widget);
4344
4345       if (!menu_shell->priv->ignore_enter)
4346         gtk_menu_handle_scrolling (GTK_MENU (widget),
4347                                    event->x_root, event->y_root, TRUE, TRUE);
4348     }
4349
4350   if (!touchscreen_mode && GTK_IS_MENU_ITEM (menu_item))
4351     {
4352       GtkWidget *menu = gtk_widget_get_parent (menu_item);
4353
4354       if (GTK_IS_MENU (menu))
4355         {
4356           GtkMenuPrivate *priv = (GTK_MENU (menu))->priv;
4357           GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
4358
4359           if (priv->seen_item_enter)
4360             {
4361               /* This is the second enter we see for an item
4362                * on this menu. This means a release should always
4363                * mean activate.
4364                */
4365               menu_shell->priv->activate_time = 0;
4366             }
4367           else if ((event->detail != GDK_NOTIFY_NONLINEAR &&
4368                     event->detail != GDK_NOTIFY_NONLINEAR_VIRTUAL))
4369             {
4370               if (definitely_within_item (menu_item, event->x, event->y))
4371                 {
4372                   /* This is an actual user-enter (ie. not a pop-under)
4373                    * In this case, the user must either have entered
4374                    * sufficiently far enough into the item, or he must move
4375                    * far enough away from the enter point. (see
4376                    * gtk_menu_motion_notify())
4377                    */
4378                   menu_shell->priv->activate_time = 0;
4379                 }
4380             }
4381
4382           priv->seen_item_enter = TRUE;
4383         }
4384     }
4385
4386   /* If this is a faked enter (see gtk_menu_motion_notify), 'widget'
4387    * will not correspond to the event widget's parent.  Check to see
4388    * if we are in the parent's navigation region.
4389    */
4390   parent = gtk_widget_get_parent (menu_item);
4391   if (GTK_IS_MENU_ITEM (menu_item) && GTK_IS_MENU (parent) &&
4392       gtk_menu_navigating_submenu (GTK_MENU (parent),
4393                                    event->x_root, event->y_root))
4394     return TRUE;
4395
4396   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (widget, event);
4397 }
4398
4399 static gboolean
4400 gtk_menu_leave_notify (GtkWidget        *widget,
4401                        GdkEventCrossing *event)
4402 {
4403   GtkMenuShell *menu_shell;
4404   GtkMenu *menu;
4405   GtkMenuItem *menu_item;
4406   GtkWidget *event_widget;
4407
4408   if (event->mode == GDK_CROSSING_GTK_GRAB ||
4409       event->mode == GDK_CROSSING_GTK_UNGRAB ||
4410       event->mode == GDK_CROSSING_STATE_CHANGED)
4411     return TRUE;
4412
4413   menu = GTK_MENU (widget);
4414   menu_shell = GTK_MENU_SHELL (widget);
4415
4416   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
4417     return TRUE;
4418
4419   gtk_menu_handle_scrolling (menu, event->x_root, event->y_root, FALSE, TRUE);
4420
4421   event_widget = gtk_get_event_widget ((GdkEvent*) event);
4422
4423   if (!GTK_IS_MENU_ITEM (event_widget))
4424     return TRUE;
4425
4426   menu_item = GTK_MENU_ITEM (event_widget);
4427
4428   /* Here we check to see if we're leaving an active menu item
4429    * with a submenu, in which case we enter submenu navigation mode.
4430    */
4431   if (menu_shell->priv->active_menu_item != NULL
4432       && menu_item->priv->submenu != NULL
4433       && menu_item->priv->submenu_placement == GTK_LEFT_RIGHT)
4434     {
4435       if (GTK_MENU_SHELL (menu_item->priv->submenu)->priv->active)
4436         {
4437           gtk_menu_set_submenu_navigation_region (menu, menu_item, event);
4438           return TRUE;
4439         }
4440       else if (menu_item == GTK_MENU_ITEM (menu_shell->priv->active_menu_item))
4441         {
4442           /* We are leaving an active menu item with nonactive submenu.
4443            * Deselect it so we don't surprise the user with by popping
4444            * up a submenu _after_ he left the item.
4445            */
4446           gtk_menu_shell_deselect (menu_shell);
4447           return TRUE;
4448         }
4449     }
4450
4451   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->leave_notify_event (widget, event);
4452 }
4453
4454 static void
4455 gtk_menu_stop_navigating_submenu (GtkMenu *menu)
4456 {
4457   GtkMenuPrivate *priv = menu->priv;
4458
4459   priv->navigation_x = 0;
4460   priv->navigation_y = 0;
4461   priv->navigation_width = 0;
4462   priv->navigation_height = 0;
4463
4464   if (priv->navigation_timeout)
4465     {
4466       g_source_remove (priv->navigation_timeout);
4467       priv->navigation_timeout = 0;
4468     }
4469 }
4470
4471 /* When the timeout is elapsed, the navigation region is destroyed
4472  * and the menuitem under the pointer (if any) is selected.
4473  */
4474 static gboolean
4475 gtk_menu_stop_navigating_submenu_cb (gpointer user_data)
4476 {
4477   GtkMenuPopdownData *popdown_data = user_data;
4478   GtkMenu *menu = popdown_data->menu;
4479   GtkMenuPrivate *priv = menu->priv;
4480   GdkWindow *child_window;
4481
4482   gtk_menu_stop_navigating_submenu (menu);
4483
4484   if (gtk_widget_get_realized (GTK_WIDGET (menu)))
4485     {
4486       child_window = gdk_window_get_device_position (priv->bin_window,
4487                                                      popdown_data->device,
4488                                                      NULL, NULL, NULL);
4489
4490       if (child_window)
4491         {
4492           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
4493
4494           send_event->crossing.window = g_object_ref (child_window);
4495           send_event->crossing.time = GDK_CURRENT_TIME; /* Bogus */
4496           send_event->crossing.send_event = TRUE;
4497           gdk_event_set_device (send_event, popdown_data->device);
4498
4499           GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (GTK_WIDGET (menu), (GdkEventCrossing *)send_event);
4500
4501           gdk_event_free (send_event);
4502         }
4503     }
4504
4505   return FALSE;
4506 }
4507
4508 static gboolean
4509 gtk_menu_navigating_submenu (GtkMenu *menu,
4510                              gint     event_x,
4511                              gint     event_y)
4512 {
4513   GtkMenuPrivate *priv = menu->priv;
4514   gint width, height;
4515
4516   if (!gtk_menu_has_navigation_triangle (menu))
4517     return FALSE;
4518
4519   width = priv->navigation_width;
4520   height = priv->navigation_height;
4521
4522   /* Check if x/y are in the triangle spanned by the navigation parameters */
4523
4524   /* 1) Move the coordinates so the triangle starts at 0,0 */
4525   event_x -= priv->navigation_x;
4526   event_y -= priv->navigation_y;
4527
4528   /* 2) Ensure both legs move along the positive axis */
4529   if (width < 0)
4530     {
4531       event_x = -event_x;
4532       width = -width;
4533     }
4534   if (height < 0)
4535     {
4536       event_y = -event_y;
4537       height = -height;
4538     }
4539
4540   /* 3) Check that the given coordinate is inside the triangle. The formula
4541    * is a transformed form of this formula: x/w + y/h <= 1
4542    */
4543   if (event_x >= 0 && event_y >= 0 &&
4544       event_x * height + event_y * width <= width * height)
4545     {
4546       return TRUE;
4547     }
4548   else
4549     {
4550       gtk_menu_stop_navigating_submenu (menu);
4551       return FALSE;
4552     }
4553 }
4554
4555 static void
4556 gtk_menu_set_submenu_navigation_region (GtkMenu          *menu,
4557                                         GtkMenuItem      *menu_item,
4558                                         GdkEventCrossing *event)
4559 {
4560   GtkMenuPrivate *priv = menu->priv;
4561   gint submenu_left = 0;
4562   gint submenu_right = 0;
4563   gint submenu_top = 0;
4564   gint submenu_bottom = 0;
4565   gint width = 0;
4566   GtkWidget *event_widget;
4567   GtkMenuPopdownData *popdown_data;
4568   GdkWindow *window;
4569
4570   g_return_if_fail (menu_item->priv->submenu != NULL);
4571   g_return_if_fail (event != NULL);
4572
4573   event_widget = gtk_get_event_widget ((GdkEvent*) event);
4574
4575   window = gtk_widget_get_window (menu_item->priv->submenu);
4576   gdk_window_get_origin (window, &submenu_left, &submenu_top);
4577
4578   submenu_right = submenu_left + gdk_window_get_width (window);
4579   submenu_bottom = submenu_top + gdk_window_get_height (window);
4580
4581   width = gdk_window_get_width (gtk_widget_get_window (event_widget));
4582
4583   if (event->x >= 0 && event->x < width)
4584     {
4585       gint popdown_delay;
4586
4587       gtk_menu_stop_navigating_submenu (menu);
4588
4589       /* The navigation region is the triangle closest to the x/y
4590        * location of the rectangle. This is why the width or height
4591        * can be negative.
4592        */
4593       if (menu_item->priv->submenu_direction == GTK_DIRECTION_RIGHT)
4594         {
4595           /* right */
4596           priv->navigation_x = submenu_left;
4597           priv->navigation_width = event->x_root - submenu_left;
4598         }
4599       else
4600         {
4601           /* left */
4602           priv->navigation_x = submenu_right;
4603           priv->navigation_width = event->x_root - submenu_right;
4604         }
4605
4606       if (event->y < 0)
4607         {
4608           /* top */
4609           priv->navigation_y = event->y_root;
4610           priv->navigation_height = submenu_top - event->y_root - NAVIGATION_REGION_OVERSHOOT;
4611
4612           if (priv->navigation_height >= 0)
4613             return;
4614         }
4615       else
4616         {
4617           /* bottom */
4618           priv->navigation_y = event->y_root;
4619           priv->navigation_height = submenu_bottom - event->y_root + NAVIGATION_REGION_OVERSHOOT;
4620
4621           if (priv->navigation_height <= 0)
4622             return;
4623         }
4624
4625       g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
4626                     "gtk-menu-popdown-delay", &popdown_delay,
4627                     NULL);
4628
4629       popdown_data = g_new (GtkMenuPopdownData, 1);
4630       popdown_data->menu = menu;
4631       popdown_data->device = gdk_event_get_device ((GdkEvent *) event);
4632
4633       priv->navigation_timeout = gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT,
4634                                                                popdown_delay,
4635                                                                gtk_menu_stop_navigating_submenu_cb,
4636                                                                popdown_data,
4637                                                                (GDestroyNotify) g_free);
4638     }
4639 }
4640
4641 static void
4642 gtk_menu_deactivate (GtkMenuShell *menu_shell)
4643 {
4644   GtkWidget *parent;
4645
4646   g_return_if_fail (GTK_IS_MENU (menu_shell));
4647
4648   parent = menu_shell->priv->parent_menu_shell;
4649
4650   menu_shell->priv->activate_time = 0;
4651   gtk_menu_popdown (GTK_MENU (menu_shell));
4652
4653   if (parent)
4654     gtk_menu_shell_deactivate (GTK_MENU_SHELL (parent));
4655 }
4656
4657 static void
4658 gtk_menu_position (GtkMenu  *menu,
4659                    gboolean  set_scroll_offset)
4660 {
4661   GtkMenuPrivate *priv = menu->priv;
4662   GtkWidget *widget;
4663   GtkRequisition requisition;
4664   gint x, y;
4665   gint scroll_offset;
4666   gint menu_height;
4667   GdkScreen *screen;
4668   GdkScreen *pointer_screen;
4669   GdkRectangle monitor;
4670   GdkDevice *pointer;
4671
4672   widget = GTK_WIDGET (menu);
4673
4674   screen = gtk_widget_get_screen (widget);
4675   pointer = _gtk_menu_shell_get_grab_device (GTK_MENU_SHELL (menu));
4676   gdk_device_get_position (pointer, &pointer_screen, &x, &y);
4677
4678   /* Get the minimum height for minimum width to figure out
4679    * the right place to popup the menu.
4680    */
4681   gtk_widget_get_preferred_size (widget, &requisition, NULL);
4682
4683   if (pointer_screen != screen)
4684     {
4685       /* Pointer is on a different screen; roughly center the
4686        * menu on the screen. If someone was using multiscreen
4687        * + Xinerama together they'd probably want something
4688        * fancier; but that is likely to be vanishingly rare.
4689        */
4690       x = MAX (0, (gdk_screen_get_width (screen) - requisition.width) / 2);
4691       y = MAX (0, (gdk_screen_get_height (screen) - requisition.height) / 2);
4692     }
4693
4694   priv->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
4695   priv->initially_pushed_in = FALSE;
4696
4697   /* Set the type hint here to allow custom position functions
4698    * to set a different hint
4699    */
4700   if (!gtk_widget_get_visible (priv->toplevel))
4701     gtk_window_set_type_hint (GTK_WINDOW (priv->toplevel), GDK_WINDOW_TYPE_HINT_POPUP_MENU);
4702
4703   if (priv->position_func)
4704     {
4705       (* priv->position_func) (menu, &x, &y, &priv->initially_pushed_in,
4706                                priv->position_func_data);
4707
4708       if (priv->monitor_num < 0)
4709         priv->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
4710
4711       gdk_screen_get_monitor_geometry (screen, priv->monitor_num, &monitor);
4712     }
4713   else
4714     {
4715       gint space_left, space_right, space_above, space_below;
4716       gint needed_width;
4717       gint needed_height;
4718       GtkBorder border;
4719       gboolean rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
4720
4721       get_menu_border (widget, &border);
4722
4723       /* The placement of popup menus horizontally works like this (with
4724        * RTL in parentheses)
4725        *
4726        * - If there is enough room to the right (left) of the mouse cursor,
4727        *   position the menu there.
4728        *
4729        * - Otherwise, if if there is enough room to the left (right) of the
4730        *   mouse cursor, position the menu there.
4731        *
4732        * - Otherwise if the menu is smaller than the monitor, position it
4733        *   on the side of the mouse cursor that has the most space available
4734        *
4735        * - Otherwise (if there is simply not enough room for the menu on the
4736        *   monitor), position it as far left (right) as possible.
4737        *
4738        * Positioning in the vertical direction is similar: first try below
4739        * mouse cursor, then above.
4740        */
4741       gdk_screen_get_monitor_geometry (screen, priv->monitor_num, &monitor);
4742
4743       space_left = x - monitor.x;
4744       space_right = monitor.x + monitor.width - x - 1;
4745       space_above = y - monitor.y;
4746       space_below = monitor.y + monitor.height - y - 1;
4747
4748       /* Position horizontally. */
4749
4750       /* the amount of space we need to position the menu.
4751        * Note the menu is offset "thickness" pixels
4752        */
4753       needed_width = requisition.width - border.left;
4754
4755       if (needed_width <= space_left ||
4756           needed_width <= space_right)
4757         {
4758           if ((rtl  && needed_width <= space_left) ||
4759               (!rtl && needed_width >  space_right))
4760             {
4761               /* position left */
4762               x = x + border.left - requisition.width + 1;
4763             }
4764           else
4765             {
4766               /* position right */
4767               x = x - border.right;
4768             }
4769
4770           /* x is clamped on-screen further down */
4771         }
4772       else if (requisition.width <= monitor.width)
4773         {
4774           /* the menu is too big to fit on either side of the mouse
4775            * cursor, but smaller than the monitor. Position it on
4776            * the side that has the most space
4777            */
4778           if (space_left > space_right)
4779             {
4780               /* left justify */
4781               x = monitor.x;
4782             }
4783           else
4784             {
4785               /* right justify */
4786               x = monitor.x + monitor.width - requisition.width;
4787             }
4788         }
4789       else /* menu is simply too big for the monitor */
4790         {
4791           if (rtl)
4792             {
4793               /* right justify */
4794               x = monitor.x + monitor.width - requisition.width;
4795             }
4796           else
4797             {
4798               /* left justify */
4799               x = monitor.x;
4800             }
4801         }
4802
4803       /* Position vertically.
4804        * The algorithm is the same as above, but simpler
4805        * because we don't have to take RTL into account.
4806        */
4807       needed_height = requisition.height - border.top;
4808
4809       if (needed_height <= space_above ||
4810           needed_height <= space_below)
4811         {
4812           if (needed_height <= space_below)
4813             y = y - border.top;
4814           else
4815             y = y + border.bottom - requisition.height + 1;
4816
4817           y = CLAMP (y, monitor.y,
4818                      monitor.y + monitor.height - requisition.height);
4819         }
4820       else if (needed_height > space_below && needed_height > space_above)
4821         {
4822           if (space_below >= space_above)
4823             y = monitor.y + monitor.height - requisition.height;
4824           else
4825             y = monitor.y;
4826         }
4827       else
4828         {
4829           y = monitor.y;
4830         }
4831     }
4832
4833   scroll_offset = 0;
4834
4835   if (priv->initially_pushed_in)
4836     {
4837       menu_height = requisition.height;
4838
4839       if (y + menu_height > monitor.y + monitor.height)
4840         {
4841           scroll_offset -= y + menu_height - (monitor.y + monitor.height);
4842           y = (monitor.y + monitor.height) - menu_height;
4843         }
4844
4845       if (y < monitor.y)
4846         {
4847           scroll_offset += monitor.y - y;
4848           y = monitor.y;
4849         }
4850     }
4851
4852   /* FIXME: should this be done in the various position_funcs ? */
4853   x = CLAMP (x, monitor.x, MAX (monitor.x, monitor.x + monitor.width - requisition.width));
4854
4855   if (GTK_MENU_SHELL (menu)->priv->active)
4856     {
4857       priv->have_position = TRUE;
4858       priv->position_x = x;
4859       priv->position_y = y;
4860     }
4861
4862   if (y + requisition.height > monitor.y + monitor.height)
4863     requisition.height = (monitor.y + monitor.height) - y;
4864
4865   if (y < monitor.y)
4866     {
4867       scroll_offset += monitor.y - y;
4868       requisition.height -= monitor.y - y;
4869       y = monitor.y;
4870     }
4871
4872   if (scroll_offset > 0)
4873     {
4874       GtkBorder arrow_border;
4875
4876       get_arrows_border (menu, &arrow_border);
4877       scroll_offset += arrow_border.top;
4878     }
4879
4880   gtk_window_move (GTK_WINDOW (GTK_MENU_SHELL (menu)->priv->active ? priv->toplevel : priv->tearoff_window),
4881                    x, y);
4882
4883   if (!GTK_MENU_SHELL (menu)->priv->active)
4884     {
4885       gtk_window_resize (GTK_WINDOW (priv->tearoff_window),
4886                          requisition.width, requisition.height);
4887     }
4888
4889   if (set_scroll_offset)
4890     priv->scroll_offset = scroll_offset;
4891 }
4892
4893 static void
4894 gtk_menu_remove_scroll_timeout (GtkMenu *menu)
4895 {
4896   GtkMenuPrivate *priv = menu->priv;
4897
4898   if (priv->scroll_timeout)
4899     {
4900       g_source_remove (priv->scroll_timeout);
4901       priv->scroll_timeout = 0;
4902     }
4903 }
4904
4905 static void
4906 gtk_menu_stop_scrolling (GtkMenu *menu)
4907 {
4908   GtkMenuPrivate *priv = menu->priv;
4909   gboolean touchscreen_mode;
4910
4911   gtk_menu_remove_scroll_timeout (menu);
4912
4913   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
4914                 "gtk-touchscreen-mode", &touchscreen_mode,
4915                 NULL);
4916
4917   if (!touchscreen_mode)
4918     {
4919       priv->upper_arrow_prelight = FALSE;
4920       priv->lower_arrow_prelight = FALSE;
4921     }
4922 }
4923
4924 static void
4925 gtk_menu_scroll_to (GtkMenu *menu,
4926                     gint    offset)
4927 {
4928   GtkMenuPrivate *priv = menu->priv;
4929   GtkAllocation allocation;
4930   GtkBorder arrow_border, border;
4931   GtkWidget *widget;
4932   gint x, y;
4933   gint view_width, view_height;
4934   gint border_width;
4935   gint menu_height;
4936   guint vertical_padding;
4937   guint horizontal_padding;
4938   gboolean double_arrows;
4939
4940   widget = GTK_WIDGET (menu);
4941
4942   if (priv->tearoff_active && priv->tearoff_adjustment)
4943     gtk_adjustment_set_value (priv->tearoff_adjustment, offset);
4944
4945   /* Move/resize the viewport according to arrows: */
4946   gtk_widget_get_allocation (widget, &allocation);
4947   view_width = allocation.width;
4948   view_height = allocation.height;
4949
4950   gtk_widget_style_get (GTK_WIDGET (menu),
4951                         "vertical-padding", &vertical_padding,
4952                         "horizontal-padding", &horizontal_padding,
4953                         NULL);
4954
4955   get_menu_border (widget, &border);
4956   double_arrows = get_double_arrows (menu);
4957
4958   border_width = gtk_container_get_border_width (GTK_CONTAINER (menu));
4959
4960   view_width -= (2 * (border_width + horizontal_padding)) + border.left + border.right;
4961   view_height -= (2 * (border_width + vertical_padding)) + border.top + border.bottom;
4962   menu_height = priv->requested_height - (2 * (border_width + vertical_padding)) -
4963     border.top - border.bottom;
4964
4965   x = border_width + border.left + horizontal_padding;
4966   y = border_width + border.top + vertical_padding;
4967
4968   if (double_arrows && !priv->tearoff_active)
4969     {
4970       if (view_height < menu_height               ||
4971           (offset > 0 && priv->scroll_offset > 0) ||
4972           (offset < 0 && priv->scroll_offset < 0))
4973         {
4974           GtkStateFlags upper_arrow_previous_state = priv->upper_arrow_state;
4975           GtkStateFlags lower_arrow_previous_state = priv->lower_arrow_state;
4976
4977           if (!priv->upper_arrow_visible || !priv->lower_arrow_visible)
4978             gtk_widget_queue_draw (GTK_WIDGET (menu));
4979
4980           priv->upper_arrow_visible = priv->lower_arrow_visible = TRUE;
4981
4982           get_arrows_border (menu, &arrow_border);
4983           y += arrow_border.top;
4984           view_height -= arrow_border.top;
4985           view_height -= arrow_border.bottom;
4986
4987           if (offset <= 0)
4988             priv->upper_arrow_state |= GTK_STATE_FLAG_INSENSITIVE;
4989           else
4990             {
4991               priv->upper_arrow_state &= ~(GTK_STATE_FLAG_INSENSITIVE);
4992
4993               if (priv->upper_arrow_prelight)
4994                 priv->upper_arrow_state |= GTK_STATE_FLAG_PRELIGHT;
4995               else
4996                 priv->upper_arrow_state &= ~(GTK_STATE_FLAG_PRELIGHT);
4997             }
4998
4999           if (offset >= menu_height - view_height)
5000             priv->lower_arrow_state |= GTK_STATE_FLAG_INSENSITIVE;
5001           else
5002             {
5003               priv->lower_arrow_state &= ~(GTK_STATE_FLAG_INSENSITIVE);
5004
5005               if (priv->lower_arrow_prelight)
5006                 priv->lower_arrow_state |= GTK_STATE_FLAG_PRELIGHT;
5007               else
5008                 priv->lower_arrow_state &= ~(GTK_STATE_FLAG_PRELIGHT);
5009             }
5010
5011           if ((priv->upper_arrow_state != upper_arrow_previous_state) ||
5012               (priv->lower_arrow_state != lower_arrow_previous_state))
5013             gtk_widget_queue_draw (GTK_WIDGET (menu));
5014
5015           if ((upper_arrow_previous_state & GTK_STATE_FLAG_INSENSITIVE) == 0 &&
5016               (priv->upper_arrow_state & GTK_STATE_FLAG_INSENSITIVE) != 0)
5017             {
5018               /* At the upper border, possibly remove timeout */
5019               if (priv->scroll_step < 0)
5020                 {
5021                   gtk_menu_stop_scrolling (menu);
5022                   gtk_widget_queue_draw (GTK_WIDGET (menu));
5023                 }
5024             }
5025
5026           if ((lower_arrow_previous_state & GTK_STATE_FLAG_INSENSITIVE) == 0 &&
5027               (priv->lower_arrow_state & GTK_STATE_FLAG_INSENSITIVE) != 0)
5028             {
5029               /* At the lower border, possibly remove timeout */
5030               if (priv->scroll_step > 0)
5031                 {
5032                   gtk_menu_stop_scrolling (menu);
5033                   gtk_widget_queue_draw (GTK_WIDGET (menu));
5034                 }
5035             }
5036         }
5037       else if (priv->upper_arrow_visible || priv->lower_arrow_visible)
5038         {
5039           offset = 0;
5040
5041           priv->upper_arrow_visible = priv->lower_arrow_visible = FALSE;
5042           priv->upper_arrow_prelight = priv->lower_arrow_prelight = FALSE;
5043
5044           gtk_menu_stop_scrolling (menu);
5045           gtk_widget_queue_draw (GTK_WIDGET (menu));
5046         }
5047     }
5048   else if (!priv->tearoff_active)
5049     {
5050       gboolean last_visible;
5051
5052       last_visible = priv->upper_arrow_visible;
5053       priv->upper_arrow_visible = offset > 0;
5054
5055       /* upper_arrow_visible may have changed, so requery the border */
5056       get_arrows_border (menu, &arrow_border);
5057       view_height -= arrow_border.top;
5058
5059       if ((last_visible != priv->upper_arrow_visible) &&
5060           !priv->upper_arrow_visible)
5061         {
5062           priv->upper_arrow_prelight = FALSE;
5063
5064           /* If we hide the upper arrow, possibly remove timeout */
5065           if (priv->scroll_step < 0)
5066             {
5067               gtk_menu_stop_scrolling (menu);
5068               gtk_widget_queue_draw (GTK_WIDGET (menu));
5069             }
5070         }
5071
5072       last_visible = priv->lower_arrow_visible;
5073       priv->lower_arrow_visible = offset < menu_height - view_height;
5074
5075       /* lower_arrow_visible may have changed, so requery the border */
5076       get_arrows_border (menu, &arrow_border);
5077       view_height -= arrow_border.bottom;
5078
5079       if ((last_visible != priv->lower_arrow_visible) &&
5080            !priv->lower_arrow_visible)
5081         {
5082           priv->lower_arrow_prelight = FALSE;
5083
5084           /* If we hide the lower arrow, possibly remove timeout */
5085           if (priv->scroll_step > 0)
5086             {
5087               gtk_menu_stop_scrolling (menu);
5088               gtk_widget_queue_draw (GTK_WIDGET (menu));
5089             }
5090         }
5091
5092       y += arrow_border.top;
5093     }
5094
5095   /* Scroll the menu: */
5096   if (gtk_widget_get_realized (widget))
5097     gdk_window_move (priv->bin_window, 0, -offset);
5098
5099   if (gtk_widget_get_realized (widget))
5100     gdk_window_move_resize (priv->view_window, x, y, view_width, view_height);
5101
5102   priv->scroll_offset = offset;
5103 }
5104
5105 static gboolean
5106 compute_child_offset (GtkMenu   *menu,
5107                       GtkWidget *menu_item,
5108                       gint      *offset,
5109                       gint      *height,
5110                       gboolean  *is_last_child)
5111 {
5112   GtkMenuPrivate *priv = menu->priv;
5113   gint item_top_attach;
5114   gint item_bottom_attach;
5115   gint child_offset = 0;
5116   gint i;
5117
5118   get_effective_child_attach (menu_item, NULL, NULL,
5119                               &item_top_attach, &item_bottom_attach);
5120
5121   /* there is a possibility that we get called before _size_request,
5122    * so check the height table for safety.
5123    */
5124   if (!priv->heights || priv->heights_length < gtk_menu_get_n_rows (menu))
5125     return FALSE;
5126
5127   /* when we have a row with only invisible children, it's height will
5128    * be zero, so there's no need to check WIDGET_VISIBLE here
5129    */
5130   for (i = 0; i < item_top_attach; i++)
5131     child_offset += priv->heights[i];
5132
5133   if (is_last_child)
5134     *is_last_child = (item_bottom_attach == gtk_menu_get_n_rows (menu));
5135   if (offset)
5136     *offset = child_offset;
5137   if (height)
5138     *height = priv->heights[item_top_attach];
5139
5140   return TRUE;
5141 }
5142
5143 static void
5144 gtk_menu_scroll_item_visible (GtkMenuShell *menu_shell,
5145                               GtkWidget    *menu_item)
5146 {
5147   GtkMenu *menu = GTK_MENU (menu_shell);
5148   GtkMenuPrivate *priv = menu->priv;
5149   GtkWidget *widget = GTK_WIDGET (menu_shell);
5150   gint child_offset, child_height;
5151   gint height;
5152   gint y;
5153   gint arrow_height;
5154   gboolean last_child = 0;
5155
5156   /* We need to check if the selected item fully visible.
5157    * If not we need to scroll the menu so that it becomes fully
5158    * visible.
5159    */
5160   if (compute_child_offset (menu, menu_item,
5161                             &child_offset, &child_height, &last_child))
5162     {
5163       guint vertical_padding;
5164       gboolean double_arrows;
5165       GtkStyleContext *context;
5166       GtkStateFlags state;
5167       GtkBorder padding;
5168
5169       y = priv->scroll_offset;
5170       height = gdk_window_get_height (gtk_widget_get_window (widget));
5171
5172       gtk_widget_style_get (widget,
5173                             "vertical-padding", &vertical_padding,
5174                             NULL);
5175
5176       double_arrows = get_double_arrows (menu);
5177
5178       context = gtk_widget_get_style_context (widget);
5179       state = gtk_widget_get_state_flags (widget);
5180       gtk_style_context_get_padding (context, state, &padding);
5181
5182       height -= 2 * gtk_container_get_border_width (GTK_CONTAINER (menu)) +
5183                 padding.top + padding.bottom +
5184                 2 * vertical_padding;
5185       if (child_offset < y)
5186         {
5187           /* Ignore the enter event we might get if the pointer
5188            * is on the menu
5189            */
5190           menu_shell->priv->ignore_enter = TRUE;
5191           gtk_menu_scroll_to (menu, child_offset);
5192         }
5193       else
5194         {
5195           GtkBorder arrow_border;
5196
5197           arrow_height = 0;
5198
5199           get_arrows_border (menu, &arrow_border);
5200           if (!priv->tearoff_active)
5201             arrow_height = arrow_border.top + arrow_border.bottom;
5202
5203           if (child_offset + child_height > y + height - arrow_height)
5204             {
5205               arrow_height = 0;
5206               if ((!last_child && !priv->tearoff_active) || double_arrows)
5207                 arrow_height += arrow_border.bottom;
5208
5209               y = child_offset + child_height - height + arrow_height;
5210               if (((y > 0) && !priv->tearoff_active) || double_arrows)
5211                 {
5212                   /* Need upper arrow */
5213                   arrow_height += arrow_border.top;
5214                   y = child_offset + child_height - height + arrow_height;
5215                 }
5216               /* Ignore the enter event we might get if the pointer
5217                * is on the menu
5218                */
5219               menu_shell->priv->ignore_enter = TRUE;
5220               gtk_menu_scroll_to (menu, y);
5221             }
5222         }
5223     }
5224 }
5225
5226 static void
5227 gtk_menu_select_item (GtkMenuShell *menu_shell,
5228                       GtkWidget    *menu_item)
5229 {
5230   GtkMenu *menu = GTK_MENU (menu_shell);
5231
5232   if (gtk_widget_get_realized (GTK_WIDGET (menu)))
5233     gtk_menu_scroll_item_visible (menu_shell, menu_item);
5234
5235   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->select_item (menu_shell, menu_item);
5236 }
5237
5238
5239 /* Reparent the menu, taking care of the refcounting
5240  *
5241  * If unrealize is true we force a unrealize while reparenting the parent.
5242  * This can help eliminate flicker in some cases.
5243  *
5244  * What happens is that when the menu is unrealized and then re-realized,
5245  * the allocations are as follows:
5246  *
5247  *  parent - 1x1 at (0,0)
5248  *  child1 - 100x20 at (0,0)
5249  *  child2 - 100x20 at (0,20)
5250  *  child3 - 100x20 at (0,40)
5251  *
5252  * That is, the parent is small but the children are full sized. Then,
5253  * when the queued_resize gets processed, the parent gets resized to
5254  * full size.
5255  *
5256  * But in order to eliminate flicker when scrolling, gdkgeometry-x11.c
5257  * contains the following logic:
5258  *
5259  * - if a move or resize operation on a window would change the clip
5260  *   region on the children, then before the window is resized
5261  *   the background for children is temporarily set to None, the
5262  *   move/resize done, and the background for the children restored.
5263  *
5264  * So, at the point where the parent is resized to final size, the
5265  * background for the children is temporarily None, and thus they
5266  * are not cleared to the background color and the previous background
5267  * (the image of the menu) is left in place.
5268  */
5269 static void
5270 gtk_menu_reparent (GtkMenu   *menu,
5271                    GtkWidget *new_parent,
5272                    gboolean   unrealize)
5273 {
5274   GObject *object = G_OBJECT (menu);
5275   GtkWidget *widget = GTK_WIDGET (menu);
5276   gboolean was_floating = g_object_is_floating (object);
5277
5278   g_object_ref_sink (object);
5279
5280   if (unrealize)
5281     {
5282       g_object_ref (object);
5283       gtk_container_remove (GTK_CONTAINER (gtk_widget_get_parent (widget)), widget);
5284       gtk_container_add (GTK_CONTAINER (new_parent), widget);
5285       g_object_unref (object);
5286     }
5287   else
5288     gtk_widget_reparent (widget, new_parent);
5289
5290   if (was_floating)
5291     g_object_force_floating (object);
5292   else
5293     g_object_unref (object);
5294 }
5295
5296 static void
5297 gtk_menu_show_all (GtkWidget *widget)
5298 {
5299   /* Show children, but not self. */
5300   gtk_container_foreach (GTK_CONTAINER (widget), (GtkCallback) gtk_widget_show_all, NULL);
5301 }
5302
5303 /**
5304  * gtk_menu_set_screen:
5305  * @menu: a #GtkMenu
5306  * @screen: (allow-none): a #GdkScreen, or %NULL if the screen should be
5307  *          determined by the widget the menu is attached to
5308  *
5309  * Sets the #GdkScreen on which the menu will be displayed.
5310  *
5311  * Since: 2.2
5312  */
5313 void
5314 gtk_menu_set_screen (GtkMenu   *menu,
5315                      GdkScreen *screen)
5316 {
5317   g_return_if_fail (GTK_IS_MENU (menu));
5318   g_return_if_fail (screen == NULL || GDK_IS_SCREEN (screen));
5319
5320   g_object_set_data (G_OBJECT (menu), I_("gtk-menu-explicit-screen"), screen);
5321
5322   if (screen)
5323     {
5324       menu_change_screen (menu, screen);
5325     }
5326   else
5327     {
5328       GtkWidget *attach_widget = gtk_menu_get_attach_widget (menu);
5329       if (attach_widget)
5330         attach_widget_screen_changed (attach_widget, NULL, menu);
5331     }
5332 }
5333
5334 /**
5335  * gtk_menu_attach:
5336  * @menu: a #GtkMenu
5337  * @child: a #GtkMenuItem
5338  * @left_attach: The column number to attach the left side of the item to
5339  * @right_attach: The column number to attach the right side of the item to
5340  * @top_attach: The row number to attach the top of the item to
5341  * @bottom_attach: The row number to attach the bottom of the item to
5342  *
5343  * Adds a new #GtkMenuItem to a (table) menu. The number of 'cells' that
5344  * an item will occupy is specified by @left_attach, @right_attach,
5345  * @top_attach and @bottom_attach. These each represent the leftmost,
5346  * rightmost, uppermost and lower column and row numbers of the table.
5347  * (Columns and rows are indexed from zero).
5348  *
5349  * Note that this function is not related to gtk_menu_detach().
5350  *
5351  * Since: 2.4
5352  */
5353 void
5354 gtk_menu_attach (GtkMenu   *menu,
5355                  GtkWidget *child,
5356                  guint      left_attach,
5357                  guint      right_attach,
5358                  guint      top_attach,
5359                  guint      bottom_attach)
5360 {
5361   GtkMenuShell *menu_shell;
5362   GtkWidget *parent;
5363
5364   g_return_if_fail (GTK_IS_MENU (menu));
5365   g_return_if_fail (GTK_IS_MENU_ITEM (child));
5366   parent = gtk_widget_get_parent (child);
5367   g_return_if_fail (parent == NULL || parent == GTK_WIDGET (menu));
5368   g_return_if_fail (left_attach < right_attach);
5369   g_return_if_fail (top_attach < bottom_attach);
5370
5371   menu_shell = GTK_MENU_SHELL (menu);
5372
5373   if (!parent)
5374     {
5375       AttachInfo *ai = get_attach_info (child);
5376
5377       ai->left_attach = left_attach;
5378       ai->right_attach = right_attach;
5379       ai->top_attach = top_attach;
5380       ai->bottom_attach = bottom_attach;
5381
5382       menu_shell->priv->children = g_list_append (menu_shell->priv->children, child);
5383
5384       gtk_widget_set_parent (child, GTK_WIDGET (menu));
5385
5386       menu_queue_resize (menu);
5387     }
5388   else
5389     {
5390       gtk_container_child_set (GTK_CONTAINER (parent), child,
5391                                "left-attach",   left_attach,
5392                                "right-attach",  right_attach,
5393                                "top-attach",    top_attach,
5394                                "bottom-attach", bottom_attach,
5395                                NULL);
5396     }
5397 }
5398
5399 static gint
5400 gtk_menu_get_popup_delay (GtkMenuShell *menu_shell)
5401 {
5402   gint popup_delay;
5403
5404   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu_shell)),
5405                 "gtk-menu-popup-delay", &popup_delay,
5406                 NULL);
5407
5408   return popup_delay;
5409 }
5410
5411 static GtkWidget *
5412 find_child_containing (GtkMenuShell *menu_shell,
5413                        int           left,
5414                        int           right,
5415                        int           top,
5416                        int           bottom)
5417 {
5418   GList *list;
5419
5420   /* find a child which includes the area given by
5421    * left, right, top, bottom.
5422    */
5423   for (list = menu_shell->priv->children; list; list = list->next)
5424     {
5425       gint l, r, t, b;
5426
5427       if (!_gtk_menu_item_is_selectable (list->data))
5428         continue;
5429
5430       get_effective_child_attach (list->data, &l, &r, &t, &b);
5431
5432       if (l <= left && right <= r && t <= top && bottom <= b)
5433         return GTK_WIDGET (list->data);
5434     }
5435
5436   return NULL;
5437 }
5438
5439 static void
5440 gtk_menu_move_current (GtkMenuShell         *menu_shell,
5441                        GtkMenuDirectionType  direction)
5442 {
5443   GtkMenu *menu = GTK_MENU (menu_shell);
5444   gint i;
5445   gint l, r, t, b;
5446   GtkWidget *match = NULL;
5447
5448   if (gtk_widget_get_direction (GTK_WIDGET (menu_shell)) == GTK_TEXT_DIR_RTL)
5449     {
5450       switch (direction)
5451         {
5452         case GTK_MENU_DIR_CHILD:
5453           direction = GTK_MENU_DIR_PARENT;
5454           break;
5455         case GTK_MENU_DIR_PARENT:
5456           direction = GTK_MENU_DIR_CHILD;
5457           break;
5458         default: ;
5459         }
5460     }
5461
5462   /* use special table menu key bindings */
5463   if (menu_shell->priv->active_menu_item && gtk_menu_get_n_columns (menu) > 1)
5464     {
5465       get_effective_child_attach (menu_shell->priv->active_menu_item, &l, &r, &t, &b);
5466
5467       if (direction == GTK_MENU_DIR_NEXT)
5468         {
5469           for (i = b; i < gtk_menu_get_n_rows (menu); i++)
5470             {
5471               match = find_child_containing (menu_shell, l, l + 1, i, i + 1);
5472               if (match)
5473                 break;
5474             }
5475
5476           if (!match)
5477             {
5478               /* wrap around */
5479               for (i = 0; i < t; i++)
5480                 {
5481                   match = find_child_containing (menu_shell,
5482                                                  l, l + 1, i, i + 1);
5483                   if (match)
5484                     break;
5485                 }
5486             }
5487         }
5488       else if (direction == GTK_MENU_DIR_PREV)
5489         {
5490           for (i = t; i > 0; i--)
5491             {
5492               match = find_child_containing (menu_shell,
5493                                              l, l + 1, i - 1, i);
5494               if (match)
5495                 break;
5496             }
5497
5498           if (!match)
5499             {
5500               /* wrap around */
5501               for (i = gtk_menu_get_n_rows (menu); i > b; i--)
5502                 {
5503                   match = find_child_containing (menu_shell,
5504                                                  l, l + 1, i - 1, i);
5505                   if (match)
5506                     break;
5507                 }
5508             }
5509         }
5510       else if (direction == GTK_MENU_DIR_PARENT)
5511         {
5512           /* we go one left if possible */
5513           if (l > 0)
5514             match = find_child_containing (menu_shell,
5515                                            l - 1, l, t, t + 1);
5516
5517           if (!match)
5518             {
5519               GtkWidget *parent = menu_shell->priv->parent_menu_shell;
5520
5521               if (!parent
5522                   || g_list_length (GTK_MENU_SHELL (parent)->priv->children) <= 1)
5523                 match = menu_shell->priv->active_menu_item;
5524             }
5525         }
5526       else if (direction == GTK_MENU_DIR_CHILD)
5527         {
5528           /* we go one right if possible */
5529           if (r < gtk_menu_get_n_columns (menu))
5530             match = find_child_containing (menu_shell, r, r + 1, t, t + 1);
5531
5532           if (!match)
5533             {
5534               GtkWidget *parent = menu_shell->priv->parent_menu_shell;
5535
5536               if (! GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->priv->submenu &&
5537                   (!parent ||
5538                    g_list_length (GTK_MENU_SHELL (parent)->priv->children) <= 1))
5539                 match = menu_shell->priv->active_menu_item;
5540             }
5541         }
5542
5543       if (match)
5544         {
5545           gtk_menu_shell_select_item (menu_shell, match);
5546           return;
5547         }
5548     }
5549
5550   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->move_current (menu_shell, direction);
5551 }
5552
5553 static gint
5554 get_visible_size (GtkMenu *menu)
5555 {
5556   GtkMenuPrivate *priv = menu->priv;
5557   GtkAllocation allocation;
5558   GtkWidget *widget = GTK_WIDGET (menu);
5559   GtkContainer *container = GTK_CONTAINER (menu);
5560   GtkStyleContext *context;
5561   GtkStateFlags state;
5562   GtkBorder padding;
5563   gint menu_height;
5564
5565   gtk_widget_get_allocation (widget, &allocation);
5566
5567   context = gtk_widget_get_style_context (widget);
5568   state = gtk_widget_get_state_flags (widget);
5569   gtk_style_context_get_padding (context, state, &padding);
5570
5571   menu_height = (allocation.height -
5572                  (2 * gtk_container_get_border_width (container)) -
5573                  padding.top - padding.bottom);
5574
5575   if (!priv->tearoff_active)
5576     {
5577       GtkBorder arrow_border;
5578
5579       get_arrows_border (menu, &arrow_border);
5580       menu_height -= arrow_border.top;
5581       menu_height -= arrow_border.bottom;
5582     }
5583
5584   return menu_height;
5585 }
5586
5587 /* Find the sensitive on-screen child containing @y, or if none,
5588  * the nearest selectable onscreen child. (%NULL if none)
5589  */
5590 static GtkWidget *
5591 child_at (GtkMenu *menu,
5592           gint     y)
5593 {
5594   GtkMenuPrivate *priv = menu->priv;
5595   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
5596   GtkWidget *child = NULL;
5597   gint child_offset = 0;
5598   GList *children;
5599   gint menu_height;
5600   gint lower, upper; /* Onscreen bounds */
5601
5602   menu_height = get_visible_size (menu);
5603   lower = priv->scroll_offset;
5604   upper = priv->scroll_offset + menu_height;
5605
5606   for (children = menu_shell->priv->children; children; children = children->next)
5607     {
5608       if (gtk_widget_get_visible (children->data))
5609         {
5610           GtkRequisition child_requisition;
5611
5612           gtk_widget_get_preferred_size (children->data,
5613                                          &child_requisition, NULL);
5614
5615           if (_gtk_menu_item_is_selectable (children->data) &&
5616               child_offset >= lower &&
5617               child_offset + child_requisition.height <= upper)
5618             {
5619               child = children->data;
5620
5621               if (child_offset + child_requisition.height > y &&
5622                   !GTK_IS_TEAROFF_MENU_ITEM (child))
5623                 return child;
5624             }
5625
5626           child_offset += child_requisition.height;
5627         }
5628     }
5629
5630   return child;
5631 }
5632
5633 static gint
5634 get_menu_height (GtkMenu *menu)
5635 {
5636   GtkMenuPrivate *priv = menu->priv;
5637   GtkAllocation allocation;
5638   GtkWidget *widget = GTK_WIDGET (menu);
5639   GtkStyleContext *context;
5640   GtkStateFlags state;
5641   GtkBorder padding, border;
5642   gint height;
5643
5644   gtk_widget_get_allocation (widget, &allocation);
5645
5646   context = gtk_widget_get_style_context (widget);
5647   state = gtk_widget_get_state_flags (widget);
5648   gtk_style_context_get_padding (context, state, &padding);
5649   gtk_style_context_get_border (context, state, &border);
5650
5651   height = allocation.height;
5652   height -= (gtk_container_get_border_width (GTK_CONTAINER (widget)) * 2) +
5653     padding.top + padding.bottom + border.top + border.bottom;
5654
5655   if (!priv->tearoff_active)
5656     {
5657       GtkBorder arrow_border;
5658
5659       get_arrows_border (menu, &arrow_border);
5660       height -= arrow_border.top;
5661       height -= arrow_border.bottom;
5662     }
5663
5664   return height;
5665 }
5666
5667 static void
5668 gtk_menu_real_move_scroll (GtkMenu       *menu,
5669                            GtkScrollType  type)
5670 {
5671   GtkMenuPrivate *priv = menu->priv;
5672   gint page_size = get_visible_size (menu);
5673   gint end_position = get_menu_height (menu);
5674   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
5675
5676   switch (type)
5677     {
5678     case GTK_SCROLL_PAGE_UP:
5679     case GTK_SCROLL_PAGE_DOWN:
5680       {
5681         gint old_offset;
5682         gint new_offset;
5683         gint child_offset = 0;
5684         gboolean old_upper_arrow_visible;
5685         gint step;
5686
5687         if (type == GTK_SCROLL_PAGE_UP)
5688           step = - page_size;
5689         else
5690           step = page_size;
5691
5692         if (menu_shell->priv->active_menu_item)
5693           {
5694             gint child_height;
5695
5696             compute_child_offset (menu, menu_shell->priv->active_menu_item,
5697                                   &child_offset, &child_height, NULL);
5698             child_offset += child_height / 2;
5699           }
5700
5701         menu_shell->priv->ignore_enter = TRUE;
5702         old_upper_arrow_visible = priv->upper_arrow_visible && !priv->tearoff_active;
5703         old_offset = priv->scroll_offset;
5704
5705         new_offset = priv->scroll_offset + step;
5706         new_offset = CLAMP (new_offset, 0, end_position - page_size);
5707
5708         gtk_menu_scroll_to (menu, new_offset);
5709
5710         if (menu_shell->priv->active_menu_item)
5711           {
5712             GtkWidget *new_child;
5713             gboolean new_upper_arrow_visible = priv->upper_arrow_visible && !priv->tearoff_active;
5714             GtkBorder arrow_border;
5715             get_arrows_border (menu, &arrow_border);
5716
5717             if (priv->scroll_offset != old_offset)
5718               step = priv->scroll_offset - old_offset;
5719
5720             step -= (new_upper_arrow_visible - old_upper_arrow_visible) * arrow_border.top;
5721
5722             new_child = child_at (menu, child_offset + step);
5723             if (new_child)
5724               gtk_menu_shell_select_item (menu_shell, new_child);
5725           }
5726       }
5727       break;
5728     case GTK_SCROLL_START:
5729       /* Ignore the enter event we might get if the pointer is on the menu */
5730       menu_shell->priv->ignore_enter = TRUE;
5731       gtk_menu_scroll_to (menu, 0);
5732       gtk_menu_shell_select_first (menu_shell, TRUE);
5733       break;
5734     case GTK_SCROLL_END:
5735       /* Ignore the enter event we might get if the pointer is on the menu */
5736       menu_shell->priv->ignore_enter = TRUE;
5737       gtk_menu_scroll_to (menu, end_position - page_size);
5738       _gtk_menu_shell_select_last (menu_shell, TRUE);
5739       break;
5740     default:
5741       break;
5742     }
5743 }
5744
5745
5746 /**
5747  * gtk_menu_set_monitor:
5748  * @menu: a #GtkMenu
5749  * @monitor_num: the number of the monitor on which the menu should
5750  *    be popped up
5751  *
5752  * Informs GTK+ on which monitor a menu should be popped up.
5753  * See gdk_screen_get_monitor_geometry().
5754  *
5755  * This function should be called from a #GtkMenuPositionFunc
5756  * if the menu should not appear on the same monitor as the pointer.
5757  * This information can't be reliably inferred from the coordinates
5758  * returned by a #GtkMenuPositionFunc, since, for very long menus,
5759  * these coordinates may extend beyond the monitor boundaries or even
5760  * the screen boundaries.
5761  *
5762  * Since: 2.4
5763  */
5764 void
5765 gtk_menu_set_monitor (GtkMenu *menu,
5766                       gint     monitor_num)
5767 {
5768   GtkMenuPrivate *priv = menu->priv;
5769
5770   g_return_if_fail (GTK_IS_MENU (menu));
5771
5772   priv->monitor_num = monitor_num;
5773 }
5774
5775 /**
5776  * gtk_menu_get_monitor:
5777  * @menu: a #GtkMenu
5778  *
5779  * Retrieves the number of the monitor on which to show the menu.
5780  *
5781  * Returns: the number of the monitor on which the menu should
5782  *    be popped up or -1, if no monitor has been set
5783  *
5784  * Since: 2.14
5785  */
5786 gint
5787 gtk_menu_get_monitor (GtkMenu *menu)
5788 {
5789   g_return_val_if_fail (GTK_IS_MENU (menu), -1);
5790
5791   return menu->priv->monitor_num;
5792 }
5793
5794 /**
5795  * gtk_menu_get_for_attach_widget:
5796  * @widget: a #GtkWidget
5797  *
5798  * Returns a list of the menus which are attached to this widget.
5799  * This list is owned by GTK+ and must not be modified.
5800  *
5801  * Return value: (element-type GtkWidget) (transfer none): the list
5802  *     of menus attached to his widget.
5803  *
5804  * Since: 2.6
5805  */
5806 GList*
5807 gtk_menu_get_for_attach_widget (GtkWidget *widget)
5808 {
5809   GList *list;
5810
5811   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
5812
5813   list = g_object_get_data (G_OBJECT (widget), ATTACHED_MENUS);
5814
5815   return list;
5816 }
5817
5818 static void
5819 gtk_menu_grab_notify (GtkWidget *widget,
5820                       gboolean   was_grabbed)
5821 {
5822   GtkWidget *toplevel;
5823   GtkWindowGroup *group;
5824   GtkWidget *grab;
5825   GdkDevice *pointer;
5826
5827   pointer = _gtk_menu_shell_get_grab_device (GTK_MENU_SHELL (widget));
5828
5829   if (!pointer ||
5830       !gtk_widget_device_is_shadowed (widget, pointer))
5831     return;
5832
5833   toplevel = gtk_widget_get_toplevel (widget);
5834
5835   if (!GTK_IS_WINDOW (toplevel))
5836     return;
5837
5838   group = gtk_window_get_group (GTK_WINDOW (toplevel));
5839   grab = gtk_window_group_get_current_device_grab (group, pointer);
5840
5841   if (GTK_MENU_SHELL (widget)->priv->active && !GTK_IS_MENU_SHELL (grab))
5842     gtk_menu_shell_cancel (GTK_MENU_SHELL (widget));
5843 }
5844
5845 /**
5846  * gtk_menu_set_reserve_toggle_size:
5847  * @menu: a #GtkMenu
5848  * @reserve_toggle_size: whether to reserve size for toggles
5849  *
5850  * Sets whether the menu should reserve space for drawing toggles
5851  * or icons, regardless of their actual presence.
5852  *
5853  * Since: 2.18
5854  */
5855 void
5856 gtk_menu_set_reserve_toggle_size (GtkMenu  *menu,
5857                                   gboolean  reserve_toggle_size)
5858 {
5859   GtkMenuPrivate *priv = menu->priv;
5860   gboolean no_toggle_size;
5861
5862   g_return_if_fail (GTK_IS_MENU (menu));
5863
5864   no_toggle_size = !reserve_toggle_size;
5865
5866   if (priv->no_toggle_size != no_toggle_size)
5867     {
5868       priv->no_toggle_size = no_toggle_size;
5869
5870       g_object_notify (G_OBJECT (menu), "reserve-toggle-size");
5871     }
5872 }
5873
5874 /**
5875  * gtk_menu_get_reserve_toggle_size:
5876  * @menu: a #GtkMenu
5877  *
5878  * Returns whether the menu reserves space for toggles and
5879  * icons, regardless of their actual presence.
5880  *
5881  * Returns: Whether the menu reserves toggle space
5882  *
5883  * Since: 2.18
5884  */
5885 gboolean
5886 gtk_menu_get_reserve_toggle_size (GtkMenu *menu)
5887 {
5888   g_return_val_if_fail (GTK_IS_MENU (menu), FALSE);
5889
5890   return !menu->priv->no_toggle_size;
5891 }