]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenubutton.c
GtkMenuButton: rename _set_menu() to _set_popup()
[~andy/gtk] / gtk / gtkmenubutton.c
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2003 Ricardo Fernandez Pascual
4  * Copyright (C) 2004 Paolo Borelli
5  * Copyright (C) 2012 Bastien Nocera
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 /**
22  * SECTION:gtkmenubutton
23  * @short_description: A widget that shows a menu when clicked on
24  * @title: GtkMenuButton
25  *
26  * The #GtkMenuButton widget is used to display a menu when clicked on.
27  * This menu can be provided either as a #GtkMenu, or an abstract #GMenuModel.
28  *
29  * The #GtkMenuButton widget can hold any valid child widget. That is, it
30  * can hold almost any other standard #GtkWidget. The most commonly used
31  * child is the provided #GtkArrow.
32  *
33  * The positioning of the menu is determined by the #GtkMenuButton:direction
34  * property of the menu button and the #GtkWidget:halign or #GtkWidget:valign
35  * properties of the menu. For example, when the direction is %GTK_ARROW_DOWN
36  * and the horizontal alignment is %GTK_ALIGN_START, the menu will be
37  * positioned below the button, with the starting edge (depending on the
38  * text direction) of the menu aligned with the starting edge of the button.
39  * If there is not enough space below the button, the menu is popped up above
40  * the button instead. If the alignment would move part of the menu offscreen,
41  * it is 'pushed in'.
42  *
43  * <informaltable>
44  *   <tgroup cols="4">
45  *     <tbody>
46  *       <row>
47  *         <entry></entry>
48  *         <entry>halign = start</entry>
49  *         <entry>halign = center</entry>
50  *         <entry>halign = end</entry>
51  *       </row>
52  *     <row>
53  *       <entry>direction = down</entry>
54  *       <entry>
55  *         <inlinemediaobject>
56  *           <imageobject><imagedata fileref="down-start.png" format="PNG"/></imageobject>
57  *         </inlinemediaobject>
58  *       </entry>
59  *       <entry>
60  *         <inlinemediaobject>
61  *           <imageobject><imagedata fileref="down-center.png" format="PNG"/></imageobject>
62  *         </inlinemediaobject>
63  *       </entry>
64  *       <entry>
65  *         <inlinemediaobject>
66  *           <imageobject><imagedata fileref="down-end.png" format="PNG"/></imageobject>
67  *         </inlinemediaobject>
68  *       </entry>
69  *     </row>
70  *     <row>
71  *       <entry>direction = up</entry>
72  *       <entry>
73  *         <inlinemediaobject>
74  *           <imageobject><imagedata fileref="up-start.png" format="PNG"/></imageobject>
75  *         </inlinemediaobject>
76  *       </entry>
77  *       <entry>
78  *         <inlinemediaobject>
79  *           <imageobject><imagedata fileref="up-center.png" format="PNG"/></imageobject>
80  *         </inlinemediaobject>
81  *       </entry>
82  *       <entry>
83  *         <inlinemediaobject>
84  *           <imageobject><imagedata fileref="up-end.png" format="PNG"/></imageobject>
85  *         </inlinemediaobject>
86  *       </entry>
87  *      </row>
88  *     </tbody>
89  *   </tgroup>
90  * </informaltable>
91  * <informaltable>
92  *   <tgroup cols="3">
93  *     <tbody>
94  *       <row>
95  *         <entry></entry>
96  *         <entry>direction = left</entry>
97  *         <entry>direction = right</entry>
98  *       </row>
99  *     <row>
100  *       <entry>valign = start</entry>
101  *       <entry>
102  *         <inlinemediaobject>
103  *           <imageobject><imagedata fileref="left-start.png" format="PNG"/></imageobject>
104  *         </inlinemediaobject>
105  *       </entry>
106  *       <entry>
107  *         <inlinemediaobject>
108  *           <imageobject><imagedata fileref="right-start.png" format="PNG"/></imageobject>
109  *         </inlinemediaobject>
110  *       </entry>
111  *     </row>
112  *     <row>
113  *       <entry>valign = center</entry>
114  *       <entry>
115  *         <inlinemediaobject>
116  *           <imageobject><imagedata fileref="left-center.png" format="PNG"/></imageobject>
117  *         </inlinemediaobject>
118  *       </entry>
119  *       <entry>
120  *         <inlinemediaobject>
121  *           <imageobject><imagedata fileref="right-center.png" format="PNG"/></imageobject>
122  *         </inlinemediaobject>
123  *       </entry>
124  *     </row>
125  *     <row>
126  *       <entry>valign = end</entry>
127  *       <entry>
128  *         <inlinemediaobject>
129  *           <imageobject><imagedata fileref="left-end.png" format="PNG"/></imageobject>
130  *         </inlinemediaobject>
131  *       </entry>
132  *       <entry>
133  *         <inlinemediaobject>
134  *           <imageobject><imagedata fileref="right-end.png" format="PNG"/></imageobject>
135  *         </inlinemediaobject>
136  *       </entry>
137  *      </row>
138  *     </tbody>
139  *   </tgroup>
140  * </informaltable>
141  */
142
143 #include "config.h"
144
145 #include "gtkmenubutton.h"
146 #include "gtkmenubuttonprivate.h"
147 #include "gtkarrow.h"
148
149 #include "gtkprivate.h"
150 #include "gtkintl.h"
151
152 struct _GtkMenuButtonPrivate
153 {
154   GtkWidget *popup;
155   GMenuModel *model;
156
157   GtkMenuButtonShowMenuCallback func;
158   gpointer user_data;
159
160   GtkArrowType arrow_type;
161   GtkWidget *align_widget;
162   gpointer arrow_widget;
163 };
164
165 enum
166 {
167   PROP_0,
168   PROP_POPUP,
169   PROP_MODEL,
170   PROP_ALIGN_WIDGET,
171   PROP_DIRECTION
172 };
173
174 G_DEFINE_TYPE(GtkMenuButton, gtk_menu_button, GTK_TYPE_TOGGLE_BUTTON)
175
176 static void gtk_menu_button_dispose (GObject *object);
177
178 static void
179 gtk_menu_button_set_property (GObject      *object,
180                               guint         property_id,
181                               const GValue *value,
182                               GParamSpec   *pspec)
183 {
184   GtkMenuButton *self = GTK_MENU_BUTTON (object);
185
186   switch (property_id)
187     {
188       case PROP_POPUP:
189         gtk_menu_button_set_popup (self, g_value_get_object (value));
190         break;
191       case PROP_MODEL:
192         gtk_menu_button_set_menu_model (self, g_value_get_object (value));
193         break;
194       case PROP_ALIGN_WIDGET:
195         gtk_menu_button_set_align_widget (self, g_value_get_object (value));
196         break;
197       case PROP_DIRECTION:
198         gtk_menu_button_set_direction (self, g_value_get_enum (value));
199         break;
200       default:
201         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
202     }
203 }
204
205 static void
206 gtk_menu_button_get_property (GObject    *object,
207                               guint       property_id,
208                               GValue     *value,
209                               GParamSpec *pspec)
210 {
211   GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (object)->priv;
212
213   switch (property_id)
214     {
215       case PROP_POPUP:
216         g_value_set_object (value, priv->popup);
217         break;
218       case PROP_MODEL:
219         g_value_set_object (value, priv->model);
220         break;
221       case PROP_ALIGN_WIDGET:
222         g_value_set_object (value, priv->align_widget);
223         break;
224       case PROP_DIRECTION:
225         g_value_set_enum (value, priv->arrow_type);
226         break;
227       default:
228         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
229     }
230 }
231
232 static void
233 gtk_menu_button_state_flags_changed (GtkWidget    *widget,
234                                      GtkStateFlags previous_state_flags)
235 {
236   GtkMenuButton *button = GTK_MENU_BUTTON (widget);
237   GtkMenuButtonPrivate *priv = button->priv;
238
239   if (!gtk_widget_is_sensitive (widget) && priv->popup)
240     gtk_menu_shell_deactivate (GTK_MENU_SHELL (priv->popup));
241 }
242
243 static void
244 menu_position_up_down_func (GtkMenu       *menu,
245                             gint          *x,
246                             gint          *y,
247                             gboolean      *push_in,
248                             GtkMenuButton *menu_button)
249 {
250   GtkMenuButtonPrivate *priv = menu_button->priv;
251   GtkWidget *widget = GTK_WIDGET (menu_button);
252   GtkRequisition menu_req;
253   GtkTextDirection direction;
254   GdkRectangle monitor;
255   gint monitor_num;
256   GdkScreen *screen;
257   GdkWindow *window;
258   GtkAllocation allocation, arrow_allocation;
259   GtkAlign align;
260
261   gtk_widget_get_preferred_size (GTK_WIDGET (priv->popup),
262                                  &menu_req, NULL);
263
264   align = gtk_widget_get_halign (GTK_WIDGET (priv->popup));
265   direction = gtk_widget_get_direction (widget);
266   window = gtk_widget_get_window (priv->align_widget ? priv->align_widget : widget);
267
268   screen = gtk_widget_get_screen (GTK_WIDGET (menu));
269   monitor_num = gdk_screen_get_monitor_at_window (screen, window);
270   if (monitor_num < 0)
271     monitor_num = 0;
272   gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
273
274   gtk_widget_get_allocation (priv->align_widget ? priv->align_widget : widget, &allocation);
275   gtk_widget_get_allocation (widget, &arrow_allocation);
276
277   gdk_window_get_origin (window, x, y);
278   *x += allocation.x;
279   *y += allocation.y;
280
281   /* treat the default align value like START */
282   if (align == GTK_ALIGN_FILL)
283     align = GTK_ALIGN_START;
284
285   if (align == GTK_ALIGN_CENTER)
286     *x -= (menu_req.width - allocation.width) / 2;
287   else if ((align == GTK_ALIGN_START && direction == GTK_TEXT_DIR_LTR) ||
288            (align == GTK_ALIGN_END && direction == GTK_TEXT_DIR_RTL))
289     *x += MAX (allocation.width - menu_req.width, 0);
290   else if (menu_req.width > allocation.width)
291     *x -= menu_req.width - allocation.width;
292
293   if (priv->arrow_type == GTK_ARROW_UP && *y - menu_req.height >= monitor.y)
294     {
295       *y -= menu_req.height;
296     }
297   else
298     {
299       if ((*y + arrow_allocation.height + menu_req.height) <= monitor.y + monitor.height)
300         *y += arrow_allocation.height;
301       else if ((*y - menu_req.height) >= monitor.y)
302         *y -= menu_req.height;
303       else if (monitor.y + monitor.height - (*y + arrow_allocation.height) > *y)
304         *y += arrow_allocation.height;
305       else
306         *y -= menu_req.height;
307     }
308
309   *push_in = FALSE;
310 }
311
312 static void
313 menu_position_side_func (GtkMenu       *menu,
314                          gint          *x,
315                          gint          *y,
316                          gboolean      *push_in,
317                          GtkMenuButton *menu_button)
318 {
319   GtkMenuButtonPrivate *priv = menu_button->priv;
320   GtkAllocation allocation;
321   GtkWidget *widget = GTK_WIDGET (menu_button);
322   GtkRequisition menu_req;
323   GdkRectangle monitor;
324   gint monitor_num;
325   GdkScreen *screen;
326   GdkWindow *window;
327   GtkAlign align;
328
329   gtk_widget_get_preferred_size (GTK_WIDGET (priv->popup),
330                                  &menu_req, NULL);
331
332   window = gtk_widget_get_window (widget);
333
334   align = gtk_widget_get_valign (GTK_WIDGET (menu));
335   screen = gtk_widget_get_screen (GTK_WIDGET (menu));
336   monitor_num = gdk_screen_get_monitor_at_window (screen, window);
337   if (monitor_num < 0)
338     monitor_num = 0;
339   gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
340
341   gdk_window_get_origin (gtk_button_get_event_window (GTK_BUTTON (menu_button)), x, y);
342
343   gtk_widget_get_allocation (widget, &allocation);
344
345   if (priv->arrow_type == GTK_ARROW_RIGHT)
346     {
347       if (*x + allocation.width + menu_req.width <= monitor.x + monitor.width)
348         *x += allocation.width;
349       else
350         *x -= menu_req.width;
351     }
352   else
353     {
354       if (*x - menu_req.width >= monitor.x)
355         *x -= menu_req.width;
356       else
357         *x += allocation.width;
358     }
359
360   /* treat the default align value like START */
361   if (align == GTK_ALIGN_FILL)
362     align = GTK_ALIGN_START;
363
364   if (align == GTK_ALIGN_CENTER)
365     *y -= (menu_req.height - allocation.height) / 2;
366   else if (align == GTK_ALIGN_END)
367     *y -= menu_req.height - allocation.height;
368
369   *push_in = FALSE;
370 }
371
372 static void
373 popup_menu (GtkMenuButton  *menu_button,
374             GdkEventButton *event)
375 {
376   GtkMenuButtonPrivate *priv = menu_button->priv;
377   GtkMenuPositionFunc func;
378
379   if (priv->func)
380     priv->func (priv->user_data);
381
382   if (!priv->popup)
383     return;
384
385   switch (priv->arrow_type)
386     {
387       case GTK_ARROW_LEFT:
388       case GTK_ARROW_RIGHT:
389         func = (GtkMenuPositionFunc) menu_position_side_func;
390         break;
391       default:
392         func = (GtkMenuPositionFunc) menu_position_up_down_func;
393         break;
394   }
395
396   gtk_menu_popup_for_device (GTK_MENU (priv->popup),
397                              event ? event->device : NULL,
398                              NULL, NULL,
399                              func,
400                              GTK_WIDGET (menu_button),
401                              NULL,
402                              event ? event->button : 0,
403                              event ? event->time : gtk_get_current_event_time ());
404 }
405
406 static void
407 gtk_menu_button_toggled (GtkToggleButton *button)
408 {
409   GtkMenuButton *menu_button = GTK_MENU_BUTTON (button);
410   GtkMenuButtonPrivate *priv = menu_button->priv;
411
412   if (!priv->popup)
413     return;
414
415   if (gtk_toggle_button_get_active (button) &&
416       !gtk_widget_get_visible (GTK_WIDGET (priv->popup)))
417     {
418       /* we get here only when the menu is activated by a key
419        * press, so that we can select the first menu item
420        */
421       popup_menu (menu_button, NULL);
422       gtk_menu_shell_select_first (GTK_MENU_SHELL (priv->popup), FALSE);
423     }
424 }
425
426 static gboolean
427 gtk_menu_button_button_press_event (GtkWidget      *widget,
428                                     GdkEventButton *event)
429 {
430   if (event->button == GDK_BUTTON_PRIMARY)
431     {
432       popup_menu (GTK_MENU_BUTTON (widget), event);
433       gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), TRUE);
434
435       return TRUE;
436     }
437
438   return GTK_WIDGET_CLASS (gtk_menu_button_parent_class)->button_press_event (widget, event);
439 }
440
441 static void
442 gtk_menu_button_class_init (GtkMenuButtonClass *klass)
443 {
444   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
445   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
446   GtkToggleButtonClass *toggle_button_class = GTK_TOGGLE_BUTTON_CLASS (klass);
447
448   g_type_class_add_private (klass, sizeof (GtkMenuButtonPrivate));
449
450   gobject_class->set_property = gtk_menu_button_set_property;
451   gobject_class->get_property = gtk_menu_button_get_property;
452   gobject_class->dispose = gtk_menu_button_dispose;
453
454   widget_class->state_flags_changed = gtk_menu_button_state_flags_changed;
455   widget_class->button_press_event = gtk_menu_button_button_press_event;
456
457   toggle_button_class->toggled = gtk_menu_button_toggled;
458
459   /**
460    * GtkMenuButton:popup:
461    *
462    * The #GtkMenu that will be popped up when the button is clicked.
463    *
464    * Since: 3.6
465    */
466   g_object_class_install_property (gobject_class,
467                                    PROP_POPUP,
468                                    g_param_spec_object ("popup",
469                                                         P_("popup"),
470                                                         P_("The dropdown menu."),
471                                                         GTK_TYPE_MENU,
472                                                         G_PARAM_READWRITE));
473    /**
474    * GtkMenuButton:menu:
475    *
476    * The #GtkMenu that will be popped up when the button is clicked.
477    * This property has been renamed to "popup".  "menu" will be
478    * removed before 3.6.0.
479    *
480    * Since: 3.6
481    */
482   g_object_class_install_property (gobject_class,
483                                    PROP_POPUP, /* [sic] */
484                                    g_param_spec_object ("menu",
485                                                         P_("menu"),
486                                                         P_("The dropdown menu."),
487                                                         GTK_TYPE_MENU,
488                                                         G_PARAM_DEPRECATED | G_PARAM_READWRITE));
489   /**
490    * GtkMenuButton:menu-model:
491    *
492    * The #GMenuModel from which the menu to pop up will be created.
493    * See gtk_menu_button_set_menu_model() for the interaction with the
494    * #GtkMenuButton:menu property.
495    *
496    * Since: 3.6
497    */
498   g_object_class_install_property (gobject_class,
499                                    PROP_MODEL,
500                                    g_param_spec_object ("menu-model",
501                                                         P_("menu-model"),
502                                                         P_("The dropdown menu's model."),
503                                                         G_TYPE_MENU_MODEL,
504                                                         G_PARAM_READWRITE));
505   /**
506    * GtkMenuButton:align-widget:
507    *
508    * The #GtkWidget to use to align the popup menu with.
509    *
510    * Since: 3.6
511    */
512   g_object_class_install_property (gobject_class,
513                                    PROP_ALIGN_WIDGET,
514                                    g_param_spec_object ("align-widget",
515                                                         P_("align-widget"),
516                                                         P_("The parent widget which the menu should align with."),
517                                                         GTK_TYPE_CONTAINER,
518                                                         G_PARAM_READWRITE));
519   /**
520    * GtkMenuButton:direction:
521    *
522    * The #GtkArrowType representing the direction in which the
523    * menu will be popped out.
524    *
525    * Since: 3.6
526    */
527   g_object_class_install_property (gobject_class,
528                                    PROP_DIRECTION,
529                                    g_param_spec_enum ("direction",
530                                                       P_("direction"),
531                                                       P_("The direction the arrow should point."),
532                                                       GTK_TYPE_ARROW_TYPE,
533                                                       GTK_ARROW_DOWN,
534                                                       G_PARAM_READWRITE));
535 }
536
537 static void
538 add_arrow (GtkMenuButton *menu_button)
539 {
540   GtkWidget *arrow;
541
542   arrow = gtk_arrow_new (menu_button->priv->arrow_type, GTK_SHADOW_NONE);
543   gtk_container_add (GTK_CONTAINER (menu_button), arrow);
544   gtk_widget_show (arrow);
545   menu_button->priv->arrow_widget = arrow;
546 }
547
548 static void
549 gtk_menu_button_init (GtkMenuButton *menu_button)
550 {
551   GtkMenuButtonPrivate *priv;
552
553   priv = G_TYPE_INSTANCE_GET_PRIVATE (menu_button, GTK_TYPE_MENU_BUTTON, GtkMenuButtonPrivate);
554   menu_button->priv = priv;
555   priv->arrow_type = GTK_ARROW_DOWN;
556
557   add_arrow (menu_button);
558
559   gtk_widget_set_sensitive (GTK_WIDGET (menu_button), FALSE);
560 }
561
562 /**
563  * gtk_menu_button_new:
564  *
565  * Creates a new #GtkMenuButton widget with downwards-pointing
566  * arrow as the only child. You can replace the child widget
567  * with another #GtkWidget should you wish to.
568  *
569  * Returns: The newly created #GtkMenuButton widget.
570  *
571  * Since: 3.6
572  */
573 GtkWidget *
574 gtk_menu_button_new (void)
575 {
576   return g_object_new (GTK_TYPE_MENU_BUTTON, NULL);
577 }
578
579 /* Callback for the "deactivate" signal on the pop-up menu.
580  * This is used so that we unset the state of the toggle button
581  * when the pop-up menu disappears.
582  */
583 static int
584 menu_deactivate_cb (GtkMenuShell  *menu_shell,
585                     GtkMenuButton *menu_button)
586 {
587   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (menu_button), FALSE);
588
589   return TRUE;
590 }
591
592 static void
593 menu_detacher (GtkWidget *widget,
594                GtkMenu   *menu)
595 {
596   GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (widget)->priv;
597
598   g_return_if_fail (priv->popup == (GtkWidget *) menu);
599
600   priv->popup = NULL;
601 }
602
603 /* This function is used in GtkMenuToolButton, the call back will
604  * be called when GtkMenuToolButton would have emitted the "show-menu"
605  * signal.
606  */
607 void
608 _gtk_menu_button_set_popup_with_func (GtkMenuButton                 *menu_button,
609                                       GtkWidget                     *menu,
610                                       GtkMenuButtonShowMenuCallback  func,
611                                       gpointer                       user_data)
612 {
613   GtkMenuButtonPrivate *priv;
614
615   g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
616   g_return_if_fail (GTK_IS_MENU (menu) || menu == NULL);
617
618   priv = menu_button->priv;
619   priv->func = func;
620   priv->user_data = user_data;
621
622   if (priv->popup == GTK_WIDGET (menu))
623     return;
624
625   if (priv->popup)
626     {
627       if (gtk_widget_get_visible (GTK_WIDGET (priv->popup)))
628         gtk_menu_shell_deactivate (GTK_MENU_SHELL (priv->popup));
629     }
630
631   if (priv->popup)
632     {
633       g_signal_handlers_disconnect_by_func (priv->popup,
634                                             menu_deactivate_cb,
635                                             menu_button);
636       gtk_menu_detach (GTK_MENU (priv->popup));
637     }
638
639   priv->popup = menu;
640
641   if (priv->popup)
642     {
643       gtk_menu_attach_to_widget (GTK_MENU (priv->popup), GTK_WIDGET (menu_button),
644                                  menu_detacher);
645
646       gtk_widget_set_sensitive (GTK_WIDGET (menu_button), TRUE);
647
648       g_signal_connect (priv->popup, "deactivate",
649                         G_CALLBACK (menu_deactivate_cb), menu_button);
650     }
651   else
652     {
653       gtk_widget_set_sensitive (GTK_WIDGET (menu_button), FALSE);
654     }
655
656   g_object_notify (G_OBJECT (menu_button), "menu");
657   g_object_notify (G_OBJECT (menu_button), "menu-model");
658 }
659
660 /**
661  * gtk_menu_button_set_popup:
662  * @menu_button: a #GtkMenuButton
663  * @popup: (allow-none): a #GtkMenu
664  *
665  * Sets the #GtkMenu that will be popped up when the button is clicked,
666  * or %NULL to disable the button. If #GtkMenuButton:menu-model is set,
667  * it will be set to %NULL.
668  *
669  * Since: 3.6
670  */
671 void
672 gtk_menu_button_set_popup (GtkMenuButton *menu_button,
673                            GtkWidget     *popup)
674 {
675   GtkMenuButtonPrivate *priv;
676
677   g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
678   g_return_if_fail (GTK_IS_MENU (popup) || popup == NULL);
679
680   priv = menu_button->priv;
681   g_clear_object (&priv->model);
682
683   _gtk_menu_button_set_popup_with_func (menu_button, popup, NULL, NULL);
684 }
685
686 /**
687  * gtk_menu_button_get_popup:
688  * @menu_button: a #GtkMenuButton
689  *
690  * Returns the #GtkMenu that pops out of the button.
691  *
692  * Returns: (transfer none): a #GtkMenu or %NULL.
693  *
694  * Since: 3.6
695  */
696 GtkMenu *
697 gtk_menu_button_get_popup (GtkMenuButton *menu_button)
698 {
699   g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
700
701   return GTK_MENU (menu_button->priv->popup);
702 }
703
704 void
705 gtk_menu_button_set_menu (GtkMenuButton *menu_button,
706                           GtkWidget     *menu)
707 {
708   gtk_menu_button_set_popup (menu_button, menu);
709 }
710
711 GtkMenu *
712 gtk_menu_button_get_menu (GtkMenuButton *menu_button)
713 {
714   return gtk_menu_button_get_popup (menu_button);
715 }
716
717 /**
718  * gtk_menu_button_set_menu_model:
719  * @menu_button: a #GtkMenuButton
720  * @menu_model: (allow-none): a #GMenuModel
721  *
722  * Sets the #GMenuModel from which the #GtkMenuButton:menu property will be
723  * filled in, or %NULL to disable the button.
724  *
725  * The #GtkMenu will be created with gtk_menu_new_from_model(), so actions
726  * will be connected as documented there.
727  *
728  * If you #GtkMenuButton:menu * is already set, then its content will be lost
729  * and replaced by our newly created #GtkMenu.
730  *
731  * Since: 3.6
732  */
733 void
734 gtk_menu_button_set_menu_model (GtkMenuButton *menu_button,
735                                 GMenuModel    *menu_model)
736 {
737   GtkMenuButtonPrivate *priv;
738   GtkWidget *menu;
739
740   g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
741   g_return_if_fail (G_IS_MENU_MODEL (menu_model) || menu_model == NULL);
742
743   priv = menu_button->priv;
744   g_clear_object (&priv->model);
745
746   if (menu_model == NULL)
747     {
748       gtk_menu_button_set_popup (menu_button, NULL);
749       return;
750     }
751
752   priv->model = g_object_ref (menu_model);
753   menu = gtk_menu_new_from_model (menu_model);
754   gtk_widget_show_all (menu);
755   gtk_menu_button_set_popup (menu_button, menu);
756 }
757
758 /**
759  * gtk_menu_button_get_menu_model:
760  * @menu_button: a #GtkMenuButton
761  *
762  * Returns the #GMenuModel used to generate the menu.
763  *
764  * Returns: (transfer none): a #GMenuModel or %NULL.
765  *
766  * Since: 3.6
767  */
768 GMenuModel *
769 gtk_menu_button_get_menu_model (GtkMenuButton *menu_button)
770 {
771   g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
772
773   return menu_button->priv->model;
774 }
775
776 /**
777  * gtk_menu_button_set_align_widget:
778  * @menu_button: a #GtkMenuButton
779  * @align_widget: (allow-none): a #GtkWidget
780  *
781  * Sets the #GtkWidget to use to line the menu with when popped up. Note that
782  * the @align_widget must contain the #GtkMenuButton itself.
783  *
784  * Setting it to %NULL means that the popup menu will be aligned with the
785  * button itself.
786  *
787  * Since: 3.6
788  */
789 void
790 gtk_menu_button_set_align_widget (GtkMenuButton *menu_button,
791                                   GtkWidget     *align_widget)
792 {
793   GtkMenuButtonPrivate *priv;
794
795   g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
796   g_return_if_fail (align_widget == NULL || gtk_widget_is_ancestor (GTK_WIDGET (menu_button), align_widget));
797
798   priv = menu_button->priv;
799   if (priv->align_widget == align_widget)
800     return;
801
802   priv->align_widget = align_widget;
803
804   if (priv->align_widget)
805     g_object_add_weak_pointer (G_OBJECT (priv->align_widget), (gpointer *) &priv->align_widget);
806
807   g_object_notify (G_OBJECT (menu_button), "align-widget");
808 }
809
810 /**
811  * gtk_menu_button_get_align_widget:
812  * @menu_button: a #GtkMenuButton
813  *
814  * Returns the parent #GtkWidget to use to line up with menu.
815  *
816  * Returns: (transfer none): a #GtkWidget value or %NULL.
817  *
818  * Since: 3.6
819  */
820 GtkWidget *
821 gtk_menu_button_get_align_widget (GtkMenuButton *menu_button)
822 {
823   g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
824
825   return menu_button->priv->align_widget;
826 }
827
828 /**
829  * gtk_menu_button_set_direction:
830  * @menu_button: a #GtkMenuButton
831  * @direction: a #GtkArrowType
832  *
833  * Sets the direction in which the menu will be popped up, as
834  * well as changing the arrow's direction. The child will not
835  * be changed to an arrow if it was customized.
836  *
837  * If the menu when popped out would have collided with screen edges,
838  * we will do our best to keep it inside the screen and fully visible.
839  *
840  * If you pass GTK_ARROW_NONE for a @direction, the menu will behave
841  * as if you passed GTK_ARROW_DOWN (although you won't see any arrows).
842  *
843  * Since: 3.6
844  */
845 void
846 gtk_menu_button_set_direction (GtkMenuButton *menu_button,
847                                GtkArrowType   direction)
848 {
849   GtkMenuButtonPrivate *priv = menu_button->priv;
850   GtkWidget *child;
851
852   g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
853
854   if (priv->arrow_type == direction)
855     return;
856
857   priv->arrow_type = direction;
858
859   /* Is it custom content? We don't change that */
860   child = gtk_bin_get_child (GTK_BIN (menu_button));
861   if (priv->arrow_widget != child)
862     return;
863
864   gtk_arrow_set (GTK_ARROW (child), priv->arrow_type, GTK_SHADOW_NONE);
865 }
866
867 /**
868  * gtk_menu_button_get_direction:
869  * @menu_button: a #GtkMenuButton
870  *
871  * Returns the direction the menu will be pointing at when popped up.
872  *
873  * Returns: a #GtkArrowType value.
874  *
875  * Since: 3.6
876  */
877 GtkArrowType
878 gtk_menu_button_get_direction (GtkMenuButton *menu_button)
879 {
880   g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), GTK_ARROW_DOWN);
881
882   return menu_button->priv->arrow_type;
883 }
884
885 static void
886 gtk_menu_button_dispose (GObject *object)
887 {
888   GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (object)->priv;
889
890   if (priv->popup)
891     {
892       g_signal_handlers_disconnect_by_func (priv->popup,
893                                             menu_deactivate_cb,
894                                             object);
895       gtk_menu_detach (GTK_MENU (priv->popup));
896     }
897
898   g_clear_object (&priv->model);
899
900   G_OBJECT_CLASS (gtk_menu_button_parent_class)->dispose (object);
901 }