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