]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenu.c
Replace a lot of idle and timeout calls by the new gdk_threads api.
[~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 #define GTK_MENU_INTERNALS
28 #include <config.h>
29 #include <string.h> /* memset */
30 #include "gdk/gdkkeysyms.h"
31 #include "gtkaccellabel.h"
32 #include "gtkaccelmap.h"
33 #include "gtkbindings.h"
34 #include "gtklabel.h"
35 #include "gtkmain.h"
36 #include "gtkmarshalers.h"
37 #include "gtkmenu.h"
38 #include "gtkmenuitem.h"
39 #include "gtktearoffmenuitem.h"
40 #include "gtkwindow.h"
41 #include "gtkhbox.h"
42 #include "gtkvscrollbar.h"
43 #include "gtksettings.h"
44 #include "gtkprivate.h"
45 #include "gtkintl.h"
46 #include "gtkalias.h"
47
48
49 #define MENU_ITEM_CLASS(w)   GTK_MENU_ITEM_GET_CLASS (w)
50
51 #define DEFAULT_POPUP_DELAY    225
52 #define DEFAULT_POPDOWN_DELAY  1000
53
54 #define NAVIGATION_REGION_OVERSHOOT 50  /* How much the navigation region
55                                          * extends below the submenu
56                                          */
57
58 #define MENU_SCROLL_STEP1 8
59 #define MENU_SCROLL_STEP2 15
60 #define MENU_SCROLL_FAST_ZONE 8
61 #define MENU_SCROLL_TIMEOUT1 50
62 #define MENU_SCROLL_TIMEOUT2 20
63
64 #define ATTACH_INFO_KEY "gtk-menu-child-attach-info-key"
65 #define ATTACHED_MENUS "gtk-attached-menus"
66
67 typedef struct _GtkMenuAttachData       GtkMenuAttachData;
68 typedef struct _GtkMenuPrivate          GtkMenuPrivate;
69
70 struct _GtkMenuAttachData
71 {
72   GtkWidget *attach_widget;
73   GtkMenuDetachFunc detacher;
74 };
75
76 struct _GtkMenuPrivate 
77 {
78   gboolean seen_item_enter;
79
80   gboolean have_position;
81   gint x;
82   gint y;
83
84   /* info used for the table */
85   guint *heights;
86   gint heights_length;
87
88   gint monitor_num;
89
90   /* Cached layout information */
91   gboolean have_layout;
92   gint n_rows;
93   gint n_columns;
94
95   gchar *title;
96
97   /* Arrow states */
98   GtkStateType lower_arrow_state;
99   GtkStateType upper_arrow_state;
100
101   gboolean ignore_button_release;
102   gboolean initially_pushed_in;
103 };
104
105 typedef struct
106 {
107   gint left_attach;
108   gint right_attach;
109   gint top_attach;
110   gint bottom_attach;
111   gint effective_left_attach;
112   gint effective_right_attach;
113   gint effective_top_attach;
114   gint effective_bottom_attach;
115 } AttachInfo;
116
117 enum {
118   MOVE_SCROLL,
119   LAST_SIGNAL
120 };
121
122 enum {
123   PROP_0,
124   PROP_TEAROFF_STATE,
125   PROP_TEAROFF_TITLE
126 };
127
128 enum {
129   CHILD_PROP_0,
130   CHILD_PROP_LEFT_ATTACH,
131   CHILD_PROP_RIGHT_ATTACH,
132   CHILD_PROP_TOP_ATTACH,
133   CHILD_PROP_BOTTOM_ATTACH
134 };
135
136 static void     gtk_menu_set_property      (GObject          *object,
137                                             guint             prop_id,
138                                             const GValue     *value,
139                                             GParamSpec       *pspec);
140 static void     gtk_menu_get_property      (GObject          *object,
141                                             guint             prop_id,
142                                             GValue           *value,
143                                             GParamSpec       *pspec);
144 static void     gtk_menu_set_child_property(GtkContainer     *container,
145                                             GtkWidget        *child,
146                                             guint             property_id,
147                                             const GValue     *value,
148                                             GParamSpec       *pspec);
149 static void     gtk_menu_get_child_property(GtkContainer     *container,
150                                             GtkWidget        *child,
151                                             guint             property_id,
152                                             GValue           *value,
153                                             GParamSpec       *pspec);
154 static void     gtk_menu_destroy           (GtkObject        *object);
155 static void     gtk_menu_finalize          (GObject          *object);
156 static void     gtk_menu_realize           (GtkWidget        *widget);
157 static void     gtk_menu_unrealize         (GtkWidget        *widget);
158 static void     gtk_menu_size_request      (GtkWidget        *widget,
159                                             GtkRequisition   *requisition);
160 static void     gtk_menu_size_allocate     (GtkWidget        *widget,
161                                             GtkAllocation    *allocation);
162 static void     gtk_menu_paint             (GtkWidget        *widget,
163                                             GdkEventExpose   *expose);
164 static void     gtk_menu_show              (GtkWidget        *widget);
165 static gboolean gtk_menu_expose            (GtkWidget        *widget,
166                                             GdkEventExpose   *event);
167 static gboolean gtk_menu_key_press         (GtkWidget        *widget,
168                                             GdkEventKey      *event);
169 static gboolean gtk_menu_scroll            (GtkWidget        *widget,
170                                             GdkEventScroll   *event);
171 static gboolean gtk_menu_button_press      (GtkWidget        *widget,
172                                             GdkEventButton   *event);
173 static gboolean gtk_menu_button_release    (GtkWidget        *widget,
174                                             GdkEventButton   *event);
175 static gboolean gtk_menu_motion_notify     (GtkWidget        *widget,
176                                             GdkEventMotion   *event);
177 static gboolean gtk_menu_enter_notify      (GtkWidget        *widget,
178                                             GdkEventCrossing *event);
179 static gboolean gtk_menu_leave_notify      (GtkWidget        *widget,
180                                             GdkEventCrossing *event);
181 static void     gtk_menu_scroll_to         (GtkMenu          *menu,
182                                             gint              offset);
183 static void     gtk_menu_grab_notify       (GtkWidget        *widget,
184                                             gboolean          was_grabbed);
185
186 static void     gtk_menu_stop_scrolling         (GtkMenu  *menu);
187 static void     gtk_menu_remove_scroll_timeout  (GtkMenu  *menu);
188 static gboolean gtk_menu_scroll_timeout         (gpointer  data);
189 static gboolean gtk_menu_scroll_timeout_initial (gpointer  data);
190 static void     gtk_menu_start_scrolling        (GtkMenu  *menu);
191
192 static void     gtk_menu_scroll_item_visible (GtkMenuShell    *menu_shell,
193                                               GtkWidget       *menu_item);
194 static void     gtk_menu_select_item       (GtkMenuShell     *menu_shell,
195                                             GtkWidget        *menu_item);
196 static void     gtk_menu_real_insert       (GtkMenuShell     *menu_shell,
197                                             GtkWidget        *child,
198                                             gint              position);
199 static void     gtk_menu_scrollbar_changed (GtkAdjustment    *adjustment,
200                                             GtkMenu          *menu);
201 static void     gtk_menu_handle_scrolling  (GtkMenu          *menu,
202                                             gint              event_x,
203                                             gint              event_y,
204                                             gboolean          enter,
205                                             gboolean          motion);
206 static void     gtk_menu_set_tearoff_hints (GtkMenu          *menu,
207                                             gint             width);
208 static void     gtk_menu_style_set         (GtkWidget        *widget,
209                                             GtkStyle         *previous_style);
210 static gboolean gtk_menu_focus             (GtkWidget        *widget,
211                                             GtkDirectionType direction);
212 static gint     gtk_menu_get_popup_delay   (GtkMenuShell     *menu_shell);
213 static void     gtk_menu_move_current      (GtkMenuShell     *menu_shell,
214                                             GtkMenuDirectionType direction);
215 static void     gtk_menu_real_move_scroll  (GtkMenu          *menu,
216                                             GtkScrollType     type);
217
218 static void     gtk_menu_stop_navigating_submenu       (GtkMenu          *menu);
219 static gboolean gtk_menu_stop_navigating_submenu_cb    (gpointer          user_data);
220 static gboolean gtk_menu_navigating_submenu            (GtkMenu          *menu,
221                                                         gint              event_x,
222                                                         gint              event_y);
223 static void     gtk_menu_set_submenu_navigation_region (GtkMenu          *menu,
224                                                         GtkMenuItem      *menu_item,
225                                                         GdkEventCrossing *event);
226  
227 static void gtk_menu_deactivate     (GtkMenuShell      *menu_shell);
228 static void gtk_menu_show_all       (GtkWidget         *widget);
229 static void gtk_menu_hide_all       (GtkWidget         *widget);
230 static void gtk_menu_position       (GtkMenu           *menu);
231 static void gtk_menu_reparent       (GtkMenu           *menu, 
232                                      GtkWidget         *new_parent, 
233                                      gboolean           unrealize);
234 static void gtk_menu_remove         (GtkContainer      *menu,
235                                      GtkWidget         *widget);
236
237 static void gtk_menu_update_title   (GtkMenu           *menu);
238
239 static void       menu_grab_transfer_window_destroy (GtkMenu *menu);
240 static GdkWindow *menu_grab_transfer_window_get     (GtkMenu *menu);
241
242 static gboolean gtk_menu_real_can_activate_accel (GtkWidget *widget,
243                                                   guint      signal_id);
244 static void _gtk_menu_refresh_accel_paths (GtkMenu *menu,
245                                            gboolean group_changed);
246
247 static const gchar        attach_data_key[] = "gtk-menu-attach-data";
248
249 static guint menu_signals[LAST_SIGNAL] = { 0 };
250
251 static GtkMenuPrivate *
252 gtk_menu_get_private (GtkMenu *menu)
253 {
254   return G_TYPE_INSTANCE_GET_PRIVATE (menu, GTK_TYPE_MENU, GtkMenuPrivate);
255 }
256
257 G_DEFINE_TYPE (GtkMenu, gtk_menu, GTK_TYPE_MENU_SHELL)
258
259 static void
260 menu_queue_resize (GtkMenu *menu)
261 {
262   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
263
264   priv->have_layout = FALSE;
265   gtk_widget_queue_resize (GTK_WIDGET (menu));
266 }
267
268 static AttachInfo *
269 get_attach_info (GtkWidget *child)
270 {
271   GObject *object = G_OBJECT (child);
272   AttachInfo *ai = g_object_get_data (object, ATTACH_INFO_KEY);
273
274   if (!ai)
275     {
276       ai = g_new0 (AttachInfo, 1);
277       g_object_set_data_full (object, I_(ATTACH_INFO_KEY), ai, g_free);
278     }
279
280   return ai;
281 }
282
283 static gboolean
284 is_grid_attached (AttachInfo *ai)
285 {
286   return (ai->left_attach >= 0 &&
287           ai->right_attach >= 0 &&
288           ai->top_attach >= 0 &&
289           ai->bottom_attach >= 0);
290 }
291
292 static void
293 menu_ensure_layout (GtkMenu *menu)
294 {
295   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
296
297   if (!priv->have_layout)
298     {
299       GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
300       GList *l;
301       gchar *row_occupied;
302       gint current_row;
303       gint max_right_attach;      
304       gint max_bottom_attach;
305
306       /* Find extents of gridded portion
307        */
308       max_right_attach = 1;
309       max_bottom_attach = 0;
310
311       for (l = menu_shell->children; l; l = l->next)
312         {
313           GtkWidget *child = l->data;
314           AttachInfo *ai = get_attach_info (child);
315
316           if (is_grid_attached (ai))
317             {
318               max_bottom_attach = MAX (max_bottom_attach, ai->bottom_attach);
319               max_right_attach = MAX (max_right_attach, ai->right_attach);
320             }
321         }
322          
323       /* Find empty rows
324        */
325       row_occupied = g_malloc0 (max_bottom_attach);
326
327       for (l = menu_shell->children; l; l = l->next)
328         {
329           GtkWidget *child = l->data;
330           AttachInfo *ai = get_attach_info (child);
331
332           if (is_grid_attached (ai))
333             {
334               gint i;
335
336               for (i = ai->top_attach; i < ai->bottom_attach; i++)
337                 row_occupied[i] = TRUE;
338             }
339         }
340
341       /* Lay non-grid-items out in those rows
342        */
343       current_row = 0;
344       for (l = menu_shell->children; l; l = l->next)
345         {
346           GtkWidget *child = l->data;
347           AttachInfo *ai = get_attach_info (child);
348
349           if (!is_grid_attached (ai))
350             {
351               while (current_row < max_bottom_attach && row_occupied[current_row])
352                 current_row++;
353                 
354               ai->effective_left_attach = 0;
355               ai->effective_right_attach = max_right_attach;
356               ai->effective_top_attach = current_row;
357               ai->effective_bottom_attach = current_row + 1;
358
359               current_row++;
360             }
361           else
362             {
363               ai->effective_left_attach = ai->left_attach;
364               ai->effective_right_attach = ai->right_attach;
365               ai->effective_top_attach = ai->top_attach;
366               ai->effective_bottom_attach = ai->bottom_attach;
367             }
368         }
369
370       g_free (row_occupied);
371
372       priv->n_rows = MAX (current_row, max_bottom_attach);
373       priv->n_columns = max_right_attach;
374       priv->have_layout = TRUE;
375     }
376 }
377
378
379 static gint
380 gtk_menu_get_n_columns (GtkMenu *menu)
381 {
382   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
383
384   menu_ensure_layout (menu);
385
386   return priv->n_columns;
387 }
388
389 static gint
390 gtk_menu_get_n_rows (GtkMenu *menu)
391 {
392   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
393
394   menu_ensure_layout (menu);
395
396   return priv->n_rows;
397 }
398
399 static void
400 get_effective_child_attach (GtkWidget *child,
401                             int       *l,
402                             int       *r,
403                             int       *t,
404                             int       *b)
405 {
406   GtkMenu *menu = GTK_MENU (child->parent);
407   AttachInfo *ai;
408   
409   menu_ensure_layout (menu);
410
411   ai = get_attach_info (child);
412
413   if (l)
414     *l = ai->effective_left_attach;
415   if (r)
416     *r = ai->effective_right_attach;
417   if (t)
418     *t = ai->effective_top_attach;
419   if (b)
420     *b = ai->effective_bottom_attach;
421
422 }
423
424 static void
425 gtk_menu_class_init (GtkMenuClass *class)
426 {
427   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
428   GtkObjectClass *object_class = GTK_OBJECT_CLASS (class);
429   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
430   GtkContainerClass *container_class = GTK_CONTAINER_CLASS (class);
431   GtkMenuShellClass *menu_shell_class = GTK_MENU_SHELL_CLASS (class);
432   GtkBindingSet *binding_set;
433   
434   gobject_class->finalize = gtk_menu_finalize;
435   gobject_class->set_property = gtk_menu_set_property;
436   gobject_class->get_property = gtk_menu_get_property;
437
438   object_class->destroy = gtk_menu_destroy;
439   
440   widget_class->realize = gtk_menu_realize;
441   widget_class->unrealize = gtk_menu_unrealize;
442   widget_class->size_request = gtk_menu_size_request;
443   widget_class->size_allocate = gtk_menu_size_allocate;
444   widget_class->show = gtk_menu_show;
445   widget_class->expose_event = gtk_menu_expose;
446   widget_class->scroll_event = gtk_menu_scroll;
447   widget_class->key_press_event = gtk_menu_key_press;
448   widget_class->button_press_event = gtk_menu_button_press;
449   widget_class->button_release_event = gtk_menu_button_release;
450   widget_class->motion_notify_event = gtk_menu_motion_notify;
451   widget_class->show_all = gtk_menu_show_all;
452   widget_class->hide_all = gtk_menu_hide_all;
453   widget_class->enter_notify_event = gtk_menu_enter_notify;
454   widget_class->leave_notify_event = gtk_menu_leave_notify;
455   widget_class->style_set = gtk_menu_style_set;
456   widget_class->focus = gtk_menu_focus;
457   widget_class->can_activate_accel = gtk_menu_real_can_activate_accel;
458   widget_class->grab_notify = gtk_menu_grab_notify;
459
460   container_class->remove = gtk_menu_remove;
461   container_class->get_child_property = gtk_menu_get_child_property;
462   container_class->set_child_property = gtk_menu_set_child_property;
463   
464   menu_shell_class->submenu_placement = GTK_LEFT_RIGHT;
465   menu_shell_class->deactivate = gtk_menu_deactivate;
466   menu_shell_class->select_item = gtk_menu_select_item;
467   menu_shell_class->insert = gtk_menu_real_insert;
468   menu_shell_class->get_popup_delay = gtk_menu_get_popup_delay;
469   menu_shell_class->move_current = gtk_menu_move_current;
470
471   menu_signals[MOVE_SCROLL] =
472     _gtk_binding_signal_new (I_("move_scroll"),
473                              G_OBJECT_CLASS_TYPE (object_class),
474                              G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
475                              G_CALLBACK (gtk_menu_real_move_scroll),
476                              NULL, NULL,
477                              _gtk_marshal_VOID__ENUM,
478                              G_TYPE_NONE, 1,
479                              GTK_TYPE_SCROLL_TYPE);
480   
481   g_object_class_install_property (gobject_class,
482                                    PROP_TEAROFF_TITLE,
483                                    g_param_spec_string ("tearoff-title",
484                                                         P_("Tearoff Title"),
485                                                         P_("A title that may be displayed by the window manager when this menu is torn-off"),
486                                                         "",
487                                                         GTK_PARAM_READWRITE));
488
489   /**
490    * GtkMenu:tearoff-state:
491    *
492    * A boolean that indicates whether the menu is torn-off.
493    *
494    * Since: 2.6
495    **/
496   g_object_class_install_property (gobject_class,
497                                    PROP_TEAROFF_STATE,
498                                    g_param_spec_boolean ("tearoff-state",
499                                                          P_("Tearoff State"),
500                                                          P_("A boolean that indicates whether the menu is torn-off"),
501                                                          FALSE,
502                                                          GTK_PARAM_READWRITE));
503
504   gtk_widget_class_install_style_property (widget_class,
505                                            g_param_spec_int ("vertical-padding",
506                                                              P_("Vertical Padding"),
507                                                              P_("Extra space at the top and bottom of the menu"),
508                                                              0,
509                                                              G_MAXINT,
510                                                              1,
511                                                              GTK_PARAM_READABLE));
512
513   gtk_widget_class_install_style_property (widget_class,
514                                            g_param_spec_int ("horizontal-padding",
515                                                              P_("Horizontal Padding"),
516                                                              P_("Extra space at the left and right edges of the menu"),
517                                                              0,
518                                                              G_MAXINT,
519                                                              0,
520                                                              GTK_PARAM_READABLE));
521
522   gtk_widget_class_install_style_property (widget_class,
523                                            g_param_spec_int ("vertical-offset",
524                                                              P_("Vertical Offset"),
525                                                              P_("When the menu is a submenu, position it this number of pixels offset vertically"),
526                                                              G_MININT,
527                                                              G_MAXINT,
528                                                              0,
529                                                              GTK_PARAM_READABLE));
530
531   gtk_widget_class_install_style_property (widget_class,
532                                            g_param_spec_int ("horizontal-offset",
533                                                              P_("Horizontal Offset"),
534                                                              P_("When the menu is a submenu, position it this number of pixels offset horizontally"),
535                                                              G_MININT,
536                                                              G_MAXINT,
537                                                              -2,
538                                                              GTK_PARAM_READABLE));
539
540   gtk_widget_class_install_style_property (widget_class,
541                                            g_param_spec_boolean ("double-arrows",
542                                                                  P_("Double Arrows"),
543                                                                  P_("When scrolling, always show both arrows."),
544                                                                  TRUE,
545                                                                  GTK_PARAM_READABLE));
546
547
548  gtk_container_class_install_child_property (container_class,
549                                              CHILD_PROP_LEFT_ATTACH,
550                                               g_param_spec_int ("left-attach",
551                                                                P_("Left Attach"),
552                                                                P_("The column number to attach the left side of the child to"),
553                                                                 -1, INT_MAX, -1,
554                                                                GTK_PARAM_READWRITE));
555
556  gtk_container_class_install_child_property (container_class,
557                                              CHILD_PROP_RIGHT_ATTACH,
558                                               g_param_spec_int ("right-attach",
559                                                                P_("Right Attach"),
560                                                                P_("The column number to attach the right side of the child to"),
561                                                                 -1, INT_MAX, -1,
562                                                                GTK_PARAM_READWRITE));
563
564  gtk_container_class_install_child_property (container_class,
565                                              CHILD_PROP_TOP_ATTACH,
566                                               g_param_spec_int ("top-attach",
567                                                                P_("Top Attach"),
568                                                                P_("The row number to attach the top of the child to"),
569                                                                 -1, INT_MAX, -1,
570                                                                GTK_PARAM_READWRITE));
571
572  gtk_container_class_install_child_property (container_class,
573                                              CHILD_PROP_BOTTOM_ATTACH,
574                                               g_param_spec_int ("bottom-attach",
575                                                                P_("Bottom Attach"),
576                                                                P_("The row number to attach the bottom of the child to"),
577                                                                 -1, INT_MAX, -1,
578                                                                GTK_PARAM_READWRITE));
579
580   binding_set = gtk_binding_set_by_class (class);
581   gtk_binding_entry_add_signal (binding_set,
582                                 GDK_Up, 0,
583                                 I_("move_current"), 1,
584                                 GTK_TYPE_MENU_DIRECTION_TYPE,
585                                 GTK_MENU_DIR_PREV);
586   gtk_binding_entry_add_signal (binding_set,
587                                 GDK_KP_Up, 0,
588                                 "move_current", 1,
589                                 GTK_TYPE_MENU_DIRECTION_TYPE,
590                                 GTK_MENU_DIR_PREV);
591   gtk_binding_entry_add_signal (binding_set,
592                                 GDK_Down, 0,
593                                 "move_current", 1,
594                                 GTK_TYPE_MENU_DIRECTION_TYPE,
595                                 GTK_MENU_DIR_NEXT);
596   gtk_binding_entry_add_signal (binding_set,
597                                 GDK_KP_Down, 0,
598                                 "move_current", 1,
599                                 GTK_TYPE_MENU_DIRECTION_TYPE,
600                                 GTK_MENU_DIR_NEXT);
601   gtk_binding_entry_add_signal (binding_set,
602                                 GDK_Left, 0,
603                                 "move_current", 1,
604                                 GTK_TYPE_MENU_DIRECTION_TYPE,
605                                 GTK_MENU_DIR_PARENT);
606   gtk_binding_entry_add_signal (binding_set,
607                                 GDK_KP_Left, 0,
608                                 "move_current", 1,
609                                 GTK_TYPE_MENU_DIRECTION_TYPE,
610                                 GTK_MENU_DIR_PARENT);
611   gtk_binding_entry_add_signal (binding_set,
612                                 GDK_Right, 0,
613                                 "move_current", 1,
614                                 GTK_TYPE_MENU_DIRECTION_TYPE,
615                                 GTK_MENU_DIR_CHILD);
616   gtk_binding_entry_add_signal (binding_set,
617                                 GDK_KP_Right, 0,
618                                 "move_current", 1,
619                                 GTK_TYPE_MENU_DIRECTION_TYPE,
620                                 GTK_MENU_DIR_CHILD);
621   gtk_binding_entry_add_signal (binding_set,
622                                 GDK_Home, 0,
623                                 "move_scroll", 1,
624                                 GTK_TYPE_SCROLL_TYPE,
625                                 GTK_SCROLL_START);
626   gtk_binding_entry_add_signal (binding_set,
627                                 GDK_KP_Home, 0,
628                                 "move_scroll", 1,
629                                 GTK_TYPE_SCROLL_TYPE,
630                                 GTK_SCROLL_START);
631   gtk_binding_entry_add_signal (binding_set,
632                                 GDK_End, 0,
633                                 "move_scroll", 1,
634                                 GTK_TYPE_SCROLL_TYPE,
635                                 GTK_SCROLL_END);
636   gtk_binding_entry_add_signal (binding_set,
637                                 GDK_KP_End, 0,
638                                 "move_scroll", 1,
639                                 GTK_TYPE_SCROLL_TYPE,
640                                 GTK_SCROLL_END);
641   gtk_binding_entry_add_signal (binding_set,
642                                 GDK_Page_Up, 0,
643                                 "move_scroll", 1,
644                                 GTK_TYPE_SCROLL_TYPE,
645                                 GTK_SCROLL_PAGE_UP);
646   gtk_binding_entry_add_signal (binding_set,
647                                 GDK_KP_Page_Up, 0,
648                                 "move_scroll", 1,
649                                 GTK_TYPE_SCROLL_TYPE,
650                                 GTK_SCROLL_PAGE_UP);
651   gtk_binding_entry_add_signal (binding_set,
652                                 GDK_Page_Down, 0,
653                                 "move_scroll", 1,
654                                 GTK_TYPE_SCROLL_TYPE,
655                                 GTK_SCROLL_PAGE_DOWN);
656   gtk_binding_entry_add_signal (binding_set,
657                                 GDK_KP_Page_Down, 0,
658                                 "move_scroll", 1,
659                                 GTK_TYPE_SCROLL_TYPE,
660                                 GTK_SCROLL_PAGE_DOWN);
661
662   gtk_settings_install_property (g_param_spec_boolean ("gtk-can-change-accels",
663                                                        P_("Can change accelerators"),
664                                                        P_("Whether menu accelerators can be changed by pressing a key over the menu item"),
665                                                        FALSE,
666                                                        GTK_PARAM_READWRITE));
667
668   gtk_settings_install_property (g_param_spec_int ("gtk-menu-popup-delay",
669                                                    P_("Delay before submenus appear"),
670                                                    P_("Minimum time the pointer must stay over a menu item before the submenu appear"),
671                                                    0,
672                                                    G_MAXINT,
673                                                    DEFAULT_POPUP_DELAY,
674                                                    GTK_PARAM_READWRITE));
675
676   gtk_settings_install_property (g_param_spec_int ("gtk-menu-popdown-delay",
677                                                    P_("Delay before hiding a submenu"),
678                                                    P_("The time before hiding a submenu when the pointer is moving towards the submenu"),
679                                                    0,
680                                                    G_MAXINT,
681                                                    DEFAULT_POPDOWN_DELAY,
682                                                    GTK_PARAM_READWRITE));
683
684   g_type_class_add_private (gobject_class, sizeof (GtkMenuPrivate));
685 }
686
687
688 static void 
689 gtk_menu_set_property (GObject      *object,
690                        guint         prop_id,
691                        const GValue *value,
692                        GParamSpec   *pspec)
693 {
694   GtkMenu *menu;
695   
696   menu = GTK_MENU (object);
697   
698   switch (prop_id)
699     {
700     case PROP_TEAROFF_STATE:
701       gtk_menu_set_tearoff_state (menu, g_value_get_boolean (value));
702       break;
703     case PROP_TEAROFF_TITLE:
704       gtk_menu_set_title (menu, g_value_get_string (value));
705       break;      
706     default:
707       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
708       break;
709     }
710 }
711
712 static void 
713 gtk_menu_get_property (GObject     *object,
714                        guint        prop_id,
715                        GValue      *value,
716                        GParamSpec  *pspec)
717 {
718   GtkMenu *menu;
719   
720   menu = GTK_MENU (object);
721   
722   switch (prop_id)
723     {
724     case PROP_TEAROFF_STATE:
725       g_value_set_boolean (value, gtk_menu_get_tearoff_state (menu));
726       break;
727     case PROP_TEAROFF_TITLE:
728       g_value_set_string (value, gtk_menu_get_title (menu));
729       break;
730     default:
731       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
732       break;
733     }
734 }
735
736 static void
737 gtk_menu_set_child_property (GtkContainer *container,
738                              GtkWidget    *child,
739                              guint         property_id,
740                              const GValue *value,
741                              GParamSpec   *pspec)
742 {
743   GtkMenu *menu = GTK_MENU (container);
744   AttachInfo *ai = get_attach_info (child);
745
746   switch (property_id)
747     {
748     case CHILD_PROP_LEFT_ATTACH:
749       ai->left_attach = g_value_get_int (value);
750       break;
751     case CHILD_PROP_RIGHT_ATTACH:
752       ai->right_attach = g_value_get_int (value);
753       break;
754     case CHILD_PROP_TOP_ATTACH:
755       ai->top_attach = g_value_get_int (value); 
756       break;
757     case CHILD_PROP_BOTTOM_ATTACH:
758       ai->bottom_attach = g_value_get_int (value);
759       break;
760
761     default:
762       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
763       return;
764     }
765
766   menu_queue_resize (menu);
767 }
768
769 static void
770 gtk_menu_get_child_property (GtkContainer *container,
771                              GtkWidget    *child,
772                              guint         property_id,
773                              GValue       *value,
774                              GParamSpec   *pspec)
775 {
776   AttachInfo *ai = get_attach_info (child);
777
778   switch (property_id)
779     {
780     case CHILD_PROP_LEFT_ATTACH:
781       g_value_set_int (value, ai->left_attach);
782       break;
783     case CHILD_PROP_RIGHT_ATTACH:
784       g_value_set_int (value, ai->right_attach);
785       break;
786     case CHILD_PROP_TOP_ATTACH:
787       g_value_set_int (value, ai->top_attach);
788       break;
789     case CHILD_PROP_BOTTOM_ATTACH:
790       g_value_set_int (value, ai->bottom_attach);
791       break;
792       
793     default:
794       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
795       return;
796     }
797 }
798
799 static gboolean
800 gtk_menu_window_event (GtkWidget *window,
801                        GdkEvent  *event,
802                        GtkWidget *menu)
803 {
804   gboolean handled = FALSE;
805
806   g_object_ref (window);
807   g_object_ref (menu);
808
809   switch (event->type)
810     {
811     case GDK_KEY_PRESS:
812     case GDK_KEY_RELEASE:
813       handled = gtk_widget_event (menu, event);
814       break;
815     default:
816       break;
817     }
818
819   g_object_unref (window);
820   g_object_unref (menu);
821
822   return handled;
823 }
824
825 static void
826 gtk_menu_window_size_request (GtkWidget      *window,
827                               GtkRequisition *requisition,
828                               GtkMenu        *menu)
829 {
830   GtkMenuPrivate *private = gtk_menu_get_private (menu);
831
832   if (private->have_position)
833     {
834       GdkScreen *screen = gtk_widget_get_screen (window);
835       GdkRectangle monitor;
836       
837       gdk_screen_get_monitor_geometry (screen, private->monitor_num, &monitor);
838
839       if (private->y + requisition->height > monitor.y + monitor.height)
840         requisition->height = monitor.y + monitor.height - private->y;
841
842       if (private->y < monitor.y)
843         requisition->height -= monitor.y - private->y;
844     }
845 }
846
847 static void
848 gtk_menu_init (GtkMenu *menu)
849 {
850   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
851
852   menu->parent_menu_item = NULL;
853   menu->old_active_menu_item = NULL;
854   menu->accel_group = NULL;
855   menu->position_func = NULL;
856   menu->position_func_data = NULL;
857   menu->toggle_size = 0;
858
859   menu->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
860                                                    "type", GTK_WINDOW_POPUP,
861                                                    "child", menu,
862                                                    NULL),
863                                      "signal::event", gtk_menu_window_event, menu,
864                                      "signal::size_request", gtk_menu_window_size_request, menu,
865                                      "signal::destroy", gtk_widget_destroyed, &menu->toplevel,
866                                      NULL);
867   gtk_window_set_resizable (GTK_WINDOW (menu->toplevel), FALSE);
868   gtk_window_set_mnemonic_modifier (GTK_WINDOW (menu->toplevel), 0);
869
870   /* Refloat the menu, so that reference counting for the menu isn't
871    * affected by it being a child of the toplevel
872    */
873   g_object_force_floating (G_OBJECT (menu));
874   menu->needs_destruction_ref_count = TRUE;
875
876   menu->view_window = NULL;
877   menu->bin_window = NULL;
878
879   menu->scroll_offset = 0;
880   menu->scroll_step  = 0;
881   menu->timeout_id = 0;
882   menu->scroll_fast = FALSE;
883   
884   menu->tearoff_window = NULL;
885   menu->tearoff_hbox = NULL;
886   menu->torn_off = FALSE;
887   menu->tearoff_active = FALSE;
888   menu->tearoff_adjustment = NULL;
889   menu->tearoff_scrollbar = NULL;
890
891   menu->upper_arrow_visible = FALSE;
892   menu->lower_arrow_visible = FALSE;
893   menu->upper_arrow_prelight = FALSE;
894   menu->lower_arrow_prelight = FALSE;
895
896   priv->upper_arrow_state = GTK_STATE_NORMAL;
897   priv->lower_arrow_state = GTK_STATE_NORMAL;
898
899   priv->have_layout = FALSE;
900 }
901
902 static void
903 gtk_menu_destroy (GtkObject *object)
904 {
905   GtkMenu *menu;
906   GtkMenuAttachData *data;
907   GtkMenuPrivate *priv; 
908
909   g_return_if_fail (GTK_IS_MENU (object));
910
911   menu = GTK_MENU (object);
912
913   gtk_menu_remove_scroll_timeout (menu);
914   
915   data = g_object_get_data (G_OBJECT (object), attach_data_key);
916   if (data)
917     gtk_menu_detach (menu);
918   
919   gtk_menu_stop_navigating_submenu (menu);
920
921   if (menu->old_active_menu_item)
922     {
923       g_object_unref (menu->old_active_menu_item);
924       menu->old_active_menu_item = NULL;
925     }
926
927   /* Add back the reference count for being a child */
928   if (menu->needs_destruction_ref_count)
929     {
930       menu->needs_destruction_ref_count = FALSE;
931       g_object_ref (object);
932     }
933   
934   if (menu->accel_group)
935     {
936       g_object_unref (menu->accel_group);
937       menu->accel_group = NULL;
938     }
939
940   if (menu->toplevel)
941     gtk_widget_destroy (menu->toplevel);
942
943   if (menu->tearoff_window)
944     gtk_widget_destroy (menu->tearoff_window);
945
946   priv = gtk_menu_get_private (menu);
947
948   if (priv->heights)
949     {
950       g_free (priv->heights);
951       priv->heights = NULL;
952     }
953
954   if (priv->title)
955     {
956       g_free (priv->title);
957       priv->title = NULL;
958     }
959
960   GTK_OBJECT_CLASS (gtk_menu_parent_class)->destroy (object);
961 }
962
963 static void
964 gtk_menu_finalize (GObject *object)
965 {
966   GtkMenu *menu = GTK_MENU (object);
967
968   g_free (menu->accel_path);
969   
970   G_OBJECT_CLASS (gtk_menu_parent_class)->finalize (object);
971 }
972
973 static void
974 menu_change_screen (GtkMenu   *menu,
975                     GdkScreen *new_screen)
976 {
977   GtkMenuPrivate *private = gtk_menu_get_private (menu);
978
979   if (gtk_widget_has_screen (GTK_WIDGET (menu)))
980     {
981       if (new_screen == gtk_widget_get_screen (GTK_WIDGET (menu)))
982         return;
983     }
984
985   if (menu->torn_off)
986     {
987       gtk_window_set_screen (GTK_WINDOW (menu->tearoff_window), new_screen);
988       gtk_menu_position (menu);
989     }
990
991   gtk_window_set_screen (GTK_WINDOW (menu->toplevel), new_screen);
992   private->monitor_num = -1;
993 }
994
995 static void
996 attach_widget_screen_changed (GtkWidget *attach_widget,
997                               GdkScreen *previous_screen,
998                               GtkMenu   *menu)
999 {
1000   if (gtk_widget_has_screen (attach_widget) &&
1001       !g_object_get_data (G_OBJECT (menu), "gtk-menu-explicit-screen"))
1002     {
1003       menu_change_screen (menu, gtk_widget_get_screen (attach_widget));
1004     }
1005 }
1006
1007 void
1008 gtk_menu_attach_to_widget (GtkMenu             *menu,
1009                            GtkWidget           *attach_widget,
1010                            GtkMenuDetachFunc    detacher)
1011 {
1012   GtkMenuAttachData *data;
1013   GList *list;
1014   
1015   g_return_if_fail (GTK_IS_MENU (menu));
1016   g_return_if_fail (GTK_IS_WIDGET (attach_widget));
1017   
1018   /* keep this function in sync with gtk_widget_set_parent()
1019    */
1020   
1021   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1022   if (data)
1023     {
1024       g_warning ("gtk_menu_attach_to_widget(): menu already attached to %s",
1025                  g_type_name (G_TYPE_FROM_INSTANCE (data->attach_widget)));
1026      return;
1027     }
1028   
1029   g_object_ref_sink (menu);
1030   
1031   data = g_new (GtkMenuAttachData, 1);
1032   data->attach_widget = attach_widget;
1033   
1034   g_signal_connect (attach_widget, "screen_changed",
1035                     G_CALLBACK (attach_widget_screen_changed), menu);
1036   attach_widget_screen_changed (attach_widget, NULL, menu);
1037   
1038   data->detacher = detacher;
1039   g_object_set_data (G_OBJECT (menu), I_(attach_data_key), data);
1040   list = g_object_steal_data (G_OBJECT (attach_widget), ATTACHED_MENUS);
1041   if (!g_list_find (list, menu))
1042     {
1043       list = g_list_prepend (list, menu);
1044     }
1045   g_object_set_data_full (G_OBJECT (attach_widget), I_(ATTACHED_MENUS), list, (GtkDestroyNotify) g_list_free);
1046   
1047   if (GTK_WIDGET_STATE (menu) != GTK_STATE_NORMAL)
1048     gtk_widget_set_state (GTK_WIDGET (menu), GTK_STATE_NORMAL);
1049   
1050   /* we don't need to set the style here, since
1051    * we are a toplevel widget.
1052    */
1053
1054   /* Fallback title for menu comes from attach widget */
1055   gtk_menu_update_title (menu);
1056 }
1057
1058 GtkWidget*
1059 gtk_menu_get_attach_widget (GtkMenu *menu)
1060 {
1061   GtkMenuAttachData *data;
1062   
1063   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1064   
1065   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1066   if (data)
1067     return data->attach_widget;
1068   return NULL;
1069 }
1070
1071 void
1072 gtk_menu_detach (GtkMenu *menu)
1073 {
1074   GtkMenuAttachData *data;
1075   GList *list;
1076   
1077   g_return_if_fail (GTK_IS_MENU (menu));
1078   
1079   /* keep this function in sync with gtk_widget_unparent()
1080    */
1081   data = g_object_get_data (G_OBJECT (menu), attach_data_key);
1082   if (!data)
1083     {
1084       g_warning ("gtk_menu_detach(): menu is not attached");
1085       return;
1086     }
1087   g_object_set_data (G_OBJECT (menu), I_(attach_data_key), NULL);
1088   
1089   g_signal_handlers_disconnect_by_func (data->attach_widget,
1090                                         (gpointer) attach_widget_screen_changed,
1091                                         menu);
1092
1093   if (data->detacher)
1094     data->detacher (data->attach_widget, menu);
1095   list = g_object_steal_data (G_OBJECT (data->attach_widget), ATTACHED_MENUS);
1096   list = g_list_remove (list, menu);
1097   if (list)
1098     g_object_set_data_full (G_OBJECT (data->attach_widget), I_(ATTACHED_MENUS), list, (GtkDestroyNotify) g_list_free);
1099   else
1100     g_object_set_data (G_OBJECT (data->attach_widget), I_(ATTACHED_MENUS), NULL);
1101   
1102   if (GTK_WIDGET_REALIZED (menu))
1103     gtk_widget_unrealize (GTK_WIDGET (menu));
1104   
1105   g_free (data);
1106   
1107   /* Fallback title for menu comes from attach widget */
1108   gtk_menu_update_title (menu);
1109
1110   g_object_unref (menu);
1111 }
1112
1113 static void
1114 gtk_menu_remove (GtkContainer *container,
1115                  GtkWidget    *widget)
1116 {
1117   GtkMenu *menu;
1118
1119   g_return_if_fail (GTK_IS_MENU (container));
1120   g_return_if_fail (GTK_IS_MENU_ITEM (widget));
1121
1122   menu = GTK_MENU (container);
1123
1124   /* Clear out old_active_menu_item if it matches the item we are removing
1125    */
1126   if (menu->old_active_menu_item == widget)
1127     {
1128       g_object_unref (menu->old_active_menu_item);
1129       menu->old_active_menu_item = NULL;
1130     }
1131
1132   GTK_CONTAINER_CLASS (gtk_menu_parent_class)->remove (container, widget);
1133   g_object_set_data (G_OBJECT (widget), I_(ATTACH_INFO_KEY), NULL);
1134
1135   menu_queue_resize (menu);
1136 }
1137
1138 GtkWidget*
1139 gtk_menu_new (void)
1140 {
1141   return g_object_new (GTK_TYPE_MENU, NULL);
1142 }
1143
1144 static void
1145 gtk_menu_real_insert (GtkMenuShell *menu_shell,
1146                       GtkWidget    *child,
1147                       gint          position)
1148 {
1149   GtkMenu *menu = GTK_MENU (menu_shell);
1150   AttachInfo *ai = get_attach_info (child);
1151
1152   ai->left_attach = -1;
1153   ai->right_attach = -1;
1154   ai->top_attach = -1;
1155   ai->bottom_attach = -1;
1156
1157   if (GTK_WIDGET_REALIZED (menu_shell))
1158     gtk_widget_set_parent_window (child, menu->bin_window);
1159
1160   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->insert (menu_shell, child, position);
1161
1162   menu_queue_resize (menu);
1163 }
1164
1165 static void
1166 gtk_menu_tearoff_bg_copy (GtkMenu *menu)
1167 {
1168   GtkWidget *widget;
1169   gint width, height;
1170
1171   widget = GTK_WIDGET (menu);
1172
1173   if (menu->torn_off)
1174     {
1175       GdkPixmap *pixmap;
1176       GdkGC *gc;
1177       GdkGCValues gc_values;
1178
1179       menu->tearoff_active = FALSE;
1180       menu->saved_scroll_offset = menu->scroll_offset;
1181       
1182       gc_values.subwindow_mode = GDK_INCLUDE_INFERIORS;
1183       gc = gdk_gc_new_with_values (widget->window,
1184                                    &gc_values, GDK_GC_SUBWINDOW);
1185       
1186       gdk_drawable_get_size (menu->tearoff_window->window, &width, &height);
1187       
1188       pixmap = gdk_pixmap_new (menu->tearoff_window->window,
1189                                width,
1190                                height,
1191                                -1);
1192
1193       gdk_draw_drawable (pixmap, gc,
1194                          menu->tearoff_window->window,
1195                          0, 0, 0, 0, -1, -1);
1196       g_object_unref (gc);
1197
1198       gtk_widget_set_size_request (menu->tearoff_window,
1199                                    width,
1200                                    height);
1201
1202       gdk_window_set_back_pixmap (menu->tearoff_window->window, pixmap, FALSE);
1203       g_object_unref (pixmap);
1204     }
1205 }
1206
1207 static gboolean
1208 popup_grab_on_window (GdkWindow *window,
1209                       guint32    activate_time,
1210                       gboolean   grab_keyboard)
1211 {
1212   if ((gdk_pointer_grab (window, TRUE,
1213                          GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
1214                          GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
1215                          GDK_POINTER_MOTION_MASK,
1216                          NULL, NULL, activate_time) == 0))
1217     {
1218       if (!grab_keyboard ||
1219           gdk_keyboard_grab (window, TRUE,
1220                              activate_time) == 0)
1221         return TRUE;
1222       else
1223         {
1224           gdk_display_pointer_ungrab (gdk_drawable_get_display (window),
1225                                       activate_time);
1226           return FALSE;
1227         }
1228     }
1229
1230   return FALSE;
1231 }
1232
1233 /**
1234  * gtk_menu_popup:
1235  * @menu: a #GtkMenu.
1236  * @parent_menu_shell: the menu shell containing the triggering menu item, or %NULL
1237  * @parent_menu_item: the menu item whose activation triggered the popup, or %NULL
1238  * @func: a user supplied function used to position the menu, or %NULL
1239  * @data: user supplied data to be passed to @func.
1240  * @button: the mouse button which was pressed to initiate the event.
1241  * @activate_time: the time at which the activation event occurred.
1242  *
1243  * Displays a menu and makes it available for selection.  Applications can use
1244  * this function to display context-sensitive menus, and will typically supply
1245  * %NULL for the @parent_menu_shell, @parent_menu_item, @func and @data 
1246  * parameters. The default menu positioning function will position the menu
1247  * at the current mouse cursor position.
1248  *
1249  * The @button parameter should be the mouse button pressed to initiate
1250  * the menu popup. If the menu popup was initiated by something other than
1251  * a mouse button press, such as a mouse button release or a keypress,
1252  * @button should be 0.
1253  *
1254  * The @activate_time parameter should be the time stamp of the event that
1255  * initiated the popup. If such an event is not available, use
1256  * gtk_get_current_event_time() instead.
1257  *
1258  */
1259 void
1260 gtk_menu_popup (GtkMenu             *menu,
1261                 GtkWidget           *parent_menu_shell,
1262                 GtkWidget           *parent_menu_item,
1263                 GtkMenuPositionFunc  func,
1264                 gpointer             data,
1265                 guint                button,
1266                 guint32              activate_time)
1267 {
1268   GtkWidget *widget;
1269   GtkWidget *xgrab_shell;
1270   GtkWidget *parent;
1271   GdkEvent *current_event;
1272   GtkMenuShell *menu_shell;
1273   gboolean grab_keyboard;
1274   GtkMenuPrivate *priv;
1275   GtkWidget *parent_toplevel;
1276
1277   g_return_if_fail (GTK_IS_MENU (menu));
1278
1279   widget = GTK_WIDGET (menu);
1280   menu_shell = GTK_MENU_SHELL (menu);
1281   priv = gtk_menu_get_private (menu);
1282
1283   menu_shell->parent_menu_shell = parent_menu_shell;
1284
1285   priv->seen_item_enter = FALSE;
1286   
1287   /* Find the last viewable ancestor, and make an X grab on it
1288    */
1289   parent = GTK_WIDGET (menu);
1290   xgrab_shell = NULL;
1291   while (parent)
1292     {
1293       gboolean viewable = TRUE;
1294       GtkWidget *tmp = parent;
1295       
1296       while (tmp)
1297         {
1298           if (!GTK_WIDGET_MAPPED (tmp))
1299             {
1300               viewable = FALSE;
1301               break;
1302             }
1303           tmp = tmp->parent;
1304         }
1305       
1306       if (viewable)
1307         xgrab_shell = parent;
1308       
1309       parent = GTK_MENU_SHELL (parent)->parent_menu_shell;
1310     }
1311
1312   /* We want to receive events generated when we map the menu; unfortunately,
1313    * since there is probably already an implicit grab in place from the
1314    * button that the user used to pop up the menu, we won't receive then --
1315    * in particular, the EnterNotify when the menu pops up under the pointer.
1316    *
1317    * If we are grabbing on a parent menu shell, no problem; just grab on
1318    * that menu shell first before popping up the window with owner_events = TRUE.
1319    *
1320    * When grabbing on the menu itself, things get more convuluted - we
1321    * we do an explicit grab on a specially created window with
1322    * owner_events = TRUE, which we override further down with a grab
1323    * on the menu. (We can't grab on the menu until it is mapped; we
1324    * probably could just leave the grab on the other window, with a
1325    * little reorganization of the code in gtkmenu*).
1326    */
1327   grab_keyboard = gtk_menu_shell_get_take_focus (menu_shell);
1328   gtk_window_set_accept_focus (GTK_WINDOW (menu->toplevel), grab_keyboard);
1329
1330   if (xgrab_shell && xgrab_shell != widget)
1331     {
1332       if (popup_grab_on_window (xgrab_shell->window, activate_time, grab_keyboard))
1333         GTK_MENU_SHELL (xgrab_shell)->have_xgrab = TRUE;
1334     }
1335   else
1336     {
1337       GdkWindow *transfer_window;
1338
1339       xgrab_shell = widget;
1340       transfer_window = menu_grab_transfer_window_get (menu);
1341       if (popup_grab_on_window (transfer_window, activate_time, grab_keyboard))
1342         GTK_MENU_SHELL (xgrab_shell)->have_xgrab = TRUE;
1343     }
1344
1345   if (!GTK_MENU_SHELL (xgrab_shell)->have_xgrab)
1346     {
1347       /* We failed to make our pointer/keyboard grab. Rather than leaving the user
1348        * with a stuck up window, we just abort here. Presumably the user will
1349        * try again.
1350        */
1351       menu_shell->parent_menu_shell = NULL;
1352       menu_grab_transfer_window_destroy (menu);
1353       return;
1354     }
1355
1356   menu_shell->active = TRUE;
1357   menu_shell->button = button;
1358
1359   /* If we are popping up the menu from something other than, a button
1360    * press then, as a heuristic, we ignore enter events for the menu
1361    * until we get a MOTION_NOTIFY.  
1362    */
1363
1364   current_event = gtk_get_current_event ();
1365   if (current_event)
1366     {
1367       if ((current_event->type != GDK_BUTTON_PRESS) &&
1368           (current_event->type != GDK_ENTER_NOTIFY))
1369         menu_shell->ignore_enter = TRUE;
1370
1371       gdk_event_free (current_event);
1372     }
1373   else
1374     menu_shell->ignore_enter = TRUE;
1375
1376   if (menu->torn_off)
1377     {
1378       gtk_menu_tearoff_bg_copy (menu);
1379
1380       gtk_menu_reparent (menu, menu->toplevel, FALSE);
1381     }
1382
1383   parent_toplevel = NULL;
1384   if (parent_menu_shell) 
1385     parent_toplevel = gtk_widget_get_toplevel (parent_menu_shell);
1386   else if (!g_object_get_data (G_OBJECT (menu), "gtk-menu-explicit-screen"))
1387     {
1388       GtkWidget *attach_widget = gtk_menu_get_attach_widget (menu);
1389       if (attach_widget)
1390         parent_toplevel = gtk_widget_get_toplevel (attach_widget);
1391     }
1392
1393   /* Set transient for to get the right window group and parent relationship */
1394   if (parent_toplevel && GTK_IS_WINDOW (parent_toplevel))
1395     gtk_window_set_transient_for (GTK_WINDOW (menu->toplevel),
1396                                   GTK_WINDOW (parent_toplevel));
1397   
1398   menu->parent_menu_item = parent_menu_item;
1399   menu->position_func = func;
1400   menu->position_func_data = data;
1401   menu_shell->activate_time = activate_time;
1402
1403   /* We need to show the menu here rather in the init function because
1404    * code expects to be able to tell if the menu is onscreen by
1405    * looking at the GTK_WIDGET_VISIBLE (menu)
1406    */
1407   gtk_widget_show (GTK_WIDGET (menu));
1408
1409   /* Position the menu, possibly changing the size request
1410    */
1411   gtk_menu_position (menu);
1412
1413   /* Compute the size of the toplevel and realize it so we
1414    * can scroll correctly.
1415    */
1416   {
1417     GtkRequisition tmp_request;
1418     GtkAllocation tmp_allocation = { 0, };
1419
1420     gtk_widget_size_request (menu->toplevel, &tmp_request);
1421     
1422     tmp_allocation.width = tmp_request.width;
1423     tmp_allocation.height = tmp_request.height;
1424
1425     gtk_widget_size_allocate (menu->toplevel, &tmp_allocation);
1426     
1427     gtk_widget_realize (GTK_WIDGET (menu));
1428   }
1429
1430   gtk_menu_scroll_to (menu, menu->scroll_offset);
1431
1432   /* Once everything is set up correctly, map the toplevel window on
1433      the screen.
1434    */
1435   gtk_widget_show (menu->toplevel);
1436
1437   if (xgrab_shell == widget)
1438     popup_grab_on_window (widget->window, activate_time, grab_keyboard); /* Should always succeed */
1439   gtk_grab_add (GTK_WIDGET (menu));
1440 }
1441
1442 void
1443 gtk_menu_popdown (GtkMenu *menu)
1444 {
1445   GtkMenuPrivate *private;
1446   GtkMenuShell *menu_shell;
1447
1448   g_return_if_fail (GTK_IS_MENU (menu));
1449   
1450   menu_shell = GTK_MENU_SHELL (menu);
1451   private = gtk_menu_get_private (menu);
1452
1453   menu_shell->parent_menu_shell = NULL;
1454   menu_shell->active = FALSE;
1455   menu_shell->ignore_enter = FALSE;
1456
1457   private->have_position = FALSE;
1458
1459   gtk_menu_stop_scrolling (menu);
1460   
1461   gtk_menu_stop_navigating_submenu (menu);
1462   
1463   if (menu_shell->active_menu_item)
1464     {
1465       if (menu->old_active_menu_item)
1466         g_object_unref (menu->old_active_menu_item);
1467       menu->old_active_menu_item = menu_shell->active_menu_item;
1468       g_object_ref (menu->old_active_menu_item);
1469     }
1470
1471   gtk_menu_shell_deselect (menu_shell);
1472   
1473   /* The X Grab, if present, will automatically be removed when we hide
1474    * the window */
1475   gtk_widget_hide (menu->toplevel);
1476   gtk_window_set_transient_for (GTK_WINDOW (menu->toplevel), NULL);
1477
1478   if (menu->torn_off)
1479     {
1480       gtk_widget_set_size_request (menu->tearoff_window, -1, -1);
1481       
1482       if (GTK_BIN (menu->toplevel)->child) 
1483         {
1484           gtk_menu_reparent (menu, menu->tearoff_hbox, TRUE);
1485         } 
1486       else
1487         {
1488           /* We popped up the menu from the tearoff, so we need to 
1489            * release the grab - we aren't actually hiding the menu.
1490            */
1491           if (menu_shell->have_xgrab)
1492             {
1493               GdkDisplay *display = gtk_widget_get_display (GTK_WIDGET (menu));
1494               
1495               gdk_display_pointer_ungrab (display, GDK_CURRENT_TIME);
1496               gdk_display_keyboard_ungrab (display, GDK_CURRENT_TIME);
1497             }
1498         }
1499
1500       /* gtk_menu_popdown is called each time a menu item is selected from
1501        * a torn off menu. Only scroll back to the saved position if the
1502        * non-tearoff menu was popped down.
1503        */
1504       if (!menu->tearoff_active)
1505         gtk_menu_scroll_to (menu, menu->saved_scroll_offset);
1506       menu->tearoff_active = TRUE;
1507     }
1508   else
1509     gtk_widget_hide (GTK_WIDGET (menu));
1510
1511   menu_shell->have_xgrab = FALSE;
1512   gtk_grab_remove (GTK_WIDGET (menu));
1513
1514   menu_grab_transfer_window_destroy (menu);
1515 }
1516
1517 GtkWidget*
1518 gtk_menu_get_active (GtkMenu *menu)
1519 {
1520   GtkWidget *child;
1521   GList *children;
1522   
1523   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1524   
1525   if (!menu->old_active_menu_item)
1526     {
1527       child = NULL;
1528       children = GTK_MENU_SHELL (menu)->children;
1529       
1530       while (children)
1531         {
1532           child = children->data;
1533           children = children->next;
1534           
1535           if (GTK_BIN (child)->child)
1536             break;
1537           child = NULL;
1538         }
1539       
1540       menu->old_active_menu_item = child;
1541       if (menu->old_active_menu_item)
1542         g_object_ref (menu->old_active_menu_item);
1543     }
1544   
1545   return menu->old_active_menu_item;
1546 }
1547
1548 void
1549 gtk_menu_set_active (GtkMenu *menu,
1550                      guint    index)
1551 {
1552   GtkWidget *child;
1553   GList *tmp_list;
1554   
1555   g_return_if_fail (GTK_IS_MENU (menu));
1556   
1557   tmp_list = g_list_nth (GTK_MENU_SHELL (menu)->children, index);
1558   if (tmp_list)
1559     {
1560       child = tmp_list->data;
1561       if (GTK_BIN (child)->child)
1562         {
1563           if (menu->old_active_menu_item)
1564             g_object_unref (menu->old_active_menu_item);
1565           menu->old_active_menu_item = child;
1566           g_object_ref (menu->old_active_menu_item);
1567         }
1568     }
1569 }
1570
1571 void
1572 gtk_menu_set_accel_group (GtkMenu       *menu,
1573                           GtkAccelGroup *accel_group)
1574 {
1575   g_return_if_fail (GTK_IS_MENU (menu));
1576   
1577   if (menu->accel_group != accel_group)
1578     {
1579       if (menu->accel_group)
1580         g_object_unref (menu->accel_group);
1581       menu->accel_group = accel_group;
1582       if (menu->accel_group)
1583         g_object_ref (menu->accel_group);
1584       _gtk_menu_refresh_accel_paths (menu, TRUE);
1585     }
1586 }
1587
1588 GtkAccelGroup*
1589 gtk_menu_get_accel_group (GtkMenu *menu)
1590 {
1591   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1592
1593   return menu->accel_group;
1594 }
1595
1596 static gboolean
1597 gtk_menu_real_can_activate_accel (GtkWidget *widget,
1598                                   guint      signal_id)
1599 {
1600   /* Menu items chain here to figure whether they can activate their
1601    * accelerators.  Unlike ordinary widgets, menus allow accel
1602    * activation even if invisible since that's the usual case for
1603    * submenus/popup-menus. however, the state of the attach widget
1604    * affects the "activeness" of the menu.
1605    */
1606   GtkWidget *awidget = gtk_menu_get_attach_widget (GTK_MENU (widget));
1607
1608   if (awidget)
1609     return gtk_widget_can_activate_accel (awidget, signal_id);
1610   else
1611     return GTK_WIDGET_IS_SENSITIVE (widget);
1612 }
1613
1614 /**
1615  * gtk_menu_set_accel_path
1616  * @menu:       a valid #GtkMenu
1617  * @accel_path: a valid accelerator path
1618  *
1619  * Sets an accelerator path for this menu from which accelerator paths
1620  * for its immediate children, its menu items, can be constructed.
1621  * The main purpose of this function is to spare the programmer the
1622  * inconvenience of having to call gtk_menu_item_set_accel_path() on
1623  * each menu item that should support runtime user changable accelerators.
1624  * Instead, by just calling gtk_menu_set_accel_path() on their parent,
1625  * each menu item of this menu, that contains a label describing its purpose,
1626  * automatically gets an accel path assigned. For example, a menu containing
1627  * menu items "New" and "Exit", will, after 
1628  * <literal>gtk_menu_set_accel_path (menu, "&lt;Gnumeric-Sheet&gt;/File");</literal>
1629  * has been called, assign its items the accel paths:
1630  * <literal>"&lt;Gnumeric-Sheet&gt;/File/New"</literal> and <literal>"&lt;Gnumeric-Sheet&gt;/File/Exit"</literal>.
1631  * Assigning accel paths to menu items then enables the user to change
1632  * their accelerators at runtime. More details about accelerator paths
1633  * and their default setups can be found at gtk_accel_map_add_entry().
1634  */
1635 void
1636 gtk_menu_set_accel_path (GtkMenu     *menu,
1637                          const gchar *accel_path)
1638 {
1639   g_return_if_fail (GTK_IS_MENU (menu));
1640   if (accel_path)
1641     g_return_if_fail (accel_path[0] == '<' && strchr (accel_path, '/')); /* simplistic check */
1642
1643   g_free (menu->accel_path);
1644   menu->accel_path = g_strdup (accel_path);
1645   if (menu->accel_path)
1646     _gtk_menu_refresh_accel_paths (menu, FALSE);
1647 }
1648
1649 typedef struct {
1650   GtkMenu *menu;
1651   gboolean group_changed;
1652 } AccelPropagation;
1653
1654 static void
1655 refresh_accel_paths_foreach (GtkWidget *widget,
1656                              gpointer   data)
1657 {
1658   AccelPropagation *prop = data;
1659
1660   if (GTK_IS_MENU_ITEM (widget))        /* should always be true */
1661     _gtk_menu_item_refresh_accel_path (GTK_MENU_ITEM (widget),
1662                                        prop->menu->accel_path,
1663                                        prop->menu->accel_group,
1664                                        prop->group_changed);
1665 }
1666
1667 static void
1668 _gtk_menu_refresh_accel_paths (GtkMenu *menu,
1669                                gboolean group_changed)
1670 {
1671   g_return_if_fail (GTK_IS_MENU (menu));
1672       
1673   if (menu->accel_path && menu->accel_group)
1674     {
1675       AccelPropagation prop;
1676
1677       prop.menu = menu;
1678       prop.group_changed = group_changed;
1679       gtk_container_foreach (GTK_CONTAINER (menu),
1680                              refresh_accel_paths_foreach,
1681                              &prop);
1682     }
1683 }
1684
1685 void
1686 gtk_menu_reposition (GtkMenu *menu)
1687 {
1688   g_return_if_fail (GTK_IS_MENU (menu));
1689
1690   if (GTK_WIDGET_DRAWABLE (menu) && !menu->torn_off)
1691     gtk_menu_position (menu);
1692 }
1693
1694 static void
1695 gtk_menu_scrollbar_changed (GtkAdjustment *adjustment,
1696                             GtkMenu       *menu)
1697 {
1698   g_return_if_fail (GTK_IS_MENU (menu));
1699
1700   if (adjustment->value != menu->scroll_offset)
1701     gtk_menu_scroll_to (menu, adjustment->value);
1702 }
1703
1704 static void
1705 gtk_menu_set_tearoff_hints (GtkMenu *menu,
1706                             gint     width)
1707 {
1708   GdkGeometry geometry_hints;
1709   
1710   if (!menu->tearoff_window)
1711     return;
1712
1713   if (GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
1714     {
1715       gtk_widget_size_request (menu->tearoff_scrollbar, NULL);
1716       width += menu->tearoff_scrollbar->requisition.width;
1717     }
1718
1719   geometry_hints.min_width = width;
1720   geometry_hints.max_width = width;
1721     
1722   geometry_hints.min_height = 0;
1723   geometry_hints.max_height = GTK_WIDGET (menu)->requisition.height;
1724
1725   gtk_window_set_geometry_hints (GTK_WINDOW (menu->tearoff_window),
1726                                  NULL,
1727                                  &geometry_hints,
1728                                  GDK_HINT_MAX_SIZE|GDK_HINT_MIN_SIZE);
1729 }
1730
1731 static void
1732 gtk_menu_update_title (GtkMenu *menu)
1733 {
1734   if (menu->tearoff_window)
1735     {
1736       const gchar *title;
1737       GtkWidget *attach_widget;
1738
1739       title = gtk_menu_get_title (menu);
1740       if (!title)
1741         {
1742           attach_widget = gtk_menu_get_attach_widget (menu);
1743           if (GTK_IS_MENU_ITEM (attach_widget))
1744             {
1745               GtkWidget *child = GTK_BIN (attach_widget)->child;
1746               if (GTK_IS_LABEL (child))
1747                 title = gtk_label_get_text (GTK_LABEL (child));
1748             }
1749         }
1750       
1751       if (title)
1752         gtk_window_set_title (GTK_WINDOW (menu->tearoff_window), title);
1753     }
1754 }
1755
1756 static GtkWidget*
1757 gtk_menu_get_toplevel (GtkWidget *menu)
1758 {
1759   GtkWidget *attach, *toplevel;
1760
1761   attach = gtk_menu_get_attach_widget (GTK_MENU (menu));
1762
1763   if (GTK_IS_MENU_ITEM (attach))
1764     attach = attach->parent;
1765
1766   if (GTK_IS_MENU (attach))
1767     return gtk_menu_get_toplevel (attach);
1768   else if (GTK_IS_WIDGET (attach))
1769     {
1770       toplevel = gtk_widget_get_toplevel (attach);
1771       if (GTK_WIDGET_TOPLEVEL (toplevel)) 
1772         return toplevel;
1773     }
1774
1775   return NULL;
1776 }
1777
1778 static void
1779 tearoff_window_destroyed (GtkWidget *widget,
1780                           GtkMenu   *menu)
1781 {
1782   gtk_menu_set_tearoff_state (menu, FALSE);
1783 }
1784
1785 void       
1786 gtk_menu_set_tearoff_state (GtkMenu  *menu,
1787                             gboolean  torn_off)
1788 {
1789   gint width, height;
1790   
1791   g_return_if_fail (GTK_IS_MENU (menu));
1792
1793   if (menu->torn_off != torn_off)
1794     {
1795       menu->torn_off = torn_off;
1796       menu->tearoff_active = torn_off;
1797       
1798       if (menu->torn_off)
1799         {
1800           if (GTK_WIDGET_VISIBLE (menu))
1801             gtk_menu_popdown (menu);
1802
1803           if (!menu->tearoff_window)
1804             {
1805               GtkWidget *toplevel;
1806
1807               menu->tearoff_window = gtk_widget_new (GTK_TYPE_WINDOW,
1808                                                      "type", GTK_WINDOW_TOPLEVEL,
1809                                                      "screen", gtk_widget_get_screen (menu->toplevel),
1810                                                      "app-paintable", TRUE,
1811                                                      NULL);
1812
1813               gtk_window_set_type_hint (GTK_WINDOW (menu->tearoff_window),
1814                                         GDK_WINDOW_TYPE_HINT_MENU);
1815               gtk_window_set_mnemonic_modifier (GTK_WINDOW (menu->tearoff_window), 0);
1816               g_signal_connect (menu->tearoff_window, "destroy",
1817                                 G_CALLBACK (tearoff_window_destroyed), menu);
1818               g_signal_connect (menu->tearoff_window, "event",
1819                                 G_CALLBACK (gtk_menu_window_event), menu);
1820
1821               gtk_menu_update_title (menu);
1822
1823               gtk_widget_realize (menu->tearoff_window);
1824
1825               toplevel = gtk_menu_get_toplevel (GTK_WIDGET (menu));
1826               if (toplevel != NULL)
1827                 gtk_window_set_transient_for (GTK_WINDOW (menu->tearoff_window),
1828                                               GTK_WINDOW (toplevel));
1829               
1830               menu->tearoff_hbox = gtk_hbox_new (FALSE, FALSE);
1831               gtk_container_add (GTK_CONTAINER (menu->tearoff_window), menu->tearoff_hbox);
1832
1833               gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, &height);
1834               menu->tearoff_adjustment =
1835                 GTK_ADJUSTMENT (gtk_adjustment_new (0,
1836                                                     0,
1837                                                     GTK_WIDGET (menu)->requisition.height,
1838                                                     MENU_SCROLL_STEP2,
1839                                                     height/2,
1840                                                     height));
1841               g_object_connect (menu->tearoff_adjustment,
1842                                 "signal::value_changed", gtk_menu_scrollbar_changed, menu,
1843                                 NULL);
1844               menu->tearoff_scrollbar = gtk_vscrollbar_new (menu->tearoff_adjustment);
1845
1846               gtk_box_pack_end (GTK_BOX (menu->tearoff_hbox),
1847                                 menu->tearoff_scrollbar,
1848                                 FALSE, FALSE, 0);
1849               
1850               if (menu->tearoff_adjustment->upper > height)
1851                 gtk_widget_show (menu->tearoff_scrollbar);
1852               
1853               gtk_widget_show (menu->tearoff_hbox);
1854             }
1855           
1856           gtk_menu_reparent (menu, menu->tearoff_hbox, FALSE);
1857
1858           gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, NULL);
1859
1860           /* Update menu->requisition
1861            */
1862           gtk_widget_size_request (GTK_WIDGET (menu), NULL);
1863   
1864           gtk_menu_set_tearoff_hints (menu, width);
1865             
1866           gtk_widget_realize (menu->tearoff_window);
1867           gtk_menu_position (menu);
1868           
1869           gtk_widget_show (GTK_WIDGET (menu));
1870           gtk_widget_show (menu->tearoff_window);
1871
1872           gtk_menu_scroll_to (menu, 0);
1873
1874         }
1875       else
1876         {
1877           gtk_widget_hide (GTK_WIDGET (menu));
1878           gtk_widget_hide (menu->tearoff_window);
1879           if (GTK_IS_CONTAINER (menu->toplevel))
1880             gtk_menu_reparent (menu, menu->toplevel, FALSE);
1881           gtk_widget_destroy (menu->tearoff_window);
1882           
1883           menu->tearoff_window = NULL;
1884           menu->tearoff_hbox = NULL;
1885           menu->tearoff_scrollbar = NULL;
1886           menu->tearoff_adjustment = NULL;
1887         }
1888
1889       g_object_notify (G_OBJECT (menu), "tearoff-state");
1890     }
1891 }
1892
1893 /**
1894  * gtk_menu_get_tearoff_state:
1895  * @menu: a #GtkMenu
1896  *
1897  * Returns whether the menu is torn off. See
1898  * gtk_menu_set_tearoff_state ().
1899  *
1900  * Return value: %TRUE if the menu is currently torn off.
1901  **/
1902 gboolean
1903 gtk_menu_get_tearoff_state (GtkMenu *menu)
1904 {
1905   g_return_val_if_fail (GTK_IS_MENU (menu), FALSE);
1906
1907   return menu->torn_off;
1908 }
1909
1910 /**
1911  * gtk_menu_set_title:
1912  * @menu: a #GtkMenu
1913  * @title: a string containing the title for the menu.
1914  * 
1915  * Sets the title string for the menu.  The title is displayed when the menu
1916  * is shown as a tearoff menu.  If @title is %NULL, the menu will see if it is
1917  * attached to a parent menu item, and if so it will try to use the same text as
1918  * that menu item's label.
1919  **/
1920 void
1921 gtk_menu_set_title (GtkMenu     *menu,
1922                     const gchar *title)
1923 {
1924   GtkMenuPrivate *priv;
1925   char *old_title;
1926
1927   g_return_if_fail (GTK_IS_MENU (menu));
1928
1929   priv = gtk_menu_get_private (menu);
1930
1931   old_title = priv->title;
1932   priv->title = g_strdup (title);
1933   g_free (old_title);
1934        
1935   gtk_menu_update_title (menu);
1936   g_object_notify (G_OBJECT (menu), "tearoff-title");
1937 }
1938
1939 /**
1940  * gtk_menu_get_title:
1941  * @menu: a #GtkMenu
1942  *
1943  * Returns the title of the menu. See gtk_menu_set_title().
1944  *
1945  * Return value: the title of the menu, or %NULL if the menu has no
1946  * title set on it. This string is owned by the widget and should
1947  * not be modified or freed.
1948  **/
1949 G_CONST_RETURN gchar *
1950 gtk_menu_get_title (GtkMenu *menu)
1951 {
1952   GtkMenuPrivate *priv;
1953
1954   g_return_val_if_fail (GTK_IS_MENU (menu), NULL);
1955
1956   priv = gtk_menu_get_private (menu);
1957
1958   return priv->title;
1959 }
1960
1961 void
1962 gtk_menu_reorder_child (GtkMenu   *menu,
1963                         GtkWidget *child,
1964                         gint       position)
1965 {
1966   GtkMenuShell *menu_shell;
1967
1968   g_return_if_fail (GTK_IS_MENU (menu));
1969   g_return_if_fail (GTK_IS_MENU_ITEM (child));
1970
1971   menu_shell = GTK_MENU_SHELL (menu);
1972
1973   if (g_list_find (menu_shell->children, child))
1974     {   
1975       menu_shell->children = g_list_remove (menu_shell->children, child);
1976       menu_shell->children = g_list_insert (menu_shell->children, child, position);
1977
1978       menu_queue_resize (menu);
1979     }   
1980 }
1981
1982 static void
1983 gtk_menu_style_set (GtkWidget *widget,
1984                     GtkStyle  *previous_style)
1985 {
1986   if (GTK_WIDGET_REALIZED (widget))
1987     {
1988       GtkMenu *menu = GTK_MENU (widget);
1989       
1990       gtk_style_set_background (widget->style, menu->bin_window, GTK_STATE_NORMAL);
1991       gtk_style_set_background (widget->style, menu->view_window, GTK_STATE_NORMAL);
1992       gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
1993     }
1994 }
1995
1996 static void
1997 gtk_menu_realize (GtkWidget *widget)
1998 {
1999   GdkWindowAttr attributes;
2000   gint attributes_mask;
2001   gint border_width;
2002   GtkMenu *menu;
2003   GtkWidget *child;
2004   GList *children;
2005   guint vertical_padding;
2006   guint horizontal_padding;
2007   guint scroll_arrow_height;
2008
2009   g_return_if_fail (GTK_IS_MENU (widget));
2010
2011   menu = GTK_MENU (widget);
2012   
2013   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
2014   
2015   attributes.window_type = GDK_WINDOW_CHILD;
2016   attributes.x = widget->allocation.x;
2017   attributes.y = widget->allocation.y;
2018   attributes.width = widget->allocation.width;
2019   attributes.height = widget->allocation.height;
2020   attributes.wclass = GDK_INPUT_OUTPUT;
2021   attributes.visual = gtk_widget_get_visual (widget);
2022   attributes.colormap = gtk_widget_get_colormap (widget);
2023   
2024   attributes.event_mask = gtk_widget_get_events (widget);
2025
2026   attributes.event_mask |= (GDK_EXPOSURE_MASK | GDK_KEY_PRESS_MASK |
2027                             GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
2028   
2029   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
2030   widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask);
2031   gdk_window_set_user_data (widget->window, widget);
2032   
2033   border_width = GTK_CONTAINER (widget)->border_width;
2034
2035   gtk_widget_style_get (GTK_WIDGET (menu),
2036                         "vertical-padding", &vertical_padding,
2037                         "horizontal-padding", &horizontal_padding,
2038                         "scroll-arrow-vlength", &scroll_arrow_height,
2039                         NULL);
2040
2041   attributes.x = border_width + widget->style->xthickness + horizontal_padding;
2042   attributes.y = border_width + widget->style->ythickness + vertical_padding;
2043   attributes.width = MAX (1, widget->allocation.width - attributes.x * 2);
2044   attributes.height = MAX (1, widget->allocation.height - attributes.y * 2);
2045
2046   if (menu->upper_arrow_visible)
2047     {
2048       attributes.y += scroll_arrow_height;
2049       attributes.height -= scroll_arrow_height;
2050     }
2051
2052   if (menu->lower_arrow_visible)
2053     attributes.height -= scroll_arrow_height;
2054
2055   menu->view_window = gdk_window_new (widget->window, &attributes, attributes_mask);
2056   gdk_window_set_user_data (menu->view_window, menu);
2057
2058   attributes.x = 0;
2059   attributes.y = 0;
2060   attributes.width = MAX (1, widget->allocation.width - (border_width + widget->style->xthickness + horizontal_padding) * 2);
2061   attributes.height = MAX (1, widget->requisition.height - (border_width + widget->style->ythickness + vertical_padding) * 2);
2062   
2063   menu->bin_window = gdk_window_new (menu->view_window, &attributes, attributes_mask);
2064   gdk_window_set_user_data (menu->bin_window, menu);
2065
2066   children = GTK_MENU_SHELL (menu)->children;
2067   while (children)
2068     {
2069       child = children->data;
2070       children = children->next;
2071           
2072       gtk_widget_set_parent_window (child, menu->bin_window);
2073     }
2074   
2075   widget->style = gtk_style_attach (widget->style, widget->window);
2076   gtk_style_set_background (widget->style, menu->bin_window, GTK_STATE_NORMAL);
2077   gtk_style_set_background (widget->style, menu->view_window, GTK_STATE_NORMAL);
2078   gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
2079
2080   if (GTK_MENU_SHELL (widget)->active_menu_item)
2081     gtk_menu_scroll_item_visible (GTK_MENU_SHELL (widget),
2082                                   GTK_MENU_SHELL (widget)->active_menu_item);
2083
2084   gdk_window_show (menu->bin_window);
2085   gdk_window_show (menu->view_window);
2086 }
2087
2088 static gboolean 
2089 gtk_menu_focus (GtkWidget       *widget,
2090                 GtkDirectionType direction)
2091 {
2092   /*
2093    * A menu or its menu items cannot have focus
2094    */
2095   return FALSE;
2096 }
2097
2098 /* See notes in gtk_menu_popup() for information about the "grab transfer window"
2099  */
2100 static GdkWindow *
2101 menu_grab_transfer_window_get (GtkMenu *menu)
2102 {
2103   GdkWindow *window = g_object_get_data (G_OBJECT (menu), "gtk-menu-transfer-window");
2104   if (!window)
2105     {
2106       GdkWindowAttr attributes;
2107       gint attributes_mask;
2108       
2109       attributes.x = -100;
2110       attributes.y = -100;
2111       attributes.width = 10;
2112       attributes.height = 10;
2113       attributes.window_type = GDK_WINDOW_TEMP;
2114       attributes.wclass = GDK_INPUT_ONLY;
2115       attributes.override_redirect = TRUE;
2116       attributes.event_mask = 0;
2117
2118       attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
2119       
2120       window = gdk_window_new (gtk_widget_get_root_window (GTK_WIDGET (menu)),
2121                                &attributes, attributes_mask);
2122       gdk_window_set_user_data (window, menu);
2123
2124       gdk_window_show (window);
2125
2126       g_object_set_data (G_OBJECT (menu), I_("gtk-menu-transfer-window"), window);
2127     }
2128
2129   return window;
2130 }
2131
2132 static void
2133 menu_grab_transfer_window_destroy (GtkMenu *menu)
2134 {
2135   GdkWindow *window = g_object_get_data (G_OBJECT (menu), "gtk-menu-transfer-window");
2136   if (window)
2137     {
2138       gdk_window_set_user_data (window, NULL);
2139       gdk_window_destroy (window);
2140       g_object_set_data (G_OBJECT (menu), I_("gtk-menu-transfer-window"), NULL);
2141     }
2142 }
2143
2144 static void
2145 gtk_menu_unrealize (GtkWidget *widget)
2146 {
2147   GtkMenu *menu;
2148
2149   g_return_if_fail (GTK_IS_MENU (widget));
2150
2151   menu = GTK_MENU (widget);
2152
2153   menu_grab_transfer_window_destroy (menu);
2154
2155   gdk_window_set_user_data (menu->view_window, NULL);
2156   gdk_window_destroy (menu->view_window);
2157   menu->view_window = NULL;
2158
2159   gdk_window_set_user_data (menu->bin_window, NULL);
2160   gdk_window_destroy (menu->bin_window);
2161   menu->bin_window = NULL;
2162
2163   (* GTK_WIDGET_CLASS (gtk_menu_parent_class)->unrealize) (widget);
2164 }
2165
2166 static void
2167 gtk_menu_size_request (GtkWidget      *widget,
2168                        GtkRequisition *requisition)
2169 {
2170   gint i;
2171   GtkMenu *menu;
2172   GtkMenuShell *menu_shell;
2173   GtkWidget *child;
2174   GList *children;
2175   guint max_toggle_size;
2176   guint max_accel_width;
2177   guint vertical_padding;
2178   guint horizontal_padding;
2179   GtkRequisition child_requisition;
2180   GtkMenuPrivate *priv;
2181   
2182   g_return_if_fail (GTK_IS_MENU (widget));
2183   g_return_if_fail (requisition != NULL);
2184   
2185   menu = GTK_MENU (widget);
2186   menu_shell = GTK_MENU_SHELL (widget);
2187   priv = gtk_menu_get_private (menu);
2188   
2189   requisition->width = 0;
2190   requisition->height = 0;
2191   
2192   max_toggle_size = 0;
2193   max_accel_width = 0;
2194   
2195   g_free (priv->heights);
2196   priv->heights = g_new0 (guint, gtk_menu_get_n_rows (menu));
2197   priv->heights_length = gtk_menu_get_n_rows (menu);
2198
2199   children = menu_shell->children;
2200   while (children)
2201     {
2202       gint part;
2203       gint toggle_size;
2204       gint l, r, t, b;
2205
2206       child = children->data;
2207       children = children->next;
2208       
2209       if (! GTK_WIDGET_VISIBLE (child))
2210         continue;
2211
2212       get_effective_child_attach (child, &l, &r, &t, &b);
2213
2214       /* It's important to size_request the child
2215        * before doing the toggle size request, in
2216        * case the toggle size request depends on the size
2217        * request of a child of the child (e.g. for ImageMenuItem)
2218        */
2219
2220        GTK_MENU_ITEM (child)->show_submenu_indicator = TRUE;
2221        gtk_widget_size_request (child, &child_requisition);
2222
2223        gtk_menu_item_toggle_size_request (GTK_MENU_ITEM (child), &toggle_size);
2224        max_toggle_size = MAX (max_toggle_size, toggle_size);
2225        max_accel_width = MAX (max_accel_width,
2226                               GTK_MENU_ITEM (child)->accelerator_width);
2227
2228        part = child_requisition.width / (r - l);
2229        requisition->width = MAX (requisition->width, part);
2230
2231        part = MAX (child_requisition.height, toggle_size) / (b - t);
2232        priv->heights[t] = MAX (priv->heights[t], part);
2233     }
2234
2235   for (i = 0; i < gtk_menu_get_n_rows (menu); i++)
2236     requisition->height += priv->heights[i];
2237
2238   requisition->width += max_toggle_size + max_accel_width;
2239   requisition->width *= gtk_menu_get_n_columns (menu);
2240
2241   gtk_widget_style_get (GTK_WIDGET (menu),
2242                         "vertical-padding", &vertical_padding,
2243                         "horizontal-padding", &horizontal_padding,
2244                         NULL);
2245
2246   requisition->width += (GTK_CONTAINER (menu)->border_width + horizontal_padding +
2247                          widget->style->xthickness) * 2;
2248   requisition->height += (GTK_CONTAINER (menu)->border_width + vertical_padding +
2249                           widget->style->ythickness) * 2;
2250   
2251   menu->toggle_size = max_toggle_size;
2252
2253   /* Don't resize the tearoff if it is not active, because it won't redraw (it is only a background pixmap).
2254    */
2255   if (menu->tearoff_active)
2256     gtk_menu_set_tearoff_hints (menu, requisition->width);
2257 }
2258
2259 static void
2260 gtk_menu_size_allocate (GtkWidget     *widget,
2261                         GtkAllocation *allocation)
2262 {
2263   GtkMenu *menu;
2264   GtkMenuShell *menu_shell;
2265   GtkWidget *child;
2266   GtkAllocation child_allocation;
2267   GtkRequisition child_requisition;
2268   GtkMenuPrivate *priv;
2269   GList *children;
2270   gint x, y;
2271   gint width, height;
2272   guint vertical_padding;
2273   guint horizontal_padding;
2274   gint scroll_arrow_height;
2275   
2276   g_return_if_fail (GTK_IS_MENU (widget));
2277   g_return_if_fail (allocation != NULL);
2278   
2279   menu = GTK_MENU (widget);
2280   menu_shell = GTK_MENU_SHELL (widget);
2281   priv = gtk_menu_get_private (menu);
2282
2283   widget->allocation = *allocation;
2284   gtk_widget_get_child_requisition (GTK_WIDGET (menu), &child_requisition);
2285
2286   gtk_widget_style_get (GTK_WIDGET (menu),
2287                         "vertical-padding", &vertical_padding,
2288                         "horizontal-padding", &horizontal_padding,
2289                         "scroll-arrow-vlength", &scroll_arrow_height,
2290                         NULL);
2291
2292   x = GTK_CONTAINER (menu)->border_width + widget->style->xthickness + horizontal_padding;
2293   y = GTK_CONTAINER (menu)->border_width + widget->style->ythickness + vertical_padding;
2294
2295   width = MAX (1, allocation->width - x * 2);
2296   height = MAX (1, allocation->height - y * 2);
2297
2298   child_requisition.width -= x * 2;
2299   child_requisition.height -= y * 2;
2300
2301   if (menu_shell->active)
2302     gtk_menu_scroll_to (menu, menu->scroll_offset);
2303
2304   if (menu->upper_arrow_visible && !menu->tearoff_active)
2305     {
2306       y += scroll_arrow_height;
2307       height -= scroll_arrow_height;
2308     }
2309
2310   if (menu->lower_arrow_visible && !menu->tearoff_active)
2311     height -= scroll_arrow_height;
2312
2313   if (GTK_WIDGET_REALIZED (widget))
2314     {
2315       gdk_window_move_resize (widget->window,
2316                               allocation->x, allocation->y,
2317                               allocation->width, allocation->height);
2318
2319       gdk_window_move_resize (menu->view_window,
2320                               x,
2321                               y,
2322                               width,
2323                               height);
2324     }
2325
2326   if (menu_shell->children)
2327     {
2328       gint base_width = width / gtk_menu_get_n_columns (menu);
2329
2330       children = menu_shell->children;
2331       while (children)
2332         {
2333           child = children->data;
2334           children = children->next;
2335
2336           if (GTK_WIDGET_VISIBLE (child))
2337             {
2338               gint i;
2339               gint l, r, t, b;
2340
2341               get_effective_child_attach (child, &l, &r, &t, &b);
2342
2343               if (gtk_widget_get_direction (GTK_WIDGET (menu)) == GTK_TEXT_DIR_RTL)
2344                 {
2345                   guint tmp;
2346                   tmp = gtk_menu_get_n_columns (menu) - l;
2347                   l = gtk_menu_get_n_columns (menu) - r;
2348                   r = tmp;
2349                 }
2350
2351               child_allocation.width = (r - l) * base_width;
2352               child_allocation.height = 0;
2353               child_allocation.x = l * base_width;
2354               child_allocation.y = 0;
2355
2356               for (i = 0; i < b; i++)
2357                 {
2358                   if (i < t)
2359                     child_allocation.y += priv->heights[i];
2360                   else
2361                     child_allocation.height += priv->heights[i];
2362                 }
2363
2364               gtk_menu_item_toggle_size_allocate (GTK_MENU_ITEM (child),
2365                                                   menu->toggle_size);
2366
2367               gtk_widget_size_allocate (child, &child_allocation);
2368               gtk_widget_queue_draw (child);
2369             }
2370         }
2371       
2372       /* Resize the item window */
2373       if (GTK_WIDGET_REALIZED (widget))
2374         {
2375           gint i;
2376           gint width, height;
2377
2378           height = 0;
2379           for (i = 0; i < gtk_menu_get_n_rows (menu); i++)
2380             height += priv->heights[i];
2381
2382           width = gtk_menu_get_n_columns (menu) * base_width;
2383           gdk_window_resize (menu->bin_window, width, height);
2384         }
2385
2386       if (menu->tearoff_active)
2387         {
2388           if (allocation->height >= widget->requisition.height)
2389             {
2390               if (GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
2391                 {
2392                   gtk_widget_hide (menu->tearoff_scrollbar);
2393                   gtk_menu_set_tearoff_hints (menu, allocation->width);
2394
2395                   gtk_menu_scroll_to (menu, 0);
2396                 }
2397             }
2398           else
2399             {
2400               menu->tearoff_adjustment->upper = widget->requisition.height;
2401               menu->tearoff_adjustment->page_size = allocation->height;
2402               
2403               if (menu->tearoff_adjustment->value + menu->tearoff_adjustment->page_size >
2404                   menu->tearoff_adjustment->upper)
2405                 {
2406                   gint value;
2407                   value = menu->tearoff_adjustment->upper - menu->tearoff_adjustment->page_size;
2408                   if (value < 0)
2409                     value = 0;
2410                   gtk_menu_scroll_to (menu, value);
2411                 }
2412               
2413               gtk_adjustment_changed (menu->tearoff_adjustment);
2414               
2415               if (!GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
2416                 {
2417                   gtk_widget_show (menu->tearoff_scrollbar);
2418                   gtk_menu_set_tearoff_hints (menu, allocation->width);
2419                 }
2420             }
2421         }
2422     }
2423 }
2424
2425 static void
2426 gtk_menu_paint (GtkWidget      *widget,
2427                 GdkEventExpose *event)
2428 {
2429   GtkMenu *menu;
2430   GtkMenuPrivate *priv;
2431   gint width, height;
2432   gint border_x, border_y;
2433   guint vertical_padding;
2434   guint horizontal_padding;
2435   gint scroll_arrow_height;
2436   
2437   g_return_if_fail (GTK_IS_MENU (widget));
2438
2439   menu = GTK_MENU (widget);
2440   priv = gtk_menu_get_private (menu);
2441
2442   gtk_widget_style_get (GTK_WIDGET (menu),
2443                         "vertical-padding", &vertical_padding,
2444                         "horizontal-padding", &horizontal_padding,
2445                         "scroll-arrow-vlength", &scroll_arrow_height,
2446                         NULL);
2447
2448   border_x = GTK_CONTAINER (widget)->border_width + widget->style->xthickness + horizontal_padding;
2449   border_y = GTK_CONTAINER (widget)->border_width + widget->style->ythickness + vertical_padding;
2450   gdk_drawable_get_size (widget->window, &width, &height);
2451
2452   if (event->window == widget->window)
2453     {
2454       gint arrow_space = scroll_arrow_height - 2 * widget->style->ythickness;
2455       gint arrow_size = 0.7 * arrow_space;
2456
2457       gtk_paint_box (widget->style,
2458                      widget->window,
2459                      GTK_STATE_NORMAL,
2460                      GTK_SHADOW_OUT,
2461                      NULL, widget, "menu",
2462                      0, 0, -1, -1);
2463
2464       if (menu->upper_arrow_visible && !menu->tearoff_active)
2465         {
2466           gtk_paint_box (widget->style,
2467                          widget->window,
2468                          priv->upper_arrow_state,
2469                          GTK_SHADOW_OUT,
2470                          NULL, widget, "menu",
2471                          border_x,
2472                          border_y,
2473                          width - 2 * border_x,
2474                          scroll_arrow_height);
2475
2476           gtk_paint_arrow (widget->style,
2477                            widget->window,
2478                            priv->upper_arrow_state,
2479                            GTK_SHADOW_OUT,
2480                            NULL, widget, "menu_scroll_arrow_up",
2481                            GTK_ARROW_UP,
2482                            TRUE,
2483                            (width - arrow_size ) / 2,
2484                            border_y + widget->style->ythickness + (arrow_space - arrow_size)/2,
2485                            arrow_size, arrow_size);
2486         }
2487
2488       if (menu->lower_arrow_visible && !menu->tearoff_active)
2489         {
2490           gtk_paint_box (widget->style,
2491                          widget->window,
2492                          priv->lower_arrow_state,
2493                          GTK_SHADOW_OUT,
2494                          NULL, widget, "menu",
2495                          border_x,
2496                          height - border_y - scroll_arrow_height,
2497                          width - 2*border_x,
2498                          scroll_arrow_height);
2499
2500           gtk_paint_arrow (widget->style,
2501                            widget->window,
2502                            priv->lower_arrow_state,
2503                            GTK_SHADOW_OUT,
2504                            NULL, widget, "menu_scroll_arrow_down",
2505                            GTK_ARROW_DOWN,
2506                            TRUE,
2507                            (width - arrow_size) / 2,
2508                            height - border_y - scroll_arrow_height +
2509                               widget->style->ythickness + (arrow_space - arrow_size)/2,
2510                            arrow_size, arrow_size);
2511         }
2512     }
2513   else if (event->window == menu->bin_window)
2514     {
2515       gtk_paint_box (widget->style,
2516                      menu->bin_window,
2517                      GTK_STATE_NORMAL,
2518                      GTK_SHADOW_OUT,
2519                      NULL, widget, "menu",
2520                      - border_x, menu->scroll_offset - border_y, 
2521                      width, height);
2522     }
2523 }
2524
2525 static gboolean
2526 gtk_menu_expose (GtkWidget      *widget,
2527                  GdkEventExpose *event)
2528 {
2529   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
2530   g_return_val_if_fail (event != NULL, FALSE);
2531
2532   if (GTK_WIDGET_DRAWABLE (widget))
2533     {
2534       gtk_menu_paint (widget, event);
2535       
2536       (* GTK_WIDGET_CLASS (gtk_menu_parent_class)->expose_event) (widget, event);
2537     }
2538   
2539   return FALSE;
2540 }
2541
2542 static void
2543 gtk_menu_show (GtkWidget *widget)
2544 {
2545   GtkMenu *menu = GTK_MENU (widget);
2546
2547   _gtk_menu_refresh_accel_paths (menu, FALSE);
2548
2549   GTK_WIDGET_CLASS (gtk_menu_parent_class)->show (widget);
2550 }
2551
2552 static gboolean
2553 gtk_menu_button_scroll (GtkWidget      *widget,
2554                         GdkEventButton *event)
2555 {
2556   if (GTK_IS_MENU (widget))
2557     {
2558       GtkMenu *menu = GTK_MENU (widget);
2559
2560       if (menu->upper_arrow_prelight || menu->lower_arrow_prelight)
2561         {
2562           GtkSettings *settings = gtk_widget_get_settings (widget);
2563           gboolean     touchscreen_mode;
2564
2565           g_object_get (G_OBJECT (settings),
2566                         "gtk-touchscreen-mode", &touchscreen_mode,
2567                         NULL);
2568
2569           if (touchscreen_mode)
2570             gtk_menu_handle_scrolling (menu,
2571                                        event->x_root, event->y_root,
2572                                        event->type == GDK_BUTTON_PRESS,
2573                                        FALSE);
2574
2575           return TRUE;
2576         }
2577     }
2578
2579   return FALSE;
2580 }
2581
2582 static gboolean
2583 gtk_menu_button_press (GtkWidget      *widget,
2584                        GdkEventButton *event)
2585 {
2586   if (event->type != GDK_BUTTON_PRESS)
2587     return FALSE;
2588
2589   /* Don't pop down the menu for presses over scroll arrows
2590    */
2591   if (gtk_menu_button_scroll (widget, event))
2592     return TRUE;
2593
2594   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->button_press_event (widget, event);
2595 }
2596
2597 static gboolean
2598 gtk_menu_button_release (GtkWidget      *widget,
2599                          GdkEventButton *event)
2600 {
2601   if (GTK_IS_MENU (widget))
2602     {
2603       GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (widget));
2604
2605       if (priv->ignore_button_release)
2606         {
2607           priv->ignore_button_release = FALSE;
2608           return FALSE;
2609         }
2610     }
2611
2612   if (event->type != GDK_BUTTON_RELEASE)
2613     return FALSE;
2614
2615   /* Don't pop down the menu for releases over scroll arrows
2616    */
2617   if (gtk_menu_button_scroll (widget, event))
2618     return TRUE;
2619
2620   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->button_release_event (widget, event);
2621 }
2622
2623 static const gchar *
2624 get_accel_path (GtkWidget *menu_item,
2625                 gboolean  *locked)
2626 {
2627   const gchar *path;
2628   GtkWidget *label;
2629   GClosure *accel_closure;
2630   GtkAccelGroup *accel_group;    
2631
2632   path = _gtk_widget_get_accel_path (menu_item, locked);
2633   if (!path)
2634     {
2635       path = GTK_MENU_ITEM (menu_item)->accel_path;
2636       
2637       if (locked)
2638         {
2639           *locked = TRUE;
2640
2641           label = GTK_BIN (menu_item)->child;
2642           
2643           if (GTK_IS_ACCEL_LABEL (label))
2644             {
2645               g_object_get (label, 
2646                             "accel-closure", &accel_closure, 
2647                             NULL);
2648               if (accel_closure)
2649                 {
2650                   accel_group = gtk_accel_group_from_accel_closure (accel_closure);
2651                   
2652                   *locked = accel_group->lock_count > 0;
2653                 }
2654             }
2655         }
2656     }
2657
2658   return path;
2659 }
2660
2661 static gboolean
2662 gtk_menu_key_press (GtkWidget   *widget,
2663                     GdkEventKey *event)
2664 {
2665   GtkMenuShell *menu_shell;
2666   GtkMenu *menu;
2667   gboolean delete = FALSE;
2668   gboolean can_change_accels;
2669   gchar *accel = NULL;
2670   guint accel_key, accel_mods;
2671   GdkModifierType consumed_modifiers;
2672   GdkDisplay *display;
2673   
2674   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
2675   g_return_val_if_fail (event != NULL, FALSE);
2676       
2677   menu_shell = GTK_MENU_SHELL (widget);
2678   menu = GTK_MENU (widget);
2679   
2680   gtk_menu_stop_navigating_submenu (menu);
2681
2682   if (GTK_WIDGET_CLASS (gtk_menu_parent_class)->key_press_event (widget, event))
2683     return TRUE;
2684
2685   display = gtk_widget_get_display (widget);
2686     
2687   g_object_get (gtk_widget_get_settings (widget),
2688                 "gtk-menu-bar-accel", &accel,
2689                 "gtk-can-change-accels", &can_change_accels,
2690                 NULL);
2691
2692   if (accel && *accel)
2693     {
2694       guint keyval = 0;
2695       GdkModifierType mods = 0;
2696       gboolean handled = FALSE;
2697       
2698       gtk_accelerator_parse (accel, &keyval, &mods);
2699
2700       if (keyval == 0)
2701         g_warning ("Failed to parse menu bar accelerator '%s'\n", accel);
2702
2703       /* FIXME this is wrong, needs to be in the global accel resolution
2704        * thing, to properly consider i18n etc., but that probably requires
2705        * AccelGroup changes etc.
2706        */
2707       if (event->keyval == keyval &&
2708           (mods & event->state) == mods)
2709         gtk_menu_shell_cancel (menu_shell);
2710
2711       g_free (accel);
2712
2713       if (handled)
2714         return TRUE;
2715     }
2716   
2717   switch (event->keyval)
2718     {
2719     case GDK_Delete:
2720     case GDK_KP_Delete:
2721     case GDK_BackSpace:
2722       delete = TRUE;
2723       break;
2724     default:
2725       break;
2726     }
2727
2728   /* Figure out what modifiers went into determining the key symbol */
2729   gdk_keymap_translate_keyboard_state (gdk_keymap_get_for_display (display),
2730                                        event->hardware_keycode, event->state, event->group,
2731                                        NULL, NULL, NULL, &consumed_modifiers);
2732
2733   accel_key = gdk_keyval_to_lower (event->keyval);
2734   accel_mods = event->state & gtk_accelerator_get_default_mod_mask () & ~consumed_modifiers;
2735
2736   /* If lowercasing affects the keysym, then we need to include SHIFT in the modifiers,
2737    * We re-upper case when we match against the keyval, but display and save in caseless form.
2738    */
2739   if (accel_key != event->keyval)
2740     accel_mods |= GDK_SHIFT_MASK;
2741   
2742   /* Modify the accelerators */
2743   if (can_change_accels &&
2744       menu_shell->active_menu_item &&
2745       GTK_BIN (menu_shell->active_menu_item)->child &&                  /* no separators */
2746       GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu == NULL &&  /* no submenus */
2747       (delete || gtk_accelerator_valid (accel_key, accel_mods)))
2748     {
2749       GtkWidget *menu_item = menu_shell->active_menu_item;
2750       gboolean locked, replace_accels = TRUE;
2751       const gchar *path;
2752
2753       path = get_accel_path (menu_item, &locked);
2754       if (!path || locked)
2755         {
2756           /* can't change accelerators on menu_items without paths
2757            * (basically, those items are accelerator-locked).
2758            */
2759           /* g_print("item has no path or is locked, menu prefix: %s\n", menu->accel_path); */
2760           gtk_widget_error_bell (widget);
2761         }
2762       else
2763         {
2764           gboolean changed;
2765
2766           /* For the keys that act to delete the current setting, we delete
2767            * the current setting if there is one, otherwise, we set the
2768            * key as the accelerator.
2769            */
2770           if (delete)
2771             {
2772               GtkAccelKey key;
2773               
2774               if (gtk_accel_map_lookup_entry (path, &key) &&
2775                   (key.accel_key || key.accel_mods))
2776                 {
2777                   accel_key = 0;
2778                   accel_mods = 0;
2779                 }
2780             }
2781           changed = gtk_accel_map_change_entry (path, accel_key, accel_mods, replace_accels);
2782
2783           if (!changed)
2784             {
2785               /* we failed, probably because this key is in use and
2786                * locked already
2787                */
2788               /* g_print("failed to change\n"); */
2789               gtk_widget_error_bell (widget);
2790             }
2791         }
2792     }
2793   
2794   return TRUE;
2795 }
2796
2797 static gboolean
2798 check_threshold (GtkWidget *widget,
2799                  int start_x, int start_y,
2800                  int x, int y)
2801 {
2802 #define THRESHOLD 8
2803   
2804   return
2805     ABS (start_x - x) > THRESHOLD  ||
2806     ABS (start_y - y) > THRESHOLD;
2807 }
2808
2809 static gboolean
2810 definitely_within_item (GtkWidget *widget, 
2811                         int x,
2812                         int y)
2813 {
2814   GdkWindow *window = GTK_MENU_ITEM (widget)->event_window;
2815   int w, h;
2816
2817   gdk_drawable_get_size (window, &w, &h);
2818   
2819   return
2820     check_threshold (widget, 0, 0, x, y) &&
2821     check_threshold (widget, w - 1, 0, x, y) &&
2822     check_threshold (widget, w - 1, h - 1, x, y) &&
2823     check_threshold (widget, 0, h - 1, x, y);
2824 }
2825
2826 static gboolean
2827 gtk_menu_motion_notify  (GtkWidget         *widget,
2828                          GdkEventMotion    *event)
2829 {
2830   GtkWidget *menu_item;
2831   GtkMenu *menu;
2832   GtkMenuShell *menu_shell;
2833
2834   gboolean need_enter;
2835
2836   if (GTK_IS_MENU (widget))
2837     {
2838       GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (widget));
2839
2840       if (priv->ignore_button_release)
2841         priv->ignore_button_release = FALSE;
2842
2843       gtk_menu_handle_scrolling (GTK_MENU (widget), event->x_root, event->y_root,
2844                                  TRUE, TRUE);
2845     }
2846
2847   /* We received the event for one of two reasons:
2848    *
2849    * a) We are the active menu, and did gtk_grab_add()
2850    * b) The widget is a child of ours, and the event was propagated
2851    *
2852    * Since for computation of navigation regions, we want the menu which
2853    * is the parent of the menu item, for a), we need to find that menu,
2854    * which may be different from 'widget'.
2855    */
2856   menu_item = gtk_get_event_widget ((GdkEvent*) event);
2857   if (!GTK_IS_MENU_ITEM (menu_item) ||
2858       !GTK_IS_MENU (menu_item->parent))
2859     return FALSE;
2860
2861   menu_shell = GTK_MENU_SHELL (menu_item->parent);
2862   menu = GTK_MENU (menu_shell);
2863
2864   if (definitely_within_item (menu_item, event->x, event->y))
2865     menu_shell->activate_time = 0;
2866   
2867   need_enter = (menu->navigation_region != NULL || menu_shell->ignore_enter);
2868
2869   /* Check to see if we are within an active submenu's navigation region
2870    */
2871   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
2872     return TRUE; 
2873
2874   /* Make sure we pop down if we enter a non-selectable menu item, so we
2875    * don't show a submenu when the cursor is outside the stay-up triangle.
2876    */
2877   if (!_gtk_menu_item_is_selectable (menu_item))
2878     {
2879       gtk_menu_shell_deselect (menu_shell);
2880       return FALSE;
2881     }
2882
2883   if (need_enter)
2884     {
2885       /* The menu is now sensitive to enter events on its items, but
2886        * was previously sensitive.  So we fake an enter event.
2887        */
2888       gint width, height;
2889       
2890       menu_shell->ignore_enter = FALSE; 
2891       
2892       gdk_drawable_get_size (event->window, &width, &height);
2893       if (event->x >= 0 && event->x < width &&
2894           event->y >= 0 && event->y < height)
2895         {
2896           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
2897           gboolean result;
2898
2899           send_event->crossing.window = g_object_ref (event->window);
2900           send_event->crossing.time = event->time;
2901           send_event->crossing.send_event = TRUE;
2902           send_event->crossing.x_root = event->x_root;
2903           send_event->crossing.y_root = event->y_root;
2904           send_event->crossing.x = event->x;
2905           send_event->crossing.y = event->y;
2906
2907           /* We send the event to 'widget', the currently active menu,
2908            * instead of 'menu', the menu that the pointer is in. This
2909            * will ensure that the event will be ignored unless the
2910            * menuitem is a child of the active menu or some parent
2911            * menu of the active menu.
2912            */
2913           result = gtk_widget_event (widget, send_event);
2914           gdk_event_free (send_event);
2915
2916           return result;
2917         }
2918     }
2919
2920   return FALSE;
2921 }
2922
2923 static gboolean
2924 get_double_arrows (GtkMenu *menu)
2925 {
2926   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
2927   gboolean        double_arrows;
2928
2929   gtk_widget_style_get (GTK_WIDGET (menu),
2930                         "double-arrows", &double_arrows,
2931                         NULL);
2932
2933   return double_arrows || (priv->initially_pushed_in &&
2934                            menu->scroll_offset != 0);
2935 }
2936
2937 static void
2938 gtk_menu_scroll_by (GtkMenu *menu, 
2939                     gint     step)
2940 {
2941   GtkWidget *widget;
2942   gint offset;
2943   gint view_width, view_height;
2944   gboolean double_arrows;
2945   gint scroll_arrow_height;
2946   
2947   widget = GTK_WIDGET (menu);
2948   offset = menu->scroll_offset + step;
2949
2950   gtk_widget_style_get (GTK_WIDGET (menu),
2951                         "scroll-arrow-vlength", &scroll_arrow_height,
2952                         NULL);
2953
2954   double_arrows = get_double_arrows (menu);
2955
2956   /* If we scroll upward and the non-visible top part
2957    * is smaller than the scroll arrow it would be
2958    * pretty stupid to show the arrow and taking more
2959    * screen space than just scrolling to the top.
2960    */
2961   if (!double_arrows)
2962     if ((step < 0) && (offset < scroll_arrow_height))
2963       offset = 0;
2964
2965   /* Don't scroll over the top if we weren't before: */
2966   if ((menu->scroll_offset >= 0) && (offset < 0))
2967     offset = 0;
2968
2969   gdk_drawable_get_size (widget->window, &view_width, &view_height);
2970
2971   if (menu->scroll_offset == 0 &&
2972       view_height >= widget->requisition.height)
2973     return;
2974
2975   /* Don't scroll past the bottom if we weren't before: */
2976   if (menu->scroll_offset > 0)
2977     view_height -= scroll_arrow_height;
2978
2979   /* When both arrows are always shown, reduce
2980    * view height even more.
2981    */
2982   if (double_arrows)
2983     view_height -= scroll_arrow_height;
2984
2985   if ((menu->scroll_offset + view_height <= widget->requisition.height) &&
2986       (offset + view_height > widget->requisition.height))
2987     offset = widget->requisition.height - view_height;
2988
2989   if (offset != menu->scroll_offset)
2990     gtk_menu_scroll_to (menu, offset);
2991 }
2992
2993 static void
2994 gtk_menu_do_timeout_scroll (GtkMenu  *menu,
2995                             gboolean  touchscreen_mode)
2996 {
2997   gboolean upper_visible;
2998   gboolean lower_visible;
2999
3000   upper_visible = menu->upper_arrow_visible;
3001   lower_visible = menu->lower_arrow_visible;
3002
3003   gtk_menu_scroll_by (menu, menu->scroll_step);
3004
3005   if (touchscreen_mode &&
3006       (upper_visible != menu->upper_arrow_visible ||
3007        lower_visible != menu->lower_arrow_visible))
3008     {
3009       /* We are about to hide a scroll arrow while the mouse is pressed,
3010        * this would cause the uncovered menu item to be activated on button
3011        * release. Therefore we need to ignore button release here
3012        */
3013       GTK_MENU_SHELL (menu)->ignore_enter = TRUE;
3014       gtk_menu_get_private (menu)->ignore_button_release = TRUE;
3015     }
3016 }
3017
3018 static gboolean
3019 gtk_menu_scroll_timeout (gpointer  data)
3020 {
3021   GtkMenu     *menu;
3022   GtkSettings *settings;
3023   gboolean     touchscreen_mode;
3024
3025   menu = GTK_MENU (data);
3026
3027   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3028   g_object_get (settings,
3029                 "gtk-touchscreen-mode", &touchscreen_mode,
3030                 NULL);
3031
3032   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3033
3034   return TRUE;
3035 }
3036
3037 static gboolean
3038 gtk_menu_scroll_timeout_initial (gpointer data)
3039 {
3040   GtkMenu     *menu;
3041   GtkSettings *settings;
3042   guint        timeout;
3043   gboolean     touchscreen_mode;
3044
3045   menu = GTK_MENU (data);
3046
3047   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3048   g_object_get (settings,
3049                 "gtk-timeout-repeat", &timeout,
3050                 "gtk-touchscreen-mode", &touchscreen_mode,
3051                 NULL);
3052
3053   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3054
3055   gtk_menu_remove_scroll_timeout (menu);
3056
3057   menu->timeout_id = gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout, menu);
3058
3059   return FALSE;
3060 }
3061
3062 static void
3063 gtk_menu_start_scrolling (GtkMenu *menu)
3064 {
3065   GtkSettings *settings;
3066   guint        timeout;
3067   gboolean     touchscreen_mode;
3068
3069   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3070   g_object_get (settings,
3071                 "gtk-timeout-repeat", &timeout,
3072                 "gtk-touchscreen-mode", &touchscreen_mode,
3073                 NULL);
3074
3075   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3076
3077   menu->timeout_id = gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout_initial,
3078                                     menu);
3079 }
3080
3081 static gboolean
3082 gtk_menu_scroll (GtkWidget      *widget,
3083                  GdkEventScroll *event)
3084 {
3085   GtkMenu *menu = GTK_MENU (widget);
3086
3087   switch (event->direction)
3088     {
3089     case GDK_SCROLL_RIGHT:
3090     case GDK_SCROLL_DOWN:
3091       gtk_menu_scroll_by (menu, MENU_SCROLL_STEP2);
3092       break;
3093     case GDK_SCROLL_LEFT:
3094     case GDK_SCROLL_UP:
3095       gtk_menu_scroll_by (menu, - MENU_SCROLL_STEP2);
3096       break;
3097     }
3098
3099   return TRUE;
3100 }
3101
3102 static void
3103 gtk_menu_handle_scrolling (GtkMenu *menu,
3104                            gint     x,
3105                            gint     y,
3106                            gboolean enter,
3107                            gboolean motion)
3108 {
3109   GtkMenuShell *menu_shell;
3110   GtkMenuPrivate *priv;
3111   gint width, height;
3112   gint border;
3113   GdkRectangle rect;
3114   gboolean in_arrow;
3115   gboolean scroll_fast = FALSE;
3116   guint vertical_padding;
3117   gint top_x, top_y;
3118   gint win_x, win_y;
3119   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3120   gboolean touchscreen_mode;
3121   gint scroll_arrow_height;
3122   
3123   priv = gtk_menu_get_private (menu);
3124
3125   menu_shell = GTK_MENU_SHELL (menu);
3126
3127   gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, &height);
3128
3129   g_object_get (G_OBJECT (settings),
3130                 "gtk-touchscreen-mode", &touchscreen_mode,
3131                 NULL);
3132
3133   gtk_widget_style_get (GTK_WIDGET (menu),
3134                         "vertical-padding", &vertical_padding,
3135                         "scroll-arrow-vlength", &scroll_arrow_height,
3136                         NULL);
3137
3138   border = GTK_CONTAINER (menu)->border_width +
3139     GTK_WIDGET (menu)->style->ythickness + vertical_padding;
3140
3141   gdk_window_get_position (menu->toplevel->window, &top_x, &top_y);
3142   x -= top_x;
3143   y -= top_y;
3144
3145   gdk_window_get_position (GTK_WIDGET (menu)->window, &win_x, &win_y);
3146
3147   /*  upper arrow handling  */
3148
3149   rect.x = win_x;
3150   rect.y = win_y;
3151   rect.width = width;
3152   rect.height = scroll_arrow_height + border;
3153
3154   in_arrow = FALSE;
3155   if (menu->upper_arrow_visible && !menu->tearoff_active &&
3156       (x >= rect.x) && (x < rect.x + rect.width) &&
3157       (y >= rect.y) && (y < rect.y + rect.height))
3158     {
3159       in_arrow = TRUE;
3160     }
3161
3162   if (touchscreen_mode)
3163     menu->upper_arrow_prelight = in_arrow;
3164
3165   if (priv->upper_arrow_state != GTK_STATE_INSENSITIVE)
3166     {
3167       if (menu->upper_arrow_visible && !menu->tearoff_active)
3168         {
3169           if (touchscreen_mode)
3170             {
3171               if (enter && menu->upper_arrow_prelight &&
3172                   menu->timeout_id == 0)
3173                 {
3174                   /* Deselect the active item so that
3175                    * any submenus are popped down
3176                    */
3177                   gtk_menu_shell_deselect (menu_shell);
3178
3179                   gtk_menu_remove_scroll_timeout (menu);
3180                   menu->scroll_step = -MENU_SCROLL_STEP2; /* always fast */
3181
3182                   if (!motion)
3183                     {
3184                       /* Only do stuff on click. */
3185                       gtk_menu_start_scrolling (menu);
3186                       priv->upper_arrow_state = GTK_STATE_ACTIVE;
3187                     }
3188
3189                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3190                                               &rect, FALSE);
3191                 }
3192               else if (!enter)
3193                 {
3194                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3195                                               &rect, FALSE);
3196
3197                   gtk_menu_stop_scrolling (menu);
3198                 }
3199             }
3200           else /* !touchscreen_mode */
3201             {
3202               scroll_fast = (y < rect.y + MENU_SCROLL_FAST_ZONE);
3203
3204               if (enter && in_arrow &&
3205                   (!menu->upper_arrow_prelight ||
3206                    menu->scroll_fast != scroll_fast))
3207                 {
3208                   menu->upper_arrow_prelight = TRUE;
3209                   menu->scroll_fast = scroll_fast;
3210                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3211                                               &rect, FALSE);
3212
3213                   /* Deselect the active item so that
3214                    * any submenus are popped down
3215                    */
3216                   gtk_menu_shell_deselect (menu_shell);
3217
3218                   gtk_menu_remove_scroll_timeout (menu);
3219                   menu->scroll_step = scroll_fast ?
3220                     -MENU_SCROLL_STEP2 : -MENU_SCROLL_STEP1;
3221
3222                   menu->timeout_id =
3223                     gdk_threads_add_timeout (scroll_fast ?
3224                                    MENU_SCROLL_TIMEOUT2 : MENU_SCROLL_TIMEOUT1,
3225                                    gtk_menu_scroll_timeout, menu);
3226                 }
3227               else if (!enter && !in_arrow && menu->upper_arrow_prelight)
3228                 {
3229                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3230                                               &rect, FALSE);
3231
3232                   gtk_menu_stop_scrolling (menu);
3233                 }
3234             }
3235         }
3236
3237       priv->upper_arrow_state = menu->upper_arrow_prelight ?
3238         GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
3239     }
3240
3241   /*  lower arrow handling  */
3242
3243   rect.x = win_x;
3244   rect.y = win_y + height - border - scroll_arrow_height;
3245   rect.width = width;
3246   rect.height = scroll_arrow_height + border;
3247
3248   in_arrow = FALSE;
3249   if (menu->lower_arrow_visible && !menu->tearoff_active &&
3250       (x >= rect.x) && (x < rect.x + rect.width) &&
3251       (y >= rect.y) && (y < rect.y + rect.height))
3252     {
3253       in_arrow = TRUE;
3254     }
3255
3256   if (touchscreen_mode)
3257     menu->lower_arrow_prelight = in_arrow;
3258
3259   if (priv->lower_arrow_state != GTK_STATE_INSENSITIVE)
3260     {
3261       if (menu->lower_arrow_visible && !menu->tearoff_active)
3262         {
3263           if (touchscreen_mode)
3264             {
3265               if (enter && menu->lower_arrow_prelight &&
3266                   menu->timeout_id == 0)
3267                 {
3268                   /* Deselect the active item so that
3269                    * any submenus are popped down
3270                    */
3271                   gtk_menu_shell_deselect (menu_shell);
3272
3273                   gtk_menu_remove_scroll_timeout (menu);
3274                   menu->scroll_step = MENU_SCROLL_STEP2; /* always fast */
3275
3276                   if (!motion)
3277                     {
3278                       /* Only do stuff on click. */
3279                       gtk_menu_start_scrolling (menu);
3280                       priv->lower_arrow_state = GTK_STATE_ACTIVE;
3281                     }
3282
3283                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3284                                               &rect, FALSE);
3285                 }
3286               else if (!enter)
3287                 {
3288                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3289                                               &rect, FALSE);
3290
3291                   gtk_menu_stop_scrolling (menu);
3292                 }
3293             }
3294           else /* !touchscreen_mode */
3295             {
3296               scroll_fast = (y > rect.y + rect.height - MENU_SCROLL_FAST_ZONE);
3297
3298               if (enter && in_arrow &&
3299                   (!menu->lower_arrow_prelight ||
3300                    menu->scroll_fast != scroll_fast))
3301                 {
3302                   menu->lower_arrow_prelight = TRUE;
3303                   menu->scroll_fast = scroll_fast;
3304                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3305                                               &rect, FALSE);
3306
3307                   /* Deselect the active item so that
3308                    * any submenus are popped down
3309                    */
3310                   gtk_menu_shell_deselect (menu_shell);
3311
3312                   gtk_menu_remove_scroll_timeout (menu);
3313                   menu->scroll_step = scroll_fast ?
3314                     MENU_SCROLL_STEP2 : MENU_SCROLL_STEP1;
3315
3316                   menu->timeout_id =
3317                     gdk_threads_add_timeout (scroll_fast ?
3318                                    MENU_SCROLL_TIMEOUT2 : MENU_SCROLL_TIMEOUT1,
3319                                    gtk_menu_scroll_timeout, menu);
3320                 }
3321               else if (!enter && !in_arrow && menu->lower_arrow_prelight)
3322                 {
3323                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3324                                               &rect, FALSE);
3325
3326                   gtk_menu_stop_scrolling (menu);
3327                 }
3328             }
3329         }
3330
3331       priv->lower_arrow_state = menu->lower_arrow_prelight ?
3332         GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
3333     }
3334 }
3335
3336 static gboolean
3337 gtk_menu_enter_notify (GtkWidget        *widget,
3338                        GdkEventCrossing *event)
3339 {
3340   GtkSettings *settings = gtk_widget_get_settings (widget);
3341   GtkWidget *menu_item;
3342   gboolean touchscreen_mode;
3343
3344   g_object_get (G_OBJECT (settings),
3345                 "gtk-touchscreen-mode", &touchscreen_mode,
3346                 NULL);
3347
3348   menu_item = gtk_get_event_widget ((GdkEvent*) event);
3349   if (GTK_IS_MENU (widget))
3350     {
3351       GtkMenuShell *menu_shell = GTK_MENU_SHELL (widget);
3352
3353       if (!menu_shell->ignore_enter)
3354         gtk_menu_handle_scrolling (GTK_MENU (widget),
3355                                    event->x_root, event->y_root, TRUE, TRUE);
3356     }
3357
3358   if (!touchscreen_mode && GTK_IS_MENU_ITEM (menu_item))
3359     {
3360       GtkWidget *menu = menu_item->parent;
3361       
3362       if (GTK_IS_MENU (menu))
3363         {
3364           GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (menu));
3365           GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
3366
3367           if (priv->seen_item_enter)
3368             {
3369               /* This is the second enter we see for an item
3370                * on this menu. This means a release should always
3371                * mean activate.
3372                */
3373               menu_shell->activate_time = 0;
3374             }
3375           else if ((event->detail != GDK_NOTIFY_NONLINEAR &&
3376                     event->detail != GDK_NOTIFY_NONLINEAR_VIRTUAL))
3377             {
3378               if (definitely_within_item (menu_item, event->x, event->y))
3379                 {
3380                   /* This is an actual user-enter (ie. not a pop-under)
3381                    * In this case, the user must either have entered
3382                    * sufficiently far enough into the item, or he must move
3383                    * far enough away from the enter point. (see
3384                    * gtk_menu_motion_notify())
3385                    */
3386                   menu_shell->activate_time = 0;
3387                 }
3388             }
3389             
3390           priv->seen_item_enter = TRUE;
3391         }
3392     }
3393   
3394   /* If this is a faked enter (see gtk_menu_motion_notify), 'widget'
3395    * will not correspond to the event widget's parent.  Check to see
3396    * if we are in the parent's navigation region.
3397    */
3398   if (GTK_IS_MENU_ITEM (menu_item) && GTK_IS_MENU (menu_item->parent) &&
3399       gtk_menu_navigating_submenu (GTK_MENU (menu_item->parent),
3400                                    event->x_root, event->y_root))
3401     return TRUE;
3402
3403   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (widget, event); 
3404 }
3405
3406 static gboolean
3407 gtk_menu_leave_notify (GtkWidget        *widget,
3408                        GdkEventCrossing *event)
3409 {
3410   GtkMenuShell *menu_shell;
3411   GtkMenu *menu;
3412   GtkMenuItem *menu_item;
3413   GtkWidget *event_widget;
3414
3415   menu = GTK_MENU (widget);
3416   menu_shell = GTK_MENU_SHELL (widget); 
3417   
3418   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
3419     return TRUE; 
3420
3421   gtk_menu_handle_scrolling (menu, event->x_root, event->y_root, FALSE, TRUE);
3422
3423   event_widget = gtk_get_event_widget ((GdkEvent*) event);
3424   
3425   if (!GTK_IS_MENU_ITEM (event_widget))
3426     return TRUE;
3427   
3428   menu_item = GTK_MENU_ITEM (event_widget); 
3429   
3430   /* Here we check to see if we're leaving an active menu item with a submenu, 
3431    * in which case we enter submenu navigation mode. 
3432    */
3433   if (menu_shell->active_menu_item != NULL
3434       && menu_item->submenu != NULL
3435       && menu_item->submenu_placement == GTK_LEFT_RIGHT)
3436     {
3437       if (GTK_MENU_SHELL (menu_item->submenu)->active)
3438         {
3439           gtk_menu_set_submenu_navigation_region (menu, menu_item, event);
3440           return TRUE;
3441         }
3442       else if (menu_item == GTK_MENU_ITEM (menu_shell->active_menu_item))
3443         {
3444           /* We are leaving an active menu item with nonactive submenu.
3445            * Deselect it so we don't surprise the user with by popping
3446            * up a submenu _after_ he left the item.
3447            */
3448           gtk_menu_shell_deselect (menu_shell);
3449           return TRUE;
3450         }
3451     }
3452   
3453   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->leave_notify_event (widget, event); 
3454 }
3455
3456 static void 
3457 gtk_menu_stop_navigating_submenu (GtkMenu *menu)
3458 {
3459   if (menu->navigation_region) 
3460     {
3461       gdk_region_destroy (menu->navigation_region);
3462       menu->navigation_region = NULL;
3463     }  
3464   if (menu->navigation_timeout)
3465     {
3466       g_source_remove (menu->navigation_timeout);
3467       menu->navigation_timeout = 0;
3468     }
3469 }
3470
3471 /* When the timeout is elapsed, the navigation region is destroyed
3472  * and the menuitem under the pointer (if any) is selected.
3473  */
3474 static gboolean
3475 gtk_menu_stop_navigating_submenu_cb (gpointer user_data)
3476 {
3477   GtkMenu *menu = user_data;
3478   GdkWindow *child_window;
3479
3480   gtk_menu_stop_navigating_submenu (menu);
3481   
3482   if (GTK_WIDGET_REALIZED (menu))
3483     {
3484       child_window = gdk_window_get_pointer (menu->bin_window, NULL, NULL, NULL);
3485
3486       if (child_window)
3487         {
3488           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
3489
3490           send_event->crossing.window = g_object_ref (child_window);
3491           send_event->crossing.time = GDK_CURRENT_TIME; /* Bogus */
3492           send_event->crossing.send_event = TRUE;
3493
3494           GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (GTK_WIDGET (menu), (GdkEventCrossing *)send_event);
3495
3496           gdk_event_free (send_event);
3497         }
3498     }
3499
3500   return FALSE; 
3501 }
3502
3503 static gboolean
3504 gtk_menu_navigating_submenu (GtkMenu *menu,
3505                              gint     event_x,
3506                              gint     event_y)
3507 {
3508   if (menu->navigation_region)
3509     {
3510       if (gdk_region_point_in (menu->navigation_region, event_x, event_y))
3511         return TRUE;
3512       else
3513         {
3514           gtk_menu_stop_navigating_submenu (menu);
3515           return FALSE;
3516         }
3517     }
3518   return FALSE;
3519 }
3520
3521 #undef DRAW_STAY_UP_TRIANGLE
3522
3523 #ifdef DRAW_STAY_UP_TRIANGLE
3524
3525 static void
3526 draw_stay_up_triangle (GdkWindow *window,
3527                        GdkRegion *region)
3528 {
3529   /* Draw ugly color all over the stay-up triangle */
3530   GdkColor ugly_color = { 0, 50000, 10000, 10000 };
3531   GdkGCValues gc_values;
3532   GdkGC *ugly_gc;
3533   GdkRectangle clipbox;
3534
3535   gc_values.subwindow_mode = GDK_INCLUDE_INFERIORS;
3536   ugly_gc = gdk_gc_new_with_values (window, &gc_values, 0 | GDK_GC_SUBWINDOW);
3537   gdk_gc_set_rgb_fg_color (ugly_gc, &ugly_color);
3538   gdk_gc_set_clip_region (ugly_gc, region);
3539
3540   gdk_region_get_clipbox (region, &clipbox);
3541   
3542   gdk_draw_rectangle (window,
3543                      ugly_gc,
3544                      TRUE,
3545                      clipbox.x, clipbox.y,
3546                      clipbox.width, clipbox.height);
3547   
3548   g_object_unref (ugly_gc);
3549 }
3550 #endif
3551
3552 static GdkRegion *
3553 flip_region (GdkRegion *region,
3554              gboolean   flip_x,
3555              gboolean   flip_y)
3556 {
3557   gint n_rectangles;
3558   GdkRectangle *rectangles;
3559   GdkRectangle clipbox;
3560   GdkRegion *new_region;
3561   gint i;
3562
3563   new_region = gdk_region_new ();
3564   
3565   gdk_region_get_rectangles (region, &rectangles, &n_rectangles);
3566   gdk_region_get_clipbox (region, &clipbox);
3567
3568   for (i = 0; i < n_rectangles; ++i)
3569     {
3570       GdkRectangle rect = rectangles[i];
3571
3572       if (flip_y)
3573         rect.y -= 2 * (rect.y - clipbox.y) + rect.height;
3574
3575       if (flip_x)
3576         rect.x -= 2 * (rect.x - clipbox.x) + rect.width;
3577
3578       gdk_region_union_with_rect (new_region, &rect);
3579     }
3580
3581   g_free (rectangles);
3582
3583   return new_region;
3584 }
3585
3586 static void
3587 gtk_menu_set_submenu_navigation_region (GtkMenu          *menu,
3588                                         GtkMenuItem      *menu_item,
3589                                         GdkEventCrossing *event)
3590 {
3591   gint submenu_left = 0;
3592   gint submenu_right = 0;
3593   gint submenu_top = 0;
3594   gint submenu_bottom = 0;
3595   gint width = 0;
3596   gint height = 0;
3597   GdkPoint point[3];
3598   GtkWidget *event_widget;
3599
3600   g_return_if_fail (menu_item->submenu != NULL);
3601   g_return_if_fail (event != NULL);
3602   
3603   event_widget = gtk_get_event_widget ((GdkEvent*) event);
3604   
3605   gdk_window_get_origin (menu_item->submenu->window, &submenu_left, &submenu_top);
3606   gdk_drawable_get_size (menu_item->submenu->window, &width, &height);
3607   
3608   submenu_right = submenu_left + width;
3609   submenu_bottom = submenu_top + height;
3610   
3611   gdk_drawable_get_size (event_widget->window, &width, &height);
3612   
3613   if (event->x >= 0 && event->x < width)
3614     {
3615       gint popdown_delay;
3616       gboolean flip_y = FALSE;
3617       gboolean flip_x = FALSE;
3618       
3619       gtk_menu_stop_navigating_submenu (menu);
3620
3621       if (menu_item->submenu_direction == GTK_DIRECTION_RIGHT)
3622         {
3623           /* right */
3624           point[0].x = event->x_root;
3625           point[1].x = submenu_left;
3626         }
3627       else
3628         {
3629           /* left */
3630           point[0].x = event->x_root + 1;
3631           point[1].x = 2 * (event->x_root + 1) - submenu_right;
3632
3633           flip_x = TRUE;
3634         }
3635
3636       if (event->y < 0)
3637         {
3638           /* top */
3639           point[0].y = event->y_root + 1;
3640           point[1].y = 2 * (event->y_root + 1) - submenu_top + NAVIGATION_REGION_OVERSHOOT;
3641
3642           if (point[0].y >= point[1].y - NAVIGATION_REGION_OVERSHOOT)
3643             return;
3644
3645           flip_y = TRUE;
3646         }
3647       else
3648         {
3649           /* bottom */
3650           point[0].y = event->y_root;
3651           point[1].y = submenu_bottom + NAVIGATION_REGION_OVERSHOOT;
3652
3653           if (point[0].y >= submenu_bottom)
3654             return;
3655         }
3656
3657       point[2].x = point[1].x;
3658       point[2].y = point[0].y;
3659
3660       menu->navigation_region = gdk_region_polygon (point, 3, GDK_WINDING_RULE);
3661
3662       if (flip_x || flip_y)
3663         {
3664           GdkRegion *new_region = flip_region (menu->navigation_region, flip_x, flip_y);
3665           gdk_region_destroy (menu->navigation_region);
3666           menu->navigation_region = new_region;
3667         }
3668
3669       g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3670                     "gtk-menu-popdown-delay", &popdown_delay,
3671                     NULL);
3672
3673       menu->navigation_timeout = gdk_threads_add_timeout (popdown_delay,
3674                                                 gtk_menu_stop_navigating_submenu_cb, menu);
3675
3676 #ifdef DRAW_STAY_UP_TRIANGLE
3677       draw_stay_up_triangle (gdk_get_default_root_window(),
3678                              menu->navigation_region);
3679 #endif
3680     }
3681 }
3682
3683 static void
3684 gtk_menu_deactivate (GtkMenuShell *menu_shell)
3685 {
3686   GtkWidget *parent;
3687   
3688   g_return_if_fail (GTK_IS_MENU (menu_shell));
3689   
3690   parent = menu_shell->parent_menu_shell;
3691   
3692   menu_shell->activate_time = 0;
3693   gtk_menu_popdown (GTK_MENU (menu_shell));
3694   
3695   if (parent)
3696     gtk_menu_shell_deactivate (GTK_MENU_SHELL (parent));
3697 }
3698
3699 static void
3700 gtk_menu_position (GtkMenu *menu)
3701 {
3702   GtkWidget *widget;
3703   GtkRequisition requisition;
3704   GtkMenuPrivate *private;
3705   gint x, y;
3706   gint scroll_offset;
3707   gint menu_height;
3708   GdkScreen *screen;
3709   GdkScreen *pointer_screen;
3710   GdkRectangle monitor;
3711   gint scroll_arrow_height;
3712   
3713   g_return_if_fail (GTK_IS_MENU (menu));
3714
3715   widget = GTK_WIDGET (menu);
3716
3717   screen = gtk_widget_get_screen (widget);
3718   gdk_display_get_pointer (gdk_screen_get_display (screen),
3719                            &pointer_screen, &x, &y, NULL);
3720
3721   gtk_widget_style_get (GTK_WIDGET (menu),
3722                         "scroll-arrow-vlength", &scroll_arrow_height,
3723                         NULL);
3724   
3725   /* We need the requisition to figure out the right place to
3726    * popup the menu. In fact, we always need to ask here, since
3727    * if a size_request was queued while we weren't popped up,
3728    * the requisition won't have been recomputed yet.
3729    */
3730   gtk_widget_size_request (widget, &requisition);
3731
3732   if (pointer_screen != screen)
3733     {
3734       /* Pointer is on a different screen; roughly center the
3735        * menu on the screen. If someone was using multiscreen
3736        * + Xinerama together they'd probably want something
3737        * fancier; but that is likely to be vanishingly rare.
3738        */
3739       x = MAX (0, (gdk_screen_get_width (screen) - requisition.width) / 2);
3740       y = MAX (0, (gdk_screen_get_height (screen) - requisition.height) / 2);
3741     }
3742
3743   private = gtk_menu_get_private (menu);
3744   private->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
3745
3746   private->initially_pushed_in = FALSE;
3747
3748   /* Set the type hint here to allow custom position functions to set a different hint */
3749   if (!GTK_WIDGET_VISIBLE (menu->toplevel))
3750     gtk_window_set_type_hint (GTK_WINDOW (menu->toplevel), GDK_WINDOW_TYPE_HINT_POPUP_MENU);
3751   
3752   if (menu->position_func)
3753     {
3754       (* menu->position_func) (menu, &x, &y, &private->initially_pushed_in,
3755                                menu->position_func_data);
3756       if (private->monitor_num < 0) 
3757         private->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
3758
3759       gdk_screen_get_monitor_geometry (screen, private->monitor_num, &monitor);
3760     }
3761   else
3762     {
3763       gint space_left, space_right, space_above, space_below;
3764       gint needed_width;
3765       gint needed_height;
3766       gint xthickness = widget->style->xthickness;
3767       gint ythickness = widget->style->ythickness;
3768       gboolean rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
3769
3770       /* The placement of popup menus horizontally works like this (with
3771        * RTL in parentheses)
3772        *
3773        * - If there is enough room to the right (left) of the mouse cursor,
3774        *   position the menu there.
3775        * 
3776        * - Otherwise, if if there is enough room to the left (right) of the 
3777        *   mouse cursor, position the menu there.
3778        * 
3779        * - Otherwise if the menu is smaller than the monitor, position it
3780        *   on the side of the mouse cursor that has the most space available
3781        *
3782        * - Otherwise (if there is simply not enough room for the menu on the
3783        *   monitor), position it as far left (right) as possible.
3784        *
3785        * Positioning in the vertical direction is similar: first try below
3786        * mouse cursor, then above.
3787        */
3788       gdk_screen_get_monitor_geometry (screen, private->monitor_num, &monitor);
3789
3790       space_left = x - monitor.x;
3791       space_right = monitor.x + monitor.width - x - 1;
3792       space_above = y - monitor.y;
3793       space_below = monitor.y + monitor.height - y - 1;
3794
3795       /* position horizontally */
3796
3797       /* the amount of space we need to position the menu. Note the
3798        * menu is offset "xthickness" pixels 
3799        */
3800       needed_width = requisition.width - xthickness;
3801
3802       if (needed_width <= space_left ||
3803           needed_width <= space_right)
3804         {
3805           if ((rtl  && needed_width <= space_left) ||
3806               (!rtl && needed_width >  space_right))
3807             {
3808               /* position left */
3809               x = x + xthickness - requisition.width + 1;
3810             }
3811           else
3812             {
3813               /* position right */
3814               x = x - xthickness;
3815             }
3816
3817           /* x is clamped on-screen further down */
3818         }
3819       else if (requisition.width <= monitor.width)
3820         {
3821           /* the menu is too big to fit on either side of the mouse
3822            * cursor, but smaller than the monitor. Position it on
3823            * the side that has the most space
3824            */
3825           if (space_left > space_right)
3826             {
3827               /* left justify */
3828               x = monitor.x;
3829             }
3830           else
3831             {
3832               /* right justify */
3833               x = monitor.x + monitor.width - requisition.width;
3834             }
3835         }
3836       else /* menu is simply too big for the monitor */
3837         {
3838           if (rtl)
3839             {
3840               /* right justify */
3841               x = monitor.x + monitor.width - requisition.width;
3842             }
3843           else
3844             {
3845               /* left justify */
3846               x = monitor.x;
3847             }
3848         }
3849
3850       /* Position vertically. The algorithm is the same as above, but
3851        * simpler because we don't have to take RTL into account.
3852        */
3853       needed_height = requisition.height - ythickness;
3854
3855       if (needed_height <= space_above ||
3856           needed_height <= space_below)
3857         {
3858           if (needed_height <= space_below)
3859             y = y - ythickness;
3860           else
3861             y = y + ythickness - requisition.height + 1;
3862           
3863           y = CLAMP (y, monitor.y,
3864                      monitor.y + monitor.height - requisition.height);
3865         }
3866       else if (needed_height > space_below && needed_height > space_above)
3867         {
3868           if (space_below >= space_above)
3869             y = monitor.y + monitor.height - requisition.height;
3870           else
3871             y = monitor.y;
3872         }
3873       else
3874         {
3875           y = monitor.y;
3876         }
3877     }
3878
3879   scroll_offset = 0;
3880
3881   if (private->initially_pushed_in)
3882     {
3883       menu_height = GTK_WIDGET (menu)->requisition.height;
3884
3885       if (y + menu_height > monitor.y + monitor.height)
3886         {
3887           scroll_offset -= y + menu_height - (monitor.y + monitor.height);
3888           y = (monitor.y + monitor.height) - menu_height;
3889         }
3890   
3891       if (y < monitor.y)
3892         {
3893           scroll_offset += monitor.y - y;
3894           y = monitor.y;
3895         }
3896     }
3897
3898   /* FIXME: should this be done in the various position_funcs ? */
3899   x = CLAMP (x, monitor.x, MAX (monitor.x, monitor.x + monitor.width - requisition.width));
3900  
3901   if (GTK_MENU_SHELL (menu)->active)
3902     {
3903       private->have_position = TRUE;
3904       private->x = x;
3905       private->y = y;
3906     }
3907   
3908   if (y + requisition.height > monitor.y + monitor.height)
3909     requisition.height = (monitor.y + monitor.height) - y;
3910   
3911   if (y < monitor.y)
3912     {
3913       scroll_offset += monitor.y - y;
3914       requisition.height -= monitor.y - y;
3915       y = monitor.y;
3916     }
3917
3918   if (scroll_offset > 0)
3919     scroll_offset += scroll_arrow_height;
3920   
3921   gtk_window_move (GTK_WINDOW (GTK_MENU_SHELL (menu)->active ? menu->toplevel : menu->tearoff_window), 
3922                    x, y);
3923
3924   if (!GTK_MENU_SHELL (menu)->active)
3925     {
3926       gtk_window_resize (GTK_WINDOW (menu->tearoff_window),
3927                          requisition.width, requisition.height);
3928     }
3929   
3930   menu->scroll_offset = scroll_offset;
3931 }
3932
3933 static void
3934 gtk_menu_remove_scroll_timeout (GtkMenu *menu)
3935 {
3936   if (menu->timeout_id)
3937     {
3938       g_source_remove (menu->timeout_id);
3939       menu->timeout_id = 0;
3940     }
3941 }
3942
3943 static void
3944 gtk_menu_stop_scrolling (GtkMenu *menu)
3945 {
3946   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3947   gboolean touchscreen_mode;
3948
3949   gtk_menu_remove_scroll_timeout (menu);
3950   
3951   g_object_get (G_OBJECT (settings),
3952                 "gtk-touchscreen-mode", &touchscreen_mode,
3953                 NULL);
3954   
3955   if (!touchscreen_mode)
3956     {
3957       menu->upper_arrow_prelight = FALSE;
3958       menu->lower_arrow_prelight = FALSE;
3959     }
3960 }
3961
3962 static void
3963 gtk_menu_scroll_to (GtkMenu *menu,
3964                     gint    offset)
3965 {
3966   GtkWidget *widget;
3967   gint x, y;
3968   gint view_width, view_height;
3969   gint border_width;
3970   gint menu_height;
3971   guint vertical_padding;
3972   guint horizontal_padding;
3973   gboolean double_arrows;
3974   gint scroll_arrow_height;
3975   
3976   widget = GTK_WIDGET (menu);
3977
3978   if (menu->tearoff_active &&
3979       menu->tearoff_adjustment &&
3980       (menu->tearoff_adjustment->value != offset))
3981     {
3982       menu->tearoff_adjustment->value =
3983         CLAMP (offset,
3984                0, menu->tearoff_adjustment->upper - menu->tearoff_adjustment->page_size);
3985       gtk_adjustment_value_changed (menu->tearoff_adjustment);
3986     }
3987   
3988   /* Move/resize the viewport according to arrows: */
3989   view_width = widget->allocation.width;
3990   view_height = widget->allocation.height;
3991
3992   gtk_widget_style_get (GTK_WIDGET (menu),
3993                         "vertical-padding", &vertical_padding,
3994                         "horizontal-padding", &horizontal_padding,
3995                         "scroll-arrow-vlength", &scroll_arrow_height,
3996                         NULL);
3997
3998   double_arrows = get_double_arrows (menu);
3999
4000   border_width = GTK_CONTAINER (menu)->border_width;
4001   view_width -= (border_width + widget->style->xthickness + horizontal_padding) * 2;
4002   view_height -= (border_width + widget->style->ythickness + vertical_padding) * 2;
4003   menu_height = widget->requisition.height -
4004     (border_width + widget->style->ythickness + vertical_padding) * 2;
4005
4006   x = border_width + widget->style->xthickness + horizontal_padding;
4007   y = border_width + widget->style->ythickness + vertical_padding;
4008
4009   if (double_arrows && !menu->tearoff_active)
4010     {
4011       if (view_height < menu_height               ||
4012           (offset > 0 && menu->scroll_offset > 0) ||
4013           (offset < 0 && menu->scroll_offset < 0))
4014         {
4015           GtkMenuPrivate *priv = gtk_menu_get_private (menu);
4016           GtkStateType    upper_arrow_previous_state = priv->upper_arrow_state;
4017           GtkStateType    lower_arrow_previous_state = priv->lower_arrow_state;
4018
4019           if (!menu->upper_arrow_visible || !menu->lower_arrow_visible)
4020             gtk_widget_queue_draw (GTK_WIDGET (menu));
4021
4022           view_height -= 2 * scroll_arrow_height;
4023           y += scroll_arrow_height;
4024
4025           menu->upper_arrow_visible = menu->lower_arrow_visible = TRUE;
4026
4027           if (offset <= 0)
4028             priv->upper_arrow_state = GTK_STATE_INSENSITIVE;
4029           else
4030             priv->upper_arrow_state = menu->upper_arrow_prelight ?
4031               GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
4032
4033           if (offset >= menu_height - view_height)
4034             priv->lower_arrow_state = GTK_STATE_INSENSITIVE;
4035           else
4036             priv->lower_arrow_state = menu->lower_arrow_prelight ?
4037               GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
4038
4039           if ((priv->upper_arrow_state != upper_arrow_previous_state) ||
4040               (priv->lower_arrow_state != lower_arrow_previous_state))
4041             gtk_widget_queue_draw (GTK_WIDGET (menu));
4042
4043           if (upper_arrow_previous_state != GTK_STATE_INSENSITIVE &&
4044               priv->upper_arrow_state == GTK_STATE_INSENSITIVE)
4045             {
4046               /* At the upper border, possibly remove timeout */
4047               if (menu->scroll_step < 0)
4048                 {
4049                   gtk_menu_stop_scrolling (menu);
4050                   gtk_widget_queue_draw (GTK_WIDGET (menu));
4051                 }
4052             }
4053
4054           if (lower_arrow_previous_state != GTK_STATE_INSENSITIVE &&
4055               priv->lower_arrow_state == GTK_STATE_INSENSITIVE)
4056             {
4057               /* At the lower border, possibly remove timeout */
4058               if (menu->scroll_step > 0)
4059                 {
4060                   gtk_menu_stop_scrolling (menu);
4061                   gtk_widget_queue_draw (GTK_WIDGET (menu));
4062                 }
4063             }
4064         }
4065       else if (menu->upper_arrow_visible || menu->lower_arrow_visible)
4066         {
4067           offset = 0;
4068
4069           menu->upper_arrow_visible = menu->lower_arrow_visible = FALSE;
4070           menu->upper_arrow_prelight = menu->lower_arrow_prelight = FALSE;
4071
4072           gtk_menu_stop_scrolling (menu);
4073           gtk_widget_queue_draw (GTK_WIDGET (menu));
4074         }
4075     }
4076   else if (!menu->tearoff_active)
4077     {
4078       gboolean last_visible;
4079
4080       last_visible = menu->upper_arrow_visible;
4081       menu->upper_arrow_visible = offset > 0;
4082       
4083       if (menu->upper_arrow_visible)
4084         view_height -= scroll_arrow_height;
4085       
4086       if ((last_visible != menu->upper_arrow_visible) &&
4087           !menu->upper_arrow_visible)
4088         {
4089           menu->upper_arrow_prelight = FALSE;
4090
4091           /* If we hid the upper arrow, possibly remove timeout */
4092           if (menu->scroll_step < 0)
4093             {
4094               gtk_menu_stop_scrolling (menu);
4095               gtk_widget_queue_draw (GTK_WIDGET (menu));
4096             }
4097         }
4098
4099       last_visible = menu->lower_arrow_visible;
4100       menu->lower_arrow_visible = offset < menu_height - view_height;
4101       
4102       if (menu->lower_arrow_visible)
4103         view_height -= scroll_arrow_height;
4104       
4105       if ((last_visible != menu->lower_arrow_visible) &&
4106            !menu->lower_arrow_visible)
4107         {
4108           menu->lower_arrow_prelight = FALSE;
4109
4110           /* If we hid the lower arrow, possibly remove timeout */
4111           if (menu->scroll_step > 0)
4112             {
4113               gtk_menu_stop_scrolling (menu);
4114               gtk_widget_queue_draw (GTK_WIDGET (menu));
4115             }
4116         }
4117       
4118       if (menu->upper_arrow_visible)
4119         y += scroll_arrow_height;
4120     }
4121
4122   /* Scroll the menu: */
4123   if (GTK_WIDGET_REALIZED (menu))
4124     gdk_window_move (menu->bin_window, 0, -offset);
4125
4126   if (GTK_WIDGET_REALIZED (menu))
4127     gdk_window_move_resize (menu->view_window,
4128                             x,
4129                             y,
4130                             view_width,
4131                             view_height);
4132
4133   menu->scroll_offset = offset;
4134 }
4135
4136 static gboolean
4137 compute_child_offset (GtkMenu   *menu,
4138                       GtkWidget *menu_item,
4139                       gint      *offset,
4140                       gint      *height,
4141                       gboolean  *is_last_child)
4142 {
4143   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
4144   gint item_top_attach;
4145   gint item_bottom_attach;
4146   gint child_offset = 0;
4147   gint i;
4148
4149   get_effective_child_attach (menu_item, NULL, NULL,
4150                               &item_top_attach, &item_bottom_attach);
4151
4152   /* there is a possibility that we get called before _size_request, so
4153    * check the height table for safety.
4154    */
4155   if (!priv->heights || priv->heights_length < gtk_menu_get_n_rows (menu))
4156     return FALSE;
4157
4158   /* when we have a row with only invisible children, it's height will
4159    * be zero, so there's no need to check WIDGET_VISIBLE here
4160    */
4161   for (i = 0; i < item_top_attach; i++)
4162     child_offset += priv->heights[i];
4163
4164   if (is_last_child)
4165     *is_last_child = (item_bottom_attach == gtk_menu_get_n_rows (menu));
4166   if (offset)
4167     *offset = child_offset;
4168   if (height)
4169     *height = priv->heights[item_top_attach];
4170
4171   return TRUE;
4172 }
4173
4174 static void
4175 gtk_menu_scroll_item_visible (GtkMenuShell    *menu_shell,
4176                               GtkWidget       *menu_item)
4177 {
4178   GtkMenu *menu;
4179   gint child_offset, child_height;
4180   gint width, height;
4181   gint y;
4182   gint arrow_height;
4183   gboolean last_child = 0;
4184   
4185   menu = GTK_MENU (menu_shell);
4186
4187   /* We need to check if the selected item fully visible.
4188    * If not we need to scroll the menu so that it becomes fully
4189    * visible.
4190    */
4191
4192   if (compute_child_offset (menu, menu_item,
4193                             &child_offset, &child_height, &last_child))
4194     {
4195       guint vertical_padding;
4196       gboolean double_arrows;
4197       gint scroll_arrow_height;
4198       
4199       y = menu->scroll_offset;
4200       gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, &height);
4201
4202       gtk_widget_style_get (GTK_WIDGET (menu),
4203                             "vertical-padding", &vertical_padding,
4204                             "scroll-arrow-vlength", &scroll_arrow_height,
4205                             NULL);
4206
4207       double_arrows = get_double_arrows (menu);
4208
4209       height -= 2*GTK_CONTAINER (menu)->border_width + 2*GTK_WIDGET (menu)->style->ythickness + 2*vertical_padding;
4210       
4211       if (child_offset < y)
4212         {
4213           /* Ignore the enter event we might get if the pointer is on the menu
4214            */
4215           menu_shell->ignore_enter = TRUE;
4216           gtk_menu_scroll_to (menu, child_offset);
4217         }
4218       else
4219         {
4220           arrow_height = 0;
4221           if (menu->upper_arrow_visible && !menu->tearoff_active)
4222             arrow_height += scroll_arrow_height;
4223           if (menu->lower_arrow_visible && !menu->tearoff_active)
4224             arrow_height += scroll_arrow_height;
4225           
4226           if (child_offset + child_height > y + height - arrow_height)
4227             {
4228               arrow_height = 0;
4229               if ((!last_child && !menu->tearoff_active) || double_arrows)
4230                 arrow_height += scroll_arrow_height;
4231
4232               y = child_offset + child_height - height + arrow_height;
4233               if (((y > 0) && !menu->tearoff_active) || double_arrows)
4234                 {
4235                   /* Need upper arrow */
4236                   arrow_height += scroll_arrow_height;
4237                   y = child_offset + child_height - height + arrow_height;
4238                 }
4239               /* Ignore the enter event we might get if the pointer is on the menu
4240                */
4241               menu_shell->ignore_enter = TRUE;
4242               gtk_menu_scroll_to (menu, y);
4243             }
4244         }    
4245       
4246     }
4247 }
4248
4249 static void
4250 gtk_menu_select_item (GtkMenuShell  *menu_shell,
4251                       GtkWidget     *menu_item)
4252 {
4253   GtkMenu *menu = GTK_MENU (menu_shell);
4254
4255   if (GTK_WIDGET_REALIZED (GTK_WIDGET (menu)))
4256     gtk_menu_scroll_item_visible (menu_shell, menu_item);
4257
4258   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->select_item (menu_shell, menu_item);
4259 }
4260
4261
4262 /* Reparent the menu, taking care of the refcounting
4263  *
4264  * If unrealize is true we force a unrealize while reparenting the parent.
4265  * This can help eliminate flicker in some cases.
4266  *
4267  * What happens is that when the menu is unrealized and then re-realized,
4268  * the allocations are as follows:
4269  *
4270  *  parent - 1x1 at (0,0) 
4271  *  child1 - 100x20 at (0,0)
4272  *  child2 - 100x20 at (0,20)
4273  *  child3 - 100x20 at (0,40)
4274  *
4275  * That is, the parent is small but the children are full sized. Then,
4276  * when the queued_resize gets processed, the parent gets resized to
4277  * full size. 
4278  *
4279  * But in order to eliminate flicker when scrolling, gdkgeometry-x11.c
4280  * contains the following logic:
4281  * 
4282  * - if a move or resize operation on a window would change the clip 
4283  *   region on the children, then before the window is resized
4284  *   the background for children is temporarily set to None, the
4285  *   move/resize done, and the background for the children restored.
4286  *
4287  * So, at the point where the parent is resized to final size, the
4288  * background for the children is temporarily None, and thus they
4289  * are not cleared to the background color and the previous background
4290  * (the image of the menu) is left in place.
4291  */
4292 static void 
4293 gtk_menu_reparent (GtkMenu      *menu, 
4294                    GtkWidget    *new_parent, 
4295                    gboolean      unrealize)
4296 {
4297   GtkObject *object = GTK_OBJECT (menu);
4298   GtkWidget *widget = GTK_WIDGET (menu);
4299   gboolean was_floating = g_object_is_floating (object);
4300
4301   g_object_ref_sink (object);
4302
4303   if (unrealize)
4304     {
4305       g_object_ref (object);
4306       gtk_container_remove (GTK_CONTAINER (widget->parent), widget);
4307       gtk_container_add (GTK_CONTAINER (new_parent), widget);
4308       g_object_unref (object);
4309     }
4310   else
4311     gtk_widget_reparent (GTK_WIDGET (menu), new_parent);
4312   
4313   if (was_floating)
4314     g_object_force_floating (G_OBJECT (object));
4315   else
4316     g_object_unref (object);
4317 }
4318
4319 static void
4320 gtk_menu_show_all (GtkWidget *widget)
4321 {
4322   /* Show children, but not self. */
4323   gtk_container_foreach (GTK_CONTAINER (widget), (GtkCallback) gtk_widget_show_all, NULL);
4324 }
4325
4326
4327 static void
4328 gtk_menu_hide_all (GtkWidget *widget)
4329 {
4330   /* Hide children, but not self. */
4331   gtk_container_foreach (GTK_CONTAINER (widget), (GtkCallback) gtk_widget_hide_all, NULL);
4332 }
4333
4334 /**
4335  * gtk_menu_set_screen:
4336  * @menu: a #GtkMenu.
4337  * @screen: a #GdkScreen, or %NULL if the screen should be
4338  *          determined by the widget the menu is attached to.
4339  *
4340  * Sets the #GdkScreen on which the menu will be displayed.
4341  * 
4342  * Since: 2.2
4343  **/
4344 void
4345 gtk_menu_set_screen (GtkMenu   *menu, 
4346                      GdkScreen *screen)
4347 {
4348   g_return_if_fail (GTK_IS_MENU (menu));
4349   g_return_if_fail (!screen || GDK_IS_SCREEN (screen));
4350
4351   g_object_set_data (G_OBJECT (menu), I_("gtk-menu-explicit-screen"), screen);
4352
4353   if (screen)
4354     {
4355       menu_change_screen (menu, screen);
4356     }
4357   else
4358     {
4359       GtkWidget *attach_widget = gtk_menu_get_attach_widget (menu);
4360       if (attach_widget)
4361         attach_widget_screen_changed (attach_widget, NULL, menu);
4362     }
4363 }
4364
4365 /**
4366  * gtk_menu_attach:
4367  * @menu: a #GtkMenu.
4368  * @child: a #GtkMenuItem.
4369  * @left_attach: The column number to attach the left side of the item to.
4370  * @right_attach: The column number to attach the right side of the item to.
4371  * @top_attach: The row number to attach the top of the item to.
4372  * @bottom_attach: The row number to attach the bottom of the item to.
4373  *
4374  * Adds a new #GtkMenuItem to a (table) menu. The number of 'cells' that
4375  * an item will occupy is specified by @left_attach, @right_attach,
4376  * @top_attach and @bottom_attach. These each represent the leftmost,
4377  * rightmost, uppermost and lower column and row numbers of the table.
4378  * (Columns and rows are indexed from zero).
4379  *
4380  * Note that this function is not related to gtk_menu_detach().
4381  *
4382  * Since: 2.4
4383  **/
4384 void
4385 gtk_menu_attach (GtkMenu   *menu,
4386                  GtkWidget *child,
4387                  guint      left_attach,
4388                  guint      right_attach,
4389                  guint      top_attach,
4390                  guint      bottom_attach)
4391 {
4392   GtkMenuShell *menu_shell;
4393   
4394   g_return_if_fail (GTK_IS_MENU (menu));
4395   g_return_if_fail (GTK_IS_MENU_ITEM (child));
4396   g_return_if_fail (child->parent == NULL || 
4397                     child->parent == GTK_WIDGET (menu));
4398   g_return_if_fail (left_attach < right_attach);
4399   g_return_if_fail (top_attach < bottom_attach);
4400
4401   menu_shell = GTK_MENU_SHELL (menu);
4402   
4403   if (!child->parent)
4404     {
4405       AttachInfo *ai = get_attach_info (child);
4406       
4407       ai->left_attach = left_attach;
4408       ai->right_attach = right_attach;
4409       ai->top_attach = top_attach;
4410       ai->bottom_attach = bottom_attach;
4411       
4412       menu_shell->children = g_list_append (menu_shell->children, child);
4413
4414       gtk_widget_set_parent (child, GTK_WIDGET (menu));
4415
4416       menu_queue_resize (menu);
4417     }
4418   else
4419     {
4420       gtk_container_child_set (GTK_CONTAINER (child->parent), child,
4421                                "left-attach",   left_attach,
4422                                "right-attach",  right_attach,
4423                                "top-attach",    top_attach,
4424                                "bottom-attach", bottom_attach,
4425                                NULL);
4426     }
4427 }
4428
4429 static gint
4430 gtk_menu_get_popup_delay (GtkMenuShell *menu_shell)
4431 {
4432   gint popup_delay;
4433
4434   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu_shell)),
4435                 "gtk-menu-popup-delay", &popup_delay,
4436                 NULL);
4437
4438   return popup_delay;
4439 }
4440
4441 static GtkWidget *
4442 find_child_containing (GtkMenuShell *menu_shell,
4443                        int           left,
4444                        int           right,
4445                        int           top,
4446                        int           bottom)
4447 {
4448   GList *list;
4449
4450   /* find a child which includes the area given by
4451    * left, right, top, bottom.
4452    */
4453
4454   for (list = menu_shell->children; list; list = list->next)
4455     {
4456       gint l, r, t, b;
4457
4458       if (!_gtk_menu_item_is_selectable (list->data))
4459         continue;
4460
4461       get_effective_child_attach (list->data, &l, &r, &t, &b);
4462
4463       if (l <= left && right <= r
4464           && t <= top && bottom <= b)
4465         return GTK_WIDGET (list->data);
4466     }
4467
4468   return NULL;
4469 }
4470
4471 static void
4472 gtk_menu_move_current (GtkMenuShell *menu_shell,
4473                        GtkMenuDirectionType direction)
4474 {
4475   GtkMenu *menu = GTK_MENU (menu_shell);
4476   gint i;
4477   gint l, r, t, b;
4478   GtkWidget *match = NULL;
4479
4480   if (gtk_widget_get_direction (GTK_WIDGET (menu_shell)) == GTK_TEXT_DIR_RTL)
4481     {
4482       switch (direction)
4483         {
4484         case GTK_MENU_DIR_CHILD:
4485           direction = GTK_MENU_DIR_PARENT;
4486           break;
4487         case GTK_MENU_DIR_PARENT:
4488           direction = GTK_MENU_DIR_CHILD;
4489           break;
4490         default: ;
4491         }
4492     }
4493
4494   /* use special table menu key bindings */
4495   if (menu_shell->active_menu_item && gtk_menu_get_n_columns (menu) > 1)
4496     {
4497       get_effective_child_attach (menu_shell->active_menu_item, &l, &r, &t, &b);
4498
4499       if (direction == GTK_MENU_DIR_NEXT)
4500         {
4501           for (i = b; i < gtk_menu_get_n_rows (menu); i++)
4502             {
4503               match = find_child_containing (menu_shell, l, l + 1, i, i + 1);
4504               if (match)
4505                 break;
4506             }
4507
4508           if (!match)
4509             {
4510               /* wrap around */
4511               for (i = 0; i < t; i++)
4512                 {
4513                   match = find_child_containing (menu_shell,
4514                                                  l, l + 1, i, i + 1);
4515                   if (match)
4516                     break;
4517                 }
4518             }
4519         }
4520       else if (direction == GTK_MENU_DIR_PREV)
4521         {
4522           for (i = t; i > 0; i--)
4523             {
4524               match = find_child_containing (menu_shell, l, l + 1, i - 1, i);
4525               if (match)
4526                 break;
4527             }
4528
4529           if (!match)
4530             {
4531               /* wrap around */
4532               for (i = gtk_menu_get_n_rows (menu); i > b; i--)
4533                 {
4534                   match = find_child_containing (menu_shell,
4535                                                  l, l + 1, i - 1, i);
4536                   if (match)
4537                     break;
4538                 }
4539             }
4540         }
4541       else if (direction == GTK_MENU_DIR_PARENT)
4542         {
4543           /* we go one left if possible */
4544           if (l > 0)
4545             match = find_child_containing (menu_shell, l - 1, l, t, t + 1);
4546
4547           if (!match)
4548             {
4549               GtkWidget *parent = menu_shell->parent_menu_shell;
4550
4551               if (!parent
4552                   || g_list_length (GTK_MENU_SHELL (parent)->children) <= 1)
4553                 match = menu_shell->active_menu_item;
4554             }
4555         }
4556       else if (direction == GTK_MENU_DIR_CHILD)
4557         {
4558           /* we go one right if possible */
4559           if (r < gtk_menu_get_n_columns (menu))
4560             match = find_child_containing (menu_shell, r, r + 1, t, t + 1);
4561
4562           if (!match)
4563             {
4564               GtkWidget *parent = menu_shell->parent_menu_shell;
4565
4566               if (! GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu &&
4567                   (!parent ||
4568                    g_list_length (GTK_MENU_SHELL (parent)->children) <= 1))
4569                 match = menu_shell->active_menu_item;
4570             }
4571         }
4572
4573       if (match)
4574         {
4575           gtk_menu_shell_select_item (menu_shell, match);
4576           return;
4577         }
4578     }
4579
4580   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->move_current (menu_shell, direction);
4581 }
4582
4583 static gint
4584 get_visible_size (GtkMenu *menu)
4585 {
4586   GtkWidget *widget = GTK_WIDGET (menu);
4587   GtkContainer *container = GTK_CONTAINER (menu);
4588   gint scroll_arrow_height;
4589   
4590   gint menu_height = (widget->allocation.height
4591                       - 2 * (container->border_width
4592                              + widget->style->ythickness));
4593   
4594   gtk_widget_style_get (GTK_WIDGET (menu),
4595                         "scroll-arrow-vlength", &scroll_arrow_height,
4596                         NULL);
4597
4598   if (menu->upper_arrow_visible && !menu->tearoff_active)
4599     menu_height -= scroll_arrow_height;
4600   if (menu->lower_arrow_visible && !menu->tearoff_active)
4601     menu_height -= scroll_arrow_height;
4602
4603   return menu_height;
4604 }
4605
4606 /* Find the sensitive on-screen child containing @y, or if none,
4607  * the nearest selectable onscreen child. (%NULL if none)
4608  */
4609 static GtkWidget *
4610 child_at (GtkMenu *menu,
4611           gint     y)
4612 {
4613   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
4614   GtkWidget *child = NULL;
4615   gint child_offset = 0;
4616   GList *children;
4617   gint menu_height;
4618   gint lower, upper;            /* Onscreen bounds */
4619
4620   menu_height = get_visible_size (menu);
4621   lower = menu->scroll_offset;
4622   upper = menu->scroll_offset + menu_height;
4623   
4624   for (children = menu_shell->children; children; children = children->next)
4625     {
4626       if (GTK_WIDGET_VISIBLE (children->data))
4627         {
4628           GtkRequisition child_requisition;
4629
4630           gtk_widget_size_request (children->data, &child_requisition);
4631
4632           if (_gtk_menu_item_is_selectable (children->data) &&
4633               child_offset >= lower &&
4634               child_offset + child_requisition.height <= upper)
4635             {
4636               child = children->data;
4637               
4638               if (child_offset + child_requisition.height > y &&
4639                   !GTK_IS_TEAROFF_MENU_ITEM (child))
4640                 return child;
4641             }
4642       
4643           child_offset += child_requisition.height;
4644         }
4645     }
4646
4647   return child;
4648 }
4649
4650 static gint
4651 get_menu_height (GtkMenu *menu)
4652 {
4653   gint height;
4654   GtkWidget *widget = GTK_WIDGET (menu);
4655   gint scroll_arrow_height;
4656
4657   gtk_widget_style_get (GTK_WIDGET (menu),
4658                         "scroll-arrow-vlength", &scroll_arrow_height,
4659                         NULL);
4660   
4661   height = widget->requisition.height;
4662   height -= (GTK_CONTAINER (widget)->border_width + widget->style->ythickness) * 2;
4663
4664   if (menu->upper_arrow_visible && !menu->tearoff_active)
4665     height -= scroll_arrow_height;
4666
4667   if (menu->lower_arrow_visible && !menu->tearoff_active)
4668     height -= scroll_arrow_height;
4669
4670   return height;
4671 }
4672
4673 static void
4674 gtk_menu_real_move_scroll (GtkMenu       *menu,
4675                            GtkScrollType  type)
4676 {
4677   gint page_size = get_visible_size (menu);
4678   gint end_position = get_menu_height (menu);
4679   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
4680   gint scroll_arrow_height;
4681
4682   gtk_widget_style_get (GTK_WIDGET (menu),
4683                         "scroll-arrow-vlength", &scroll_arrow_height,
4684                         NULL);
4685   
4686   switch (type)
4687     {
4688     case GTK_SCROLL_PAGE_UP:
4689     case GTK_SCROLL_PAGE_DOWN:
4690       {
4691         gint old_offset;
4692         gint new_offset;
4693         gint child_offset = 0;
4694         gboolean old_upper_arrow_visible;
4695         gint step;
4696
4697         if (type == GTK_SCROLL_PAGE_UP)
4698           step = - page_size;
4699         else
4700           step = page_size;
4701
4702         if (menu_shell->active_menu_item)
4703           {
4704             gint child_height;
4705             
4706             compute_child_offset (menu, menu_shell->active_menu_item,
4707                                   &child_offset, &child_height, NULL);
4708             child_offset += child_height / 2;
4709           }
4710
4711         menu_shell->ignore_enter = TRUE;
4712         old_upper_arrow_visible = menu->upper_arrow_visible && !menu->tearoff_active;
4713         old_offset = menu->scroll_offset;
4714
4715         new_offset = menu->scroll_offset + step;
4716         new_offset = CLAMP (new_offset, 0, end_position - page_size);
4717
4718         gtk_menu_scroll_to (menu, new_offset);
4719         
4720         if (menu_shell->active_menu_item)
4721           {
4722             GtkWidget *new_child;
4723             gboolean new_upper_arrow_visible = menu->upper_arrow_visible && !menu->tearoff_active;
4724
4725             if (menu->scroll_offset != old_offset)
4726               step = menu->scroll_offset - old_offset;
4727
4728             step -= (new_upper_arrow_visible - old_upper_arrow_visible) * scroll_arrow_height;
4729
4730             new_child = child_at (menu, child_offset + step);
4731             if (new_child)
4732               gtk_menu_shell_select_item (menu_shell, new_child);
4733           }
4734       }
4735       break;
4736     case GTK_SCROLL_START:
4737       /* Ignore the enter event we might get if the pointer is on the menu
4738        */
4739       menu_shell->ignore_enter = TRUE;
4740       gtk_menu_scroll_to (menu, 0);
4741       gtk_menu_shell_select_first (menu_shell, TRUE);
4742       break;
4743     case GTK_SCROLL_END:
4744       /* Ignore the enter event we might get if the pointer is on the menu
4745        */
4746       menu_shell->ignore_enter = TRUE;
4747       gtk_menu_scroll_to (menu, end_position - page_size);
4748       _gtk_menu_shell_select_last (menu_shell, TRUE);
4749       break;
4750     default:
4751       break;
4752     }
4753 }
4754
4755
4756 /**
4757  * gtk_menu_set_monitor:
4758  * @menu: a #GtkMenu
4759  * @monitor_num: the number of the monitor on which the menu should
4760  *    be popped up
4761  * 
4762  * Informs GTK+ on which monitor a menu should be popped up. 
4763  * See gdk_screen_get_monitor_geometry().
4764  *
4765  * This function should be called from a #GtkMenuPositionFunc if the
4766  * menu should not appear on the same monitor as the pointer. This 
4767  * information can't be reliably inferred from the coordinates returned
4768  * by a #GtkMenuPositionFunc, since, for very long menus, these coordinates 
4769  * may extend beyond the monitor boundaries or even the screen boundaries. 
4770  *
4771  * Since: 2.4
4772  **/
4773 void
4774 gtk_menu_set_monitor (GtkMenu *menu,
4775                       gint     monitor_num)
4776 {
4777   GtkMenuPrivate *priv;
4778   g_return_if_fail (GTK_IS_MENU (menu));
4779
4780   priv = gtk_menu_get_private (menu);
4781   
4782   priv->monitor_num = monitor_num;
4783 }
4784
4785 /**
4786  * gtk_menu_get_for_attach_widget:
4787  * @widget: a #GtkWidget
4788  *
4789  * Returns a list of the menus which are attached to this widget.
4790  * This list is owned by GTK+ and must not be modified.
4791  *
4792  * Return value: the list of menus attached to his widget.
4793  *
4794  * Since: 2.6
4795  **/
4796 GList*
4797 gtk_menu_get_for_attach_widget (GtkWidget *widget)
4798 {
4799   GList *list;
4800   
4801   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
4802   
4803   list = g_object_get_data (G_OBJECT (widget), ATTACHED_MENUS);
4804   return list;
4805 }
4806
4807 static void
4808 gtk_menu_grab_notify (GtkWidget *widget,
4809                       gboolean   was_grabbed)
4810 {
4811   GtkWidget *toplevel;
4812   GtkWindowGroup *group;
4813   GtkWidget *grab;
4814
4815   toplevel = gtk_widget_get_toplevel (widget);
4816   group = gtk_window_get_group (GTK_WINDOW (toplevel));
4817   grab = _gtk_window_group_get_current_grab (group); 
4818
4819   if (!was_grabbed)
4820     {
4821       if (GTK_MENU_SHELL (widget)->active && !GTK_IS_MENU_SHELL (grab))
4822         gtk_menu_shell_cancel (GTK_MENU_SHELL (widget));
4823     }
4824 }
4825
4826 #define __GTK_MENU_C__
4827 #include "gtkaliasdef.c"