]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolbar.c
Mention the stripping of (_F) suffixes.
[~andy/gtk] / gtk / gtktoolbar.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * GtkToolbar copyright (C) Federico Mena
4  *
5  * Copyright (C) 2002 Anders Carlsson <andersca@gnome.org>
6  * Copyright (C) 2002 James Henstridge <james@daa.com.au>
7  * Copyright (C) 2003, 2004 Soeren Sandmann <sandmann@daimi.au.dk>
8  * 
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 /*
26  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
27  * file for a list of people on the GTK+ Team.  See the ChangeLog
28  * files for a list of changes.  These files are distributed with
29  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
30  */
31
32 #undef GTK_DISABLE_DEPRECATED
33
34 #include <config.h>
35 #include "gtkarrow.h"
36 #include "gtktoolbar.h"
37 #include "gtkradiotoolbutton.h"
38 #include "gtkseparatortoolitem.h"
39 #include "gtkmenu.h"
40 #include "gtkradiobutton.h"
41 #include "gtktoolbar.h"
42 #include "gtkbindings.h"
43 #include <gdk/gdkkeysyms.h>
44 #include "gtkmarshalers.h"
45 #include "gtkmain.h"
46 #include "gtkstock.h"
47 #include "gtklabel.h"
48 #include "gtkprivate.h"
49 #include "gtkintl.h"
50 #include <string.h>
51 #include "gtkhbox.h"
52 #include "gtkvbox.h"
53 #include "gtkimage.h"
54 #include "gtkseparatormenuitem.h"
55 #include "gtkalias.h"
56 #include <math.h>
57
58 typedef struct _ToolbarContent ToolbarContent;
59
60 #define DEFAULT_IPADDING 0
61
62 #define DEFAULT_SPACE_SIZE  12
63 #define DEFAULT_SPACE_STYLE GTK_TOOLBAR_SPACE_LINE
64 #define SPACE_LINE_DIVISION 10.0
65 #define SPACE_LINE_START    2.0
66 #define SPACE_LINE_END      8.0
67
68 #define DEFAULT_ICON_SIZE GTK_ICON_SIZE_LARGE_TOOLBAR
69 #define DEFAULT_TOOLBAR_STYLE GTK_TOOLBAR_BOTH
70 #define DEFAULT_ANIMATION_STATE TRUE
71
72 #define MAX_HOMOGENEOUS_N_CHARS 13 /* Items that are wider than this do not participate
73                                     * in the homogeneous game. In units of
74                                     * pango_font_get_estimated_char_width().
75                                     */
76 #define SLIDE_SPEED 600.0          /* How fast the items slide, in pixels per second */
77 #define ACCEL_THRESHOLD 0.18       /* After how much time in seconds will items start speeding up */
78
79 #define MIXED_API_WARNING                                               \
80     "Mixing deprecated and non-deprecated GtkToolbar API is not allowed"
81
82
83 /* Properties */
84 enum {
85   PROP_0,
86   PROP_ORIENTATION,
87   PROP_TOOLBAR_STYLE,
88   PROP_SHOW_ARROW,
89   PROP_TOOLTIPS,
90   PROP_ICON_SIZE,
91   PROP_ICON_SIZE_SET
92 };
93
94 /* Child properties */
95 enum {
96   CHILD_PROP_0,
97   CHILD_PROP_EXPAND,
98   CHILD_PROP_HOMOGENEOUS
99 };
100
101 /* Signals */
102 enum {
103   ORIENTATION_CHANGED,
104   STYLE_CHANGED,
105   POPUP_CONTEXT_MENU,
106   MOVE_FOCUS,
107   FOCUS_HOME_OR_END,
108   LAST_SIGNAL
109 };
110
111 /* API mode */
112 typedef enum {
113   DONT_KNOW,
114   OLD_API,
115   NEW_API
116 } ApiMode;
117
118 typedef enum {
119   TOOL_ITEM,
120   COMPATIBILITY
121 } ContentType;
122
123 typedef enum {
124   NOT_ALLOCATED,
125   NORMAL,
126   HIDDEN,
127   OVERFLOWN
128 } ItemState;
129
130 struct _GtkToolbarPrivate
131 {
132   GList *       content;
133   
134   GtkWidget *   arrow;
135   GtkWidget *   arrow_button;
136   GtkMenu *     menu;
137   
138   GdkWindow *   event_window;
139   ApiMode       api_mode;
140   GtkSettings * settings;
141   int           idle_id;
142   GtkToolItem * highlight_tool_item;
143   gint          max_homogeneous_pixels;
144   
145   GTimer *      timer;
146
147   gulong        settings_connection;
148
149   guint         show_arrow : 1;
150   guint         need_sync : 1;
151   guint         is_sliding : 1;
152   guint         need_rebuild : 1;  /* whether the overflow menu should be regenerated */
153   guint         animation : 1;
154 };
155
156 static void       gtk_toolbar_init                 (GtkToolbar          *toolbar);
157 static void       gtk_toolbar_class_init           (GtkToolbarClass     *klass);
158 static void       gtk_toolbar_set_property         (GObject             *object,
159                                                     guint                prop_id,
160                                                     const GValue        *value,
161                                                     GParamSpec          *pspec);
162 static void       gtk_toolbar_get_property         (GObject             *object,
163                                                     guint                prop_id,
164                                                     GValue              *value,
165                                                     GParamSpec          *pspec);
166 static gint       gtk_toolbar_expose               (GtkWidget           *widget,
167                                                     GdkEventExpose      *event);
168 static void       gtk_toolbar_realize              (GtkWidget           *widget);
169 static void       gtk_toolbar_unrealize            (GtkWidget           *widget);
170 static void       gtk_toolbar_size_request         (GtkWidget           *widget,
171                                                     GtkRequisition      *requisition);
172 static void       gtk_toolbar_size_allocate        (GtkWidget           *widget,
173                                                     GtkAllocation       *allocation);
174 static void       gtk_toolbar_style_set            (GtkWidget           *widget,
175                                                     GtkStyle            *prev_style);
176 static gboolean   gtk_toolbar_focus                (GtkWidget           *widget,
177                                                     GtkDirectionType     dir);
178 static void       gtk_toolbar_screen_changed       (GtkWidget           *widget,
179                                                     GdkScreen           *previous_screen);
180 static void       gtk_toolbar_map                  (GtkWidget           *widget);
181 static void       gtk_toolbar_unmap                (GtkWidget           *widget);
182 static void       gtk_toolbar_set_child_property   (GtkContainer        *container,
183                                                     GtkWidget           *child,
184                                                     guint                property_id,
185                                                     const GValue        *value,
186                                                     GParamSpec          *pspec);
187 static void       gtk_toolbar_get_child_property   (GtkContainer        *container,
188                                                     GtkWidget           *child,
189                                                     guint                property_id,
190                                                     GValue              *value,
191                                                     GParamSpec          *pspec);
192 static void       gtk_toolbar_finalize             (GObject             *object);
193 static void       gtk_toolbar_show_all             (GtkWidget           *widget);
194 static void       gtk_toolbar_hide_all             (GtkWidget           *widget);
195 static void       gtk_toolbar_add                  (GtkContainer        *container,
196                                                     GtkWidget           *widget);
197 static void       gtk_toolbar_remove               (GtkContainer        *container,
198                                                     GtkWidget           *widget);
199 static void       gtk_toolbar_forall               (GtkContainer        *container,
200                                                     gboolean             include_internals,
201                                                     GtkCallback          callback,
202                                                     gpointer             callback_data);
203 static GType      gtk_toolbar_child_type           (GtkContainer        *container);
204 static void       gtk_toolbar_orientation_changed  (GtkToolbar          *toolbar,
205                                                     GtkOrientation       orientation);
206 static void       gtk_toolbar_real_style_changed   (GtkToolbar          *toolbar,
207                                                     GtkToolbarStyle      style);
208 static gboolean   gtk_toolbar_move_focus           (GtkToolbar          *toolbar,
209                                                     GtkDirectionType     dir);
210 static gboolean   gtk_toolbar_focus_home_or_end    (GtkToolbar          *toolbar,
211                                                     gboolean             focus_home);
212 static gboolean   gtk_toolbar_button_press         (GtkWidget           *toolbar,
213                                                     GdkEventButton      *event);
214 static gboolean   gtk_toolbar_arrow_button_press   (GtkWidget           *button,
215                                                     GdkEventButton      *event,
216                                                     GtkToolbar          *toolbar);
217 static void       gtk_toolbar_arrow_button_clicked (GtkWidget           *button,
218                                                     GtkToolbar          *toolbar);
219 static void       gtk_toolbar_update_button_relief (GtkToolbar          *toolbar);
220 static gboolean   gtk_toolbar_popup_menu           (GtkWidget           *toolbar);
221 static GtkWidget *internal_insert_element          (GtkToolbar          *toolbar,
222                                                     GtkToolbarChildType  type,
223                                                     GtkWidget           *widget,
224                                                     const char          *text,
225                                                     const char          *tooltip_text,
226                                                     const char          *tooltip_private_text,
227                                                     GtkWidget           *icon,
228                                                     GtkSignalFunc        callback,
229                                                     gpointer             user_data,
230                                                     gint                 position,
231                                                     gboolean             use_stock);
232 static void       gtk_toolbar_reconfigured         (GtkToolbar          *toolbar);
233 static gboolean   gtk_toolbar_check_new_api        (GtkToolbar          *toolbar);
234 static gboolean   gtk_toolbar_check_old_api        (GtkToolbar          *toolbar);
235
236 static GtkReliefStyle       get_button_relief    (GtkToolbar *toolbar);
237 static gint                 get_internal_padding (GtkToolbar *toolbar);
238 static GtkShadowType        get_shadow_type      (GtkToolbar *toolbar);
239 static gint                 get_space_size       (GtkToolbar *toolbar);
240 static GtkToolbarSpaceStyle get_space_style      (GtkToolbar *toolbar);
241
242 /* methods on ToolbarContent 'class' */
243 static ToolbarContent *toolbar_content_new_tool_item        (GtkToolbar          *toolbar,
244                                                              GtkToolItem         *item,
245                                                              gboolean             is_placeholder,
246                                                              gint                 pos);
247 static ToolbarContent *toolbar_content_new_compatibility    (GtkToolbar          *toolbar,
248                                                              GtkToolbarChildType  type,
249                                                              GtkWidget           *widget,
250                                                              GtkWidget           *icon,
251                                                              GtkWidget           *label,
252                                                              gint                 pos);
253 static void            toolbar_content_remove               (ToolbarContent      *content,
254                                                              GtkToolbar          *toolbar);
255 static void            toolbar_content_free                 (ToolbarContent      *content);
256 static void            toolbar_content_expose               (ToolbarContent      *content,
257                                                              GtkContainer        *container,
258                                                              GdkEventExpose      *expose);
259 static gboolean        toolbar_content_visible              (ToolbarContent      *content,
260                                                              GtkToolbar          *toolbar);
261 static void            toolbar_content_size_request         (ToolbarContent      *content,
262                                                              GtkToolbar          *toolbar,
263                                                              GtkRequisition      *requisition);
264 static gboolean        toolbar_content_is_homogeneous       (ToolbarContent      *content,
265                                                              GtkToolbar          *toolbar);
266 static gboolean        toolbar_content_is_placeholder       (ToolbarContent      *content);
267 static gboolean        toolbar_content_disappearing         (ToolbarContent      *content);
268 static ItemState       toolbar_content_get_state            (ToolbarContent      *content);
269 static gboolean        toolbar_content_child_visible        (ToolbarContent      *content);
270 static void            toolbar_content_get_goal_allocation  (ToolbarContent      *content,
271                                                              GtkAllocation       *allocation);
272 static void            toolbar_content_get_allocation       (ToolbarContent      *content,
273                                                              GtkAllocation       *allocation);
274 static void            toolbar_content_set_start_allocation (ToolbarContent      *content,
275                                                              GtkAllocation       *new_start_allocation);
276 static void            toolbar_content_get_start_allocation (ToolbarContent      *content,
277                                                              GtkAllocation       *start_allocation);
278 static gboolean        toolbar_content_get_expand           (ToolbarContent      *content);
279 static void            toolbar_content_set_goal_allocation  (ToolbarContent      *content,
280                                                              GtkAllocation       *allocation);
281 static void            toolbar_content_set_child_visible    (ToolbarContent      *content,
282                                                              GtkToolbar          *toolbar,
283                                                              gboolean             visible);
284 static void            toolbar_content_size_allocate        (ToolbarContent      *content,
285                                                              GtkAllocation       *allocation);
286 static void            toolbar_content_set_state            (ToolbarContent      *content,
287                                                              ItemState            new_state);
288 static GtkWidget *     toolbar_content_get_widget           (ToolbarContent      *content);
289 static void            toolbar_content_set_disappearing     (ToolbarContent      *content,
290                                                              gboolean             disappearing);
291 static void            toolbar_content_set_size_request     (ToolbarContent      *content,
292                                                              gint                 width,
293                                                              gint                 height);
294 static void            toolbar_content_toolbar_reconfigured (ToolbarContent      *content,
295                                                              GtkToolbar          *toolbar);
296 static GtkWidget *     toolbar_content_retrieve_menu_item   (ToolbarContent      *content);
297 static gboolean        toolbar_content_has_proxy_menu_item  (ToolbarContent      *content);
298 static gboolean        toolbar_content_is_separator         (ToolbarContent      *content);
299 static void            toolbar_content_show_all             (ToolbarContent      *content);
300 static void            toolbar_content_hide_all             (ToolbarContent      *content);
301 static void            toolbar_content_set_expand           (ToolbarContent      *content,
302                                                              gboolean             expand);
303
304 #define GTK_TOOLBAR_GET_PRIVATE(o)  \
305   (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_TOOLBAR, GtkToolbarPrivate))
306
307 static GtkContainerClass *      parent_class = NULL;
308 static guint                    toolbar_signals [LAST_SIGNAL] = { 0 };
309
310 GType
311 gtk_toolbar_get_type (void)
312 {
313   static GtkType type = 0;
314   
315   if (!type)
316     {
317       static const GTypeInfo type_info =
318         {
319           sizeof (GtkToolbarClass),
320           (GBaseInitFunc) NULL,
321           (GBaseFinalizeFunc) NULL,
322           (GClassInitFunc) gtk_toolbar_class_init,
323           (GClassFinalizeFunc) NULL,
324           NULL,
325           sizeof (GtkToolbar),
326           0, /* n_preallocs */
327           (GInstanceInitFunc) gtk_toolbar_init,
328         };
329       
330       type = g_type_register_static (GTK_TYPE_CONTAINER,
331                                      I_("GtkToolbar"),
332                                      &type_info, 0);
333     }
334   
335   return type;
336 }
337
338 static void
339 add_arrow_bindings (GtkBindingSet   *binding_set,
340                     guint            keysym,
341                     GtkDirectionType dir)
342 {
343   guint keypad_keysym = keysym - GDK_Left + GDK_KP_Left;
344   
345   gtk_binding_entry_add_signal (binding_set, keysym, 0,
346                                 "move_focus", 1,
347                                 GTK_TYPE_DIRECTION_TYPE, dir);
348   gtk_binding_entry_add_signal (binding_set, keypad_keysym, 0,
349                                 "move_focus", 1,
350                                 GTK_TYPE_DIRECTION_TYPE, dir);
351 }
352
353 static void
354 add_ctrl_tab_bindings (GtkBindingSet    *binding_set,
355                        GdkModifierType   modifiers,
356                        GtkDirectionType  direction)
357 {
358   gtk_binding_entry_add_signal (binding_set,
359                                 GDK_Tab, GDK_CONTROL_MASK | modifiers,
360                                 "move_focus", 1,
361                                 GTK_TYPE_DIRECTION_TYPE, direction);
362   gtk_binding_entry_add_signal (binding_set,
363                                 GDK_KP_Tab, GDK_CONTROL_MASK | modifiers,
364                                 "move_focus", 1,
365                                 GTK_TYPE_DIRECTION_TYPE, direction);
366 }
367
368 static void
369 gtk_toolbar_class_init (GtkToolbarClass *klass)
370 {
371   GObjectClass *gobject_class;
372   GtkWidgetClass *widget_class;
373   GtkContainerClass *container_class;
374   GtkBindingSet *binding_set;
375   
376   parent_class = g_type_class_peek_parent (klass);
377   
378   gobject_class = (GObjectClass *)klass;
379   widget_class = (GtkWidgetClass *)klass;
380   container_class = (GtkContainerClass *)klass;
381   
382   gobject_class->set_property = gtk_toolbar_set_property;
383   gobject_class->get_property = gtk_toolbar_get_property;
384   gobject_class->finalize = gtk_toolbar_finalize;
385   
386   widget_class->button_press_event = gtk_toolbar_button_press;
387   widget_class->expose_event = gtk_toolbar_expose;
388   widget_class->size_request = gtk_toolbar_size_request;
389   widget_class->size_allocate = gtk_toolbar_size_allocate;
390   widget_class->style_set = gtk_toolbar_style_set;
391   widget_class->focus = gtk_toolbar_focus;
392   widget_class->screen_changed = gtk_toolbar_screen_changed;
393   widget_class->realize = gtk_toolbar_realize;
394   widget_class->unrealize = gtk_toolbar_unrealize;
395   widget_class->map = gtk_toolbar_map;
396   widget_class->unmap = gtk_toolbar_unmap;
397   widget_class->popup_menu = gtk_toolbar_popup_menu;
398   widget_class->show_all = gtk_toolbar_show_all;
399   widget_class->hide_all = gtk_toolbar_hide_all;
400   
401   container_class->add    = gtk_toolbar_add;
402   container_class->remove = gtk_toolbar_remove;
403   container_class->forall = gtk_toolbar_forall;
404   container_class->child_type = gtk_toolbar_child_type;
405   container_class->get_child_property = gtk_toolbar_get_child_property;
406   container_class->set_child_property = gtk_toolbar_set_child_property;
407   
408   klass->orientation_changed = gtk_toolbar_orientation_changed;
409   klass->style_changed = gtk_toolbar_real_style_changed;
410   
411   /**
412    * GtkToolbar::orientation-changed:
413    * @toolbar: the object which emitted the signal
414    * @orientation: the new #GtkOrientation of the toolbar
415    *
416    * Emitted when the orientation of the toolbar changes.
417    */
418   toolbar_signals[ORIENTATION_CHANGED] =
419     g_signal_new (I_("orientation-changed"),
420                   G_OBJECT_CLASS_TYPE (klass),
421                   G_SIGNAL_RUN_FIRST,
422                   G_STRUCT_OFFSET (GtkToolbarClass, orientation_changed),
423                   NULL, NULL,
424                   g_cclosure_marshal_VOID__ENUM,
425                   G_TYPE_NONE, 1,
426                   GTK_TYPE_ORIENTATION);
427   /**
428    * GtkToolbar::style-changed:
429    * @toolbar: The #GtkToolbar which emitted the signal
430    * @style: the new #GtkToolbarStyle of the toolbar
431    *
432    * Emitted when the style of the toolbar changes. 
433    */
434   toolbar_signals[STYLE_CHANGED] =
435     g_signal_new (I_("style-changed"),
436                   G_OBJECT_CLASS_TYPE (klass),
437                   G_SIGNAL_RUN_FIRST,
438                   G_STRUCT_OFFSET (GtkToolbarClass, style_changed),
439                   NULL, NULL,
440                   g_cclosure_marshal_VOID__ENUM,
441                   G_TYPE_NONE, 1,
442                   GTK_TYPE_TOOLBAR_STYLE);
443   /**
444    * GtkToolbar::popup-context-menu:
445    * @toolbar: the #GtkToolbar which emitted the signal
446    * @x: the x coordinate of the point where the menu should appear
447    * @y: the y coordinate of the point where the menu should appear
448    * @button: the mouse button the user pressed, or -1
449    *
450    * Emitted when the user right-clicks the toolbar or uses the
451    * keybinding to display a popup menu.
452    *
453    * Application developers should handle this signal if they want
454    * to display a context menu on the toolbar. The context-menu should
455    * appear at the coordinates given by @x and @y. The mouse button
456    * number is given by the @button parameter. If the menu was popped
457    * up using the keybaord, @button is -1.
458    *
459    * Return value: return %TRUE if the signal was handled, %FALSE if not
460    */
461   toolbar_signals[POPUP_CONTEXT_MENU] =
462     g_signal_new (I_("popup_context_menu"),
463                   G_OBJECT_CLASS_TYPE (klass),
464                   G_SIGNAL_RUN_LAST,
465                   G_STRUCT_OFFSET (GtkToolbarClass, popup_context_menu),
466                   _gtk_boolean_handled_accumulator, NULL,
467                   _gtk_marshal_BOOLEAN__INT_INT_INT,
468                   G_TYPE_BOOLEAN, 3,
469                   G_TYPE_INT, G_TYPE_INT,
470                   G_TYPE_INT);
471   /**
472    * GtkToolbar::move-focus:
473    * @toolbar: the #GtkToolbar which emitted the signal
474    * @dir: a #GtkDirection
475    *
476    * A keybinding signal used internally by GTK+. This signal can't
477    * be used in application code.
478    *
479    * Return value: %TRUE if the signal was handled, %FALSE if not
480    */
481   toolbar_signals[MOVE_FOCUS] =
482     _gtk_binding_signal_new (I_("move_focus"),
483                              G_TYPE_FROM_CLASS (klass),
484                              G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
485                              G_CALLBACK (gtk_toolbar_move_focus),
486                              NULL, NULL,
487                              _gtk_marshal_BOOLEAN__ENUM,
488                              G_TYPE_BOOLEAN, 1,
489                              GTK_TYPE_DIRECTION_TYPE);
490   /**
491    * GtkToolbar::focus-home-or-end:
492    * @toolbar: the #GtkToolbar which emitted the signal
493    * @focus_home: %TRUE if the first item should be focused
494    *
495    * A keybinding signal used internally by GTK+. This signal can't
496    * be used in application code
497    *
498    * Return value: %TRUE if the signal was handled, %FALSE if not
499    */
500   toolbar_signals[FOCUS_HOME_OR_END] =
501     _gtk_binding_signal_new (I_("focus_home_or_end"),
502                              G_OBJECT_CLASS_TYPE (klass),
503                              G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
504                              G_CALLBACK (gtk_toolbar_focus_home_or_end),
505                              NULL, NULL,
506                              _gtk_marshal_BOOLEAN__BOOLEAN,
507                              G_TYPE_BOOLEAN, 1,
508                              G_TYPE_BOOLEAN);
509   
510   /* properties */
511   g_object_class_install_property (gobject_class,
512                                    PROP_ORIENTATION,
513                                    g_param_spec_enum ("orientation",
514                                                       P_("Orientation"),
515                                                       P_("The orientation of the toolbar"),
516                                                       GTK_TYPE_ORIENTATION,
517                                                       GTK_ORIENTATION_HORIZONTAL,
518                                                       GTK_PARAM_READWRITE));
519   
520   g_object_class_install_property (gobject_class,
521                                    PROP_TOOLBAR_STYLE,
522                                    g_param_spec_enum ("toolbar-style",
523                                                       P_("Toolbar Style"),
524                                                       P_("How to draw the toolbar"),
525                                                       GTK_TYPE_TOOLBAR_STYLE,
526                                                       GTK_TOOLBAR_ICONS,
527                                                       GTK_PARAM_READWRITE));
528   g_object_class_install_property (gobject_class,
529                                    PROP_SHOW_ARROW,
530                                    g_param_spec_boolean ("show-arrow",
531                                                          P_("Show Arrow"),
532                                                          P_("If an arrow should be shown if the toolbar doesn't fit"),
533                                                          TRUE,
534                                                          GTK_PARAM_READWRITE));
535   
536
537   /**
538    * GtkToolbar:tooltips:
539    * 
540    * If the tooltips of the toolbar should be active or not.
541    * 
542    * Since: 2.8
543    */
544   g_object_class_install_property (gobject_class,
545                                    PROP_TOOLTIPS,
546                                    g_param_spec_boolean ("tooltips",
547                                                          P_("Tooltips"),
548                                                          P_("If the tooltips of the toolbar should be active or not"),
549                                                          TRUE,
550                                                          GTK_PARAM_READWRITE));
551   
552
553   /**
554    * GtkToolbar:icon-size:
555    *
556    * The size of the icons in a toolbar is normally determined by
557    * the toolbar-icon-size setting. When this property is set, it 
558    * overrides the setting. 
559    * 
560    * This should only be used for special-purpose toolbars, normal
561    * application toolbars should respect the user preferences for the
562    * size of icons.
563    *
564    * Since: 2.10
565    */
566   g_object_class_install_property (gobject_class,
567                                    PROP_ICON_SIZE,
568                                    g_param_spec_enum ("icon-size",
569                                                       P_("Icon size"),
570                                                       P_("Size of icons in this toolbar"),
571                                                       GTK_TYPE_ICON_SIZE,
572                                                       DEFAULT_ICON_SIZE,
573                                                       GTK_PARAM_READWRITE));  
574
575   /**
576    * GtkToolbar:icon-size-set:
577    *
578    * Is %TRUE if the icon-size property has been set.
579    *
580    * Since: 2.10
581    */
582   g_object_class_install_property (gobject_class,
583                                    PROP_ICON_SIZE_SET,
584                                    g_param_spec_boolean ("icon-size-set",
585                                                          P_("Icon size set"),
586                                                          P_("Whether the icon-size property has been set"),
587                                                          FALSE,
588                                                          GTK_PARAM_READWRITE));  
589
590   /* child properties */
591   gtk_container_class_install_child_property (container_class,
592                                               CHILD_PROP_EXPAND,
593                                               g_param_spec_boolean ("expand", 
594                                                                     P_("Expand"), 
595                                                                     P_("Whether the item should receive extra space when the toolbar grows"),
596                                                                     TRUE,
597                                                                     GTK_PARAM_READWRITE));
598   
599   gtk_container_class_install_child_property (container_class,
600                                               CHILD_PROP_HOMOGENEOUS,
601                                               g_param_spec_boolean ("homogeneous", 
602                                                                     P_("Homogeneous"), 
603                                                                     P_("Whether the item should be the same size as other homogeneous items"),
604                                                                     TRUE,
605                                                                     GTK_PARAM_READWRITE));
606   
607   /* style properties */
608   gtk_widget_class_install_style_property (widget_class,
609                                            g_param_spec_int ("space-size",
610                                                              P_("Spacer size"),
611                                                              P_("Size of spacers"),
612                                                              0,
613                                                              G_MAXINT,
614                                                              DEFAULT_SPACE_SIZE,
615                                                              GTK_PARAM_READABLE));
616   
617   gtk_widget_class_install_style_property (widget_class,
618                                            g_param_spec_int ("internal-padding",
619                                                              P_("Internal padding"),
620                                                              P_("Amount of border space between the toolbar shadow and the buttons"),
621                                                              0,
622                                                              G_MAXINT,
623                                                              DEFAULT_IPADDING,
624                                                              GTK_PARAM_READABLE));
625   
626   gtk_widget_class_install_style_property (widget_class,
627                                            g_param_spec_enum ("space-style",
628                                                               P_("Space style"),
629                                                               P_("Whether spacers are vertical lines or just blank"),
630                                                               GTK_TYPE_TOOLBAR_SPACE_STYLE,
631                                                               DEFAULT_SPACE_STYLE,
632                                                               GTK_PARAM_READABLE));
633   
634   gtk_widget_class_install_style_property (widget_class,
635                                            g_param_spec_enum ("button-relief",
636                                                               P_("Button relief"),
637                                                               P_("Type of bevel around toolbar buttons"),
638                                                               GTK_TYPE_RELIEF_STYLE,
639                                                               GTK_RELIEF_NONE,
640                                                               GTK_PARAM_READABLE));
641   gtk_widget_class_install_style_property (widget_class,
642                                            g_param_spec_enum ("shadow-type",
643                                                               P_("Shadow type"),
644                                                               P_("Style of bevel around the toolbar"),
645                                                               GTK_TYPE_SHADOW_TYPE,
646                                                               GTK_SHADOW_OUT,
647                                                               GTK_PARAM_READABLE));
648   
649   gtk_settings_install_property (g_param_spec_enum ("gtk-toolbar-style",
650                                                     P_("Toolbar style"),
651                                                     P_("Whether default toolbars have text only, text and icons, icons only, etc."),
652                                                     GTK_TYPE_TOOLBAR_STYLE,
653                                                     DEFAULT_TOOLBAR_STYLE,
654                                                     GTK_PARAM_READWRITE));
655   
656   gtk_settings_install_property (g_param_spec_enum ("gtk-toolbar-icon-size",
657                                                     P_("Toolbar icon size"),
658                                                     P_("Size of icons in default toolbars"),
659                                                     GTK_TYPE_ICON_SIZE,
660                                                     DEFAULT_ICON_SIZE,
661                                                     GTK_PARAM_READWRITE));  
662
663   binding_set = gtk_binding_set_by_class (klass);
664   
665   add_arrow_bindings (binding_set, GDK_Left, GTK_DIR_LEFT);
666   add_arrow_bindings (binding_set, GDK_Right, GTK_DIR_RIGHT);
667   add_arrow_bindings (binding_set, GDK_Up, GTK_DIR_UP);
668   add_arrow_bindings (binding_set, GDK_Down, GTK_DIR_DOWN);
669   
670   gtk_binding_entry_add_signal (binding_set, GDK_KP_Home, 0,
671                                 "focus_home_or_end", 1,
672                                 G_TYPE_BOOLEAN, TRUE);
673   gtk_binding_entry_add_signal (binding_set, GDK_Home, 0,
674                                 "focus_home_or_end", 1,
675                                 G_TYPE_BOOLEAN, TRUE);
676   gtk_binding_entry_add_signal (binding_set, GDK_KP_End, 0,
677                                 "focus_home_or_end", 1,
678                                 G_TYPE_BOOLEAN, FALSE);
679   gtk_binding_entry_add_signal (binding_set, GDK_End, 0,
680                                 "focus_home_or_end", 1,
681                                 G_TYPE_BOOLEAN, FALSE);
682   
683   add_ctrl_tab_bindings (binding_set, 0, GTK_DIR_TAB_FORWARD);
684   add_ctrl_tab_bindings (binding_set, GDK_SHIFT_MASK, GTK_DIR_TAB_BACKWARD);
685   
686   g_type_class_add_private (gobject_class, sizeof (GtkToolbarPrivate));  
687 }
688
689 static void
690 gtk_toolbar_init (GtkToolbar *toolbar)
691 {
692   GtkToolbarPrivate *priv;
693   
694   GTK_WIDGET_UNSET_FLAGS (toolbar, GTK_CAN_FOCUS);
695   GTK_WIDGET_SET_FLAGS (toolbar, GTK_NO_WINDOW);
696   
697   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
698   
699   toolbar->orientation = GTK_ORIENTATION_HORIZONTAL;
700   toolbar->style = DEFAULT_TOOLBAR_STYLE;
701   toolbar->icon_size = DEFAULT_ICON_SIZE;
702   priv->animation = DEFAULT_ANIMATION_STATE;
703   toolbar->tooltips = gtk_tooltips_new ();
704   g_object_ref_sink (toolbar->tooltips);
705   
706   priv->arrow_button = gtk_toggle_button_new ();
707   g_signal_connect (priv->arrow_button, "button_press_event",
708                     G_CALLBACK (gtk_toolbar_arrow_button_press), toolbar);
709   g_signal_connect (priv->arrow_button, "clicked",
710                     G_CALLBACK (gtk_toolbar_arrow_button_clicked), toolbar);
711   gtk_button_set_relief (GTK_BUTTON (priv->arrow_button),
712                          get_button_relief (toolbar));
713   
714   priv->api_mode = DONT_KNOW;
715   
716   gtk_button_set_focus_on_click (GTK_BUTTON (priv->arrow_button), FALSE);
717   
718   priv->arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);
719   gtk_widget_set_name (priv->arrow, "gtk-toolbar-arrow");
720   gtk_widget_show (priv->arrow);
721   gtk_container_add (GTK_CONTAINER (priv->arrow_button), priv->arrow);
722   
723   gtk_widget_set_parent (priv->arrow_button, GTK_WIDGET (toolbar));
724   
725   /* which child position a drop will occur at */
726   priv->menu = NULL;
727   priv->show_arrow = TRUE;
728   priv->settings = NULL;
729   
730   priv->max_homogeneous_pixels = -1;
731   
732   priv->timer = g_timer_new ();
733 }
734
735 static void
736 gtk_toolbar_set_property (GObject      *object,
737                           guint         prop_id,
738                           const GValue *value,
739                           GParamSpec   *pspec)
740 {
741   GtkToolbar *toolbar = GTK_TOOLBAR (object);
742   
743   switch (prop_id)
744     {
745     case PROP_ORIENTATION:
746       gtk_toolbar_set_orientation (toolbar, g_value_get_enum (value));
747       break;
748     case PROP_TOOLBAR_STYLE:
749       gtk_toolbar_set_style (toolbar, g_value_get_enum (value));
750       break;
751     case PROP_SHOW_ARROW:
752       gtk_toolbar_set_show_arrow (toolbar, g_value_get_boolean (value));
753       break;
754     case PROP_TOOLTIPS:
755       gtk_toolbar_set_tooltips (toolbar, g_value_get_boolean (value));
756       break;
757     case PROP_ICON_SIZE:
758       gtk_toolbar_set_icon_size (toolbar, g_value_get_enum (value));
759       break;
760     case PROP_ICON_SIZE_SET:
761       if (g_value_get_boolean (value))
762         toolbar->icon_size_set = TRUE;
763       else
764         gtk_toolbar_unset_icon_size (toolbar);
765       break;
766     default:
767       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
768       break;
769     }
770 }
771
772 static void
773 gtk_toolbar_get_property (GObject    *object,
774                           guint       prop_id,
775                           GValue     *value,
776                           GParamSpec *pspec)
777 {
778   GtkToolbar *toolbar = GTK_TOOLBAR (object);
779   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
780   
781   switch (prop_id)
782     {
783     case PROP_ORIENTATION:
784       g_value_set_enum (value, toolbar->orientation);
785       break;
786     case PROP_TOOLBAR_STYLE:
787       g_value_set_enum (value, toolbar->style);
788       break;
789     case PROP_SHOW_ARROW:
790       g_value_set_boolean (value, priv->show_arrow);
791       break;
792     case PROP_TOOLTIPS:
793       g_value_set_boolean (value, gtk_toolbar_get_tooltips (toolbar));
794       break;
795     case PROP_ICON_SIZE:
796       g_value_set_enum (value, gtk_toolbar_get_icon_size (toolbar));
797       break;
798     case PROP_ICON_SIZE_SET:
799       g_value_set_boolean (value, toolbar->icon_size_set);
800       break;
801     default:
802       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
803       break;
804     }
805 }
806
807 static void
808 gtk_toolbar_map (GtkWidget *widget)
809 {
810   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
811   
812   GTK_WIDGET_CLASS (parent_class)->map (widget);
813   
814   if (priv->event_window)
815     gdk_window_show_unraised (priv->event_window);
816 }
817
818 static void
819 gtk_toolbar_unmap (GtkWidget *widget)
820 {
821   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
822   
823   if (priv->event_window)
824     gdk_window_hide (priv->event_window);
825   
826   GTK_WIDGET_CLASS (parent_class)->unmap (widget);
827 }
828
829 static void
830 gtk_toolbar_realize (GtkWidget *widget)
831 {
832   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
833   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
834   
835   GdkWindowAttr attributes;
836   gint attributes_mask;
837   gint border_width;
838   
839   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
840   
841   border_width = GTK_CONTAINER (widget)->border_width;
842   
843   attributes.wclass = GDK_INPUT_ONLY;
844   attributes.window_type = GDK_WINDOW_CHILD;
845   attributes.x = widget->allocation.x + border_width;
846   attributes.y = widget->allocation.y + border_width;
847   attributes.width = widget->allocation.width - border_width * 2;
848   attributes.height = widget->allocation.height - border_width * 2;
849   attributes.event_mask = gtk_widget_get_events (widget);
850   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
851                             GDK_BUTTON_RELEASE_MASK |
852                             GDK_ENTER_NOTIFY_MASK |
853                             GDK_LEAVE_NOTIFY_MASK);
854   
855   attributes_mask = GDK_WA_X | GDK_WA_Y;
856   
857   widget->window = gtk_widget_get_parent_window (widget);
858   g_object_ref (widget->window);
859   widget->style = gtk_style_attach (widget->style, widget->window);
860   
861   priv->event_window = gdk_window_new (gtk_widget_get_parent_window (widget),
862                                        &attributes, attributes_mask);
863   gdk_window_set_user_data (priv->event_window, toolbar);
864 }
865
866 static void
867 gtk_toolbar_unrealize (GtkWidget *widget)
868 {
869   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
870   
871   if (priv->event_window)
872     {
873       gdk_window_set_user_data (priv->event_window, NULL);
874       gdk_window_destroy (priv->event_window);
875       priv->event_window = NULL;
876     }
877   
878   if (GTK_WIDGET_CLASS (parent_class)->unrealize)
879     (* GTK_WIDGET_CLASS (parent_class)->unrealize) (widget);
880 }
881
882 static gint
883 gtk_toolbar_expose (GtkWidget      *widget,
884                     GdkEventExpose *event)
885 {
886   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
887   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
888   
889   GList *list;
890   gint border_width;
891   
892   border_width = GTK_CONTAINER (widget)->border_width;
893   
894   if (GTK_WIDGET_DRAWABLE (widget))
895     {
896       gtk_paint_box (widget->style,
897                      widget->window,
898                      GTK_WIDGET_STATE (widget),
899                      get_shadow_type (toolbar),
900                      &event->area, widget, "toolbar",
901                      border_width + widget->allocation.x,
902                      border_width + widget->allocation.y,
903                      widget->allocation.width - 2 * border_width,
904                      widget->allocation.height - 2 * border_width);
905     }
906   
907   for (list = priv->content; list != NULL; list = list->next)
908     {
909       ToolbarContent *content = list->data;
910       
911       toolbar_content_expose (content, GTK_CONTAINER (widget), event);
912     }
913   
914   gtk_container_propagate_expose (GTK_CONTAINER (widget),
915                                   priv->arrow_button,
916                                   event);
917   
918   return FALSE;
919 }
920
921 static void
922 gtk_toolbar_size_request (GtkWidget      *widget,
923                           GtkRequisition *requisition)
924 {
925   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
926   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
927   GList *list;
928   gint max_child_height;
929   gint max_child_width;
930   gint max_homogeneous_child_width;
931   gint max_homogeneous_child_height;
932   gint homogeneous_size;
933   gint long_req;
934   gint pack_front_size;
935   gint ipadding;
936   GtkRequisition arrow_requisition;
937   
938   max_homogeneous_child_width = 0;
939   max_homogeneous_child_height = 0;
940   max_child_width = 0;
941   max_child_height = 0;
942   for (list = priv->content; list != NULL; list = list->next)
943     {
944       GtkRequisition requisition;
945       ToolbarContent *content = list->data;
946       
947       if (!toolbar_content_visible (content, toolbar))
948         continue;
949       
950       toolbar_content_size_request (content, toolbar, &requisition);
951
952       max_child_width = MAX (max_child_width, requisition.width);
953       max_child_height = MAX (max_child_height, requisition.height);
954       
955       if (toolbar_content_is_homogeneous (content, toolbar))
956         {
957           max_homogeneous_child_width = MAX (max_homogeneous_child_width, requisition.width);
958           max_homogeneous_child_height = MAX (max_homogeneous_child_height, requisition.height);
959         }
960     }
961   
962   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
963     homogeneous_size = max_homogeneous_child_width;
964   else
965     homogeneous_size = max_homogeneous_child_height;
966   
967   pack_front_size = 0;
968   for (list = priv->content; list != NULL; list = list->next)
969     {
970       ToolbarContent *content = list->data;
971       guint size;
972       
973       if (!toolbar_content_visible (content, toolbar))
974         continue;
975
976       if (toolbar_content_is_homogeneous (content, toolbar))
977         {
978           size = homogeneous_size;
979         }
980       else
981         {
982           GtkRequisition requisition;
983           
984           toolbar_content_size_request (content, toolbar, &requisition);
985           
986           if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
987             size = requisition.width;
988           else
989             size = requisition.height;
990         }
991
992       pack_front_size += size;
993     }
994   
995   if (priv->show_arrow && priv->api_mode == NEW_API)
996     {
997       gtk_widget_size_request (priv->arrow_button, &arrow_requisition);
998       
999       if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
1000         long_req = arrow_requisition.width;
1001       else
1002         long_req = arrow_requisition.height;
1003       
1004       /* There is no point requesting space for the arrow if that would take
1005        * up more space than all the items combined
1006        */
1007       long_req = MIN (long_req, pack_front_size);
1008     }
1009   else
1010     {
1011       arrow_requisition.height = 0;
1012       arrow_requisition.width = 0;
1013       
1014       long_req = pack_front_size;
1015     }
1016   
1017   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
1018     {
1019       requisition->width = long_req;
1020       requisition->height = MAX (max_child_height, arrow_requisition.height);
1021     }
1022   else
1023     {
1024       requisition->height = long_req;
1025       requisition->width = MAX (max_child_width, arrow_requisition.width);
1026     }
1027   
1028   /* Extra spacing */
1029   ipadding = get_internal_padding (toolbar);
1030   
1031   requisition->width += 2 * (ipadding + GTK_CONTAINER (toolbar)->border_width);
1032   requisition->height += 2 * (ipadding + GTK_CONTAINER (toolbar)->border_width);
1033   
1034   if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1035     {
1036       requisition->width += 2 * widget->style->xthickness;
1037       requisition->height += 2 * widget->style->ythickness;
1038     }
1039   
1040   toolbar->button_maxw = max_homogeneous_child_width;
1041   toolbar->button_maxh = max_homogeneous_child_height;
1042 }
1043
1044 static gint
1045 position (GtkToolbar *toolbar,
1046           gint        from,
1047           gint        to,
1048           gdouble     elapsed)
1049 {
1050   gint n_pixels;
1051
1052   if (! GTK_TOOLBAR_GET_PRIVATE (toolbar)->animation)
1053     return to;
1054
1055   if (elapsed <= ACCEL_THRESHOLD)
1056     {
1057       n_pixels = SLIDE_SPEED * elapsed;
1058     }
1059   else
1060     {
1061       /* The formula is a second degree polynomial in
1062        * @elapsed that has the line SLIDE_SPEED * @elapsed
1063        * as tangent for @elapsed == ACCEL_THRESHOLD.
1064        * This makes @n_pixels a smooth function of elapsed time.
1065        */
1066       n_pixels = (SLIDE_SPEED / ACCEL_THRESHOLD) * elapsed * elapsed -
1067         SLIDE_SPEED * elapsed + SLIDE_SPEED * ACCEL_THRESHOLD;
1068     }
1069
1070   if (to > from)
1071     return MIN (from + n_pixels, to);
1072   else
1073     return MAX (from - n_pixels, to);
1074 }
1075
1076 static void
1077 compute_intermediate_allocation (GtkToolbar          *toolbar,
1078                                  const GtkAllocation *start,
1079                                  const GtkAllocation *goal,
1080                                  GtkAllocation       *intermediate)
1081 {
1082   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1083   gdouble elapsed = g_timer_elapsed (priv->timer, NULL);
1084
1085   intermediate->x      = position (toolbar, start->x, goal->x, elapsed);
1086   intermediate->y      = position (toolbar, start->y, goal->y, elapsed);
1087   intermediate->width  = position (toolbar, start->x + start->width,
1088                                    goal->x + goal->width,
1089                                    elapsed) - intermediate->x;
1090   intermediate->height = position (toolbar, start->y + start->height,
1091                                    goal->y + goal->height,
1092                                    elapsed) - intermediate->y;
1093 }
1094
1095 static void
1096 fixup_allocation_for_rtl (gint           total_size,
1097                           GtkAllocation *allocation)
1098 {
1099   allocation->x += (total_size - (2 * allocation->x + allocation->width));
1100 }
1101
1102 static void
1103 fixup_allocation_for_vertical (GtkAllocation *allocation)
1104 {
1105   gint tmp;
1106   
1107   tmp = allocation->x;
1108   allocation->x = allocation->y;
1109   allocation->y = tmp;
1110   
1111   tmp = allocation->width;
1112   allocation->width = allocation->height;
1113   allocation->height = tmp;
1114 }
1115
1116 static gint
1117 get_item_size (GtkToolbar     *toolbar,
1118                ToolbarContent *content)
1119 {
1120   GtkRequisition requisition;
1121   
1122   toolbar_content_size_request (content, toolbar, &requisition);
1123   
1124   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
1125     {
1126       if (toolbar_content_is_homogeneous (content, toolbar))
1127         return toolbar->button_maxw;
1128       else
1129         return requisition.width;
1130     }
1131   else
1132     {
1133       if (toolbar_content_is_homogeneous (content, toolbar))
1134         return toolbar->button_maxh;
1135       else
1136         return requisition.height;
1137     }
1138 }
1139
1140 static gboolean
1141 slide_idle_handler (gpointer data)
1142 {
1143   GtkToolbar *toolbar = data;
1144   GtkToolbarPrivate *priv;
1145   GList *list;
1146   
1147   GDK_THREADS_ENTER ();
1148   
1149   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1150   
1151   if (priv->need_sync)
1152     {
1153       gdk_flush ();
1154       priv->need_sync = FALSE;
1155     }
1156   
1157   for (list = priv->content; list != NULL; list = list->next)
1158     {
1159       ToolbarContent *content = list->data;
1160       ItemState state;
1161       GtkAllocation goal_allocation;
1162       GtkAllocation allocation;
1163       gboolean cont;
1164
1165       state = toolbar_content_get_state (content);
1166       toolbar_content_get_goal_allocation (content, &goal_allocation);
1167       toolbar_content_get_allocation (content, &allocation);
1168       
1169       cont = FALSE;
1170       
1171       if (state == NOT_ALLOCATED)
1172         {
1173           /* an unallocated item means that size allocate has to
1174            * called at least once more
1175            */
1176           cont = TRUE;
1177         }
1178
1179       /* An invisible item with a goal allocation of
1180        * 0 is already at its goal.
1181        */
1182       if ((state == NORMAL || state == OVERFLOWN) &&
1183           ((goal_allocation.width != 0 &&
1184             goal_allocation.height != 0) ||
1185            toolbar_content_child_visible (content)))
1186         {
1187           if ((goal_allocation.x != allocation.x ||
1188                goal_allocation.y != allocation.y ||
1189                goal_allocation.width != allocation.width ||
1190                goal_allocation.height != allocation.height))
1191             {
1192               /* An item is not in its right position yet. Note
1193                * that OVERFLOWN items do get an allocation in
1194                * gtk_toolbar_size_allocate(). This way you can see
1195                * them slide back in when you drag an item off the
1196                * toolbar.
1197                */
1198               cont = TRUE;
1199             }
1200         }
1201
1202       if (toolbar_content_is_placeholder (content) &&
1203           toolbar_content_disappearing (content) &&
1204           toolbar_content_child_visible (content))
1205         {
1206           /* A disappearing placeholder is still visible.
1207            */
1208              
1209           cont = TRUE;
1210         }
1211       
1212       if (cont)
1213         {
1214           gtk_widget_queue_resize_no_redraw (GTK_WIDGET (toolbar));
1215           
1216           GDK_THREADS_LEAVE ();
1217           return TRUE;
1218         }
1219     }
1220   
1221   priv->is_sliding = FALSE;
1222   priv->idle_id = 0;
1223
1224   GDK_THREADS_LEAVE();
1225   return FALSE;
1226 }
1227
1228 static gboolean
1229 rect_within (GtkAllocation *a1,
1230              GtkAllocation *a2)
1231 {
1232   return (a1->x >= a2->x                         &&
1233           a1->x + a1->width <= a2->x + a2->width &&
1234           a1->y >= a2->y                         &&
1235           a1->y + a1->height <= a2->y + a2->height);
1236 }
1237
1238 static void
1239 gtk_toolbar_begin_sliding (GtkToolbar *toolbar)
1240 {
1241   GtkWidget *widget = GTK_WIDGET (toolbar);
1242   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1243   GList *list;
1244   gint cur_x;
1245   gint cur_y;
1246   gint border_width;
1247   gboolean rtl;
1248   gboolean vertical;
1249   
1250   /* Start the sliding. This function copies the allocation of every
1251    * item into content->start_allocation. For items that haven't
1252    * been allocated yet, we calculate their position and save that
1253    * in start_allocatino along with zero width and zero height.
1254    *
1255    * FIXME: It would be nice if we could share this code with
1256    * the equivalent in gtk_widget_size_allocate().
1257    */
1258   priv->is_sliding = TRUE;
1259   
1260   if (!priv->idle_id)
1261     priv->idle_id = g_idle_add (slide_idle_handler, toolbar);
1262   
1263   rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
1264   vertical = (toolbar->orientation == GTK_ORIENTATION_VERTICAL);
1265   border_width = get_internal_padding (toolbar) + GTK_CONTAINER (toolbar)->border_width;
1266   
1267   if (rtl)
1268     {
1269       cur_x = widget->allocation.width - border_width - widget->style->xthickness;
1270       cur_y = widget->allocation.height - border_width - widget->style->ythickness;
1271     }
1272   else
1273     {
1274       cur_x = border_width + widget->style->xthickness;
1275       cur_y = border_width + widget->style->ythickness;
1276     }
1277   
1278   cur_x += widget->allocation.x;
1279   cur_y += widget->allocation.y;
1280   
1281   for (list = priv->content; list != NULL; list = list->next)
1282     {
1283       ToolbarContent *content = list->data;
1284       GtkAllocation new_start_allocation;
1285       GtkAllocation item_allocation;
1286       ItemState state;
1287       
1288       state = toolbar_content_get_state (content);
1289       toolbar_content_get_allocation (content, &item_allocation);
1290       
1291       if ((state == NORMAL &&
1292            rect_within (&item_allocation, &(widget->allocation))) ||
1293           state == OVERFLOWN)
1294         {
1295           new_start_allocation = item_allocation;
1296         }
1297       else
1298         {
1299           new_start_allocation.x = cur_x;
1300           new_start_allocation.y = cur_y;
1301           
1302           if (vertical)
1303             {
1304               new_start_allocation.width = widget->allocation.width -
1305                 2 * border_width - 2 * widget->style->xthickness;
1306               new_start_allocation.height = 0;
1307             }
1308           else
1309             {
1310               new_start_allocation.width = 0;
1311               new_start_allocation.height = widget->allocation.height -
1312                 2 * border_width - 2 * widget->style->ythickness;
1313             }
1314         }
1315       
1316       if (vertical)
1317         cur_y = new_start_allocation.y + new_start_allocation.height;
1318       else if (rtl)
1319         cur_x = new_start_allocation.x;
1320       else
1321         cur_x = new_start_allocation.x + new_start_allocation.width;
1322       
1323       toolbar_content_set_start_allocation (content, &new_start_allocation);
1324     }
1325
1326   /* This resize will run before the first idle handler. This
1327    * will make sure that items get the right goal allocation
1328    * so that the idle handler will not immediately return
1329    * FALSE
1330    */
1331   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (toolbar));
1332   g_timer_reset (priv->timer);
1333 }
1334
1335 static void
1336 gtk_toolbar_stop_sliding (GtkToolbar *toolbar)
1337 {
1338   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1339   
1340   if (priv->is_sliding)
1341     {
1342       GList *list;
1343       
1344       priv->is_sliding = FALSE;
1345       
1346       if (priv->idle_id)
1347         {
1348           g_source_remove (priv->idle_id);
1349           priv->idle_id = 0;
1350         }
1351       
1352       list = priv->content;
1353       while (list)
1354         {
1355           ToolbarContent *content = list->data;
1356           list = list->next;
1357
1358           if (toolbar_content_is_placeholder (content))
1359             {
1360               toolbar_content_remove (content, toolbar);
1361               toolbar_content_free (content);
1362             }
1363         }
1364       
1365       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (toolbar));
1366     }
1367 }
1368
1369 static void
1370 remove_item (GtkWidget *menu_item,
1371              gpointer   data)
1372 {
1373   gtk_container_remove (GTK_CONTAINER (menu_item->parent), menu_item);
1374 }
1375
1376 static void
1377 menu_deactivated (GtkWidget  *menu,
1378                   GtkToolbar *toolbar)
1379 {
1380   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1381   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->arrow_button), FALSE);
1382 }
1383
1384 static void
1385 menu_detached (GtkWidget  *toolbar,
1386                GtkMenu    *menu)
1387 {
1388   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1389   priv->menu = NULL;
1390 }
1391
1392 static void
1393 rebuild_menu (GtkToolbar *toolbar)
1394 {
1395   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1396   GList *list, *children;
1397   
1398   if (!priv->menu)
1399     {
1400       priv->menu = GTK_MENU (gtk_menu_new());
1401       gtk_menu_attach_to_widget (priv->menu,
1402                                  GTK_WIDGET (toolbar),
1403                                  menu_detached);
1404
1405       g_signal_connect (priv->menu, "deactivate", G_CALLBACK (menu_deactivated), toolbar);
1406     }
1407
1408   gtk_container_foreach (GTK_CONTAINER (priv->menu), remove_item, NULL);
1409   
1410   for (list = priv->content; list != NULL; list = list->next)
1411     {
1412       ToolbarContent *content = list->data;
1413       
1414       if (toolbar_content_get_state (content) == OVERFLOWN &&
1415           !toolbar_content_is_placeholder (content))
1416         {
1417           GtkWidget *menu_item = toolbar_content_retrieve_menu_item (content);
1418           
1419           if (menu_item)
1420             {
1421               g_assert (GTK_IS_MENU_ITEM (menu_item));
1422               gtk_menu_shell_append (GTK_MENU_SHELL (priv->menu), menu_item);
1423             }
1424         }
1425     }
1426
1427   /* Remove leading and trailing separator items */
1428   children = gtk_container_get_children (GTK_CONTAINER (priv->menu));
1429   
1430   list = children;
1431   while (list && GTK_IS_SEPARATOR_MENU_ITEM (list->data))
1432     {
1433       GtkWidget *child = list->data;
1434       
1435       gtk_container_remove (GTK_CONTAINER (priv->menu), child);
1436       list = list->next;
1437     }
1438   g_list_free (children);
1439
1440   /* Regenerate the list of children so we don't try to remove items twice */
1441   children = gtk_container_get_children (GTK_CONTAINER (priv->menu));
1442
1443   list = g_list_last (children);
1444   while (list && GTK_IS_SEPARATOR_MENU_ITEM (list->data))
1445     {
1446       GtkWidget *child = list->data;
1447
1448       gtk_container_remove (GTK_CONTAINER (priv->menu), child);
1449       list = list->prev;
1450     }
1451   g_list_free (children);
1452
1453   priv->need_rebuild = FALSE;
1454 }
1455
1456 static void
1457 gtk_toolbar_size_allocate (GtkWidget     *widget,
1458                            GtkAllocation *allocation)
1459 {
1460   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
1461   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1462   GtkAllocation *allocations;
1463   ItemState *new_states;
1464   GtkAllocation arrow_allocation;
1465   gint arrow_size;
1466   gint size, pos, short_size;
1467   GList *list;
1468   gint i;
1469   gboolean need_arrow;
1470   gint n_expand_items;
1471   gint border_width;
1472   gint available_size;
1473   gint n_items;
1474   gint needed_size;
1475   GtkRequisition arrow_requisition;
1476   gboolean overflowing;
1477   gboolean size_changed;
1478   gdouble elapsed;
1479   GtkAllocation item_area;
1480   
1481   size_changed = FALSE;
1482   if (widget->allocation.x != allocation->x             ||
1483       widget->allocation.y != allocation->y             ||
1484       widget->allocation.width != allocation->width     ||
1485       widget->allocation.height != allocation->height)
1486     {
1487       size_changed = TRUE;
1488     }
1489   
1490   if (size_changed)
1491     gtk_toolbar_stop_sliding (toolbar);
1492   
1493   widget->allocation = *allocation;
1494   
1495   border_width = GTK_CONTAINER (toolbar)->border_width;
1496   
1497   if (GTK_WIDGET_REALIZED (widget))
1498     {
1499       gdk_window_move_resize (priv->event_window,
1500                               allocation->x + border_width,
1501                               allocation->y + border_width,
1502                               allocation->width - border_width * 2,
1503                               allocation->height - border_width * 2);
1504     }
1505   
1506   border_width += get_internal_padding (toolbar);
1507   
1508   gtk_widget_get_child_requisition (GTK_WIDGET (priv->arrow_button),
1509                                     &arrow_requisition);
1510   
1511   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
1512     {
1513       available_size = size = allocation->width - 2 * border_width;
1514       short_size = allocation->height - 2 * border_width;
1515       arrow_size = arrow_requisition.width;
1516       
1517       if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1518         {
1519           available_size -= 2 * widget->style->xthickness;
1520           short_size -= 2 * widget->style->ythickness;
1521         }
1522     }
1523   else
1524     {
1525       available_size = size = allocation->height - 2 * border_width;
1526       short_size = allocation->width - 2 * border_width;
1527       arrow_size = arrow_requisition.height;
1528       
1529       if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1530         {
1531           available_size -= 2 * widget->style->ythickness;
1532           short_size -= 2 * widget->style->xthickness;
1533         }
1534     }
1535   
1536   n_items = g_list_length (priv->content);
1537   allocations = g_new0 (GtkAllocation, n_items);
1538   new_states = g_new0 (ItemState, n_items);
1539   
1540   needed_size = 0;
1541   need_arrow = FALSE;
1542   for (list = priv->content; list != NULL; list = list->next)
1543     {
1544       ToolbarContent *content = list->data;
1545       
1546       if (toolbar_content_visible (content, toolbar))
1547         {
1548           needed_size += get_item_size (toolbar, content);
1549
1550           /* Do we need an arrow?
1551            *
1552            * Assume we don't, and see if any non-separator item with a
1553            * proxy menu item is then going to overflow.
1554            */
1555           if (needed_size > available_size                      &&
1556               !need_arrow                                       &&
1557               priv->show_arrow                                  &&
1558               priv->api_mode == NEW_API                         &&
1559               toolbar_content_has_proxy_menu_item (content)     &&
1560               !toolbar_content_is_separator (content))
1561             {
1562               need_arrow = TRUE;
1563             }
1564         }
1565     }
1566   
1567   if (need_arrow)
1568     size = available_size - arrow_size;
1569   else
1570     size = available_size;
1571   
1572   /* calculate widths and states of items */
1573   overflowing = FALSE;
1574   for (list = priv->content, i = 0; list != NULL; list = list->next, ++i)
1575     {
1576       ToolbarContent *content = list->data;
1577       gint item_size;
1578       
1579       if (!toolbar_content_visible (content, toolbar))
1580         {
1581           new_states[i] = HIDDEN;
1582           continue;
1583         }
1584       
1585       item_size = get_item_size (toolbar, content);
1586       if (item_size <= size && !overflowing)
1587         {
1588           size -= item_size;
1589           allocations[i].width = item_size;
1590           new_states[i] = NORMAL;
1591         }
1592       else
1593         {
1594           overflowing = TRUE;
1595           new_states[i] = OVERFLOWN;
1596           allocations[i].width = item_size;
1597         }
1598     }
1599   
1600   /* calculate width of arrow */  
1601   if (need_arrow)
1602     {
1603       arrow_allocation.width = arrow_size;
1604       arrow_allocation.height = MAX (short_size, 1);
1605     }
1606   
1607   /* expand expandable items */
1608   
1609   /* We don't expand when there is an overflow menu, because that leads to
1610    * weird jumps when items get moved to the overflow menu and the expanding
1611    * items suddenly get a lot of extra space
1612    */
1613   if (!overflowing)
1614     {
1615       n_expand_items = 0;
1616       for (i = 0, list = priv->content; list != NULL; list = list->next, ++i)
1617         {
1618           ToolbarContent *content = list->data;
1619           
1620           if (toolbar_content_get_expand (content) && new_states[i] == NORMAL)
1621             n_expand_items++;
1622         }
1623       
1624       for (list = priv->content, i = 0; list != NULL; list = list->next, ++i)
1625         {
1626           ToolbarContent *content = list->data;
1627           
1628           if (toolbar_content_get_expand (content) && new_states[i] == NORMAL)
1629             {
1630               gint extra = size / n_expand_items;
1631               if (size % n_expand_items != 0)
1632                 extra++;
1633               
1634               allocations[i].width += extra;
1635               size -= extra;
1636               n_expand_items--;
1637             }
1638         }
1639       
1640       g_assert (n_expand_items == 0);
1641     }
1642   
1643   /* position items */
1644   pos = border_width;
1645   for (list = priv->content, i = 0; list != NULL; list = list->next, ++i)
1646     {
1647       /* both NORMAL and OVERFLOWN items get a position. This ensures
1648        * that sliding will work for OVERFLOWN items too
1649        */
1650       if (new_states[i] == NORMAL ||
1651           new_states[i] == OVERFLOWN)
1652         {
1653           allocations[i].x = pos;
1654           allocations[i].y = border_width;
1655           allocations[i].height = short_size;
1656           
1657           pos += allocations[i].width;
1658         }
1659     }
1660   
1661   /* position arrow */
1662   if (need_arrow)
1663     {
1664       arrow_allocation.x = available_size - border_width - arrow_allocation.width;
1665       arrow_allocation.y = border_width;
1666     }
1667   
1668   item_area.x = border_width;
1669   item_area.y = border_width;
1670   item_area.width = available_size - (need_arrow? arrow_size : 0);
1671   item_area.height = short_size;
1672
1673   /* fix up allocations in the vertical or RTL cases */
1674   if (toolbar->orientation == GTK_ORIENTATION_VERTICAL)
1675     {
1676       for (i = 0; i < n_items; ++i)
1677         fixup_allocation_for_vertical (&(allocations[i]));
1678       
1679       if (need_arrow)
1680         fixup_allocation_for_vertical (&arrow_allocation);
1681
1682       fixup_allocation_for_vertical (&item_area);
1683     }
1684   else if (gtk_widget_get_direction (GTK_WIDGET (toolbar)) == GTK_TEXT_DIR_RTL)
1685     {
1686       for (i = 0; i < n_items; ++i)
1687         fixup_allocation_for_rtl (available_size, &(allocations[i]));
1688       
1689       if (need_arrow)
1690         fixup_allocation_for_rtl (available_size, &arrow_allocation);
1691
1692       fixup_allocation_for_rtl (available_size, &item_area);
1693     }
1694   
1695   /* translate the items by allocation->(x,y) */
1696   for (i = 0; i < n_items; ++i)
1697     {
1698       allocations[i].x += allocation->x;
1699       allocations[i].y += allocation->y;
1700       
1701       if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1702         {
1703           allocations[i].x += widget->style->xthickness;
1704           allocations[i].y += widget->style->ythickness;
1705         }
1706     }
1707   
1708   if (need_arrow)
1709     {
1710       arrow_allocation.x += allocation->x;
1711       arrow_allocation.y += allocation->y;
1712       
1713       if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1714         {
1715           arrow_allocation.x += widget->style->xthickness;
1716           arrow_allocation.y += widget->style->ythickness;
1717         }
1718     }
1719
1720   item_area.x += allocation->x;
1721   item_area.y += allocation->y;
1722   if (get_shadow_type (toolbar) != GTK_SHADOW_NONE)
1723     {
1724       item_area.x += widget->style->xthickness;
1725       item_area.y += widget->style->ythickness;
1726     }
1727
1728   /* did anything change? */
1729   for (list = priv->content, i = 0; list != NULL; list = list->next, i++)
1730     {
1731       ToolbarContent *content = list->data;
1732       
1733       if (toolbar_content_get_state (content) == NORMAL &&
1734           new_states[i] != NORMAL)
1735         {
1736           /* an item disappeared and we didn't change size, so begin sliding */
1737           if (!size_changed && priv->api_mode == NEW_API)
1738             gtk_toolbar_begin_sliding (toolbar);
1739         }
1740     }
1741   
1742   /* finally allocate the items */
1743   if (priv->is_sliding)
1744     {
1745       for (list = priv->content, i = 0; list != NULL; list = list->next, i++)
1746         {
1747           ToolbarContent *content = list->data;
1748           
1749           toolbar_content_set_goal_allocation (content, &(allocations[i]));
1750         }
1751     }
1752
1753   elapsed = g_timer_elapsed (priv->timer, NULL);
1754   for (list = priv->content, i = 0; list != NULL; list = list->next, ++i)
1755     {
1756       ToolbarContent *content = list->data;
1757
1758       if (new_states[i] == OVERFLOWN ||
1759           new_states[i] == NORMAL)
1760         {
1761           GtkAllocation alloc;
1762           GtkAllocation start_allocation = { 0, };
1763           GtkAllocation goal_allocation;
1764
1765           if (priv->is_sliding)
1766             {
1767               toolbar_content_get_start_allocation (content, &start_allocation);
1768               toolbar_content_get_goal_allocation (content, &goal_allocation);
1769               
1770               compute_intermediate_allocation (toolbar,
1771                                                &start_allocation,
1772                                                &goal_allocation,
1773                                                &alloc);
1774
1775               priv->need_sync = TRUE;
1776             }
1777           else
1778             {
1779               alloc = allocations[i];
1780             }
1781
1782           if (alloc.width <= 0 || alloc.height <= 0)
1783             {
1784               toolbar_content_set_child_visible (content, toolbar, FALSE);
1785             }
1786           else
1787             {
1788               if (!rect_within (&alloc, &item_area))
1789                 {
1790                   toolbar_content_set_child_visible (content, toolbar, FALSE);
1791                   toolbar_content_size_allocate (content, &alloc);
1792                 }
1793               else
1794                 {
1795                   toolbar_content_set_child_visible (content, toolbar, TRUE);
1796                   toolbar_content_size_allocate (content, &alloc);
1797                 }
1798             }
1799         }
1800       else
1801         {
1802           toolbar_content_set_child_visible (content, toolbar, FALSE);
1803         }
1804           
1805       toolbar_content_set_state (content, new_states[i]);
1806     }
1807   
1808   if (priv->menu && priv->need_rebuild)
1809     rebuild_menu (toolbar);
1810   
1811   if (need_arrow)
1812     {
1813       gtk_widget_size_allocate (GTK_WIDGET (priv->arrow_button),
1814                                 &arrow_allocation);
1815       gtk_widget_show (GTK_WIDGET (priv->arrow_button));
1816     }
1817   else
1818     {
1819       gtk_widget_hide (GTK_WIDGET (priv->arrow_button));
1820
1821       if (priv->menu && GTK_WIDGET_VISIBLE (priv->menu))
1822         gtk_menu_shell_deactivate (GTK_MENU_SHELL (priv->menu));
1823     }
1824
1825   g_free (allocations);
1826   g_free (new_states);
1827 }
1828
1829 static void
1830 gtk_toolbar_update_button_relief (GtkToolbar *toolbar)
1831 {
1832   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1833   
1834   gtk_toolbar_reconfigured (toolbar);
1835   
1836   gtk_button_set_relief (GTK_BUTTON (priv->arrow_button), get_button_relief (toolbar));
1837 }
1838
1839 static void
1840 gtk_toolbar_style_set (GtkWidget *widget,
1841                        GtkStyle  *prev_style)
1842 {
1843   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
1844   
1845   priv->max_homogeneous_pixels = -1;
1846   
1847   if (GTK_WIDGET_REALIZED (widget))
1848     gtk_style_set_background (widget->style, widget->window, widget->state);
1849   
1850   if (prev_style)
1851     gtk_toolbar_update_button_relief (GTK_TOOLBAR (widget));
1852 }
1853
1854 static GList *
1855 gtk_toolbar_list_children_in_focus_order (GtkToolbar       *toolbar,
1856                                           GtkDirectionType  dir)
1857 {
1858   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
1859   GList *result = NULL;
1860   GList *list;
1861   gboolean rtl;
1862   
1863   /* generate list of children in reverse logical order */
1864   
1865   for (list = priv->content; list != NULL; list = list->next)
1866     {
1867       ToolbarContent *content = list->data;
1868       GtkWidget *widget;
1869       
1870       widget = toolbar_content_get_widget (content);
1871       
1872       if (widget)
1873         result = g_list_prepend (result, widget);
1874     }
1875   
1876   result = g_list_prepend (result, priv->arrow_button);
1877   
1878   rtl = (gtk_widget_get_direction (GTK_WIDGET (toolbar)) == GTK_TEXT_DIR_RTL);
1879   
1880   /* move in logical order when
1881    *
1882    *    - dir is TAB_FORWARD
1883    *
1884    *    - in RTL mode and moving left or up
1885    *
1886    *    - in LTR mode and moving right or down
1887    */
1888   if (dir == GTK_DIR_TAB_FORWARD                                        ||
1889       (rtl  && (dir == GTK_DIR_UP   || dir == GTK_DIR_LEFT))            ||
1890       (!rtl && (dir == GTK_DIR_DOWN || dir == GTK_DIR_RIGHT)))
1891     {
1892       result = g_list_reverse (result);
1893     }
1894   
1895   return result;
1896 }
1897
1898 static gboolean
1899 gtk_toolbar_focus_home_or_end (GtkToolbar *toolbar,
1900                                gboolean    focus_home)
1901 {
1902   GList *children, *list;
1903   GtkDirectionType dir = focus_home? GTK_DIR_RIGHT : GTK_DIR_LEFT;
1904   
1905   children = gtk_toolbar_list_children_in_focus_order (toolbar, dir);
1906   
1907   if (gtk_widget_get_direction (GTK_WIDGET (toolbar)) == GTK_TEXT_DIR_RTL)
1908     {
1909       children = g_list_reverse (children);
1910       
1911       dir = (dir == GTK_DIR_RIGHT)? GTK_DIR_LEFT : GTK_DIR_RIGHT;
1912     }
1913   
1914   for (list = children; list != NULL; list = list->next)
1915     {
1916       GtkWidget *child = list->data;
1917       
1918       if (GTK_CONTAINER (toolbar)->focus_child == child)
1919         break;
1920       
1921       if (GTK_WIDGET_MAPPED (child) && gtk_widget_child_focus (child, dir))
1922         break;
1923     }
1924   
1925   g_list_free (children);
1926   
1927   return TRUE;
1928 }   
1929
1930 /* Keybinding handler. This function is called when the user presses
1931  * Ctrl TAB or an arrow key.
1932  */
1933 static gboolean
1934 gtk_toolbar_move_focus (GtkToolbar       *toolbar,
1935                         GtkDirectionType  dir)
1936 {
1937   GList *list;
1938   gboolean try_focus = FALSE;
1939   GList *children;
1940   GtkContainer *container = GTK_CONTAINER (toolbar);
1941   
1942   if (container->focus_child &&
1943       gtk_widget_child_focus (container->focus_child, dir))
1944     {
1945       return TRUE;
1946     }
1947   
1948   children = gtk_toolbar_list_children_in_focus_order (toolbar, dir);
1949   
1950   for (list = children; list != NULL; list = list->next)
1951     {
1952       GtkWidget *child = list->data;
1953       
1954       if (try_focus && GTK_WIDGET_MAPPED (child) && gtk_widget_child_focus (child, dir))
1955         break;
1956       
1957       if (child == GTK_CONTAINER (toolbar)->focus_child)
1958         try_focus = TRUE;
1959     }
1960   
1961   g_list_free (children);
1962   
1963   return FALSE;
1964 }
1965
1966 /* The focus handler for the toolbar. It called when the user presses
1967  * TAB or otherwise tries to focus the toolbar.
1968  */
1969 static gboolean
1970 gtk_toolbar_focus (GtkWidget        *widget,
1971                    GtkDirectionType  dir)
1972 {
1973   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
1974   GList *children, *list;
1975   gboolean result = FALSE;
1976
1977   /* if focus is already somewhere inside the toolbar then return FALSE.
1978    * The only way focus can stay inside the toolbar is when the user presses
1979    * arrow keys or Ctrl TAB (both of which are handled by the
1980    * gtk_toolbar_move_focus() keybinding function.
1981    */
1982   if (GTK_CONTAINER (widget)->focus_child)
1983     return FALSE;
1984
1985   children = gtk_toolbar_list_children_in_focus_order (toolbar, dir);
1986
1987   for (list = children; list != NULL; list = list->next)
1988     {
1989       GtkWidget *child = list->data;
1990       
1991       if (GTK_WIDGET_MAPPED (child) && gtk_widget_child_focus (child, dir))
1992         {
1993           result = TRUE;
1994           break;
1995         }
1996     }
1997
1998   g_list_free (children);
1999
2000   return result;
2001 }
2002
2003 static GtkSettings *
2004 toolbar_get_settings (GtkToolbar *toolbar)
2005 {
2006   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2007   return priv->settings;
2008 }
2009
2010 static void
2011 style_change_notify (GtkToolbar *toolbar)
2012 {
2013   if (!toolbar->style_set)
2014     {
2015       /* pretend it was set, then unset, thus reverting to new default */
2016       toolbar->style_set = TRUE;
2017       gtk_toolbar_unset_style (toolbar);
2018     }
2019 }
2020
2021 static void
2022 icon_size_change_notify (GtkToolbar *toolbar)
2023 {
2024   if (!toolbar->icon_size_set)
2025     {
2026       /* pretend it was set, then unset, thus reverting to new default */
2027       toolbar->icon_size_set = TRUE;
2028       gtk_toolbar_unset_icon_size (toolbar);
2029     }
2030 }
2031
2032 static void
2033 animation_change_notify (GtkToolbar *toolbar)
2034 {
2035   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2036   GtkSettings *settings = toolbar_get_settings (toolbar);
2037   gboolean animation;
2038
2039   if (settings)
2040     g_object_get (settings,
2041                   "gtk-enable-animations", &animation,
2042                   NULL);
2043   else
2044     animation = DEFAULT_ANIMATION_STATE;
2045
2046   priv->animation = animation;
2047 }
2048
2049 static void
2050 settings_change_notify (GtkSettings      *settings,
2051                         const GParamSpec *pspec,
2052                         GtkToolbar       *toolbar)
2053 {
2054   if (! strcmp (pspec->name, "gtk-toolbar-style"))
2055     style_change_notify (toolbar);
2056   else if (! strcmp (pspec->name, "gtk-toolbar-icon-size"))
2057     icon_size_change_notify (toolbar);
2058   else if (! strcmp (pspec->name, "gtk-enable-animations"))
2059     animation_change_notify (toolbar);
2060 }
2061
2062 static void
2063 gtk_toolbar_screen_changed (GtkWidget *widget,
2064                             GdkScreen *previous_screen)
2065 {
2066   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
2067   GtkToolbar *toolbar = GTK_TOOLBAR (widget);
2068   GtkSettings *old_settings = toolbar_get_settings (toolbar);
2069   GtkSettings *settings;
2070   
2071   if (gtk_widget_has_screen (GTK_WIDGET (toolbar)))
2072     settings = gtk_widget_get_settings (GTK_WIDGET (toolbar));
2073   else
2074     settings = NULL;
2075   
2076   if (settings == old_settings)
2077     return;
2078   
2079   if (old_settings)
2080     {
2081       g_signal_handler_disconnect (old_settings, priv->settings_connection);
2082
2083       g_object_unref (old_settings);
2084     }
2085
2086   if (settings)
2087     {
2088       priv->settings_connection =
2089         g_signal_connect (settings, "notify",
2090                           G_CALLBACK (settings_change_notify),
2091                           toolbar);
2092
2093       priv->settings = g_object_ref (settings);
2094     }
2095   else
2096     priv->settings = NULL;
2097
2098   style_change_notify (toolbar);
2099   icon_size_change_notify (toolbar);
2100   animation_change_notify (toolbar);
2101 }
2102
2103 static int
2104 find_drop_index (GtkToolbar *toolbar,
2105                  gint        x,
2106                  gint        y)
2107 {
2108   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2109   GList *interesting_content;
2110   GList *list;
2111   GtkOrientation orientation;
2112   GtkTextDirection direction;
2113   gint best_distance = G_MAXINT;
2114   gint distance;
2115   gint cursor;
2116   gint pos;
2117   ToolbarContent *best_content;
2118   GtkAllocation allocation;
2119   
2120   /* list items we care about wrt. drag and drop */
2121   interesting_content = NULL;
2122   for (list = priv->content; list != NULL; list = list->next)
2123     {
2124       ToolbarContent *content = list->data;
2125       
2126       if (toolbar_content_get_state (content) == NORMAL)
2127         interesting_content = g_list_prepend (interesting_content, content);
2128     }
2129   interesting_content = g_list_reverse (interesting_content);
2130   
2131   if (!interesting_content)
2132     return 0;
2133   
2134   orientation = toolbar->orientation;
2135   direction = gtk_widget_get_direction (GTK_WIDGET (toolbar));
2136   
2137   /* distance to first interesting item */
2138   best_content = interesting_content->data;
2139   toolbar_content_get_allocation (best_content, &allocation);
2140   
2141   if (orientation == GTK_ORIENTATION_HORIZONTAL)
2142     {
2143       cursor = x;
2144       
2145       if (direction == GTK_TEXT_DIR_LTR)
2146         pos = allocation.x;
2147       else
2148         pos = allocation.x + allocation.width;
2149     }
2150   else
2151     {
2152       cursor = y;
2153       pos = allocation.y;
2154     }
2155   
2156   best_content = NULL;
2157   best_distance = ABS (pos - cursor);
2158   
2159   /* distance to far end of each item */
2160   for (list = interesting_content; list != NULL; list = list->next)
2161     {
2162       ToolbarContent *content = list->data;
2163       
2164       toolbar_content_get_allocation (content, &allocation);
2165       
2166       if (orientation == GTK_ORIENTATION_HORIZONTAL)
2167         {
2168           if (direction == GTK_TEXT_DIR_LTR)
2169             pos = allocation.x + allocation.width;
2170           else
2171             pos = allocation.x;
2172         }
2173       else
2174         {
2175           pos = allocation.y + allocation.height;
2176         }
2177       
2178       distance = ABS (pos - cursor);
2179       
2180       if (distance < best_distance)
2181         {
2182           best_distance = distance;
2183           best_content = content;
2184         }
2185     }
2186   
2187   g_list_free (interesting_content);
2188   
2189   if (!best_content)
2190     return 0;
2191   else
2192     return g_list_index (priv->content, best_content) + 1;
2193 }
2194
2195 static void
2196 reset_all_placeholders (GtkToolbar *toolbar)
2197 {
2198   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2199   GList *list;
2200   
2201   for (list = priv->content; list != NULL; list = list->next)
2202     {
2203       ToolbarContent *content = list->data;
2204       if (toolbar_content_is_placeholder (content))
2205         toolbar_content_set_disappearing (content, TRUE);
2206     }
2207 }
2208
2209 static gint
2210 physical_to_logical (GtkToolbar *toolbar,
2211                      gint        physical)
2212 {
2213   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2214   GList *list;
2215   int logical;
2216   
2217   g_assert (physical >= 0);
2218   
2219   logical = 0;
2220   for (list = priv->content; list && physical > 0; list = list->next)
2221     {
2222       ToolbarContent *content = list->data;
2223       
2224       if (!toolbar_content_is_placeholder (content))
2225         logical++;
2226       physical--;
2227     }
2228   
2229   g_assert (physical == 0);
2230   
2231   return logical;
2232 }
2233
2234 static gint
2235 logical_to_physical (GtkToolbar *toolbar,
2236                      gint        logical)
2237 {
2238   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2239   GList *list;
2240   gint physical;
2241   
2242   g_assert (logical >= 0);
2243   
2244   physical = 0;
2245   for (list = priv->content; list; list = list->next)
2246     {
2247       ToolbarContent *content = list->data;
2248       
2249       if (!toolbar_content_is_placeholder (content))
2250         {
2251           if (logical == 0)
2252             break;
2253           logical--;
2254         }
2255       
2256       physical++;
2257     }
2258   
2259   g_assert (logical == 0);
2260   
2261   return physical;
2262 }
2263
2264 /**
2265  * gtk_toolbar_set_drop_highlight_item:
2266  * @toolbar: a #GtkToolbar
2267  * @tool_item: a #GtkToolItem, or %NULL to turn of highlighting
2268  * @index_: a position on @toolbar
2269  * 
2270  * Highlights @toolbar to give an idea of what it would look like
2271  * if @item was added to @toolbar at the position indicated by @index_. 
2272  * If @item is %NULL, highlighting is turned off. In that case @index_ 
2273  * is ignored.
2274  *
2275  * The @tool_item passed to this function must not be part of any widget
2276  * hierarchy. When an item is set as drop highlight item it can not
2277  * added to any widget hierarchy or used as highlight item for another
2278  * toolbar.
2279  * 
2280  * Since: 2.4
2281  **/
2282 void
2283 gtk_toolbar_set_drop_highlight_item (GtkToolbar  *toolbar,
2284                                      GtkToolItem *tool_item,
2285                                      gint         index_)
2286 {
2287   ToolbarContent *content;
2288   GtkToolbarPrivate *priv;
2289   gint n_items;
2290   GtkRequisition requisition;
2291   GtkRequisition old_requisition;
2292   gboolean restart_sliding;
2293   
2294   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2295   g_return_if_fail (tool_item == NULL || GTK_IS_TOOL_ITEM (tool_item));
2296   
2297   gtk_toolbar_check_new_api (toolbar);
2298   
2299   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2300   
2301   if (!tool_item)
2302     {
2303       if (priv->highlight_tool_item)
2304         {
2305           gtk_widget_unparent (GTK_WIDGET (priv->highlight_tool_item));
2306           g_object_unref (priv->highlight_tool_item);
2307           priv->highlight_tool_item = NULL;
2308         }
2309       
2310       reset_all_placeholders (toolbar);
2311       gtk_toolbar_begin_sliding (toolbar);
2312       return;
2313     }
2314   
2315   n_items = gtk_toolbar_get_n_items (toolbar);
2316   if (index_ < 0 || index_ > n_items)
2317     index_ = n_items;
2318   
2319   if (tool_item != priv->highlight_tool_item)
2320     {
2321       if (priv->highlight_tool_item)
2322         g_object_unref (priv->highlight_tool_item);
2323       
2324       g_object_ref_sink (tool_item);
2325       
2326       priv->highlight_tool_item = tool_item;
2327       
2328       gtk_widget_set_parent (GTK_WIDGET (priv->highlight_tool_item),
2329                              GTK_WIDGET (toolbar));
2330     }
2331   
2332   index_ = logical_to_physical (toolbar, index_);
2333   
2334   content = g_list_nth_data (priv->content, index_);
2335   
2336   if (index_ > 0)
2337     {
2338       ToolbarContent *prev_content;
2339       
2340       prev_content = g_list_nth_data (priv->content, index_ - 1);
2341       
2342       if (prev_content && toolbar_content_is_placeholder (prev_content))
2343         content = prev_content;
2344     }
2345   
2346   if (!content || !toolbar_content_is_placeholder (content))
2347     {
2348       GtkWidget *placeholder;
2349       
2350       placeholder = GTK_WIDGET (gtk_separator_tool_item_new ());
2351
2352       content = toolbar_content_new_tool_item (toolbar,
2353                                                GTK_TOOL_ITEM (placeholder),
2354                                                TRUE, index_);
2355       gtk_widget_show (placeholder);
2356     }
2357   
2358   g_assert (content);
2359   g_assert (toolbar_content_is_placeholder (content));
2360   
2361   gtk_widget_size_request (GTK_WIDGET (priv->highlight_tool_item),
2362                            &requisition);
2363
2364   toolbar_content_set_expand (content, gtk_tool_item_get_expand (tool_item));
2365   
2366   restart_sliding = FALSE;
2367   toolbar_content_size_request (content, toolbar, &old_requisition);
2368   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
2369     {
2370       requisition.height = -1;
2371       if (requisition.width != old_requisition.width)
2372         restart_sliding = TRUE;
2373     }
2374   else
2375     {
2376       requisition.width = -1;
2377       if (requisition.height != old_requisition.height)
2378         restart_sliding = TRUE;
2379     }
2380
2381   if (toolbar_content_disappearing (content))
2382     restart_sliding = TRUE;
2383   
2384   reset_all_placeholders (toolbar);
2385   toolbar_content_set_disappearing (content, FALSE);
2386   
2387   toolbar_content_set_size_request (content,
2388                                     requisition.width, requisition.height);
2389   
2390   if (restart_sliding)
2391     gtk_toolbar_begin_sliding (toolbar);
2392 }
2393
2394 static void
2395 gtk_toolbar_get_child_property (GtkContainer *container,
2396                                 GtkWidget    *child,
2397                                 guint         property_id,
2398                                 GValue       *value,
2399                                 GParamSpec   *pspec)
2400 {
2401   GtkToolItem *item = GTK_TOOL_ITEM (child);
2402   
2403   switch (property_id)
2404     {
2405     case CHILD_PROP_HOMOGENEOUS:
2406       g_value_set_boolean (value, gtk_tool_item_get_homogeneous (item));
2407       break;
2408       
2409     case CHILD_PROP_EXPAND:
2410       g_value_set_boolean (value, gtk_tool_item_get_expand (item));
2411       break;
2412       
2413     default:
2414       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
2415       break;
2416     }
2417 }
2418
2419 static void
2420 gtk_toolbar_set_child_property (GtkContainer *container,
2421                                 GtkWidget    *child,
2422                                 guint         property_id,
2423                                 const GValue *value,
2424                                 GParamSpec   *pspec)
2425 {
2426   switch (property_id)
2427     {
2428     case CHILD_PROP_HOMOGENEOUS:
2429       gtk_tool_item_set_homogeneous (GTK_TOOL_ITEM (child), g_value_get_boolean (value));
2430       break;
2431       
2432     case CHILD_PROP_EXPAND:
2433       gtk_tool_item_set_expand (GTK_TOOL_ITEM (child), g_value_get_boolean (value));
2434       break;
2435       
2436     default:
2437       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
2438       break;
2439     }
2440 }
2441
2442 static void
2443 gtk_toolbar_show_all (GtkWidget *widget)
2444 {
2445   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
2446   GList *list;
2447
2448   for (list = priv->content; list != NULL; list = list->next)
2449     {
2450       ToolbarContent *content = list->data;
2451       
2452       toolbar_content_show_all (content);
2453     }
2454   
2455   gtk_widget_show (widget);
2456 }
2457
2458 static void
2459 gtk_toolbar_hide_all (GtkWidget *widget)
2460 {
2461   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (widget);
2462   GList *list;
2463
2464   for (list = priv->content; list != NULL; list = list->next)
2465     {
2466       ToolbarContent *content = list->data;
2467       
2468       toolbar_content_hide_all (content);
2469     }
2470
2471   gtk_widget_hide (widget);
2472 }
2473
2474 static void
2475 gtk_toolbar_add (GtkContainer *container,
2476                  GtkWidget    *widget)
2477 {
2478   GtkToolbar *toolbar;
2479   
2480   g_return_if_fail (GTK_IS_TOOLBAR (container));
2481   g_return_if_fail (widget != NULL);
2482   
2483   toolbar = GTK_TOOLBAR (container);
2484   
2485   if (GTK_IS_TOOL_ITEM (widget))
2486     gtk_toolbar_insert (toolbar, GTK_TOOL_ITEM (widget), -1);
2487   else
2488     gtk_toolbar_append_widget (toolbar, widget, NULL, NULL);
2489 }
2490
2491 static void
2492 gtk_toolbar_remove (GtkContainer *container,
2493                     GtkWidget    *widget)
2494 {
2495   GtkToolbar *toolbar;
2496   GtkToolbarPrivate *priv;
2497   ToolbarContent *content_to_remove;
2498   GList *list;
2499   
2500   g_return_if_fail (GTK_IS_TOOLBAR (container));
2501   g_return_if_fail (GTK_IS_WIDGET (widget));
2502   
2503   toolbar = GTK_TOOLBAR (container);
2504   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2505   
2506   content_to_remove = NULL;
2507   for (list = priv->content; list != NULL; list = list->next)
2508     {
2509       ToolbarContent *content = list->data;
2510       GtkWidget *child;
2511       
2512       child = toolbar_content_get_widget (content);
2513       if (child && child == widget)
2514         {
2515           content_to_remove = content;
2516           break;
2517         }
2518     }
2519   
2520   g_return_if_fail (content_to_remove != NULL);
2521   
2522   toolbar_content_remove (content_to_remove, toolbar);
2523   toolbar_content_free (content_to_remove);
2524 }
2525
2526 static void
2527 gtk_toolbar_forall (GtkContainer *container,
2528                     gboolean      include_internals,
2529                     GtkCallback   callback,
2530                     gpointer      callback_data)
2531 {
2532   GtkToolbar *toolbar = GTK_TOOLBAR (container);
2533   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2534   GList *list;
2535   
2536   g_return_if_fail (callback != NULL);
2537   
2538   list = priv->content;
2539   while (list)
2540     {
2541       ToolbarContent *content = list->data;
2542       GList *next = list->next;
2543       
2544       if (include_internals || !toolbar_content_is_placeholder (content))
2545         {
2546           GtkWidget *child = toolbar_content_get_widget (content);
2547           
2548           if (child)
2549             (*callback) (child, callback_data);
2550         }
2551       
2552       list = next;
2553     }
2554   
2555   if (include_internals)
2556     (* callback) (priv->arrow_button, callback_data);
2557 }
2558
2559 static GType
2560 gtk_toolbar_child_type (GtkContainer *container)
2561 {
2562   return GTK_TYPE_TOOL_ITEM;
2563 }
2564
2565 static void
2566 gtk_toolbar_reconfigured (GtkToolbar *toolbar)
2567 {
2568   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2569   GList *list;
2570   
2571   list = priv->content;
2572   while (list)
2573     {
2574       ToolbarContent *content = list->data;
2575       GList *next = list->next;
2576       
2577       toolbar_content_toolbar_reconfigured (content, toolbar);
2578       
2579       list = next;
2580     }
2581 }
2582
2583 static void
2584 gtk_toolbar_orientation_changed (GtkToolbar    *toolbar,
2585                                  GtkOrientation orientation)
2586 {
2587   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2588   if (toolbar->orientation != orientation)
2589     {
2590       toolbar->orientation = orientation;
2591       
2592       if (orientation == GTK_ORIENTATION_HORIZONTAL)
2593         gtk_arrow_set (GTK_ARROW (priv->arrow), GTK_ARROW_DOWN, GTK_SHADOW_NONE);
2594       else
2595         gtk_arrow_set (GTK_ARROW (priv->arrow), GTK_ARROW_RIGHT, GTK_SHADOW_NONE);
2596       
2597       gtk_toolbar_reconfigured (toolbar);
2598       
2599       gtk_widget_queue_resize (GTK_WIDGET (toolbar));
2600       g_object_notify (G_OBJECT (toolbar), "orientation");
2601     }
2602 }
2603
2604 static void
2605 gtk_toolbar_real_style_changed (GtkToolbar     *toolbar,
2606                                 GtkToolbarStyle style)
2607 {
2608   if (toolbar->style != style)
2609     {
2610       toolbar->style = style;
2611       
2612       gtk_toolbar_reconfigured (toolbar);
2613       
2614       gtk_widget_queue_resize (GTK_WIDGET (toolbar));
2615       g_object_notify (G_OBJECT (toolbar), "toolbar-style");
2616     }
2617 }
2618
2619 static void
2620 menu_position_func (GtkMenu  *menu,
2621                     gint     *x,
2622                     gint     *y,
2623                     gboolean *push_in,
2624                     gpointer  user_data)
2625 {
2626   GtkToolbar *toolbar = GTK_TOOLBAR (user_data);
2627   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2628   GtkRequisition req;
2629   GtkRequisition menu_req;
2630   GdkRectangle monitor;
2631   gint monitor_num;
2632   GdkScreen *screen;
2633   
2634   gtk_widget_size_request (priv->arrow_button, &req);
2635   gtk_widget_size_request (GTK_WIDGET (menu), &menu_req);
2636   
2637   screen = gtk_widget_get_screen (GTK_WIDGET (menu));
2638   monitor_num = gdk_screen_get_monitor_at_window (screen, priv->arrow_button->window);
2639   if (monitor_num < 0)
2640     monitor_num = 0;
2641   gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
2642
2643   gdk_window_get_origin (GTK_BUTTON (priv->arrow_button)->event_window, x, y);
2644   if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
2645     {
2646       if (gtk_widget_get_direction (GTK_WIDGET (toolbar)) == GTK_TEXT_DIR_LTR) 
2647         *x += priv->arrow_button->allocation.width - req.width;
2648       else 
2649         *x += req.width - menu_req.width;
2650
2651       if ((*y + priv->arrow_button->allocation.height + menu_req.height) <= monitor.y + monitor.height)
2652         *y += priv->arrow_button->allocation.height;
2653       else if ((*y - menu_req.height) >= monitor.y)
2654         *y -= menu_req.height;
2655       else if (monitor.y + monitor.height - (*y + priv->arrow_button->allocation.height) > *y)
2656         *y += priv->arrow_button->allocation.height;
2657       else
2658         *y -= menu_req.height;
2659     }
2660   else 
2661     {
2662       if (gtk_widget_get_direction (GTK_WIDGET (toolbar)) == GTK_TEXT_DIR_LTR) 
2663         *x += priv->arrow_button->allocation.width;
2664       else 
2665         *x -= menu_req.width;
2666
2667       if (*y + menu_req.height > monitor.y + monitor.height &&
2668           *y + priv->arrow_button->allocation.height - monitor.y > monitor.y + monitor.height - *y)
2669         *y += priv->arrow_button->allocation.height - menu_req.height;
2670     }
2671
2672   *push_in = FALSE;
2673 }
2674
2675 static void
2676 show_menu (GtkToolbar     *toolbar,
2677            GdkEventButton *event)
2678 {
2679   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2680
2681   rebuild_menu (toolbar);
2682
2683   gtk_widget_show_all (GTK_WIDGET (priv->menu));
2684
2685   gtk_menu_popup (priv->menu, NULL, NULL,
2686                   menu_position_func, toolbar,
2687                   event? event->button : 0,
2688                   event? event->time : gtk_get_current_event_time());
2689 }
2690
2691 static void
2692 gtk_toolbar_arrow_button_clicked (GtkWidget  *button,
2693                                   GtkToolbar *toolbar)
2694 {
2695   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);  
2696   
2697   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->arrow_button)) &&
2698       (!priv->menu || !GTK_WIDGET_VISIBLE (priv->menu)))
2699     {
2700       /* We only get here when the button is clicked with the keyboard,
2701        * because mouse button presses result in the menu being shown so
2702        * that priv->menu would be non-NULL and visible.
2703        */
2704       show_menu (toolbar, NULL);
2705       gtk_menu_shell_select_first (GTK_MENU_SHELL (priv->menu), FALSE);
2706     }
2707 }
2708
2709 static gboolean
2710 gtk_toolbar_arrow_button_press (GtkWidget      *button,
2711                                 GdkEventButton *event,
2712                                 GtkToolbar     *toolbar)
2713 {
2714   show_menu (toolbar, event);
2715   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
2716   
2717   return TRUE;
2718 }
2719
2720 static gboolean
2721 gtk_toolbar_button_press (GtkWidget      *toolbar,
2722                           GdkEventButton *event)
2723 {
2724   if (event->button == 3)
2725     {
2726       gboolean return_value;
2727       
2728       g_signal_emit (toolbar, toolbar_signals[POPUP_CONTEXT_MENU], 0,
2729                      (int)event->x_root, (int)event->y_root, event->button,
2730                      &return_value);
2731       
2732       return return_value;
2733     }
2734   
2735   return FALSE;
2736 }
2737
2738 static gboolean
2739 gtk_toolbar_popup_menu (GtkWidget *toolbar)
2740 {
2741   gboolean return_value;
2742   /* This function is the handler for the "popup menu" keybinding,
2743    * ie., it is called when the user presses Shift F10
2744    */
2745   g_signal_emit (toolbar, toolbar_signals[POPUP_CONTEXT_MENU], 0,
2746                  -1, -1, -1, &return_value);
2747   
2748   return return_value;
2749 }
2750
2751 /**
2752  * gtk_toolbar_new:
2753  * 
2754  * Creates a new toolbar. 
2755  
2756  * Return Value: the newly-created toolbar.
2757  **/
2758 GtkWidget *
2759 gtk_toolbar_new (void)
2760 {
2761   GtkToolbar *toolbar;
2762   
2763   toolbar = g_object_new (GTK_TYPE_TOOLBAR, NULL);
2764   
2765   return GTK_WIDGET (toolbar);
2766 }
2767
2768 /**
2769  * gtk_toolbar_insert:
2770  * @toolbar: a #GtkToolbar
2771  * @item: a #GtkToolItem
2772  * @pos: the position of the new item
2773  *
2774  * Insert a #GtkToolItem into the toolbar at position @pos. If @pos is
2775  * 0 the item is prepended to the start of the toolbar. If @pos is
2776  * negative, the item is appended to the end of the toolbar.
2777  *
2778  * Since: 2.4
2779  **/
2780 void
2781 gtk_toolbar_insert (GtkToolbar  *toolbar,
2782                     GtkToolItem *item,
2783                     gint         pos)
2784 {
2785   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2786   g_return_if_fail (GTK_IS_TOOL_ITEM (item));
2787   
2788   if (!gtk_toolbar_check_new_api (toolbar))
2789     return;
2790   
2791   if (pos >= 0)
2792     pos = logical_to_physical (toolbar, pos);
2793
2794   toolbar_content_new_tool_item (toolbar, item, FALSE, pos);
2795 }
2796
2797 /**
2798  * gtk_toolbar_get_item_index:
2799  * @toolbar: a #GtkToolbar
2800  * @item: a #GtkToolItem that is a child of @toolbar
2801  * 
2802  * Returns the position of @item on the toolbar, starting from 0.
2803  * It is an error if @item is not a child of the toolbar.
2804  * 
2805  * Return value: the position of item on the toolbar.
2806  * 
2807  * Since: 2.4
2808  **/
2809 gint
2810 gtk_toolbar_get_item_index (GtkToolbar  *toolbar,
2811                             GtkToolItem *item)
2812 {
2813   GtkToolbarPrivate *priv;
2814   GList *list;
2815   int n;
2816   
2817   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), -1);
2818   g_return_val_if_fail (GTK_IS_TOOL_ITEM (item), -1);
2819   g_return_val_if_fail (GTK_WIDGET (item)->parent == GTK_WIDGET (toolbar), -1);
2820   
2821   if (!gtk_toolbar_check_new_api (toolbar))
2822     return -1;
2823   
2824   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
2825   
2826   n = 0;
2827   for (list = priv->content; list != NULL; list = list->next)
2828     {
2829       ToolbarContent *content = list->data;
2830       GtkWidget *widget;
2831       
2832       widget = toolbar_content_get_widget (content);
2833       
2834       if (item == GTK_TOOL_ITEM (widget))
2835         break;
2836       
2837       ++n;
2838     }
2839   
2840   return physical_to_logical (toolbar, n);
2841 }
2842
2843 /**
2844  * gtk_toolbar_set_orientation:
2845  * @toolbar: a #GtkToolbar.
2846  * @orientation: a new #GtkOrientation.
2847  * 
2848  * Sets whether a toolbar should appear horizontally or vertically.
2849  **/
2850 void
2851 gtk_toolbar_set_orientation (GtkToolbar     *toolbar,
2852                              GtkOrientation  orientation)
2853 {
2854   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2855   
2856   g_signal_emit (toolbar, toolbar_signals[ORIENTATION_CHANGED], 0, orientation);
2857 }
2858
2859 /**
2860  * gtk_toolbar_get_orientation:
2861  * @toolbar: a #GtkToolbar
2862  * 
2863  * Retrieves the current orientation of the toolbar. See
2864  * gtk_toolbar_set_orientation().
2865  *
2866  * Return value: the orientation
2867  **/
2868 GtkOrientation
2869 gtk_toolbar_get_orientation (GtkToolbar *toolbar)
2870 {
2871   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), GTK_ORIENTATION_HORIZONTAL);
2872   
2873   return toolbar->orientation;
2874 }
2875
2876 /**
2877  * gtk_toolbar_set_style:
2878  * @toolbar: a #GtkToolbar.
2879  * @style: the new style for @toolbar.
2880  * 
2881  * Alters the view of @toolbar to display either icons only, text only, or both.
2882  **/
2883 void
2884 gtk_toolbar_set_style (GtkToolbar      *toolbar,
2885                        GtkToolbarStyle  style)
2886 {
2887   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2888   
2889   toolbar->style_set = TRUE;  
2890   g_signal_emit (toolbar, toolbar_signals[STYLE_CHANGED], 0, style);
2891 }
2892
2893 /**
2894  * gtk_toolbar_get_style:
2895  * @toolbar: a #GtkToolbar
2896  *
2897  * Retrieves whether the toolbar has text, icons, or both . See
2898  * gtk_toolbar_set_style().
2899  
2900  * Return value: the current style of @toolbar
2901  **/
2902 GtkToolbarStyle
2903 gtk_toolbar_get_style (GtkToolbar *toolbar)
2904 {
2905   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), DEFAULT_TOOLBAR_STYLE);
2906   
2907   return toolbar->style;
2908 }
2909
2910 /**
2911  * gtk_toolbar_unset_style:
2912  * @toolbar: a #GtkToolbar
2913  * 
2914  * Unsets a toolbar style set with gtk_toolbar_set_style(), so that
2915  * user preferences will be used to determine the toolbar style.
2916  **/
2917 void
2918 gtk_toolbar_unset_style (GtkToolbar *toolbar)
2919 {
2920   GtkToolbarStyle style;
2921   
2922   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2923   
2924   if (toolbar->style_set)
2925     {
2926       GtkSettings *settings = toolbar_get_settings (toolbar);
2927       
2928       if (settings)
2929         g_object_get (settings,
2930                       "gtk-toolbar-style", &style,
2931                       NULL);
2932       else
2933         style = DEFAULT_TOOLBAR_STYLE;
2934       
2935       if (style != toolbar->style)
2936         g_signal_emit (toolbar, toolbar_signals[STYLE_CHANGED], 0, style);
2937       
2938       toolbar->style_set = FALSE;
2939     }
2940 }
2941
2942 /**
2943  * gtk_toolbar_set_tooltips:
2944  * @toolbar: a #GtkToolbar.
2945  * @enable: set to %FALSE to disable the tooltips, or %TRUE to enable them.
2946  * 
2947  * Sets if the tooltips of a toolbar should be active or not.
2948  **/
2949 void
2950 gtk_toolbar_set_tooltips (GtkToolbar *toolbar,
2951                           gboolean    enable)
2952 {
2953   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
2954   
2955   if (enable)
2956     gtk_tooltips_enable (toolbar->tooltips);
2957   else
2958     gtk_tooltips_disable (toolbar->tooltips);
2959
2960   g_object_notify (G_OBJECT (toolbar), "tooltips");
2961 }
2962
2963 /**
2964  * gtk_toolbar_get_tooltips:
2965  * @toolbar: a #GtkToolbar
2966  *
2967  * Retrieves whether tooltips are enabled. See
2968  * gtk_toolbar_set_tooltips().
2969  *
2970  * Return value: %TRUE if tooltips are enabled
2971  **/
2972 gboolean
2973 gtk_toolbar_get_tooltips (GtkToolbar *toolbar)
2974 {
2975   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), FALSE);
2976   
2977   return toolbar->tooltips->enabled;
2978 }
2979
2980 /**
2981  * gtk_toolbar_get_n_items:
2982  * @toolbar: a #GtkToolbar
2983  * 
2984  * Returns the number of items on the toolbar.
2985  * 
2986  * Return value: the number of items on the toolbar
2987  * 
2988  * Since: 2.4
2989  **/
2990 gint
2991 gtk_toolbar_get_n_items (GtkToolbar *toolbar)
2992 {
2993   GtkToolbarPrivate *priv;
2994   
2995   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), -1);
2996   
2997   if (!gtk_toolbar_check_new_api (toolbar))
2998     return -1;
2999   
3000   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3001   
3002   return physical_to_logical (toolbar, g_list_length (priv->content));
3003 }
3004
3005 /**
3006  * gtk_toolbar_get_nth_item:
3007  * @toolbar: a #GtkToolbar
3008  * @n: A position on the toolbar
3009  *
3010  * Returns the @n<!-- -->'th item on @toolbar, or %NULL if the
3011  * toolbar does not contain an @n<!-- -->'th item.
3012  * 
3013  * Return value: The @n<!-- -->'th #GtkToolItem on @toolbar, or %NULL if there
3014  * isn't an @n<!-- -->'th item.
3015  * 
3016  * Since: 2.4
3017  **/
3018 GtkToolItem *
3019 gtk_toolbar_get_nth_item (GtkToolbar *toolbar,
3020                           gint        n)
3021 {
3022   GtkToolbarPrivate *priv;
3023   ToolbarContent *content;
3024   gint n_items;
3025   
3026   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), NULL);
3027   
3028   if (!gtk_toolbar_check_new_api (toolbar))
3029     return NULL;
3030   
3031   n_items = gtk_toolbar_get_n_items (toolbar);
3032   
3033   if (n < 0 || n >= n_items)
3034     return NULL;
3035   
3036   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3037   
3038   content = g_list_nth_data (priv->content, logical_to_physical (toolbar, n));
3039   
3040   g_assert (content);
3041   g_assert (!toolbar_content_is_placeholder (content));
3042   
3043   return GTK_TOOL_ITEM (toolbar_content_get_widget (content));
3044 }
3045
3046 /**
3047  * gtk_toolbar_get_icon_size:
3048  * @toolbar: a #GtkToolbar
3049  *
3050  * Retrieves the icon size for the toolbar. See gtk_toolbar_set_icon_size().
3051  *
3052  * Return value: the current icon size for the icons on the toolbar.
3053  **/
3054 GtkIconSize
3055 gtk_toolbar_get_icon_size (GtkToolbar *toolbar)
3056 {
3057   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), DEFAULT_ICON_SIZE);
3058   
3059   return toolbar->icon_size;
3060 }
3061
3062 /**
3063  * gtk_toolbar_get_relief_style:
3064  * @toolbar: a #GtkToolbar
3065  * 
3066  * Returns the relief style of buttons on @toolbar. See
3067  * gtk_button_set_relief().
3068  * 
3069  * Return value: The relief style of buttons on @toolbar.
3070  * 
3071  * Since: 2.4
3072  **/
3073 GtkReliefStyle
3074 gtk_toolbar_get_relief_style (GtkToolbar *toolbar)
3075 {
3076   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), GTK_RELIEF_NONE);
3077   
3078   return get_button_relief (toolbar);
3079 }
3080
3081 /**
3082  * gtk_toolbar_set_show_arrow:
3083  * @toolbar: a #GtkToolbar
3084  * @show_arrow: Whether to show an overflow menu
3085  * 
3086  * Sets whether to show an overflow menu when
3087  * @toolbar doesn't have room for all items on it. If %TRUE,
3088  * items that there are not room are available through an
3089  * overflow menu.
3090  * 
3091  * Since: 2.4
3092  **/
3093 void
3094 gtk_toolbar_set_show_arrow (GtkToolbar *toolbar,
3095                             gboolean    show_arrow)
3096 {
3097   GtkToolbarPrivate *priv;
3098   
3099   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
3100   
3101   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3102   show_arrow = show_arrow != FALSE;
3103   
3104   if (priv->show_arrow != show_arrow)
3105     {
3106       priv->show_arrow = show_arrow;
3107       
3108       if (!priv->show_arrow)
3109         gtk_widget_hide (priv->arrow_button);
3110       
3111       gtk_widget_queue_resize (GTK_WIDGET (toolbar));      
3112       g_object_notify (G_OBJECT (toolbar), "show-arrow");
3113     }
3114 }
3115
3116 /**
3117  * gtk_toolbar_get_show_arrow:
3118  * @toolbar: a #GtkToolbar
3119  * 
3120  * Returns whether the toolbar has an overflow menu.
3121  * See gtk_toolbar_set_show_arrow().
3122  * 
3123  * Return value: %TRUE if the toolbar has an overflow menu.
3124  * 
3125  * Since: 2.4
3126  **/
3127 gboolean
3128 gtk_toolbar_get_show_arrow (GtkToolbar *toolbar)
3129 {
3130   GtkToolbarPrivate *priv;
3131   
3132   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), FALSE);
3133   
3134   if (!gtk_toolbar_check_new_api (toolbar))
3135     return FALSE;
3136   
3137   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3138   
3139   return priv->show_arrow;
3140 }
3141
3142 /**
3143  * gtk_toolbar_get_drop_index:
3144  * @toolbar: a #GtkToolbar
3145  * @x: x coordinate of a point on the toolbar
3146  * @y: y coordinate of a point on the toolbar
3147  *
3148  * Returns the position corresponding to the indicated point on
3149  * @toolbar. This is useful when dragging items to the toolbar:
3150  * this function returns the position a new item should be
3151  * inserted.
3152  *
3153  * @x and @y are in @toolbar coordinates.
3154  * 
3155  * Return value: The position corresponding to the point (@x, @y) on the toolbar.
3156  * 
3157  * Since: 2.4
3158  **/
3159 gint
3160 gtk_toolbar_get_drop_index (GtkToolbar *toolbar,
3161                             gint        x,
3162                             gint        y)
3163 {
3164   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), -1);
3165   
3166   if (!gtk_toolbar_check_new_api (toolbar))
3167     return -1;
3168   
3169   return physical_to_logical (toolbar, find_drop_index (toolbar, x, y));
3170 }
3171
3172 static void
3173 gtk_toolbar_finalize (GObject *object)
3174 {
3175   GList *list;
3176   GtkToolbar *toolbar = GTK_TOOLBAR (object);
3177   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3178   
3179   if (toolbar->tooltips)
3180     g_object_unref (toolbar->tooltips);
3181   
3182   if (priv->arrow_button)
3183     gtk_widget_unparent (priv->arrow_button);
3184
3185   for (list = priv->content; list != NULL; list = list->next)
3186     {
3187       ToolbarContent *content = list->data;
3188
3189       toolbar_content_free (content);
3190     }
3191   
3192   g_list_free (priv->content);
3193   g_list_free (toolbar->children);
3194   
3195   g_timer_destroy (priv->timer);
3196   
3197   if (priv->menu)
3198     gtk_widget_destroy (GTK_WIDGET (priv->menu));
3199   
3200   if (priv->idle_id)
3201     g_source_remove (priv->idle_id);
3202
3203   G_OBJECT_CLASS (parent_class)->finalize (object);
3204 }
3205
3206 /**
3207  * gtk_toolbar_set_icon_size:
3208  * @toolbar: A #GtkToolbar
3209  * @icon_size: The #GtkIconSize that stock icons in the toolbar shall have.
3210  *
3211  * This function sets the size of stock icons in the toolbar. You
3212  * can call it both before you add the icons and after they've been
3213  * added. The size you set will override user preferences for the default
3214  * icon size.
3215  * 
3216  * This should only be used for special-purpose toolbars, normal
3217  * application toolbars should respect the user preferences for the
3218  * size of icons.
3219  **/
3220 void
3221 gtk_toolbar_set_icon_size (GtkToolbar  *toolbar,
3222                            GtkIconSize  icon_size)
3223 {
3224   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
3225   g_return_if_fail (icon_size != GTK_ICON_SIZE_INVALID);
3226   
3227   if (!toolbar->icon_size_set)
3228     {
3229       toolbar->icon_size_set = TRUE;  
3230       g_object_notify (G_OBJECT (toolbar), "icon-size-set");
3231     }
3232
3233   if (toolbar->icon_size == icon_size)
3234     return;
3235   
3236   toolbar->icon_size = icon_size;
3237   g_object_notify (G_OBJECT (toolbar), "icon-size");
3238   
3239   gtk_toolbar_reconfigured (toolbar);
3240   
3241   gtk_widget_queue_resize (GTK_WIDGET (toolbar));
3242 }
3243
3244 /**
3245  * gtk_toolbar_unset_icon_size:
3246  * @toolbar: a #GtkToolbar
3247  * 
3248  * Unsets toolbar icon size set with gtk_toolbar_set_icon_size(), so that
3249  * user preferences will be used to determine the icon size.
3250  **/
3251 void
3252 gtk_toolbar_unset_icon_size (GtkToolbar *toolbar)
3253 {
3254   GtkIconSize size;
3255   
3256   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
3257   
3258   if (toolbar->icon_size_set)
3259     {
3260       GtkSettings *settings = toolbar_get_settings (toolbar);
3261       
3262       if (settings)
3263         {
3264           g_object_get (settings,
3265                         "gtk-toolbar-icon-size", &size,
3266                         NULL);
3267         }
3268       else
3269         size = DEFAULT_ICON_SIZE;
3270       
3271       if (size != toolbar->icon_size)
3272         {
3273           gtk_toolbar_set_icon_size (toolbar, size);
3274           g_object_notify (G_OBJECT (toolbar), "icon-size");      
3275         }
3276       
3277       toolbar->icon_size_set = FALSE;
3278       g_object_notify (G_OBJECT (toolbar), "icon-size-set");      
3279     }
3280 }
3281
3282 /*
3283  * Deprecated API
3284  */
3285
3286 /**
3287  * gtk_toolbar_append_item:
3288  * @toolbar: a #GtkToolbar.
3289  * @text: give your toolbar button a label.
3290  * @tooltip_text: a string that appears when the user holds the mouse over this item.
3291  * @tooltip_private_text: use with #GtkTipsQuery.
3292  * @icon: a #GtkWidget that should be used as the button's icon.
3293  * @callback: the function to be executed when the button is pressed.
3294  * @user_data: a pointer to any data you wish to be passed to the callback.
3295  * 
3296  * Inserts a new item into the toolbar. You must specify the position
3297  * in the toolbar where it will be inserted.
3298  *
3299  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3300  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3301  *
3302  * Return value: the new toolbar item as a #GtkWidget.
3303  **/
3304 GtkWidget *
3305 gtk_toolbar_append_item (GtkToolbar    *toolbar,
3306                          const char    *text,
3307                          const char    *tooltip_text,
3308                          const char    *tooltip_private_text,
3309                          GtkWidget     *icon,
3310                          GtkSignalFunc  callback,
3311                          gpointer       user_data)
3312 {
3313   return gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_BUTTON,
3314                                      NULL, text,
3315                                      tooltip_text, tooltip_private_text,
3316                                      icon, callback, user_data,
3317                                      toolbar->num_children);
3318 }
3319
3320 /**
3321  * gtk_toolbar_prepend_item:
3322  * @toolbar: a #GtkToolbar.
3323  * @text: give your toolbar button a label.
3324  * @tooltip_text: a string that appears when the user holds the mouse over this item.
3325  * @tooltip_private_text: use with #GtkTipsQuery.
3326  * @icon: a #GtkWidget that should be used as the button's icon.
3327  * @callback: the function to be executed when the button is pressed.
3328  * @user_data: a pointer to any data you wish to be passed to the callback.
3329  * 
3330  * Adds a new button to the beginning (top or left edges) of the given toolbar.
3331  *
3332  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3333  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3334  *
3335  * Return value: the new toolbar item as a #GtkWidget.
3336  **/
3337 GtkWidget *
3338 gtk_toolbar_prepend_item (GtkToolbar    *toolbar,
3339                           const char    *text,
3340                           const char    *tooltip_text,
3341                           const char    *tooltip_private_text,
3342                           GtkWidget     *icon,
3343                           GtkSignalFunc  callback,
3344                           gpointer       user_data)
3345 {
3346   return gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_BUTTON,
3347                                      NULL, text,
3348                                      tooltip_text, tooltip_private_text,
3349                                      icon, callback, user_data,
3350                                      0);
3351 }
3352
3353 /**
3354  * gtk_toolbar_insert_item:
3355  * @toolbar: a #GtkToolbar.
3356  * @text: give your toolbar button a label.
3357  * @tooltip_text: a string that appears when the user holds the mouse over this item.
3358  * @tooltip_private_text: use with #GtkTipsQuery.
3359  * @icon: a #GtkWidget that should be used as the button's icon.
3360  * @callback: the function to be executed when the button is pressed.
3361  * @user_data: a pointer to any data you wish to be passed to the callback.
3362  * @position: the number of widgets to insert this item after.
3363  * 
3364  * Inserts a new item into the toolbar. You must specify the position in the
3365  * toolbar where it will be inserted.
3366  *
3367  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3368  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3369  *
3370  * Return value: the new toolbar item as a #GtkWidget.
3371  **/
3372 GtkWidget *
3373 gtk_toolbar_insert_item (GtkToolbar    *toolbar,
3374                          const char    *text,
3375                          const char    *tooltip_text,
3376                          const char    *tooltip_private_text,
3377                          GtkWidget     *icon,
3378                          GtkSignalFunc  callback,
3379                          gpointer       user_data,
3380                          gint           position)
3381 {
3382   return gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_BUTTON,
3383                                      NULL, text,
3384                                      tooltip_text, tooltip_private_text,
3385                                      icon, callback, user_data,
3386                                      position);
3387 }
3388
3389 /**
3390  * gtk_toolbar_insert_stock:
3391  * @toolbar: A #GtkToolbar
3392  * @stock_id: The id of the stock item you want to insert
3393  * @tooltip_text: The text in the tooltip of the toolbar button
3394  * @tooltip_private_text: The private text of the tooltip
3395  * @callback: The callback called when the toolbar button is clicked.
3396  * @user_data: user data passed to callback
3397  * @position: The position the button shall be inserted at.
3398  *            -1 means at the end.
3399  *
3400  * Inserts a stock item at the specified position of the toolbar.  If
3401  * @stock_id is not a known stock item ID, it's inserted verbatim,
3402  * except that underscores used to mark mnemonics are removed.
3403  *
3404  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3405  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3406  *
3407  * Returns: the inserted widget
3408  */
3409 GtkWidget*
3410 gtk_toolbar_insert_stock (GtkToolbar      *toolbar,
3411                           const gchar     *stock_id,
3412                           const char      *tooltip_text,
3413                           const char      *tooltip_private_text,
3414                           GtkSignalFunc    callback,
3415                           gpointer         user_data,
3416                           gint             position)
3417 {
3418   return internal_insert_element (toolbar, GTK_TOOLBAR_CHILD_BUTTON,
3419                                   NULL, stock_id,
3420                                   tooltip_text, tooltip_private_text,
3421                                   NULL, callback, user_data,
3422                                   position, TRUE);
3423 }
3424
3425 /**
3426  * gtk_toolbar_append_space:
3427  * @toolbar: a #GtkToolbar.
3428  * 
3429  * Adds a new space to the end of the toolbar.
3430  **/
3431 void
3432 gtk_toolbar_append_space (GtkToolbar *toolbar)
3433 {
3434   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_SPACE,
3435                               NULL, NULL,
3436                               NULL, NULL,
3437                               NULL, NULL, NULL,
3438                               toolbar->num_children);
3439 }
3440
3441 /**
3442  * gtk_toolbar_prepend_space:
3443  * @toolbar: a #GtkToolbar.
3444  * 
3445  * Adds a new space to the beginning of the toolbar.
3446  **/
3447 void
3448 gtk_toolbar_prepend_space (GtkToolbar *toolbar)
3449 {
3450   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_SPACE,
3451                               NULL, NULL,
3452                               NULL, NULL,
3453                               NULL, NULL, NULL,
3454                               0);
3455 }
3456
3457 /**
3458  * gtk_toolbar_insert_space:
3459  * @toolbar: a #GtkToolbar
3460  * @position: the number of widgets after which a space should be inserted.
3461  * 
3462  * Inserts a new space in the toolbar at the specified position.
3463  **/
3464 void
3465 gtk_toolbar_insert_space (GtkToolbar *toolbar,
3466                           gint        position)
3467 {
3468   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_SPACE,
3469                               NULL, NULL,
3470                               NULL, NULL,
3471                               NULL, NULL, NULL,
3472                               position);
3473 }
3474
3475 /**
3476  * gtk_toolbar_remove_space:
3477  * @toolbar: a #GtkToolbar.
3478  * @position: the index of the space to remove.
3479  * 
3480  * Removes a space from the specified position.
3481  **/
3482 void
3483 gtk_toolbar_remove_space (GtkToolbar *toolbar,
3484                           gint        position)
3485 {
3486   GtkToolbarPrivate *priv;
3487   ToolbarContent *content;
3488   
3489   g_return_if_fail (GTK_IS_TOOLBAR (toolbar));
3490   
3491   if (!gtk_toolbar_check_old_api (toolbar))
3492     return;
3493   
3494   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3495   
3496   content = g_list_nth_data (priv->content, position);
3497   
3498   if (!content)
3499     {
3500       g_warning ("Toolbar position %d doesn't exist", position);
3501       return;
3502     }
3503   
3504   if (!toolbar_content_is_separator (content))
3505     {
3506       g_warning ("Toolbar position %d is not a space", position);
3507       return;
3508     }
3509   
3510   toolbar_content_remove (content, toolbar);
3511   toolbar_content_free (content);
3512 }
3513
3514 /**
3515  * gtk_toolbar_append_widget:
3516  * @toolbar: a #GtkToolbar.
3517  * @widget: a #GtkWidget to add to the toolbar. 
3518  * @tooltip_text: the element's tooltip.
3519  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3520  * 
3521  * Adds a widget to the end of the given toolbar.
3522  **/ 
3523 void
3524 gtk_toolbar_append_widget (GtkToolbar  *toolbar,
3525                            GtkWidget   *widget,
3526                            const gchar *tooltip_text,
3527                            const gchar *tooltip_private_text)
3528 {
3529   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_WIDGET,
3530                               widget, NULL,
3531                               tooltip_text, tooltip_private_text,
3532                               NULL, NULL, NULL,
3533                               toolbar->num_children);
3534 }
3535
3536 /**
3537  * gtk_toolbar_prepend_widget:
3538  * @toolbar: a #GtkToolbar.
3539  * @widget: a #GtkWidget to add to the toolbar. 
3540  * @tooltip_text: the element's tooltip.
3541  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3542  * 
3543  * Adds a widget to the beginning of the given toolbar.
3544  **/ 
3545 void
3546 gtk_toolbar_prepend_widget (GtkToolbar  *toolbar,
3547                             GtkWidget   *widget,
3548                             const gchar *tooltip_text,
3549                             const gchar *tooltip_private_text)
3550 {
3551   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_WIDGET,
3552                               widget, NULL,
3553                               tooltip_text, tooltip_private_text,
3554                               NULL, NULL, NULL,
3555                               0);
3556 }
3557
3558 /**
3559  * gtk_toolbar_insert_widget:
3560  * @toolbar: a #GtkToolbar.
3561  * @widget: a #GtkWidget to add to the toolbar. 
3562  * @tooltip_text: the element's tooltip.
3563  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3564  * @position: the number of widgets to insert this widget after.
3565  * 
3566  * Inserts a widget in the toolbar at the given position.
3567  **/ 
3568 void
3569 gtk_toolbar_insert_widget (GtkToolbar *toolbar,
3570                            GtkWidget  *widget,
3571                            const char *tooltip_text,
3572                            const char *tooltip_private_text,
3573                            gint        position)
3574 {
3575   gtk_toolbar_insert_element (toolbar, GTK_TOOLBAR_CHILD_WIDGET,
3576                               widget, NULL,
3577                               tooltip_text, tooltip_private_text,
3578                               NULL, NULL, NULL,
3579                               position);
3580 }
3581
3582 /**
3583  * gtk_toolbar_append_element:
3584  * @toolbar: a #GtkToolbar.
3585  * @type: a value of type #GtkToolbarChildType that determines what @widget will be.
3586  * @widget: a #GtkWidget, or %NULL.
3587  * @text: the element's label.
3588  * @tooltip_text: the element's tooltip.
3589  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3590  * @icon: a #GtkWidget that provides pictorial representation of the element's function.
3591  * @callback: the function to be executed when the button is pressed.
3592  * @user_data: any data you wish to pass to the callback.
3593  * 
3594  * Adds a new element to the end of a toolbar.
3595  * 
3596  * If @type == %GTK_TOOLBAR_CHILD_WIDGET, @widget is used as the new element.
3597  * If @type == %GTK_TOOLBAR_CHILD_RADIOBUTTON, @widget is used to determine
3598  * the radio group for the new element. In all other cases, @widget must
3599  * be %NULL.
3600  * 
3601  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3602  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3603  *
3604  * Return value: the new toolbar element as a #GtkWidget.
3605  **/
3606 GtkWidget*
3607 gtk_toolbar_append_element (GtkToolbar          *toolbar,
3608                             GtkToolbarChildType  type,
3609                             GtkWidget           *widget,
3610                             const char          *text,
3611                             const char          *tooltip_text,
3612                             const char          *tooltip_private_text,
3613                             GtkWidget           *icon,
3614                             GtkSignalFunc        callback,
3615                             gpointer             user_data)
3616 {
3617   return gtk_toolbar_insert_element (toolbar, type, widget, text,
3618                                      tooltip_text, tooltip_private_text,
3619                                      icon, callback, user_data,
3620                                      toolbar->num_children);
3621 }
3622
3623 /**
3624  * gtk_toolbar_prepend_element:
3625  * @toolbar: a #GtkToolbar.
3626  * @type: a value of type #GtkToolbarChildType that determines what @widget will be.
3627  * @widget: a #GtkWidget, or %NULL
3628  * @text: the element's label.
3629  * @tooltip_text: the element's tooltip.
3630  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3631  * @icon: a #GtkWidget that provides pictorial representation of the element's function.
3632  * @callback: the function to be executed when the button is pressed.
3633  * @user_data: any data you wish to pass to the callback.
3634  *  
3635  * Adds a new element to the beginning of a toolbar.
3636  * 
3637  * If @type == %GTK_TOOLBAR_CHILD_WIDGET, @widget is used as the new element.
3638  * If @type == %GTK_TOOLBAR_CHILD_RADIOBUTTON, @widget is used to determine
3639  * the radio group for the new element. In all other cases, @widget must
3640  * be %NULL.
3641  * 
3642  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3643  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3644  *
3645  * Return value: the new toolbar element as a #GtkWidget.
3646  **/
3647 GtkWidget *
3648 gtk_toolbar_prepend_element (GtkToolbar          *toolbar,
3649                              GtkToolbarChildType  type,
3650                              GtkWidget           *widget,
3651                              const char          *text,
3652                              const char          *tooltip_text,
3653                              const char          *tooltip_private_text,
3654                              GtkWidget           *icon,
3655                              GtkSignalFunc        callback,
3656                              gpointer             user_data)
3657 {
3658   return gtk_toolbar_insert_element (toolbar, type, widget, text,
3659                                      tooltip_text, tooltip_private_text,
3660                                      icon, callback, user_data, 0);
3661 }
3662
3663 /**
3664  * gtk_toolbar_insert_element:
3665  * @toolbar: a #GtkToolbar.
3666  * @type: a value of type #GtkToolbarChildType that determines what @widget
3667  *   will be.
3668  * @widget: a #GtkWidget, or %NULL. 
3669  * @text: the element's label.
3670  * @tooltip_text: the element's tooltip.
3671  * @tooltip_private_text: used for context-sensitive help about this toolbar element.
3672  * @icon: a #GtkWidget that provides pictorial representation of the element's function.
3673  * @callback: the function to be executed when the button is pressed.
3674  * @user_data: any data you wish to pass to the callback.
3675  * @position: the number of widgets to insert this element after.
3676  *
3677  * Inserts a new element in the toolbar at the given position. 
3678  *
3679  * If @type == %GTK_TOOLBAR_CHILD_WIDGET, @widget is used as the new element.
3680  * If @type == %GTK_TOOLBAR_CHILD_RADIOBUTTON, @widget is used to determine
3681  * the radio group for the new element. In all other cases, @widget must
3682  * be %NULL.
3683  *
3684  * @callback must be a pointer to a function taking a #GtkWidget and a gpointer as
3685  * arguments. Use the GTK_SIGNAL_FUNC() to cast the function to #GtkSignalFunc.
3686  *
3687  * Return value: the new toolbar element as a #GtkWidget.
3688  **/
3689 GtkWidget *
3690 gtk_toolbar_insert_element (GtkToolbar          *toolbar,
3691                             GtkToolbarChildType  type,
3692                             GtkWidget           *widget,
3693                             const char          *text,
3694                             const char          *tooltip_text,
3695                             const char          *tooltip_private_text,
3696                             GtkWidget           *icon,
3697                             GtkSignalFunc        callback,
3698                             gpointer             user_data,
3699                             gint                 position)
3700 {
3701   return internal_insert_element (toolbar, type, widget, text,
3702                                   tooltip_text, tooltip_private_text,
3703                                   icon, callback, user_data, position, FALSE);
3704 }
3705
3706 static void
3707 set_child_packing_and_visibility(GtkToolbar      *toolbar,
3708                                  GtkToolbarChild *child)
3709 {
3710   GtkWidget *box;
3711   gboolean   expand;
3712
3713   box = gtk_bin_get_child (GTK_BIN (child->widget));
3714   
3715   g_return_if_fail (GTK_IS_BOX (box));
3716   
3717   if (child->label)
3718     {
3719       expand = (toolbar->style != GTK_TOOLBAR_BOTH);
3720       
3721       gtk_box_set_child_packing (GTK_BOX (box), child->label,
3722                                  expand, expand, 0, GTK_PACK_END);
3723       
3724       if (toolbar->style != GTK_TOOLBAR_ICONS)
3725         gtk_widget_show (child->label);
3726       else
3727         gtk_widget_hide (child->label);
3728     }
3729   
3730   if (child->icon)
3731     {
3732       expand = (toolbar->style != GTK_TOOLBAR_BOTH_HORIZ);
3733       
3734       gtk_box_set_child_packing (GTK_BOX (box), child->icon,
3735                                  expand, expand, 0, GTK_PACK_END);
3736       
3737       if (toolbar->style != GTK_TOOLBAR_TEXT)
3738         gtk_widget_show (child->icon);
3739       else
3740         gtk_widget_hide (child->icon);
3741     }
3742 }
3743
3744 static GtkWidget *
3745 internal_insert_element (GtkToolbar          *toolbar,
3746                          GtkToolbarChildType  type,
3747                          GtkWidget           *widget,
3748                          const char          *text,
3749                          const char          *tooltip_text,
3750                          const char          *tooltip_private_text,
3751                          GtkWidget           *icon,
3752                          GtkSignalFunc        callback,
3753                          gpointer             user_data,
3754                          gint                 position,
3755                          gboolean             use_stock)
3756 {
3757   GtkWidget *box;
3758   ToolbarContent *content;
3759   char *free_me = NULL;
3760
3761   GtkWidget *child_widget;
3762   GtkWidget *child_label;
3763   GtkWidget *child_icon;
3764
3765   g_return_val_if_fail (GTK_IS_TOOLBAR (toolbar), NULL);
3766   if (type == GTK_TOOLBAR_CHILD_WIDGET)
3767     g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
3768   else if (type != GTK_TOOLBAR_CHILD_RADIOBUTTON)
3769     g_return_val_if_fail (widget == NULL, NULL);
3770   if (GTK_IS_TOOL_ITEM (widget))
3771     g_warning (MIXED_API_WARNING);
3772   
3773   if (!gtk_toolbar_check_old_api (toolbar))
3774     return NULL;
3775   
3776   child_widget = NULL;
3777   child_label = NULL;
3778   child_icon = NULL;
3779   
3780   switch (type)
3781     {
3782     case GTK_TOOLBAR_CHILD_SPACE:
3783       break;
3784       
3785     case GTK_TOOLBAR_CHILD_WIDGET:
3786       child_widget = widget;
3787       break;
3788       
3789     case GTK_TOOLBAR_CHILD_BUTTON:
3790     case GTK_TOOLBAR_CHILD_TOGGLEBUTTON:
3791     case GTK_TOOLBAR_CHILD_RADIOBUTTON:
3792       if (type == GTK_TOOLBAR_CHILD_BUTTON)
3793         {
3794           child_widget = gtk_button_new ();
3795         }
3796       else if (type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON)
3797         {
3798           child_widget = gtk_toggle_button_new ();
3799           gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (child_widget), FALSE);
3800         }
3801       else /* type == GTK_TOOLBAR_CHILD_RADIOBUTTON */
3802         {
3803           GSList *group = NULL;
3804
3805           if (widget)
3806             group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (widget));
3807           
3808           child_widget = gtk_radio_button_new (group);
3809           gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (child_widget), FALSE);
3810         }
3811
3812       gtk_button_set_relief (GTK_BUTTON (child_widget), get_button_relief (toolbar));
3813       gtk_button_set_focus_on_click (GTK_BUTTON (child_widget), FALSE);
3814       
3815       if (callback)
3816         {
3817           g_signal_connect (child_widget, "clicked",
3818                             callback, user_data);
3819         }
3820       
3821       if (toolbar->style == GTK_TOOLBAR_BOTH_HORIZ)
3822         box = gtk_hbox_new (FALSE, 0);
3823       else
3824         box = gtk_vbox_new (FALSE, 0);
3825
3826       gtk_container_add (GTK_CONTAINER (child_widget), box);
3827       gtk_widget_show (box);
3828       
3829       if (text && use_stock)
3830         {
3831           GtkStockItem stock_item;
3832           if (gtk_stock_lookup (text, &stock_item))
3833             {
3834               if (!icon)
3835                 icon = gtk_image_new_from_stock (text, toolbar->icon_size);
3836           
3837               text = free_me = _gtk_toolbar_elide_underscores (stock_item.label);
3838             }
3839         }
3840       
3841       if (text)
3842         {
3843           child_label = gtk_label_new (text);
3844           
3845           gtk_container_add (GTK_CONTAINER (box), child_label);
3846         }
3847       
3848       if (icon)
3849         {
3850           child_icon = GTK_WIDGET (icon);
3851           gtk_container_add (GTK_CONTAINER (box), child_icon);
3852         }
3853       
3854       gtk_widget_show (child_widget);
3855       break;
3856       
3857     default:
3858       g_assert_not_reached ();
3859       break;
3860     }
3861   
3862   if ((type != GTK_TOOLBAR_CHILD_SPACE) && tooltip_text)
3863     {
3864       gtk_tooltips_set_tip (toolbar->tooltips, child_widget,
3865                             tooltip_text, tooltip_private_text);
3866     }
3867   
3868   content = toolbar_content_new_compatibility (toolbar, type, child_widget,
3869                                                child_icon, child_label, position);
3870   
3871   if (free_me)
3872     g_free (free_me);
3873   
3874   return child_widget;
3875 }
3876
3877 /*
3878  * ToolbarContent methods
3879  */
3880 typedef enum {
3881   UNKNOWN,
3882   YES,
3883   NO,
3884 } TriState;
3885
3886 struct _ToolbarContent
3887 {
3888   ContentType   type;
3889   ItemState     state;
3890   
3891   union
3892   {
3893     struct
3894     {
3895       GtkToolItem *     item;
3896       GtkAllocation     start_allocation;
3897       GtkAllocation     goal_allocation;
3898       guint             is_placeholder : 1;
3899       guint             disappearing : 1;
3900       TriState          has_menu : 2;
3901     } tool_item;
3902     
3903     struct
3904     {
3905       GtkToolbarChild   child;
3906       GtkAllocation     space_allocation;
3907       guint             space_visible : 1;
3908     } compatibility;
3909   } u;
3910 };
3911
3912 static ToolbarContent *
3913 toolbar_content_new_tool_item (GtkToolbar  *toolbar,
3914                                GtkToolItem *item,
3915                                gboolean     is_placeholder,
3916                                gint         pos)
3917 {
3918   ToolbarContent *content;
3919   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3920   
3921   content = g_new0 (ToolbarContent, 1);
3922   
3923   content->type = TOOL_ITEM;
3924   content->state = NOT_ALLOCATED;
3925   content->u.tool_item.item = item;
3926   content->u.tool_item.is_placeholder = is_placeholder;
3927   
3928   gtk_widget_set_parent (GTK_WIDGET (item), GTK_WIDGET (toolbar));
3929
3930   priv->content = g_list_insert (priv->content, content, pos);
3931   
3932   if (!is_placeholder)
3933     {
3934       toolbar->num_children++;
3935
3936       gtk_toolbar_stop_sliding (toolbar);
3937     }
3938
3939   gtk_widget_queue_resize (GTK_WIDGET (toolbar));
3940   priv->need_rebuild = TRUE;
3941   
3942   return content;
3943 }
3944
3945 static ToolbarContent *
3946 toolbar_content_new_compatibility (GtkToolbar          *toolbar,
3947                                    GtkToolbarChildType  type,
3948                                    GtkWidget            *widget,
3949                                    GtkWidget            *icon,
3950                                    GtkWidget            *label,
3951                                    gint                  pos)
3952 {
3953   ToolbarContent *content;
3954   GtkToolbarChild *child;
3955   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
3956   
3957   content = g_new0 (ToolbarContent, 1);
3958
3959   child = &(content->u.compatibility.child);
3960   
3961   content->type = COMPATIBILITY;
3962   child->type = type;
3963   child->widget = widget;
3964   child->icon = icon;
3965   child->label = label;
3966   
3967   if (type != GTK_TOOLBAR_CHILD_SPACE)
3968     {
3969       gtk_widget_set_parent (child->widget, GTK_WIDGET (toolbar));
3970     }
3971   else
3972     {
3973       content->u.compatibility.space_visible = TRUE;
3974       gtk_widget_queue_resize (GTK_WIDGET (toolbar));
3975     }
3976  
3977   if (type == GTK_TOOLBAR_CHILD_BUTTON ||
3978       type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON ||
3979       type == GTK_TOOLBAR_CHILD_RADIOBUTTON)
3980     {
3981       set_child_packing_and_visibility (toolbar, child);
3982     }
3983
3984   priv->content = g_list_insert (priv->content, content, pos);
3985   toolbar->children = g_list_insert (toolbar->children, child, pos);
3986   priv->need_rebuild = TRUE;
3987   
3988   toolbar->num_children++;
3989   
3990   return content;
3991 }
3992
3993 static void
3994 toolbar_content_remove (ToolbarContent *content,
3995                         GtkToolbar     *toolbar)
3996 {
3997   GtkToolbarChild *child;
3998   GtkToolbarPrivate *priv;
3999
4000   priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
4001   
4002   switch (content->type)
4003     {
4004     case TOOL_ITEM:
4005       gtk_widget_unparent (GTK_WIDGET (content->u.tool_item.item));
4006       break;
4007       
4008     case COMPATIBILITY:
4009       child = &(content->u.compatibility.child);
4010       
4011       if (child->type != GTK_TOOLBAR_CHILD_SPACE)
4012         {
4013           g_object_ref (child->widget);
4014           gtk_widget_unparent (child->widget);
4015           gtk_widget_destroy (child->widget);
4016           g_object_unref (child->widget);
4017         }
4018       
4019       toolbar->children = g_list_remove (toolbar->children, child);
4020       break;
4021     }
4022
4023   priv->content = g_list_remove (priv->content, content);
4024
4025   if (!toolbar_content_is_placeholder (content))
4026     toolbar->num_children--;
4027
4028   gtk_widget_queue_resize (GTK_WIDGET (toolbar));
4029   priv->need_rebuild = TRUE;
4030 }
4031
4032 static void
4033 toolbar_content_free (ToolbarContent *content)
4034 {
4035   g_free (content);
4036 }
4037
4038 static gint
4039 calculate_max_homogeneous_pixels (GtkWidget *widget)
4040 {
4041   PangoContext *context;
4042   PangoFontMetrics *metrics;
4043   gint char_width;
4044   
4045   context = gtk_widget_get_pango_context (widget);
4046   metrics = pango_context_get_metrics (context,
4047                                        widget->style->font_desc,
4048                                        pango_context_get_language (context));
4049   char_width = pango_font_metrics_get_approximate_char_width (metrics);
4050   pango_font_metrics_unref (metrics);
4051   
4052   return PANGO_PIXELS (MAX_HOMOGENEOUS_N_CHARS * char_width);
4053 }
4054
4055 static void
4056 toolbar_content_expose (ToolbarContent *content,
4057                         GtkContainer   *container,
4058                         GdkEventExpose *expose)
4059 {
4060   GtkToolbar *toolbar = GTK_TOOLBAR (container);
4061   GtkToolbarChild *child;
4062   GtkWidget *widget = NULL; /* quiet gcc */
4063   
4064   switch (content->type)
4065     {
4066     case TOOL_ITEM:
4067       if (!content->u.tool_item.is_placeholder)
4068         widget = GTK_WIDGET (content->u.tool_item.item);
4069       break;
4070       
4071     case COMPATIBILITY:
4072       child = &(content->u.compatibility.child);
4073       
4074       if (child->type == GTK_TOOLBAR_CHILD_SPACE)
4075         {
4076           if (get_space_style (toolbar) == GTK_TOOLBAR_SPACE_LINE &&
4077               content->u.compatibility.space_visible)
4078             {
4079               _gtk_toolbar_paint_space_line (GTK_WIDGET (toolbar), toolbar,
4080                                              &expose->area,
4081                                              &content->u.compatibility.space_allocation);
4082             }
4083           return;
4084         }
4085       
4086       widget = child->widget;
4087       break;
4088     }
4089   
4090   if (widget)
4091     gtk_container_propagate_expose (container, widget, expose);
4092 }
4093
4094 static gboolean
4095 toolbar_content_visible (ToolbarContent *content,
4096                          GtkToolbar     *toolbar)
4097 {
4098   GtkToolItem *item;
4099   
4100   switch (content->type)
4101     {
4102     case TOOL_ITEM:
4103       item = content->u.tool_item.item;
4104       
4105       if (!GTK_WIDGET_VISIBLE (item))
4106         return FALSE;
4107       
4108       if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL &&
4109           gtk_tool_item_get_visible_horizontal (item))
4110         {
4111           return TRUE;
4112         }
4113       
4114       if ((toolbar->orientation == GTK_ORIENTATION_VERTICAL &&
4115            gtk_tool_item_get_visible_vertical (item)))
4116         {
4117           return TRUE;
4118         }
4119       
4120       return FALSE;
4121       break;
4122       
4123     case COMPATIBILITY:
4124       if (content->u.compatibility.child.type != GTK_TOOLBAR_CHILD_SPACE)
4125         return GTK_WIDGET_VISIBLE (content->u.compatibility.child.widget);
4126       else
4127         return TRUE;
4128       break;
4129     }
4130   
4131   g_assert_not_reached ();
4132   return FALSE;
4133 }
4134
4135 static void
4136 toolbar_content_size_request (ToolbarContent *content,
4137                               GtkToolbar     *toolbar,
4138                               GtkRequisition *requisition)
4139 {
4140   gint space_size;
4141   
4142   switch (content->type)
4143     {
4144     case TOOL_ITEM:
4145       gtk_widget_size_request (GTK_WIDGET (content->u.tool_item.item),
4146                                requisition);
4147       if (content->u.tool_item.is_placeholder &&
4148           content->u.tool_item.disappearing)
4149         {
4150           requisition->width = 0;
4151           requisition->height = 0;
4152         }
4153       break;
4154       
4155     case COMPATIBILITY:
4156       space_size = get_space_size (toolbar);
4157       
4158       if (content->u.compatibility.child.type != GTK_TOOLBAR_CHILD_SPACE)
4159         {
4160           gtk_widget_size_request (content->u.compatibility.child.widget,
4161                                    requisition);
4162         }
4163       else
4164         {
4165           if (toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
4166             {
4167               requisition->width = space_size;
4168               requisition->height = 0;
4169             }
4170           else
4171             {
4172               requisition->height = space_size;
4173               requisition->width = 0;
4174             }
4175         }
4176       
4177       break;
4178     }
4179 }
4180
4181 static gboolean
4182 toolbar_content_is_homogeneous (ToolbarContent *content,
4183                                 GtkToolbar     *toolbar)
4184 {
4185   gboolean result = FALSE;      /* quiet gcc */
4186   GtkRequisition requisition;
4187   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
4188   
4189   if (priv->max_homogeneous_pixels < 0)
4190     {
4191       priv->max_homogeneous_pixels =
4192         calculate_max_homogeneous_pixels (GTK_WIDGET (toolbar));
4193     }
4194   
4195   toolbar_content_size_request (content, toolbar, &requisition);
4196   
4197   if (requisition.width > priv->max_homogeneous_pixels)
4198     return FALSE;
4199   
4200   switch (content->type)
4201     {
4202     case TOOL_ITEM:
4203       result = gtk_tool_item_get_homogeneous (content->u.tool_item.item) &&
4204         !GTK_IS_SEPARATOR_TOOL_ITEM (content->u.tool_item.item);
4205       
4206       if (gtk_tool_item_get_is_important (content->u.tool_item.item) &&
4207           toolbar->style == GTK_TOOLBAR_BOTH_HORIZ &&
4208           toolbar->orientation == GTK_ORIENTATION_HORIZONTAL)
4209         {
4210           result = FALSE;
4211         }
4212       break;
4213       
4214     case COMPATIBILITY:
4215       if (content->u.compatibility.child.type == GTK_TOOLBAR_CHILD_BUTTON ||
4216           content->u.compatibility.child.type == GTK_TOOLBAR_CHILD_RADIOBUTTON ||
4217           content->u.compatibility.child.type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON)
4218         {
4219           result = TRUE;
4220         }
4221       else
4222         {
4223           result = FALSE;
4224         }
4225       break;
4226     }
4227   
4228   return result;
4229 }
4230
4231 static gboolean
4232 toolbar_content_is_placeholder (ToolbarContent *content)
4233 {
4234   if (content->type == TOOL_ITEM && content->u.tool_item.is_placeholder)
4235     return TRUE;
4236   
4237   return FALSE;
4238 }
4239
4240 static gboolean
4241 toolbar_content_disappearing (ToolbarContent *content)
4242 {
4243   if (content->type == TOOL_ITEM && content->u.tool_item.disappearing)
4244     return TRUE;
4245   
4246   return FALSE;
4247 }
4248
4249 static ItemState
4250 toolbar_content_get_state (ToolbarContent *content)
4251 {
4252   return content->state;
4253 }
4254
4255 static gboolean
4256 toolbar_content_child_visible (ToolbarContent *content)
4257 {
4258   switch (content->type)
4259     {
4260     case TOOL_ITEM:
4261       return GTK_WIDGET_CHILD_VISIBLE (content->u.tool_item.item);
4262       break;
4263       
4264     case COMPATIBILITY:
4265       if (content->u.compatibility.child.type != GTK_TOOLBAR_CHILD_SPACE)
4266         {
4267           return GTK_WIDGET_CHILD_VISIBLE (content->u.compatibility.child.widget);
4268         }
4269       else
4270         {
4271           return content->u.compatibility.space_visible;
4272         }
4273       break;
4274     }
4275   
4276   return FALSE; /* quiet gcc */
4277 }
4278
4279 static void
4280 toolbar_content_get_goal_allocation (ToolbarContent *content,
4281                                      GtkAllocation  *allocation)
4282 {
4283   switch (content->type)
4284     {
4285     case TOOL_ITEM:
4286       *allocation = content->u.tool_item.goal_allocation;
4287       break;
4288       
4289     case COMPATIBILITY:
4290       /* Goal allocations are only relevant when we are
4291        * using the new API, so we should never get here
4292        */
4293       g_assert_not_reached ();
4294       break;
4295     }
4296 }
4297
4298 static void
4299 toolbar_content_get_allocation (ToolbarContent *content,
4300                                 GtkAllocation  *allocation)
4301 {
4302   GtkToolbarChild *child;
4303   
4304   switch (content->type)
4305     {
4306     case TOOL_ITEM:
4307       *allocation = GTK_WIDGET (content->u.tool_item.item)->allocation;
4308       break;
4309       
4310     case COMPATIBILITY:
4311       child = &(content->u.compatibility.child);
4312       
4313       if (child->type == GTK_TOOLBAR_CHILD_SPACE)
4314         *allocation = content->u.compatibility.space_allocation;
4315       else
4316         *allocation = child->widget->allocation;
4317       break;
4318     }
4319 }
4320
4321 static void
4322 toolbar_content_set_start_allocation (ToolbarContent *content,
4323                                       GtkAllocation  *allocation)
4324 {
4325   switch (content->type)
4326     {
4327     case TOOL_ITEM:
4328       content->u.tool_item.start_allocation = *allocation;
4329       break;
4330       
4331     case COMPATIBILITY:
4332       /* start_allocation is only relevant when using the new API */
4333       g_assert_not_reached ();
4334       break;
4335     }
4336 }
4337
4338 static gboolean
4339 toolbar_content_get_expand (ToolbarContent *content)
4340 {
4341   if (content->type == TOOL_ITEM &&
4342       gtk_tool_item_get_expand (content->u.tool_item.item) &&
4343       !content->u.tool_item.disappearing)
4344     {
4345       return TRUE;
4346     }
4347   
4348   return FALSE;
4349 }
4350
4351 static void
4352 toolbar_content_set_goal_allocation (ToolbarContent *content,
4353                                      GtkAllocation  *allocation)
4354 {
4355   switch (content->type)
4356     {
4357     case TOOL_ITEM:
4358       content->u.tool_item.goal_allocation = *allocation;
4359       break;
4360       
4361     case COMPATIBILITY:
4362       /* Only relevant when using new API */
4363       g_assert_not_reached ();
4364       break;
4365     }
4366 }
4367
4368 static void
4369 toolbar_content_set_child_visible (ToolbarContent *content,
4370                                    GtkToolbar     *toolbar,
4371                                    gboolean        visible)
4372 {
4373   GtkToolbarChild *child;
4374   
4375   switch (content->type)
4376     {
4377     case TOOL_ITEM:
4378       gtk_widget_set_child_visible (GTK_WIDGET (content->u.tool_item.item),
4379                                     visible);
4380       break;
4381       
4382     case COMPATIBILITY:
4383       child = &(content->u.compatibility.child);
4384       
4385       if (child->type != GTK_TOOLBAR_CHILD_SPACE)
4386         {
4387           gtk_widget_set_child_visible (child->widget, visible);
4388         }
4389       else
4390         {
4391           if (content->u.compatibility.space_visible != visible)
4392             {
4393               content->u.compatibility.space_visible = visible;
4394               gtk_widget_queue_draw (GTK_WIDGET (toolbar));
4395             }
4396         }
4397       break;
4398     }
4399 }
4400
4401 static void
4402 toolbar_content_get_start_allocation (ToolbarContent *content,
4403                                       GtkAllocation  *start_allocation)
4404 {
4405   switch (content->type)
4406     {
4407     case TOOL_ITEM:
4408       *start_allocation = content->u.tool_item.start_allocation;
4409       break;
4410       
4411     case COMPATIBILITY:
4412       /* Only relevant for new API */
4413       g_assert_not_reached ();
4414       break;
4415     }
4416 }
4417
4418 static void
4419 toolbar_content_size_allocate (ToolbarContent *content,
4420                                GtkAllocation  *allocation)
4421 {
4422   switch (content->type)
4423     {
4424     case TOOL_ITEM:
4425       gtk_widget_size_allocate (GTK_WIDGET (content->u.tool_item.item),
4426                                 allocation);
4427       break;
4428       
4429     case COMPATIBILITY:
4430       if (content->u.compatibility.child.type != GTK_TOOLBAR_CHILD_SPACE)
4431         {
4432           gtk_widget_size_allocate (content->u.compatibility.child.widget,
4433                                     allocation);
4434         }
4435       else
4436         {
4437           content->u.compatibility.space_allocation = *allocation;
4438         }
4439       break;
4440     }
4441 }
4442
4443 static void
4444 toolbar_content_set_state (ToolbarContent *content,
4445                            ItemState       state)
4446 {
4447   content->state = state;
4448 }
4449
4450 static GtkWidget *
4451 toolbar_content_get_widget (ToolbarContent *content)
4452 {
4453   GtkToolbarChild *child;
4454   
4455   switch (content->type)
4456     {
4457     case TOOL_ITEM:
4458       return GTK_WIDGET (content->u.tool_item.item);
4459       break;
4460       
4461     case COMPATIBILITY:
4462       child = &(content->u.compatibility.child);
4463       if (child->type != GTK_TOOLBAR_CHILD_SPACE)
4464         return child->widget;
4465       else
4466         return NULL;
4467       break;
4468     }
4469   
4470   return NULL;
4471 }
4472
4473 static void
4474 toolbar_content_set_disappearing (ToolbarContent *content,
4475                                   gboolean        disappearing)
4476 {
4477   switch (content->type)
4478     {
4479     case TOOL_ITEM:
4480       content->u.tool_item.disappearing = disappearing;
4481       break;
4482       
4483     case COMPATIBILITY:
4484       /* Only relevant for new API */
4485       g_assert_not_reached ();
4486       break;
4487     }
4488 }
4489
4490 static void
4491 toolbar_content_set_size_request (ToolbarContent *content,
4492                                   gint            width,
4493                                   gint            height)
4494 {
4495   switch (content->type)
4496     {
4497     case TOOL_ITEM:
4498       gtk_widget_set_size_request (GTK_WIDGET (content->u.tool_item.item),
4499                                    width, height);
4500       break;
4501       
4502     case COMPATIBILITY:
4503       /* Setting size requests only happens with sliding,
4504        * so not relevant here
4505        */
4506       g_assert_not_reached ();
4507       break;
4508     }
4509 }
4510
4511 static void
4512 toolbar_child_reconfigure (GtkToolbar      *toolbar,
4513                            GtkToolbarChild *child)
4514 {
4515   GtkWidget *box;
4516   GtkImage *image;
4517   GtkToolbarStyle style;
4518   GtkIconSize icon_size;
4519   GtkReliefStyle relief;
4520   gchar *stock_id;
4521   
4522   style = gtk_toolbar_get_style (toolbar);
4523   icon_size = gtk_toolbar_get_icon_size (toolbar);
4524   relief = gtk_toolbar_get_relief_style (toolbar);
4525   
4526   /* style */
4527   if (child->type == GTK_TOOLBAR_CHILD_BUTTON ||
4528       child->type == GTK_TOOLBAR_CHILD_RADIOBUTTON ||
4529       child->type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON)
4530     {
4531       box = gtk_bin_get_child (GTK_BIN (child->widget));
4532       
4533       if (style == GTK_TOOLBAR_BOTH && GTK_IS_HBOX (box))
4534         {
4535           GtkWidget *vbox;
4536           
4537           vbox = gtk_vbox_new (FALSE, 0);
4538           
4539           if (child->label)
4540             gtk_widget_reparent (child->label, vbox);
4541           if (child->icon)
4542             gtk_widget_reparent (child->icon, vbox);
4543           
4544           gtk_widget_destroy (box);
4545           gtk_container_add (GTK_CONTAINER (child->widget), vbox);
4546           
4547           gtk_widget_show (vbox);
4548         }
4549       else if (style == GTK_TOOLBAR_BOTH_HORIZ && GTK_IS_VBOX (box))
4550         {
4551           GtkWidget *hbox;
4552           
4553           hbox = gtk_hbox_new (FALSE, 0);
4554           
4555           if (child->label)
4556             gtk_widget_reparent (child->label, hbox);
4557           if (child->icon)
4558             gtk_widget_reparent (child->icon, hbox);
4559           
4560           gtk_widget_destroy (box);
4561           gtk_container_add (GTK_CONTAINER (child->widget), hbox);
4562           
4563           gtk_widget_show (hbox);
4564         }
4565
4566       set_child_packing_and_visibility (toolbar, child);
4567     }
4568   
4569   /* icon size */
4570   
4571   if ((child->type == GTK_TOOLBAR_CHILD_BUTTON ||
4572        child->type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON ||
4573        child->type == GTK_TOOLBAR_CHILD_RADIOBUTTON) &&
4574       GTK_IS_IMAGE (child->icon))
4575     {
4576       image = GTK_IMAGE (child->icon);
4577       if (gtk_image_get_storage_type (image) == GTK_IMAGE_STOCK)
4578         {
4579           gtk_image_get_stock (image, &stock_id, NULL);
4580           stock_id = g_strdup (stock_id);
4581           gtk_image_set_from_stock (image,
4582                                     stock_id,
4583                                     icon_size);
4584           g_free (stock_id);
4585         }
4586     }
4587   
4588   /* relief */
4589   if (child->type == GTK_TOOLBAR_CHILD_BUTTON ||
4590       child->type == GTK_TOOLBAR_CHILD_RADIOBUTTON ||
4591       child->type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON)
4592     {
4593       gtk_button_set_relief (GTK_BUTTON (child->widget), relief);
4594     }
4595 }
4596
4597 static void
4598 toolbar_content_toolbar_reconfigured (ToolbarContent *content,
4599                                       GtkToolbar     *toolbar)
4600 {
4601   switch (content->type)
4602     {
4603     case TOOL_ITEM:
4604       _gtk_tool_item_toolbar_reconfigured (content->u.tool_item.item);
4605       break;
4606       
4607     case COMPATIBILITY:
4608       toolbar_child_reconfigure (toolbar, &(content->u.compatibility.child));
4609       break;
4610     }
4611 }
4612
4613 static GtkWidget *
4614 toolbar_content_retrieve_menu_item (ToolbarContent *content)
4615 {
4616   if (content->type == TOOL_ITEM)
4617     return gtk_tool_item_retrieve_proxy_menu_item (content->u.tool_item.item);
4618   
4619   /* FIXME - we might actually be able to do something meaningful here */
4620   return NULL; 
4621 }
4622
4623 static gboolean
4624 toolbar_content_has_proxy_menu_item (ToolbarContent *content)
4625 {
4626   if (content->type == TOOL_ITEM)
4627     {
4628       GtkWidget *menu_item;
4629
4630       if (content->u.tool_item.has_menu == YES)
4631         return TRUE;
4632       else if (content->u.tool_item.has_menu == NO)
4633         return FALSE;
4634
4635       menu_item = toolbar_content_retrieve_menu_item (content);
4636
4637       content->u.tool_item.has_menu = menu_item? YES : NO;
4638       
4639       return menu_item != NULL;
4640     }
4641   else
4642     {
4643       return FALSE;
4644     }
4645 }
4646
4647 static void
4648 toolbar_content_set_unknown_menu_status (ToolbarContent *content)
4649 {
4650   if (content->type == TOOL_ITEM)
4651     content->u.tool_item.has_menu = UNKNOWN;
4652 }
4653
4654 static gboolean
4655 toolbar_content_is_separator (ToolbarContent *content)
4656 {
4657   GtkToolbarChild *child;
4658   
4659   switch (content->type)
4660     {
4661     case TOOL_ITEM:
4662       return GTK_IS_SEPARATOR_TOOL_ITEM (content->u.tool_item.item);
4663       break;
4664       
4665     case COMPATIBILITY:
4666       child = &(content->u.compatibility.child);
4667       return (child->type == GTK_TOOLBAR_CHILD_SPACE);
4668       break;
4669     }
4670   
4671   return FALSE;
4672 }
4673
4674 static void
4675 toolbar_content_set_expand (ToolbarContent *content,
4676                             gboolean        expand)
4677 {
4678   if (content->type == TOOL_ITEM)
4679     gtk_tool_item_set_expand (content->u.tool_item.item, expand);
4680 }
4681
4682 static gboolean
4683 ignore_show_and_hide_all (ToolbarContent *content)
4684 {
4685   if (content->type == COMPATIBILITY)
4686     {
4687       GtkToolbarChildType type = content->u.compatibility.child.type;
4688       
4689       if (type == GTK_TOOLBAR_CHILD_BUTTON ||
4690           type == GTK_TOOLBAR_CHILD_TOGGLEBUTTON ||
4691           type == GTK_TOOLBAR_CHILD_RADIOBUTTON)
4692         {
4693           return TRUE;
4694         }
4695     }
4696   
4697   return FALSE;
4698 }
4699
4700 static void
4701 toolbar_content_show_all (ToolbarContent  *content)
4702 {
4703   GtkWidget *widget;
4704   
4705   if (ignore_show_and_hide_all (content))
4706     return;
4707
4708   widget = toolbar_content_get_widget (content);
4709   if (widget)
4710     gtk_widget_show_all (widget);
4711 }
4712
4713 static void
4714 toolbar_content_hide_all (ToolbarContent  *content)
4715 {
4716   GtkWidget *widget;
4717   
4718   if (ignore_show_and_hide_all (content))
4719     return;
4720
4721   widget = toolbar_content_get_widget (content);
4722   if (widget)
4723     gtk_widget_hide_all (widget);
4724 }
4725
4726 /*
4727  * Getters
4728  */
4729 static gint
4730 get_space_size (GtkToolbar *toolbar)
4731 {
4732   gint space_size = DEFAULT_SPACE_SIZE;
4733   
4734   if (toolbar)
4735     {
4736       gtk_widget_style_get (GTK_WIDGET (toolbar),
4737                             "space-size", &space_size,
4738                             NULL);
4739     }
4740   
4741   return space_size;
4742 }
4743
4744 static GtkToolbarSpaceStyle
4745 get_space_style (GtkToolbar *toolbar)
4746 {
4747   GtkToolbarSpaceStyle space_style = DEFAULT_SPACE_STYLE;
4748
4749   if (toolbar)
4750     {
4751       gtk_widget_style_get (GTK_WIDGET (toolbar),
4752                             "space-style", &space_style,
4753                             NULL);
4754     }
4755   
4756   return space_style;  
4757 }
4758
4759 static GtkReliefStyle
4760 get_button_relief (GtkToolbar *toolbar)
4761 {
4762   GtkReliefStyle button_relief = GTK_RELIEF_NORMAL;
4763   
4764   gtk_widget_ensure_style (GTK_WIDGET (toolbar));
4765   
4766   gtk_widget_style_get (GTK_WIDGET (toolbar),
4767                         "button-relief", &button_relief,
4768                         NULL);
4769   
4770   return button_relief;
4771 }
4772
4773 static gint
4774 get_internal_padding (GtkToolbar *toolbar)
4775 {
4776   gint ipadding = 0;
4777   
4778   gtk_widget_style_get (GTK_WIDGET (toolbar),
4779                         "internal-padding", &ipadding,
4780                         NULL);
4781   
4782   return ipadding;
4783 }
4784
4785 static GtkShadowType
4786 get_shadow_type (GtkToolbar *toolbar)
4787 {
4788   GtkShadowType shadow_type;
4789   
4790   gtk_widget_style_get (GTK_WIDGET (toolbar),
4791                         "shadow-type", &shadow_type,
4792                         NULL);
4793   
4794   return shadow_type;
4795 }
4796
4797 /*
4798  * API checks
4799  */
4800 static gboolean
4801 gtk_toolbar_check_old_api (GtkToolbar *toolbar)
4802 {
4803   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
4804   
4805   if (priv->api_mode == NEW_API)
4806     {
4807       g_warning (MIXED_API_WARNING);
4808       return FALSE;
4809     }
4810   
4811   priv->api_mode = OLD_API;
4812   return TRUE;
4813 }
4814
4815 static gboolean
4816 gtk_toolbar_check_new_api (GtkToolbar *toolbar)
4817 {
4818   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
4819   
4820   if (priv->api_mode == OLD_API)
4821     {
4822       g_warning (MIXED_API_WARNING);
4823       return FALSE;
4824     }
4825   
4826   priv->api_mode = NEW_API;
4827   return TRUE;
4828 }
4829
4830 /* GTK+ internal methods */
4831
4832 gint
4833 _gtk_toolbar_get_default_space_size (void)
4834 {
4835   return DEFAULT_SPACE_SIZE;
4836 }
4837
4838 void
4839 _gtk_toolbar_paint_space_line (GtkWidget       *widget,
4840                                GtkToolbar      *toolbar,
4841                                GdkRectangle    *area,
4842                                GtkAllocation   *allocation)
4843 {
4844   const double start_fraction = (SPACE_LINE_START / SPACE_LINE_DIVISION);
4845   const double end_fraction = (SPACE_LINE_END / SPACE_LINE_DIVISION);
4846   
4847   GtkOrientation orientation;
4848
4849   g_return_if_fail (GTK_IS_WIDGET (widget));
4850   
4851   orientation = toolbar? toolbar->orientation : GTK_ORIENTATION_HORIZONTAL;
4852
4853   if (orientation == GTK_ORIENTATION_HORIZONTAL)
4854     {
4855       gtk_paint_vline (widget->style, widget->window,
4856                        GTK_WIDGET_STATE (widget), area, widget,
4857                        "toolbar",
4858                        allocation->y + allocation->height * start_fraction,
4859                        allocation->y + allocation->height * end_fraction,
4860                        allocation->x + (allocation->width - widget->style->xthickness) / 2);
4861     }
4862   else
4863     {
4864       gtk_paint_hline (widget->style, widget->window,
4865                        GTK_WIDGET_STATE (widget), area, widget,
4866                        "toolbar",
4867                        allocation->x + allocation->width * start_fraction,
4868                        allocation->x + allocation->width * end_fraction,
4869                        allocation->y + (allocation->height - widget->style->ythickness) / 2);
4870     }
4871 }
4872
4873 gchar *
4874 _gtk_toolbar_elide_underscores (const gchar *original)
4875 {
4876   gchar *q, *result;
4877   const gchar *p;
4878   gboolean last_underscore;
4879   gint s;
4880   
4881   if (!original)
4882     return NULL;
4883
4884   s = strlen (original);
4885   q = result = g_malloc (s + 1);
4886   last_underscore = FALSE;
4887   
4888   for (p = original; *p; p++)
4889     {
4890       if (!last_underscore && *p == '_')
4891         last_underscore = TRUE;
4892       else
4893         {
4894           last_underscore = FALSE;
4895           *q++ = *p;
4896         }
4897     }
4898
4899   *q = '\0';
4900
4901   if (s > 4)
4902     {
4903       if (original[s - 5] == ' ' && 
4904           original[s - 4] == '(' && 
4905           original[s - 3] == '_' && 
4906           original[s - 1] == ')')
4907         q[-4] = '\0';
4908     }
4909
4910   
4911   return result;
4912 }
4913
4914 void
4915 _gtk_toolbar_rebuild_menu (GtkToolbar *toolbar)
4916 {
4917   GtkToolbarPrivate *priv = GTK_TOOLBAR_GET_PRIVATE (toolbar);
4918   GList *list;
4919
4920   priv->need_rebuild = TRUE;
4921
4922   for (list = priv->content; list != NULL; list = list->next)
4923     {
4924       ToolbarContent *content = list->data;
4925
4926       toolbar_content_set_unknown_menu_status (content);
4927     }
4928   
4929   gtk_widget_queue_resize (GTK_WIDGET (toolbar));
4930 }
4931
4932 #define __GTK_TOOLBAR_C__
4933 #include "gtkaliasdef.c"