]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenu.c
pass &event->area to gtk_paint_box() calls.
[~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                      &event->area, 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                          &event->area, 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                            &event->area, 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                          &event->area, 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                            &event->area, 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       gint y = -border_y + menu->scroll_offset;
2516
2517       if (menu->upper_arrow_visible && !menu->tearoff_active)
2518         y -= scroll_arrow_height;
2519
2520       gtk_paint_box (widget->style,
2521                      menu->bin_window,
2522                      GTK_STATE_NORMAL,
2523                      GTK_SHADOW_OUT,
2524                      &event->area, widget, "menu",
2525                      - border_x, y,
2526                      width, height);
2527     }
2528 }
2529
2530 static gboolean
2531 gtk_menu_expose (GtkWidget      *widget,
2532                  GdkEventExpose *event)
2533 {
2534   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
2535   g_return_val_if_fail (event != NULL, FALSE);
2536
2537   if (GTK_WIDGET_DRAWABLE (widget))
2538     {
2539       gtk_menu_paint (widget, event);
2540       
2541       (* GTK_WIDGET_CLASS (gtk_menu_parent_class)->expose_event) (widget, event);
2542     }
2543   
2544   return FALSE;
2545 }
2546
2547 static void
2548 gtk_menu_show (GtkWidget *widget)
2549 {
2550   GtkMenu *menu = GTK_MENU (widget);
2551
2552   _gtk_menu_refresh_accel_paths (menu, FALSE);
2553
2554   GTK_WIDGET_CLASS (gtk_menu_parent_class)->show (widget);
2555 }
2556
2557 static gboolean
2558 gtk_menu_button_scroll (GtkMenu        *menu,
2559                         GdkEventButton *event)
2560 {
2561   if (menu->upper_arrow_prelight || menu->lower_arrow_prelight)
2562     {
2563       GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (menu));
2564       gboolean     touchscreen_mode;
2565
2566       g_object_get (G_OBJECT (settings),
2567                     "gtk-touchscreen-mode", &touchscreen_mode,
2568                     NULL);
2569
2570       if (touchscreen_mode)
2571         gtk_menu_handle_scrolling (menu,
2572                                    event->x_root, event->y_root,
2573                                    event->type == GDK_BUTTON_PRESS,
2574                                    FALSE);
2575
2576       return TRUE;
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 (GTK_MENU (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   GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (widget));
2602
2603   if (priv->ignore_button_release)
2604     {
2605       priv->ignore_button_release = FALSE;
2606       return FALSE;
2607     }
2608
2609   if (event->type != GDK_BUTTON_RELEASE)
2610     return FALSE;
2611
2612   /* Don't pop down the menu for releases over scroll arrows
2613    */
2614   if (gtk_menu_button_scroll (GTK_MENU (widget), event))
2615     return TRUE;
2616
2617   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->button_release_event (widget, event);
2618 }
2619
2620 static const gchar *
2621 get_accel_path (GtkWidget *menu_item,
2622                 gboolean  *locked)
2623 {
2624   const gchar *path;
2625   GtkWidget *label;
2626   GClosure *accel_closure;
2627   GtkAccelGroup *accel_group;    
2628
2629   path = _gtk_widget_get_accel_path (menu_item, locked);
2630   if (!path)
2631     {
2632       path = GTK_MENU_ITEM (menu_item)->accel_path;
2633       
2634       if (locked)
2635         {
2636           *locked = TRUE;
2637
2638           label = GTK_BIN (menu_item)->child;
2639           
2640           if (GTK_IS_ACCEL_LABEL (label))
2641             {
2642               g_object_get (label, 
2643                             "accel-closure", &accel_closure, 
2644                             NULL);
2645               if (accel_closure)
2646                 {
2647                   accel_group = gtk_accel_group_from_accel_closure (accel_closure);
2648                   
2649                   *locked = accel_group->lock_count > 0;
2650                 }
2651             }
2652         }
2653     }
2654
2655   return path;
2656 }
2657
2658 static gboolean
2659 gtk_menu_key_press (GtkWidget   *widget,
2660                     GdkEventKey *event)
2661 {
2662   GtkMenuShell *menu_shell;
2663   GtkMenu *menu;
2664   gboolean delete = FALSE;
2665   gboolean can_change_accels;
2666   gchar *accel = NULL;
2667   guint accel_key, accel_mods;
2668   GdkModifierType consumed_modifiers;
2669   GdkDisplay *display;
2670   
2671   g_return_val_if_fail (GTK_IS_MENU (widget), FALSE);
2672   g_return_val_if_fail (event != NULL, FALSE);
2673       
2674   menu_shell = GTK_MENU_SHELL (widget);
2675   menu = GTK_MENU (widget);
2676   
2677   gtk_menu_stop_navigating_submenu (menu);
2678
2679   if (GTK_WIDGET_CLASS (gtk_menu_parent_class)->key_press_event (widget, event))
2680     return TRUE;
2681
2682   display = gtk_widget_get_display (widget);
2683     
2684   g_object_get (gtk_widget_get_settings (widget),
2685                 "gtk-menu-bar-accel", &accel,
2686                 "gtk-can-change-accels", &can_change_accels,
2687                 NULL);
2688
2689   if (accel && *accel)
2690     {
2691       guint keyval = 0;
2692       GdkModifierType mods = 0;
2693       gboolean handled = FALSE;
2694       
2695       gtk_accelerator_parse (accel, &keyval, &mods);
2696
2697       if (keyval == 0)
2698         g_warning ("Failed to parse menu bar accelerator '%s'\n", accel);
2699
2700       /* FIXME this is wrong, needs to be in the global accel resolution
2701        * thing, to properly consider i18n etc., but that probably requires
2702        * AccelGroup changes etc.
2703        */
2704       if (event->keyval == keyval &&
2705           (mods & event->state) == mods)
2706         gtk_menu_shell_cancel (menu_shell);
2707
2708       g_free (accel);
2709
2710       if (handled)
2711         return TRUE;
2712     }
2713   
2714   switch (event->keyval)
2715     {
2716     case GDK_Delete:
2717     case GDK_KP_Delete:
2718     case GDK_BackSpace:
2719       delete = TRUE;
2720       break;
2721     default:
2722       break;
2723     }
2724
2725   /* Figure out what modifiers went into determining the key symbol */
2726   gdk_keymap_translate_keyboard_state (gdk_keymap_get_for_display (display),
2727                                        event->hardware_keycode, event->state, event->group,
2728                                        NULL, NULL, NULL, &consumed_modifiers);
2729
2730   accel_key = gdk_keyval_to_lower (event->keyval);
2731   accel_mods = event->state & gtk_accelerator_get_default_mod_mask () & ~consumed_modifiers;
2732
2733   /* If lowercasing affects the keysym, then we need to include SHIFT in the modifiers,
2734    * We re-upper case when we match against the keyval, but display and save in caseless form.
2735    */
2736   if (accel_key != event->keyval)
2737     accel_mods |= GDK_SHIFT_MASK;
2738   
2739   /* Modify the accelerators */
2740   if (can_change_accels &&
2741       menu_shell->active_menu_item &&
2742       GTK_BIN (menu_shell->active_menu_item)->child &&                  /* no separators */
2743       GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu == NULL &&  /* no submenus */
2744       (delete || gtk_accelerator_valid (accel_key, accel_mods)))
2745     {
2746       GtkWidget *menu_item = menu_shell->active_menu_item;
2747       gboolean locked, replace_accels = TRUE;
2748       const gchar *path;
2749
2750       path = get_accel_path (menu_item, &locked);
2751       if (!path || locked)
2752         {
2753           /* can't change accelerators on menu_items without paths
2754            * (basically, those items are accelerator-locked).
2755            */
2756           /* g_print("item has no path or is locked, menu prefix: %s\n", menu->accel_path); */
2757           gtk_widget_error_bell (widget);
2758         }
2759       else
2760         {
2761           gboolean changed;
2762
2763           /* For the keys that act to delete the current setting, we delete
2764            * the current setting if there is one, otherwise, we set the
2765            * key as the accelerator.
2766            */
2767           if (delete)
2768             {
2769               GtkAccelKey key;
2770               
2771               if (gtk_accel_map_lookup_entry (path, &key) &&
2772                   (key.accel_key || key.accel_mods))
2773                 {
2774                   accel_key = 0;
2775                   accel_mods = 0;
2776                 }
2777             }
2778           changed = gtk_accel_map_change_entry (path, accel_key, accel_mods, replace_accels);
2779
2780           if (!changed)
2781             {
2782               /* we failed, probably because this key is in use and
2783                * locked already
2784                */
2785               /* g_print("failed to change\n"); */
2786               gtk_widget_error_bell (widget);
2787             }
2788         }
2789     }
2790   
2791   return TRUE;
2792 }
2793
2794 static gboolean
2795 check_threshold (GtkWidget *widget,
2796                  int start_x, int start_y,
2797                  int x, int y)
2798 {
2799 #define THRESHOLD 8
2800   
2801   return
2802     ABS (start_x - x) > THRESHOLD  ||
2803     ABS (start_y - y) > THRESHOLD;
2804 }
2805
2806 static gboolean
2807 definitely_within_item (GtkWidget *widget, 
2808                         int x,
2809                         int y)
2810 {
2811   GdkWindow *window = GTK_MENU_ITEM (widget)->event_window;
2812   int w, h;
2813
2814   gdk_drawable_get_size (window, &w, &h);
2815   
2816   return
2817     check_threshold (widget, 0, 0, x, y) &&
2818     check_threshold (widget, w - 1, 0, x, y) &&
2819     check_threshold (widget, w - 1, h - 1, x, y) &&
2820     check_threshold (widget, 0, h - 1, x, y);
2821 }
2822
2823 static gboolean
2824 gtk_menu_motion_notify  (GtkWidget         *widget,
2825                          GdkEventMotion    *event)
2826 {
2827   GtkWidget *menu_item;
2828   GtkMenu *menu;
2829   GtkMenuShell *menu_shell;
2830
2831   gboolean need_enter;
2832
2833   if (GTK_IS_MENU (widget))
2834     {
2835       GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (widget));
2836
2837       if (priv->ignore_button_release)
2838         priv->ignore_button_release = FALSE;
2839
2840       gtk_menu_handle_scrolling (GTK_MENU (widget), event->x_root, event->y_root,
2841                                  TRUE, TRUE);
2842     }
2843
2844   /* We received the event for one of two reasons:
2845    *
2846    * a) We are the active menu, and did gtk_grab_add()
2847    * b) The widget is a child of ours, and the event was propagated
2848    *
2849    * Since for computation of navigation regions, we want the menu which
2850    * is the parent of the menu item, for a), we need to find that menu,
2851    * which may be different from 'widget'.
2852    */
2853   menu_item = gtk_get_event_widget ((GdkEvent*) event);
2854   if (!GTK_IS_MENU_ITEM (menu_item) ||
2855       !GTK_IS_MENU (menu_item->parent))
2856     return FALSE;
2857
2858   menu_shell = GTK_MENU_SHELL (menu_item->parent);
2859   menu = GTK_MENU (menu_shell);
2860
2861   if (definitely_within_item (menu_item, event->x, event->y))
2862     menu_shell->activate_time = 0;
2863   
2864   need_enter = (menu->navigation_region != NULL || menu_shell->ignore_enter);
2865
2866   /* Check to see if we are within an active submenu's navigation region
2867    */
2868   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
2869     return TRUE; 
2870
2871   /* Make sure we pop down if we enter a non-selectable menu item, so we
2872    * don't show a submenu when the cursor is outside the stay-up triangle.
2873    */
2874   if (!_gtk_menu_item_is_selectable (menu_item))
2875     {
2876       gtk_menu_shell_deselect (menu_shell);
2877       return FALSE;
2878     }
2879
2880   if (need_enter)
2881     {
2882       /* The menu is now sensitive to enter events on its items, but
2883        * was previously sensitive.  So we fake an enter event.
2884        */
2885       gint width, height;
2886       
2887       menu_shell->ignore_enter = FALSE; 
2888       
2889       gdk_drawable_get_size (event->window, &width, &height);
2890       if (event->x >= 0 && event->x < width &&
2891           event->y >= 0 && event->y < height)
2892         {
2893           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
2894           gboolean result;
2895
2896           send_event->crossing.window = g_object_ref (event->window);
2897           send_event->crossing.time = event->time;
2898           send_event->crossing.send_event = TRUE;
2899           send_event->crossing.x_root = event->x_root;
2900           send_event->crossing.y_root = event->y_root;
2901           send_event->crossing.x = event->x;
2902           send_event->crossing.y = event->y;
2903
2904           /* We send the event to 'widget', the currently active menu,
2905            * instead of 'menu', the menu that the pointer is in. This
2906            * will ensure that the event will be ignored unless the
2907            * menuitem is a child of the active menu or some parent
2908            * menu of the active menu.
2909            */
2910           result = gtk_widget_event (widget, send_event);
2911           gdk_event_free (send_event);
2912
2913           return result;
2914         }
2915     }
2916
2917   return FALSE;
2918 }
2919
2920 static gboolean
2921 get_double_arrows (GtkMenu *menu)
2922 {
2923   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
2924   gboolean        double_arrows;
2925
2926   gtk_widget_style_get (GTK_WIDGET (menu),
2927                         "double-arrows", &double_arrows,
2928                         NULL);
2929
2930   return double_arrows || (priv->initially_pushed_in &&
2931                            menu->scroll_offset != 0);
2932 }
2933
2934 static void
2935 gtk_menu_scroll_by (GtkMenu *menu, 
2936                     gint     step)
2937 {
2938   GtkWidget *widget;
2939   gint offset;
2940   gint view_width, view_height;
2941   gboolean double_arrows;
2942   gint scroll_arrow_height;
2943   
2944   widget = GTK_WIDGET (menu);
2945   offset = menu->scroll_offset + step;
2946
2947   gtk_widget_style_get (GTK_WIDGET (menu),
2948                         "scroll-arrow-vlength", &scroll_arrow_height,
2949                         NULL);
2950
2951   double_arrows = get_double_arrows (menu);
2952
2953   /* If we scroll upward and the non-visible top part
2954    * is smaller than the scroll arrow it would be
2955    * pretty stupid to show the arrow and taking more
2956    * screen space than just scrolling to the top.
2957    */
2958   if (!double_arrows)
2959     if ((step < 0) && (offset < scroll_arrow_height))
2960       offset = 0;
2961
2962   /* Don't scroll over the top if we weren't before: */
2963   if ((menu->scroll_offset >= 0) && (offset < 0))
2964     offset = 0;
2965
2966   gdk_drawable_get_size (widget->window, &view_width, &view_height);
2967
2968   if (menu->scroll_offset == 0 &&
2969       view_height >= widget->requisition.height)
2970     return;
2971
2972   /* Don't scroll past the bottom if we weren't before: */
2973   if (menu->scroll_offset > 0)
2974     view_height -= scroll_arrow_height;
2975
2976   /* When both arrows are always shown, reduce
2977    * view height even more.
2978    */
2979   if (double_arrows)
2980     view_height -= scroll_arrow_height;
2981
2982   if ((menu->scroll_offset + view_height <= widget->requisition.height) &&
2983       (offset + view_height > widget->requisition.height))
2984     offset = widget->requisition.height - view_height;
2985
2986   if (offset != menu->scroll_offset)
2987     gtk_menu_scroll_to (menu, offset);
2988 }
2989
2990 static void
2991 gtk_menu_do_timeout_scroll (GtkMenu  *menu,
2992                             gboolean  touchscreen_mode)
2993 {
2994   gboolean upper_visible;
2995   gboolean lower_visible;
2996
2997   upper_visible = menu->upper_arrow_visible;
2998   lower_visible = menu->lower_arrow_visible;
2999
3000   gtk_menu_scroll_by (menu, menu->scroll_step);
3001
3002   if (touchscreen_mode &&
3003       (upper_visible != menu->upper_arrow_visible ||
3004        lower_visible != menu->lower_arrow_visible))
3005     {
3006       /* We are about to hide a scroll arrow while the mouse is pressed,
3007        * this would cause the uncovered menu item to be activated on button
3008        * release. Therefore we need to ignore button release here
3009        */
3010       GTK_MENU_SHELL (menu)->ignore_enter = TRUE;
3011       gtk_menu_get_private (menu)->ignore_button_release = TRUE;
3012     }
3013 }
3014
3015 static gboolean
3016 gtk_menu_scroll_timeout (gpointer  data)
3017 {
3018   GtkMenu     *menu;
3019   GtkSettings *settings;
3020   gboolean     touchscreen_mode;
3021
3022   menu = GTK_MENU (data);
3023
3024   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3025   g_object_get (settings,
3026                 "gtk-touchscreen-mode", &touchscreen_mode,
3027                 NULL);
3028
3029   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3030
3031   return TRUE;
3032 }
3033
3034 static gboolean
3035 gtk_menu_scroll_timeout_initial (gpointer data)
3036 {
3037   GtkMenu     *menu;
3038   GtkSettings *settings;
3039   guint        timeout;
3040   gboolean     touchscreen_mode;
3041
3042   menu = GTK_MENU (data);
3043
3044   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3045   g_object_get (settings,
3046                 "gtk-timeout-repeat", &timeout,
3047                 "gtk-touchscreen-mode", &touchscreen_mode,
3048                 NULL);
3049
3050   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3051
3052   gtk_menu_remove_scroll_timeout (menu);
3053
3054   menu->timeout_id = gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout, menu);
3055
3056   return FALSE;
3057 }
3058
3059 static void
3060 gtk_menu_start_scrolling (GtkMenu *menu)
3061 {
3062   GtkSettings *settings;
3063   guint        timeout;
3064   gboolean     touchscreen_mode;
3065
3066   settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3067   g_object_get (settings,
3068                 "gtk-timeout-repeat", &timeout,
3069                 "gtk-touchscreen-mode", &touchscreen_mode,
3070                 NULL);
3071
3072   gtk_menu_do_timeout_scroll (menu, touchscreen_mode);
3073
3074   menu->timeout_id = gdk_threads_add_timeout (timeout, gtk_menu_scroll_timeout_initial,
3075                                     menu);
3076 }
3077
3078 static gboolean
3079 gtk_menu_scroll (GtkWidget      *widget,
3080                  GdkEventScroll *event)
3081 {
3082   GtkMenu *menu = GTK_MENU (widget);
3083
3084   switch (event->direction)
3085     {
3086     case GDK_SCROLL_RIGHT:
3087     case GDK_SCROLL_DOWN:
3088       gtk_menu_scroll_by (menu, MENU_SCROLL_STEP2);
3089       break;
3090     case GDK_SCROLL_LEFT:
3091     case GDK_SCROLL_UP:
3092       gtk_menu_scroll_by (menu, - MENU_SCROLL_STEP2);
3093       break;
3094     }
3095
3096   return TRUE;
3097 }
3098
3099 static void
3100 gtk_menu_handle_scrolling (GtkMenu *menu,
3101                            gint     x,
3102                            gint     y,
3103                            gboolean enter,
3104                            gboolean motion)
3105 {
3106   GtkMenuShell *menu_shell;
3107   GtkMenuPrivate *priv;
3108   gint width, height;
3109   gint border;
3110   GdkRectangle rect;
3111   gboolean in_arrow;
3112   gboolean scroll_fast = FALSE;
3113   guint vertical_padding;
3114   gint top_x, top_y;
3115   gint win_x, win_y;
3116   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3117   gboolean touchscreen_mode;
3118   gint scroll_arrow_height;
3119   
3120   priv = gtk_menu_get_private (menu);
3121
3122   menu_shell = GTK_MENU_SHELL (menu);
3123
3124   gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, &height);
3125
3126   g_object_get (G_OBJECT (settings),
3127                 "gtk-touchscreen-mode", &touchscreen_mode,
3128                 NULL);
3129
3130   gtk_widget_style_get (GTK_WIDGET (menu),
3131                         "vertical-padding", &vertical_padding,
3132                         "scroll-arrow-vlength", &scroll_arrow_height,
3133                         NULL);
3134
3135   border = GTK_CONTAINER (menu)->border_width +
3136     GTK_WIDGET (menu)->style->ythickness + vertical_padding;
3137
3138   gdk_window_get_position (menu->toplevel->window, &top_x, &top_y);
3139   x -= top_x;
3140   y -= top_y;
3141
3142   gdk_window_get_position (GTK_WIDGET (menu)->window, &win_x, &win_y);
3143
3144   /*  upper arrow handling  */
3145
3146   rect.x = win_x;
3147   rect.y = win_y;
3148   rect.width = width;
3149   rect.height = scroll_arrow_height + border;
3150
3151   in_arrow = FALSE;
3152   if (menu->upper_arrow_visible && !menu->tearoff_active &&
3153       (x >= rect.x) && (x < rect.x + rect.width) &&
3154       (y >= rect.y) && (y < rect.y + rect.height))
3155     {
3156       in_arrow = TRUE;
3157     }
3158
3159   if (touchscreen_mode)
3160     menu->upper_arrow_prelight = in_arrow;
3161
3162   if (priv->upper_arrow_state != GTK_STATE_INSENSITIVE)
3163     {
3164       if (menu->upper_arrow_visible && !menu->tearoff_active)
3165         {
3166           if (touchscreen_mode)
3167             {
3168               if (enter && menu->upper_arrow_prelight &&
3169                   menu->timeout_id == 0)
3170                 {
3171                   /* Deselect the active item so that
3172                    * any submenus are popped down
3173                    */
3174                   gtk_menu_shell_deselect (menu_shell);
3175
3176                   gtk_menu_remove_scroll_timeout (menu);
3177                   menu->scroll_step = -MENU_SCROLL_STEP2; /* always fast */
3178
3179                   if (!motion)
3180                     {
3181                       /* Only do stuff on click. */
3182                       gtk_menu_start_scrolling (menu);
3183                       priv->upper_arrow_state = GTK_STATE_ACTIVE;
3184                     }
3185
3186                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3187                                               &rect, FALSE);
3188                 }
3189               else if (!enter)
3190                 {
3191                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3192                                               &rect, FALSE);
3193
3194                   gtk_menu_stop_scrolling (menu);
3195                 }
3196             }
3197           else /* !touchscreen_mode */
3198             {
3199               scroll_fast = (y < rect.y + MENU_SCROLL_FAST_ZONE);
3200
3201               if (enter && in_arrow &&
3202                   (!menu->upper_arrow_prelight ||
3203                    menu->scroll_fast != scroll_fast))
3204                 {
3205                   menu->upper_arrow_prelight = TRUE;
3206                   menu->scroll_fast = scroll_fast;
3207                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3208                                               &rect, FALSE);
3209
3210                   /* Deselect the active item so that
3211                    * any submenus are popped down
3212                    */
3213                   gtk_menu_shell_deselect (menu_shell);
3214
3215                   gtk_menu_remove_scroll_timeout (menu);
3216                   menu->scroll_step = scroll_fast ?
3217                     -MENU_SCROLL_STEP2 : -MENU_SCROLL_STEP1;
3218
3219                   menu->timeout_id =
3220                     gdk_threads_add_timeout (scroll_fast ?
3221                                    MENU_SCROLL_TIMEOUT2 : MENU_SCROLL_TIMEOUT1,
3222                                    gtk_menu_scroll_timeout, menu);
3223                 }
3224               else if (!enter && !in_arrow && menu->upper_arrow_prelight)
3225                 {
3226                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3227                                               &rect, FALSE);
3228
3229                   gtk_menu_stop_scrolling (menu);
3230                 }
3231             }
3232         }
3233
3234       priv->upper_arrow_state = menu->upper_arrow_prelight ?
3235         GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
3236     }
3237
3238   /*  lower arrow handling  */
3239
3240   rect.x = win_x;
3241   rect.y = win_y + height - border - scroll_arrow_height;
3242   rect.width = width;
3243   rect.height = scroll_arrow_height + border;
3244
3245   in_arrow = FALSE;
3246   if (menu->lower_arrow_visible && !menu->tearoff_active &&
3247       (x >= rect.x) && (x < rect.x + rect.width) &&
3248       (y >= rect.y) && (y < rect.y + rect.height))
3249     {
3250       in_arrow = TRUE;
3251     }
3252
3253   if (touchscreen_mode)
3254     menu->lower_arrow_prelight = in_arrow;
3255
3256   if (priv->lower_arrow_state != GTK_STATE_INSENSITIVE)
3257     {
3258       if (menu->lower_arrow_visible && !menu->tearoff_active)
3259         {
3260           if (touchscreen_mode)
3261             {
3262               if (enter && menu->lower_arrow_prelight &&
3263                   menu->timeout_id == 0)
3264                 {
3265                   /* Deselect the active item so that
3266                    * any submenus are popped down
3267                    */
3268                   gtk_menu_shell_deselect (menu_shell);
3269
3270                   gtk_menu_remove_scroll_timeout (menu);
3271                   menu->scroll_step = MENU_SCROLL_STEP2; /* always fast */
3272
3273                   if (!motion)
3274                     {
3275                       /* Only do stuff on click. */
3276                       gtk_menu_start_scrolling (menu);
3277                       priv->lower_arrow_state = GTK_STATE_ACTIVE;
3278                     }
3279
3280                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3281                                               &rect, FALSE);
3282                 }
3283               else if (!enter)
3284                 {
3285                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3286                                               &rect, FALSE);
3287
3288                   gtk_menu_stop_scrolling (menu);
3289                 }
3290             }
3291           else /* !touchscreen_mode */
3292             {
3293               scroll_fast = (y > rect.y + rect.height - MENU_SCROLL_FAST_ZONE);
3294
3295               if (enter && in_arrow &&
3296                   (!menu->lower_arrow_prelight ||
3297                    menu->scroll_fast != scroll_fast))
3298                 {
3299                   menu->lower_arrow_prelight = TRUE;
3300                   menu->scroll_fast = scroll_fast;
3301                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3302                                               &rect, FALSE);
3303
3304                   /* Deselect the active item so that
3305                    * any submenus are popped down
3306                    */
3307                   gtk_menu_shell_deselect (menu_shell);
3308
3309                   gtk_menu_remove_scroll_timeout (menu);
3310                   menu->scroll_step = scroll_fast ?
3311                     MENU_SCROLL_STEP2 : MENU_SCROLL_STEP1;
3312
3313                   menu->timeout_id =
3314                     gdk_threads_add_timeout (scroll_fast ?
3315                                    MENU_SCROLL_TIMEOUT2 : MENU_SCROLL_TIMEOUT1,
3316                                    gtk_menu_scroll_timeout, menu);
3317                 }
3318               else if (!enter && !in_arrow && menu->lower_arrow_prelight)
3319                 {
3320                   gdk_window_invalidate_rect (GTK_WIDGET (menu)->window,
3321                                               &rect, FALSE);
3322
3323                   gtk_menu_stop_scrolling (menu);
3324                 }
3325             }
3326         }
3327
3328       priv->lower_arrow_state = menu->lower_arrow_prelight ?
3329         GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
3330     }
3331 }
3332
3333 static gboolean
3334 gtk_menu_enter_notify (GtkWidget        *widget,
3335                        GdkEventCrossing *event)
3336 {
3337   GtkSettings *settings = gtk_widget_get_settings (widget);
3338   GtkWidget *menu_item;
3339   gboolean touchscreen_mode;
3340
3341   g_object_get (G_OBJECT (settings),
3342                 "gtk-touchscreen-mode", &touchscreen_mode,
3343                 NULL);
3344
3345   menu_item = gtk_get_event_widget ((GdkEvent*) event);
3346   if (GTK_IS_MENU (widget))
3347     {
3348       GtkMenuShell *menu_shell = GTK_MENU_SHELL (widget);
3349
3350       if (!menu_shell->ignore_enter)
3351         gtk_menu_handle_scrolling (GTK_MENU (widget),
3352                                    event->x_root, event->y_root, TRUE, TRUE);
3353     }
3354
3355   if (!touchscreen_mode && GTK_IS_MENU_ITEM (menu_item))
3356     {
3357       GtkWidget *menu = menu_item->parent;
3358       
3359       if (GTK_IS_MENU (menu))
3360         {
3361           GtkMenuPrivate *priv = gtk_menu_get_private (GTK_MENU (menu));
3362           GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
3363
3364           if (priv->seen_item_enter)
3365             {
3366               /* This is the second enter we see for an item
3367                * on this menu. This means a release should always
3368                * mean activate.
3369                */
3370               menu_shell->activate_time = 0;
3371             }
3372           else if ((event->detail != GDK_NOTIFY_NONLINEAR &&
3373                     event->detail != GDK_NOTIFY_NONLINEAR_VIRTUAL))
3374             {
3375               if (definitely_within_item (menu_item, event->x, event->y))
3376                 {
3377                   /* This is an actual user-enter (ie. not a pop-under)
3378                    * In this case, the user must either have entered
3379                    * sufficiently far enough into the item, or he must move
3380                    * far enough away from the enter point. (see
3381                    * gtk_menu_motion_notify())
3382                    */
3383                   menu_shell->activate_time = 0;
3384                 }
3385             }
3386             
3387           priv->seen_item_enter = TRUE;
3388         }
3389     }
3390   
3391   /* If this is a faked enter (see gtk_menu_motion_notify), 'widget'
3392    * will not correspond to the event widget's parent.  Check to see
3393    * if we are in the parent's navigation region.
3394    */
3395   if (GTK_IS_MENU_ITEM (menu_item) && GTK_IS_MENU (menu_item->parent) &&
3396       gtk_menu_navigating_submenu (GTK_MENU (menu_item->parent),
3397                                    event->x_root, event->y_root))
3398     return TRUE;
3399
3400   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (widget, event); 
3401 }
3402
3403 static gboolean
3404 gtk_menu_leave_notify (GtkWidget        *widget,
3405                        GdkEventCrossing *event)
3406 {
3407   GtkMenuShell *menu_shell;
3408   GtkMenu *menu;
3409   GtkMenuItem *menu_item;
3410   GtkWidget *event_widget;
3411
3412   menu = GTK_MENU (widget);
3413   menu_shell = GTK_MENU_SHELL (widget); 
3414   
3415   if (gtk_menu_navigating_submenu (menu, event->x_root, event->y_root))
3416     return TRUE; 
3417
3418   gtk_menu_handle_scrolling (menu, event->x_root, event->y_root, FALSE, TRUE);
3419
3420   event_widget = gtk_get_event_widget ((GdkEvent*) event);
3421   
3422   if (!GTK_IS_MENU_ITEM (event_widget))
3423     return TRUE;
3424   
3425   menu_item = GTK_MENU_ITEM (event_widget); 
3426   
3427   /* Here we check to see if we're leaving an active menu item with a submenu, 
3428    * in which case we enter submenu navigation mode. 
3429    */
3430   if (menu_shell->active_menu_item != NULL
3431       && menu_item->submenu != NULL
3432       && menu_item->submenu_placement == GTK_LEFT_RIGHT)
3433     {
3434       if (GTK_MENU_SHELL (menu_item->submenu)->active)
3435         {
3436           gtk_menu_set_submenu_navigation_region (menu, menu_item, event);
3437           return TRUE;
3438         }
3439       else if (menu_item == GTK_MENU_ITEM (menu_shell->active_menu_item))
3440         {
3441           /* We are leaving an active menu item with nonactive submenu.
3442            * Deselect it so we don't surprise the user with by popping
3443            * up a submenu _after_ he left the item.
3444            */
3445           gtk_menu_shell_deselect (menu_shell);
3446           return TRUE;
3447         }
3448     }
3449   
3450   return GTK_WIDGET_CLASS (gtk_menu_parent_class)->leave_notify_event (widget, event); 
3451 }
3452
3453 static void 
3454 gtk_menu_stop_navigating_submenu (GtkMenu *menu)
3455 {
3456   if (menu->navigation_region) 
3457     {
3458       gdk_region_destroy (menu->navigation_region);
3459       menu->navigation_region = NULL;
3460     }  
3461   if (menu->navigation_timeout)
3462     {
3463       g_source_remove (menu->navigation_timeout);
3464       menu->navigation_timeout = 0;
3465     }
3466 }
3467
3468 /* When the timeout is elapsed, the navigation region is destroyed
3469  * and the menuitem under the pointer (if any) is selected.
3470  */
3471 static gboolean
3472 gtk_menu_stop_navigating_submenu_cb (gpointer user_data)
3473 {
3474   GtkMenu *menu = user_data;
3475   GdkWindow *child_window;
3476
3477   gtk_menu_stop_navigating_submenu (menu);
3478   
3479   if (GTK_WIDGET_REALIZED (menu))
3480     {
3481       child_window = gdk_window_get_pointer (menu->bin_window, NULL, NULL, NULL);
3482
3483       if (child_window)
3484         {
3485           GdkEvent *send_event = gdk_event_new (GDK_ENTER_NOTIFY);
3486
3487           send_event->crossing.window = g_object_ref (child_window);
3488           send_event->crossing.time = GDK_CURRENT_TIME; /* Bogus */
3489           send_event->crossing.send_event = TRUE;
3490
3491           GTK_WIDGET_CLASS (gtk_menu_parent_class)->enter_notify_event (GTK_WIDGET (menu), (GdkEventCrossing *)send_event);
3492
3493           gdk_event_free (send_event);
3494         }
3495     }
3496
3497   return FALSE; 
3498 }
3499
3500 static gboolean
3501 gtk_menu_navigating_submenu (GtkMenu *menu,
3502                              gint     event_x,
3503                              gint     event_y)
3504 {
3505   if (menu->navigation_region)
3506     {
3507       if (gdk_region_point_in (menu->navigation_region, event_x, event_y))
3508         return TRUE;
3509       else
3510         {
3511           gtk_menu_stop_navigating_submenu (menu);
3512           return FALSE;
3513         }
3514     }
3515   return FALSE;
3516 }
3517
3518 #undef DRAW_STAY_UP_TRIANGLE
3519
3520 #ifdef DRAW_STAY_UP_TRIANGLE
3521
3522 static void
3523 draw_stay_up_triangle (GdkWindow *window,
3524                        GdkRegion *region)
3525 {
3526   /* Draw ugly color all over the stay-up triangle */
3527   GdkColor ugly_color = { 0, 50000, 10000, 10000 };
3528   GdkGCValues gc_values;
3529   GdkGC *ugly_gc;
3530   GdkRectangle clipbox;
3531
3532   gc_values.subwindow_mode = GDK_INCLUDE_INFERIORS;
3533   ugly_gc = gdk_gc_new_with_values (window, &gc_values, 0 | GDK_GC_SUBWINDOW);
3534   gdk_gc_set_rgb_fg_color (ugly_gc, &ugly_color);
3535   gdk_gc_set_clip_region (ugly_gc, region);
3536
3537   gdk_region_get_clipbox (region, &clipbox);
3538   
3539   gdk_draw_rectangle (window,
3540                      ugly_gc,
3541                      TRUE,
3542                      clipbox.x, clipbox.y,
3543                      clipbox.width, clipbox.height);
3544   
3545   g_object_unref (ugly_gc);
3546 }
3547 #endif
3548
3549 static GdkRegion *
3550 flip_region (GdkRegion *region,
3551              gboolean   flip_x,
3552              gboolean   flip_y)
3553 {
3554   gint n_rectangles;
3555   GdkRectangle *rectangles;
3556   GdkRectangle clipbox;
3557   GdkRegion *new_region;
3558   gint i;
3559
3560   new_region = gdk_region_new ();
3561   
3562   gdk_region_get_rectangles (region, &rectangles, &n_rectangles);
3563   gdk_region_get_clipbox (region, &clipbox);
3564
3565   for (i = 0; i < n_rectangles; ++i)
3566     {
3567       GdkRectangle rect = rectangles[i];
3568
3569       if (flip_y)
3570         rect.y -= 2 * (rect.y - clipbox.y) + rect.height;
3571
3572       if (flip_x)
3573         rect.x -= 2 * (rect.x - clipbox.x) + rect.width;
3574
3575       gdk_region_union_with_rect (new_region, &rect);
3576     }
3577
3578   g_free (rectangles);
3579
3580   return new_region;
3581 }
3582
3583 static void
3584 gtk_menu_set_submenu_navigation_region (GtkMenu          *menu,
3585                                         GtkMenuItem      *menu_item,
3586                                         GdkEventCrossing *event)
3587 {
3588   gint submenu_left = 0;
3589   gint submenu_right = 0;
3590   gint submenu_top = 0;
3591   gint submenu_bottom = 0;
3592   gint width = 0;
3593   gint height = 0;
3594   GdkPoint point[3];
3595   GtkWidget *event_widget;
3596
3597   g_return_if_fail (menu_item->submenu != NULL);
3598   g_return_if_fail (event != NULL);
3599   
3600   event_widget = gtk_get_event_widget ((GdkEvent*) event);
3601   
3602   gdk_window_get_origin (menu_item->submenu->window, &submenu_left, &submenu_top);
3603   gdk_drawable_get_size (menu_item->submenu->window, &width, &height);
3604   
3605   submenu_right = submenu_left + width;
3606   submenu_bottom = submenu_top + height;
3607   
3608   gdk_drawable_get_size (event_widget->window, &width, &height);
3609   
3610   if (event->x >= 0 && event->x < width)
3611     {
3612       gint popdown_delay;
3613       gboolean flip_y = FALSE;
3614       gboolean flip_x = FALSE;
3615       
3616       gtk_menu_stop_navigating_submenu (menu);
3617
3618       if (menu_item->submenu_direction == GTK_DIRECTION_RIGHT)
3619         {
3620           /* right */
3621           point[0].x = event->x_root;
3622           point[1].x = submenu_left;
3623         }
3624       else
3625         {
3626           /* left */
3627           point[0].x = event->x_root + 1;
3628           point[1].x = 2 * (event->x_root + 1) - submenu_right;
3629
3630           flip_x = TRUE;
3631         }
3632
3633       if (event->y < 0)
3634         {
3635           /* top */
3636           point[0].y = event->y_root + 1;
3637           point[1].y = 2 * (event->y_root + 1) - submenu_top + NAVIGATION_REGION_OVERSHOOT;
3638
3639           if (point[0].y >= point[1].y - NAVIGATION_REGION_OVERSHOOT)
3640             return;
3641
3642           flip_y = TRUE;
3643         }
3644       else
3645         {
3646           /* bottom */
3647           point[0].y = event->y_root;
3648           point[1].y = submenu_bottom + NAVIGATION_REGION_OVERSHOOT;
3649
3650           if (point[0].y >= submenu_bottom)
3651             return;
3652         }
3653
3654       point[2].x = point[1].x;
3655       point[2].y = point[0].y;
3656
3657       menu->navigation_region = gdk_region_polygon (point, 3, GDK_WINDING_RULE);
3658
3659       if (flip_x || flip_y)
3660         {
3661           GdkRegion *new_region = flip_region (menu->navigation_region, flip_x, flip_y);
3662           gdk_region_destroy (menu->navigation_region);
3663           menu->navigation_region = new_region;
3664         }
3665
3666       g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu)),
3667                     "gtk-menu-popdown-delay", &popdown_delay,
3668                     NULL);
3669
3670       menu->navigation_timeout = gdk_threads_add_timeout (popdown_delay,
3671                                                 gtk_menu_stop_navigating_submenu_cb, menu);
3672
3673 #ifdef DRAW_STAY_UP_TRIANGLE
3674       draw_stay_up_triangle (gdk_get_default_root_window(),
3675                              menu->navigation_region);
3676 #endif
3677     }
3678 }
3679
3680 static void
3681 gtk_menu_deactivate (GtkMenuShell *menu_shell)
3682 {
3683   GtkWidget *parent;
3684   
3685   g_return_if_fail (GTK_IS_MENU (menu_shell));
3686   
3687   parent = menu_shell->parent_menu_shell;
3688   
3689   menu_shell->activate_time = 0;
3690   gtk_menu_popdown (GTK_MENU (menu_shell));
3691   
3692   if (parent)
3693     gtk_menu_shell_deactivate (GTK_MENU_SHELL (parent));
3694 }
3695
3696 static void
3697 gtk_menu_position (GtkMenu *menu)
3698 {
3699   GtkWidget *widget;
3700   GtkRequisition requisition;
3701   GtkMenuPrivate *private;
3702   gint x, y;
3703   gint scroll_offset;
3704   gint menu_height;
3705   GdkScreen *screen;
3706   GdkScreen *pointer_screen;
3707   GdkRectangle monitor;
3708   gint scroll_arrow_height;
3709   
3710   g_return_if_fail (GTK_IS_MENU (menu));
3711
3712   widget = GTK_WIDGET (menu);
3713
3714   screen = gtk_widget_get_screen (widget);
3715   gdk_display_get_pointer (gdk_screen_get_display (screen),
3716                            &pointer_screen, &x, &y, NULL);
3717
3718   gtk_widget_style_get (GTK_WIDGET (menu),
3719                         "scroll-arrow-vlength", &scroll_arrow_height,
3720                         NULL);
3721   
3722   /* We need the requisition to figure out the right place to
3723    * popup the menu. In fact, we always need to ask here, since
3724    * if a size_request was queued while we weren't popped up,
3725    * the requisition won't have been recomputed yet.
3726    */
3727   gtk_widget_size_request (widget, &requisition);
3728
3729   if (pointer_screen != screen)
3730     {
3731       /* Pointer is on a different screen; roughly center the
3732        * menu on the screen. If someone was using multiscreen
3733        * + Xinerama together they'd probably want something
3734        * fancier; but that is likely to be vanishingly rare.
3735        */
3736       x = MAX (0, (gdk_screen_get_width (screen) - requisition.width) / 2);
3737       y = MAX (0, (gdk_screen_get_height (screen) - requisition.height) / 2);
3738     }
3739
3740   private = gtk_menu_get_private (menu);
3741   private->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
3742
3743   private->initially_pushed_in = FALSE;
3744
3745   /* Set the type hint here to allow custom position functions to set a different hint */
3746   if (!GTK_WIDGET_VISIBLE (menu->toplevel))
3747     gtk_window_set_type_hint (GTK_WINDOW (menu->toplevel), GDK_WINDOW_TYPE_HINT_POPUP_MENU);
3748   
3749   if (menu->position_func)
3750     {
3751       (* menu->position_func) (menu, &x, &y, &private->initially_pushed_in,
3752                                menu->position_func_data);
3753       if (private->monitor_num < 0) 
3754         private->monitor_num = gdk_screen_get_monitor_at_point (screen, x, y);
3755
3756       gdk_screen_get_monitor_geometry (screen, private->monitor_num, &monitor);
3757     }
3758   else
3759     {
3760       gint space_left, space_right, space_above, space_below;
3761       gint needed_width;
3762       gint needed_height;
3763       gint xthickness = widget->style->xthickness;
3764       gint ythickness = widget->style->ythickness;
3765       gboolean rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
3766
3767       /* The placement of popup menus horizontally works like this (with
3768        * RTL in parentheses)
3769        *
3770        * - If there is enough room to the right (left) of the mouse cursor,
3771        *   position the menu there.
3772        * 
3773        * - Otherwise, if if there is enough room to the left (right) of the 
3774        *   mouse cursor, position the menu there.
3775        * 
3776        * - Otherwise if the menu is smaller than the monitor, position it
3777        *   on the side of the mouse cursor that has the most space available
3778        *
3779        * - Otherwise (if there is simply not enough room for the menu on the
3780        *   monitor), position it as far left (right) as possible.
3781        *
3782        * Positioning in the vertical direction is similar: first try below
3783        * mouse cursor, then above.
3784        */
3785       gdk_screen_get_monitor_geometry (screen, private->monitor_num, &monitor);
3786
3787       space_left = x - monitor.x;
3788       space_right = monitor.x + monitor.width - x - 1;
3789       space_above = y - monitor.y;
3790       space_below = monitor.y + monitor.height - y - 1;
3791
3792       /* position horizontally */
3793
3794       /* the amount of space we need to position the menu. Note the
3795        * menu is offset "xthickness" pixels 
3796        */
3797       needed_width = requisition.width - xthickness;
3798
3799       if (needed_width <= space_left ||
3800           needed_width <= space_right)
3801         {
3802           if ((rtl  && needed_width <= space_left) ||
3803               (!rtl && needed_width >  space_right))
3804             {
3805               /* position left */
3806               x = x + xthickness - requisition.width + 1;
3807             }
3808           else
3809             {
3810               /* position right */
3811               x = x - xthickness;
3812             }
3813
3814           /* x is clamped on-screen further down */
3815         }
3816       else if (requisition.width <= monitor.width)
3817         {
3818           /* the menu is too big to fit on either side of the mouse
3819            * cursor, but smaller than the monitor. Position it on
3820            * the side that has the most space
3821            */
3822           if (space_left > space_right)
3823             {
3824               /* left justify */
3825               x = monitor.x;
3826             }
3827           else
3828             {
3829               /* right justify */
3830               x = monitor.x + monitor.width - requisition.width;
3831             }
3832         }
3833       else /* menu is simply too big for the monitor */
3834         {
3835           if (rtl)
3836             {
3837               /* right justify */
3838               x = monitor.x + monitor.width - requisition.width;
3839             }
3840           else
3841             {
3842               /* left justify */
3843               x = monitor.x;
3844             }
3845         }
3846
3847       /* Position vertically. The algorithm is the same as above, but
3848        * simpler because we don't have to take RTL into account.
3849        */
3850       needed_height = requisition.height - ythickness;
3851
3852       if (needed_height <= space_above ||
3853           needed_height <= space_below)
3854         {
3855           if (needed_height <= space_below)
3856             y = y - ythickness;
3857           else
3858             y = y + ythickness - requisition.height + 1;
3859           
3860           y = CLAMP (y, monitor.y,
3861                      monitor.y + monitor.height - requisition.height);
3862         }
3863       else if (needed_height > space_below && needed_height > space_above)
3864         {
3865           if (space_below >= space_above)
3866             y = monitor.y + monitor.height - requisition.height;
3867           else
3868             y = monitor.y;
3869         }
3870       else
3871         {
3872           y = monitor.y;
3873         }
3874     }
3875
3876   scroll_offset = 0;
3877
3878   if (private->initially_pushed_in)
3879     {
3880       menu_height = GTK_WIDGET (menu)->requisition.height;
3881
3882       if (y + menu_height > monitor.y + monitor.height)
3883         {
3884           scroll_offset -= y + menu_height - (monitor.y + monitor.height);
3885           y = (monitor.y + monitor.height) - menu_height;
3886         }
3887   
3888       if (y < monitor.y)
3889         {
3890           scroll_offset += monitor.y - y;
3891           y = monitor.y;
3892         }
3893     }
3894
3895   /* FIXME: should this be done in the various position_funcs ? */
3896   x = CLAMP (x, monitor.x, MAX (monitor.x, monitor.x + monitor.width - requisition.width));
3897  
3898   if (GTK_MENU_SHELL (menu)->active)
3899     {
3900       private->have_position = TRUE;
3901       private->x = x;
3902       private->y = y;
3903     }
3904   
3905   if (y + requisition.height > monitor.y + monitor.height)
3906     requisition.height = (monitor.y + monitor.height) - y;
3907   
3908   if (y < monitor.y)
3909     {
3910       scroll_offset += monitor.y - y;
3911       requisition.height -= monitor.y - y;
3912       y = monitor.y;
3913     }
3914
3915   if (scroll_offset > 0)
3916     scroll_offset += scroll_arrow_height;
3917   
3918   gtk_window_move (GTK_WINDOW (GTK_MENU_SHELL (menu)->active ? menu->toplevel : menu->tearoff_window), 
3919                    x, y);
3920
3921   if (!GTK_MENU_SHELL (menu)->active)
3922     {
3923       gtk_window_resize (GTK_WINDOW (menu->tearoff_window),
3924                          requisition.width, requisition.height);
3925     }
3926   
3927   menu->scroll_offset = scroll_offset;
3928 }
3929
3930 static void
3931 gtk_menu_remove_scroll_timeout (GtkMenu *menu)
3932 {
3933   if (menu->timeout_id)
3934     {
3935       g_source_remove (menu->timeout_id);
3936       menu->timeout_id = 0;
3937     }
3938 }
3939
3940 static void
3941 gtk_menu_stop_scrolling (GtkMenu *menu)
3942 {
3943   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (menu));
3944   gboolean touchscreen_mode;
3945
3946   gtk_menu_remove_scroll_timeout (menu);
3947   
3948   g_object_get (G_OBJECT (settings),
3949                 "gtk-touchscreen-mode", &touchscreen_mode,
3950                 NULL);
3951   
3952   if (!touchscreen_mode)
3953     {
3954       menu->upper_arrow_prelight = FALSE;
3955       menu->lower_arrow_prelight = FALSE;
3956     }
3957 }
3958
3959 static void
3960 gtk_menu_scroll_to (GtkMenu *menu,
3961                     gint    offset)
3962 {
3963   GtkWidget *widget;
3964   gint x, y;
3965   gint view_width, view_height;
3966   gint border_width;
3967   gint menu_height;
3968   guint vertical_padding;
3969   guint horizontal_padding;
3970   gboolean double_arrows;
3971   gint scroll_arrow_height;
3972   
3973   widget = GTK_WIDGET (menu);
3974
3975   if (menu->tearoff_active &&
3976       menu->tearoff_adjustment &&
3977       (menu->tearoff_adjustment->value != offset))
3978     {
3979       menu->tearoff_adjustment->value =
3980         CLAMP (offset,
3981                0, menu->tearoff_adjustment->upper - menu->tearoff_adjustment->page_size);
3982       gtk_adjustment_value_changed (menu->tearoff_adjustment);
3983     }
3984   
3985   /* Move/resize the viewport according to arrows: */
3986   view_width = widget->allocation.width;
3987   view_height = widget->allocation.height;
3988
3989   gtk_widget_style_get (GTK_WIDGET (menu),
3990                         "vertical-padding", &vertical_padding,
3991                         "horizontal-padding", &horizontal_padding,
3992                         "scroll-arrow-vlength", &scroll_arrow_height,
3993                         NULL);
3994
3995   double_arrows = get_double_arrows (menu);
3996
3997   border_width = GTK_CONTAINER (menu)->border_width;
3998   view_width -= (border_width + widget->style->xthickness + horizontal_padding) * 2;
3999   view_height -= (border_width + widget->style->ythickness + vertical_padding) * 2;
4000   menu_height = widget->requisition.height -
4001     (border_width + widget->style->ythickness + vertical_padding) * 2;
4002
4003   x = border_width + widget->style->xthickness + horizontal_padding;
4004   y = border_width + widget->style->ythickness + vertical_padding;
4005
4006   if (double_arrows && !menu->tearoff_active)
4007     {
4008       if (view_height < menu_height               ||
4009           (offset > 0 && menu->scroll_offset > 0) ||
4010           (offset < 0 && menu->scroll_offset < 0))
4011         {
4012           GtkMenuPrivate *priv = gtk_menu_get_private (menu);
4013           GtkStateType    upper_arrow_previous_state = priv->upper_arrow_state;
4014           GtkStateType    lower_arrow_previous_state = priv->lower_arrow_state;
4015
4016           if (!menu->upper_arrow_visible || !menu->lower_arrow_visible)
4017             gtk_widget_queue_draw (GTK_WIDGET (menu));
4018
4019           view_height -= 2 * scroll_arrow_height;
4020           y += scroll_arrow_height;
4021
4022           menu->upper_arrow_visible = menu->lower_arrow_visible = TRUE;
4023
4024           if (offset <= 0)
4025             priv->upper_arrow_state = GTK_STATE_INSENSITIVE;
4026           else
4027             priv->upper_arrow_state = menu->upper_arrow_prelight ?
4028               GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
4029
4030           if (offset >= menu_height - view_height)
4031             priv->lower_arrow_state = GTK_STATE_INSENSITIVE;
4032           else
4033             priv->lower_arrow_state = menu->lower_arrow_prelight ?
4034               GTK_STATE_PRELIGHT : GTK_STATE_NORMAL;
4035
4036           if ((priv->upper_arrow_state != upper_arrow_previous_state) ||
4037               (priv->lower_arrow_state != lower_arrow_previous_state))
4038             gtk_widget_queue_draw (GTK_WIDGET (menu));
4039
4040           if (upper_arrow_previous_state != GTK_STATE_INSENSITIVE &&
4041               priv->upper_arrow_state == GTK_STATE_INSENSITIVE)
4042             {
4043               /* At the upper border, possibly remove timeout */
4044               if (menu->scroll_step < 0)
4045                 {
4046                   gtk_menu_stop_scrolling (menu);
4047                   gtk_widget_queue_draw (GTK_WIDGET (menu));
4048                 }
4049             }
4050
4051           if (lower_arrow_previous_state != GTK_STATE_INSENSITIVE &&
4052               priv->lower_arrow_state == GTK_STATE_INSENSITIVE)
4053             {
4054               /* At the lower border, possibly remove timeout */
4055               if (menu->scroll_step > 0)
4056                 {
4057                   gtk_menu_stop_scrolling (menu);
4058                   gtk_widget_queue_draw (GTK_WIDGET (menu));
4059                 }
4060             }
4061         }
4062       else if (menu->upper_arrow_visible || menu->lower_arrow_visible)
4063         {
4064           offset = 0;
4065
4066           menu->upper_arrow_visible = menu->lower_arrow_visible = FALSE;
4067           menu->upper_arrow_prelight = menu->lower_arrow_prelight = FALSE;
4068
4069           gtk_menu_stop_scrolling (menu);
4070           gtk_widget_queue_draw (GTK_WIDGET (menu));
4071         }
4072     }
4073   else if (!menu->tearoff_active)
4074     {
4075       gboolean last_visible;
4076
4077       last_visible = menu->upper_arrow_visible;
4078       menu->upper_arrow_visible = offset > 0;
4079       
4080       if (menu->upper_arrow_visible)
4081         view_height -= scroll_arrow_height;
4082       
4083       if ((last_visible != menu->upper_arrow_visible) &&
4084           !menu->upper_arrow_visible)
4085         {
4086           menu->upper_arrow_prelight = FALSE;
4087
4088           /* If we hid the upper arrow, possibly remove timeout */
4089           if (menu->scroll_step < 0)
4090             {
4091               gtk_menu_stop_scrolling (menu);
4092               gtk_widget_queue_draw (GTK_WIDGET (menu));
4093             }
4094         }
4095
4096       last_visible = menu->lower_arrow_visible;
4097       menu->lower_arrow_visible = offset < menu_height - view_height;
4098       
4099       if (menu->lower_arrow_visible)
4100         view_height -= scroll_arrow_height;
4101       
4102       if ((last_visible != menu->lower_arrow_visible) &&
4103            !menu->lower_arrow_visible)
4104         {
4105           menu->lower_arrow_prelight = FALSE;
4106
4107           /* If we hid the lower arrow, possibly remove timeout */
4108           if (menu->scroll_step > 0)
4109             {
4110               gtk_menu_stop_scrolling (menu);
4111               gtk_widget_queue_draw (GTK_WIDGET (menu));
4112             }
4113         }
4114       
4115       if (menu->upper_arrow_visible)
4116         y += scroll_arrow_height;
4117     }
4118
4119   /* Scroll the menu: */
4120   if (GTK_WIDGET_REALIZED (menu))
4121     gdk_window_move (menu->bin_window, 0, -offset);
4122
4123   if (GTK_WIDGET_REALIZED (menu))
4124     gdk_window_move_resize (menu->view_window,
4125                             x,
4126                             y,
4127                             view_width,
4128                             view_height);
4129
4130   menu->scroll_offset = offset;
4131 }
4132
4133 static gboolean
4134 compute_child_offset (GtkMenu   *menu,
4135                       GtkWidget *menu_item,
4136                       gint      *offset,
4137                       gint      *height,
4138                       gboolean  *is_last_child)
4139 {
4140   GtkMenuPrivate *priv = gtk_menu_get_private (menu);
4141   gint item_top_attach;
4142   gint item_bottom_attach;
4143   gint child_offset = 0;
4144   gint i;
4145
4146   get_effective_child_attach (menu_item, NULL, NULL,
4147                               &item_top_attach, &item_bottom_attach);
4148
4149   /* there is a possibility that we get called before _size_request, so
4150    * check the height table for safety.
4151    */
4152   if (!priv->heights || priv->heights_length < gtk_menu_get_n_rows (menu))
4153     return FALSE;
4154
4155   /* when we have a row with only invisible children, it's height will
4156    * be zero, so there's no need to check WIDGET_VISIBLE here
4157    */
4158   for (i = 0; i < item_top_attach; i++)
4159     child_offset += priv->heights[i];
4160
4161   if (is_last_child)
4162     *is_last_child = (item_bottom_attach == gtk_menu_get_n_rows (menu));
4163   if (offset)
4164     *offset = child_offset;
4165   if (height)
4166     *height = priv->heights[item_top_attach];
4167
4168   return TRUE;
4169 }
4170
4171 static void
4172 gtk_menu_scroll_item_visible (GtkMenuShell    *menu_shell,
4173                               GtkWidget       *menu_item)
4174 {
4175   GtkMenu *menu;
4176   gint child_offset, child_height;
4177   gint width, height;
4178   gint y;
4179   gint arrow_height;
4180   gboolean last_child = 0;
4181   
4182   menu = GTK_MENU (menu_shell);
4183
4184   /* We need to check if the selected item fully visible.
4185    * If not we need to scroll the menu so that it becomes fully
4186    * visible.
4187    */
4188
4189   if (compute_child_offset (menu, menu_item,
4190                             &child_offset, &child_height, &last_child))
4191     {
4192       guint vertical_padding;
4193       gboolean double_arrows;
4194       gint scroll_arrow_height;
4195       
4196       y = menu->scroll_offset;
4197       gdk_drawable_get_size (GTK_WIDGET (menu)->window, &width, &height);
4198
4199       gtk_widget_style_get (GTK_WIDGET (menu),
4200                             "vertical-padding", &vertical_padding,
4201                             "scroll-arrow-vlength", &scroll_arrow_height,
4202                             NULL);
4203
4204       double_arrows = get_double_arrows (menu);
4205
4206       height -= 2*GTK_CONTAINER (menu)->border_width + 2*GTK_WIDGET (menu)->style->ythickness + 2*vertical_padding;
4207       
4208       if (child_offset < y)
4209         {
4210           /* Ignore the enter event we might get if the pointer is on the menu
4211            */
4212           menu_shell->ignore_enter = TRUE;
4213           gtk_menu_scroll_to (menu, child_offset);
4214         }
4215       else
4216         {
4217           arrow_height = 0;
4218           if (menu->upper_arrow_visible && !menu->tearoff_active)
4219             arrow_height += scroll_arrow_height;
4220           if (menu->lower_arrow_visible && !menu->tearoff_active)
4221             arrow_height += scroll_arrow_height;
4222           
4223           if (child_offset + child_height > y + height - arrow_height)
4224             {
4225               arrow_height = 0;
4226               if ((!last_child && !menu->tearoff_active) || double_arrows)
4227                 arrow_height += scroll_arrow_height;
4228
4229               y = child_offset + child_height - height + arrow_height;
4230               if (((y > 0) && !menu->tearoff_active) || double_arrows)
4231                 {
4232                   /* Need upper arrow */
4233                   arrow_height += scroll_arrow_height;
4234                   y = child_offset + child_height - height + arrow_height;
4235                 }
4236               /* Ignore the enter event we might get if the pointer is on the menu
4237                */
4238               menu_shell->ignore_enter = TRUE;
4239               gtk_menu_scroll_to (menu, y);
4240             }
4241         }    
4242       
4243     }
4244 }
4245
4246 static void
4247 gtk_menu_select_item (GtkMenuShell  *menu_shell,
4248                       GtkWidget     *menu_item)
4249 {
4250   GtkMenu *menu = GTK_MENU (menu_shell);
4251
4252   if (GTK_WIDGET_REALIZED (GTK_WIDGET (menu)))
4253     gtk_menu_scroll_item_visible (menu_shell, menu_item);
4254
4255   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->select_item (menu_shell, menu_item);
4256 }
4257
4258
4259 /* Reparent the menu, taking care of the refcounting
4260  *
4261  * If unrealize is true we force a unrealize while reparenting the parent.
4262  * This can help eliminate flicker in some cases.
4263  *
4264  * What happens is that when the menu is unrealized and then re-realized,
4265  * the allocations are as follows:
4266  *
4267  *  parent - 1x1 at (0,0) 
4268  *  child1 - 100x20 at (0,0)
4269  *  child2 - 100x20 at (0,20)
4270  *  child3 - 100x20 at (0,40)
4271  *
4272  * That is, the parent is small but the children are full sized. Then,
4273  * when the queued_resize gets processed, the parent gets resized to
4274  * full size. 
4275  *
4276  * But in order to eliminate flicker when scrolling, gdkgeometry-x11.c
4277  * contains the following logic:
4278  * 
4279  * - if a move or resize operation on a window would change the clip 
4280  *   region on the children, then before the window is resized
4281  *   the background for children is temporarily set to None, the
4282  *   move/resize done, and the background for the children restored.
4283  *
4284  * So, at the point where the parent is resized to final size, the
4285  * background for the children is temporarily None, and thus they
4286  * are not cleared to the background color and the previous background
4287  * (the image of the menu) is left in place.
4288  */
4289 static void 
4290 gtk_menu_reparent (GtkMenu      *menu, 
4291                    GtkWidget    *new_parent, 
4292                    gboolean      unrealize)
4293 {
4294   GtkObject *object = GTK_OBJECT (menu);
4295   GtkWidget *widget = GTK_WIDGET (menu);
4296   gboolean was_floating = g_object_is_floating (object);
4297
4298   g_object_ref_sink (object);
4299
4300   if (unrealize)
4301     {
4302       g_object_ref (object);
4303       gtk_container_remove (GTK_CONTAINER (widget->parent), widget);
4304       gtk_container_add (GTK_CONTAINER (new_parent), widget);
4305       g_object_unref (object);
4306     }
4307   else
4308     gtk_widget_reparent (GTK_WIDGET (menu), new_parent);
4309   
4310   if (was_floating)
4311     g_object_force_floating (G_OBJECT (object));
4312   else
4313     g_object_unref (object);
4314 }
4315
4316 static void
4317 gtk_menu_show_all (GtkWidget *widget)
4318 {
4319   /* Show children, but not self. */
4320   gtk_container_foreach (GTK_CONTAINER (widget), (GtkCallback) gtk_widget_show_all, NULL);
4321 }
4322
4323
4324 static void
4325 gtk_menu_hide_all (GtkWidget *widget)
4326 {
4327   /* Hide children, but not self. */
4328   gtk_container_foreach (GTK_CONTAINER (widget), (GtkCallback) gtk_widget_hide_all, NULL);
4329 }
4330
4331 /**
4332  * gtk_menu_set_screen:
4333  * @menu: a #GtkMenu.
4334  * @screen: a #GdkScreen, or %NULL if the screen should be
4335  *          determined by the widget the menu is attached to.
4336  *
4337  * Sets the #GdkScreen on which the menu will be displayed.
4338  * 
4339  * Since: 2.2
4340  **/
4341 void
4342 gtk_menu_set_screen (GtkMenu   *menu, 
4343                      GdkScreen *screen)
4344 {
4345   g_return_if_fail (GTK_IS_MENU (menu));
4346   g_return_if_fail (!screen || GDK_IS_SCREEN (screen));
4347
4348   g_object_set_data (G_OBJECT (menu), I_("gtk-menu-explicit-screen"), screen);
4349
4350   if (screen)
4351     {
4352       menu_change_screen (menu, screen);
4353     }
4354   else
4355     {
4356       GtkWidget *attach_widget = gtk_menu_get_attach_widget (menu);
4357       if (attach_widget)
4358         attach_widget_screen_changed (attach_widget, NULL, menu);
4359     }
4360 }
4361
4362 /**
4363  * gtk_menu_attach:
4364  * @menu: a #GtkMenu.
4365  * @child: a #GtkMenuItem.
4366  * @left_attach: The column number to attach the left side of the item to.
4367  * @right_attach: The column number to attach the right side of the item to.
4368  * @top_attach: The row number to attach the top of the item to.
4369  * @bottom_attach: The row number to attach the bottom of the item to.
4370  *
4371  * Adds a new #GtkMenuItem to a (table) menu. The number of 'cells' that
4372  * an item will occupy is specified by @left_attach, @right_attach,
4373  * @top_attach and @bottom_attach. These each represent the leftmost,
4374  * rightmost, uppermost and lower column and row numbers of the table.
4375  * (Columns and rows are indexed from zero).
4376  *
4377  * Note that this function is not related to gtk_menu_detach().
4378  *
4379  * Since: 2.4
4380  **/
4381 void
4382 gtk_menu_attach (GtkMenu   *menu,
4383                  GtkWidget *child,
4384                  guint      left_attach,
4385                  guint      right_attach,
4386                  guint      top_attach,
4387                  guint      bottom_attach)
4388 {
4389   GtkMenuShell *menu_shell;
4390   
4391   g_return_if_fail (GTK_IS_MENU (menu));
4392   g_return_if_fail (GTK_IS_MENU_ITEM (child));
4393   g_return_if_fail (child->parent == NULL || 
4394                     child->parent == GTK_WIDGET (menu));
4395   g_return_if_fail (left_attach < right_attach);
4396   g_return_if_fail (top_attach < bottom_attach);
4397
4398   menu_shell = GTK_MENU_SHELL (menu);
4399   
4400   if (!child->parent)
4401     {
4402       AttachInfo *ai = get_attach_info (child);
4403       
4404       ai->left_attach = left_attach;
4405       ai->right_attach = right_attach;
4406       ai->top_attach = top_attach;
4407       ai->bottom_attach = bottom_attach;
4408       
4409       menu_shell->children = g_list_append (menu_shell->children, child);
4410
4411       gtk_widget_set_parent (child, GTK_WIDGET (menu));
4412
4413       menu_queue_resize (menu);
4414     }
4415   else
4416     {
4417       gtk_container_child_set (GTK_CONTAINER (child->parent), child,
4418                                "left-attach",   left_attach,
4419                                "right-attach",  right_attach,
4420                                "top-attach",    top_attach,
4421                                "bottom-attach", bottom_attach,
4422                                NULL);
4423     }
4424 }
4425
4426 static gint
4427 gtk_menu_get_popup_delay (GtkMenuShell *menu_shell)
4428 {
4429   gint popup_delay;
4430
4431   g_object_get (gtk_widget_get_settings (GTK_WIDGET (menu_shell)),
4432                 "gtk-menu-popup-delay", &popup_delay,
4433                 NULL);
4434
4435   return popup_delay;
4436 }
4437
4438 static GtkWidget *
4439 find_child_containing (GtkMenuShell *menu_shell,
4440                        int           left,
4441                        int           right,
4442                        int           top,
4443                        int           bottom)
4444 {
4445   GList *list;
4446
4447   /* find a child which includes the area given by
4448    * left, right, top, bottom.
4449    */
4450
4451   for (list = menu_shell->children; list; list = list->next)
4452     {
4453       gint l, r, t, b;
4454
4455       if (!_gtk_menu_item_is_selectable (list->data))
4456         continue;
4457
4458       get_effective_child_attach (list->data, &l, &r, &t, &b);
4459
4460       if (l <= left && right <= r
4461           && t <= top && bottom <= b)
4462         return GTK_WIDGET (list->data);
4463     }
4464
4465   return NULL;
4466 }
4467
4468 static void
4469 gtk_menu_move_current (GtkMenuShell *menu_shell,
4470                        GtkMenuDirectionType direction)
4471 {
4472   GtkMenu *menu = GTK_MENU (menu_shell);
4473   gint i;
4474   gint l, r, t, b;
4475   GtkWidget *match = NULL;
4476
4477   if (gtk_widget_get_direction (GTK_WIDGET (menu_shell)) == GTK_TEXT_DIR_RTL)
4478     {
4479       switch (direction)
4480         {
4481         case GTK_MENU_DIR_CHILD:
4482           direction = GTK_MENU_DIR_PARENT;
4483           break;
4484         case GTK_MENU_DIR_PARENT:
4485           direction = GTK_MENU_DIR_CHILD;
4486           break;
4487         default: ;
4488         }
4489     }
4490
4491   /* use special table menu key bindings */
4492   if (menu_shell->active_menu_item && gtk_menu_get_n_columns (menu) > 1)
4493     {
4494       get_effective_child_attach (menu_shell->active_menu_item, &l, &r, &t, &b);
4495
4496       if (direction == GTK_MENU_DIR_NEXT)
4497         {
4498           for (i = b; i < gtk_menu_get_n_rows (menu); i++)
4499             {
4500               match = find_child_containing (menu_shell, l, l + 1, i, i + 1);
4501               if (match)
4502                 break;
4503             }
4504
4505           if (!match)
4506             {
4507               /* wrap around */
4508               for (i = 0; i < t; i++)
4509                 {
4510                   match = find_child_containing (menu_shell,
4511                                                  l, l + 1, i, i + 1);
4512                   if (match)
4513                     break;
4514                 }
4515             }
4516         }
4517       else if (direction == GTK_MENU_DIR_PREV)
4518         {
4519           for (i = t; i > 0; i--)
4520             {
4521               match = find_child_containing (menu_shell, l, l + 1, i - 1, i);
4522               if (match)
4523                 break;
4524             }
4525
4526           if (!match)
4527             {
4528               /* wrap around */
4529               for (i = gtk_menu_get_n_rows (menu); i > b; i--)
4530                 {
4531                   match = find_child_containing (menu_shell,
4532                                                  l, l + 1, i - 1, i);
4533                   if (match)
4534                     break;
4535                 }
4536             }
4537         }
4538       else if (direction == GTK_MENU_DIR_PARENT)
4539         {
4540           /* we go one left if possible */
4541           if (l > 0)
4542             match = find_child_containing (menu_shell, l - 1, l, t, t + 1);
4543
4544           if (!match)
4545             {
4546               GtkWidget *parent = menu_shell->parent_menu_shell;
4547
4548               if (!parent
4549                   || g_list_length (GTK_MENU_SHELL (parent)->children) <= 1)
4550                 match = menu_shell->active_menu_item;
4551             }
4552         }
4553       else if (direction == GTK_MENU_DIR_CHILD)
4554         {
4555           /* we go one right if possible */
4556           if (r < gtk_menu_get_n_columns (menu))
4557             match = find_child_containing (menu_shell, r, r + 1, t, t + 1);
4558
4559           if (!match)
4560             {
4561               GtkWidget *parent = menu_shell->parent_menu_shell;
4562
4563               if (! GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu &&
4564                   (!parent ||
4565                    g_list_length (GTK_MENU_SHELL (parent)->children) <= 1))
4566                 match = menu_shell->active_menu_item;
4567             }
4568         }
4569
4570       if (match)
4571         {
4572           gtk_menu_shell_select_item (menu_shell, match);
4573           return;
4574         }
4575     }
4576
4577   GTK_MENU_SHELL_CLASS (gtk_menu_parent_class)->move_current (menu_shell, direction);
4578 }
4579
4580 static gint
4581 get_visible_size (GtkMenu *menu)
4582 {
4583   GtkWidget *widget = GTK_WIDGET (menu);
4584   GtkContainer *container = GTK_CONTAINER (menu);
4585   gint scroll_arrow_height;
4586   
4587   gint menu_height = (widget->allocation.height
4588                       - 2 * (container->border_width
4589                              + widget->style->ythickness));
4590   
4591   gtk_widget_style_get (GTK_WIDGET (menu),
4592                         "scroll-arrow-vlength", &scroll_arrow_height,
4593                         NULL);
4594
4595   if (menu->upper_arrow_visible && !menu->tearoff_active)
4596     menu_height -= scroll_arrow_height;
4597   if (menu->lower_arrow_visible && !menu->tearoff_active)
4598     menu_height -= scroll_arrow_height;
4599
4600   return menu_height;
4601 }
4602
4603 /* Find the sensitive on-screen child containing @y, or if none,
4604  * the nearest selectable onscreen child. (%NULL if none)
4605  */
4606 static GtkWidget *
4607 child_at (GtkMenu *menu,
4608           gint     y)
4609 {
4610   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
4611   GtkWidget *child = NULL;
4612   gint child_offset = 0;
4613   GList *children;
4614   gint menu_height;
4615   gint lower, upper;            /* Onscreen bounds */
4616
4617   menu_height = get_visible_size (menu);
4618   lower = menu->scroll_offset;
4619   upper = menu->scroll_offset + menu_height;
4620   
4621   for (children = menu_shell->children; children; children = children->next)
4622     {
4623       if (GTK_WIDGET_VISIBLE (children->data))
4624         {
4625           GtkRequisition child_requisition;
4626
4627           gtk_widget_size_request (children->data, &child_requisition);
4628
4629           if (_gtk_menu_item_is_selectable (children->data) &&
4630               child_offset >= lower &&
4631               child_offset + child_requisition.height <= upper)
4632             {
4633               child = children->data;
4634               
4635               if (child_offset + child_requisition.height > y &&
4636                   !GTK_IS_TEAROFF_MENU_ITEM (child))
4637                 return child;
4638             }
4639       
4640           child_offset += child_requisition.height;
4641         }
4642     }
4643
4644   return child;
4645 }
4646
4647 static gint
4648 get_menu_height (GtkMenu *menu)
4649 {
4650   gint height;
4651   GtkWidget *widget = GTK_WIDGET (menu);
4652   gint scroll_arrow_height;
4653
4654   gtk_widget_style_get (GTK_WIDGET (menu),
4655                         "scroll-arrow-vlength", &scroll_arrow_height,
4656                         NULL);
4657   
4658   height = widget->requisition.height;
4659   height -= (GTK_CONTAINER (widget)->border_width + widget->style->ythickness) * 2;
4660
4661   if (menu->upper_arrow_visible && !menu->tearoff_active)
4662     height -= scroll_arrow_height;
4663
4664   if (menu->lower_arrow_visible && !menu->tearoff_active)
4665     height -= scroll_arrow_height;
4666
4667   return height;
4668 }
4669
4670 static void
4671 gtk_menu_real_move_scroll (GtkMenu       *menu,
4672                            GtkScrollType  type)
4673 {
4674   gint page_size = get_visible_size (menu);
4675   gint end_position = get_menu_height (menu);
4676   GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
4677   gint scroll_arrow_height;
4678
4679   gtk_widget_style_get (GTK_WIDGET (menu),
4680                         "scroll-arrow-vlength", &scroll_arrow_height,
4681                         NULL);
4682   
4683   switch (type)
4684     {
4685     case GTK_SCROLL_PAGE_UP:
4686     case GTK_SCROLL_PAGE_DOWN:
4687       {
4688         gint old_offset;
4689         gint new_offset;
4690         gint child_offset = 0;
4691         gboolean old_upper_arrow_visible;
4692         gint step;
4693
4694         if (type == GTK_SCROLL_PAGE_UP)
4695           step = - page_size;
4696         else
4697           step = page_size;
4698
4699         if (menu_shell->active_menu_item)
4700           {
4701             gint child_height;
4702             
4703             compute_child_offset (menu, menu_shell->active_menu_item,
4704                                   &child_offset, &child_height, NULL);
4705             child_offset += child_height / 2;
4706           }
4707
4708         menu_shell->ignore_enter = TRUE;
4709         old_upper_arrow_visible = menu->upper_arrow_visible && !menu->tearoff_active;
4710         old_offset = menu->scroll_offset;
4711
4712         new_offset = menu->scroll_offset + step;
4713         new_offset = CLAMP (new_offset, 0, end_position - page_size);
4714
4715         gtk_menu_scroll_to (menu, new_offset);
4716         
4717         if (menu_shell->active_menu_item)
4718           {
4719             GtkWidget *new_child;
4720             gboolean new_upper_arrow_visible = menu->upper_arrow_visible && !menu->tearoff_active;
4721
4722             if (menu->scroll_offset != old_offset)
4723               step = menu->scroll_offset - old_offset;
4724
4725             step -= (new_upper_arrow_visible - old_upper_arrow_visible) * scroll_arrow_height;
4726
4727             new_child = child_at (menu, child_offset + step);
4728             if (new_child)
4729               gtk_menu_shell_select_item (menu_shell, new_child);
4730           }
4731       }
4732       break;
4733     case GTK_SCROLL_START:
4734       /* Ignore the enter event we might get if the pointer is on the menu
4735        */
4736       menu_shell->ignore_enter = TRUE;
4737       gtk_menu_scroll_to (menu, 0);
4738       gtk_menu_shell_select_first (menu_shell, TRUE);
4739       break;
4740     case GTK_SCROLL_END:
4741       /* Ignore the enter event we might get if the pointer is on the menu
4742        */
4743       menu_shell->ignore_enter = TRUE;
4744       gtk_menu_scroll_to (menu, end_position - page_size);
4745       _gtk_menu_shell_select_last (menu_shell, TRUE);
4746       break;
4747     default:
4748       break;
4749     }
4750 }
4751
4752
4753 /**
4754  * gtk_menu_set_monitor:
4755  * @menu: a #GtkMenu
4756  * @monitor_num: the number of the monitor on which the menu should
4757  *    be popped up
4758  * 
4759  * Informs GTK+ on which monitor a menu should be popped up. 
4760  * See gdk_screen_get_monitor_geometry().
4761  *
4762  * This function should be called from a #GtkMenuPositionFunc if the
4763  * menu should not appear on the same monitor as the pointer. This 
4764  * information can't be reliably inferred from the coordinates returned
4765  * by a #GtkMenuPositionFunc, since, for very long menus, these coordinates 
4766  * may extend beyond the monitor boundaries or even the screen boundaries. 
4767  *
4768  * Since: 2.4
4769  **/
4770 void
4771 gtk_menu_set_monitor (GtkMenu *menu,
4772                       gint     monitor_num)
4773 {
4774   GtkMenuPrivate *priv;
4775   g_return_if_fail (GTK_IS_MENU (menu));
4776
4777   priv = gtk_menu_get_private (menu);
4778   
4779   priv->monitor_num = monitor_num;
4780 }
4781
4782 /**
4783  * gtk_menu_get_for_attach_widget:
4784  * @widget: a #GtkWidget
4785  *
4786  * Returns a list of the menus which are attached to this widget.
4787  * This list is owned by GTK+ and must not be modified.
4788  *
4789  * Return value: the list of menus attached to his widget.
4790  *
4791  * Since: 2.6
4792  **/
4793 GList*
4794 gtk_menu_get_for_attach_widget (GtkWidget *widget)
4795 {
4796   GList *list;
4797   
4798   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
4799   
4800   list = g_object_get_data (G_OBJECT (widget), ATTACHED_MENUS);
4801   return list;
4802 }
4803
4804 static void
4805 gtk_menu_grab_notify (GtkWidget *widget,
4806                       gboolean   was_grabbed)
4807 {
4808   GtkWidget *toplevel;
4809   GtkWindowGroup *group;
4810   GtkWidget *grab;
4811
4812   toplevel = gtk_widget_get_toplevel (widget);
4813   group = gtk_window_get_group (GTK_WINDOW (toplevel));
4814   grab = _gtk_window_group_get_current_grab (group); 
4815
4816   if (!was_grabbed)
4817     {
4818       if (GTK_MENU_SHELL (widget)->active && !GTK_IS_MENU_SHELL (grab))
4819         gtk_menu_shell_cancel (GTK_MENU_SHELL (widget));
4820     }
4821 }
4822
4823 #define __GTK_MENU_C__
4824 #include "gtkaliasdef.c"