2012-05-29 17:39:37 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2003 Ricardo Fernandez Pascual
|
|
|
|
|
* Copyright (C) 2004 Paolo Borelli
|
|
|
|
|
* Copyright (C) 2012 Bastien Nocera
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkmenubutton
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* @short_description: A widget that shows a popup when clicked on
|
2012-07-14 03:05:36 +00:00
|
|
|
|
* @title: GtkMenuButton
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* The #GtkMenuButton widget is used to display a popup when clicked on.
|
|
|
|
|
* This popup can be provided either as a #GtkMenu, a #GtkPopover or an
|
|
|
|
|
* abstract #GMenuModel.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2012-08-07 02:26:13 +00:00
|
|
|
|
* The #GtkMenuButton widget can hold any valid child widget. That is, it
|
|
|
|
|
* can hold almost any other standard #GtkWidget. The most commonly used
|
|
|
|
|
* child is the provided #GtkArrow.
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* The positioning of the popup is determined by the #GtkMenuButton:direction
|
|
|
|
|
* property of the menu button.
|
|
|
|
|
*
|
|
|
|
|
* For menus, the #GtkWidget:halign and #GtkWidget:valign properties of the
|
|
|
|
|
* menu are also taken into account. For example, when the direction is
|
|
|
|
|
* %GTK_ARROW_DOWN and the horizontal alignment is %GTK_ALIGN_START, the
|
|
|
|
|
* menu will be positioned below the button, with the starting edge
|
|
|
|
|
* (depending on the text direction) of the menu aligned with the starting
|
|
|
|
|
* edge of the button. If there is not enough space below the button, the
|
|
|
|
|
* menu is popped up above the button instead. If the alignment would move
|
|
|
|
|
* part of the menu offscreen, it is “pushed in”.
|
2012-08-07 02:26:13 +00:00
|
|
|
|
*
|
2014-02-05 01:00:53 +00:00
|
|
|
|
* ## Direction = Down
|
|
|
|
|
*
|
|
|
|
|
* - halign = start
|
|
|
|
|
*
|
|
|
|
|
* ![](down-start.png)
|
|
|
|
|
*
|
|
|
|
|
* - halign = center
|
|
|
|
|
*
|
|
|
|
|
* ![](down-center.png)
|
|
|
|
|
*
|
|
|
|
|
* - halign = end
|
|
|
|
|
*
|
|
|
|
|
* ![](down-end.png)
|
|
|
|
|
*
|
|
|
|
|
* ## Direction = Up
|
|
|
|
|
*
|
|
|
|
|
* - halign = start
|
|
|
|
|
*
|
|
|
|
|
* ![](up-start.png)
|
|
|
|
|
*
|
|
|
|
|
* - halign = center
|
|
|
|
|
*
|
|
|
|
|
* ![](up-center.png)
|
|
|
|
|
*
|
|
|
|
|
* - halign = end
|
|
|
|
|
*
|
|
|
|
|
* ![](up-end.png)
|
|
|
|
|
*
|
|
|
|
|
* ## Direction = Left
|
|
|
|
|
*
|
|
|
|
|
* - valign = start
|
|
|
|
|
*
|
|
|
|
|
* ![](left-start.png)
|
|
|
|
|
*
|
|
|
|
|
* - valign = center
|
|
|
|
|
*
|
|
|
|
|
* ![](left-center.png)
|
|
|
|
|
*
|
|
|
|
|
* - valign = end
|
|
|
|
|
*
|
|
|
|
|
* ![](left-end.png)
|
|
|
|
|
*
|
|
|
|
|
* ## Direction = Right
|
|
|
|
|
*
|
|
|
|
|
* - valign = start
|
|
|
|
|
*
|
|
|
|
|
* ![](right-start.png)
|
|
|
|
|
*
|
|
|
|
|
* - valign = center
|
|
|
|
|
*
|
|
|
|
|
* ![](right-center.png)
|
|
|
|
|
*
|
|
|
|
|
* - valign = end
|
|
|
|
|
*
|
|
|
|
|
* ![](right-end.png)
|
|
|
|
|
*
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include "gtkmenubutton.h"
|
|
|
|
|
#include "gtkmenubuttonprivate.h"
|
|
|
|
|
#include "gtkarrow.h"
|
2012-09-24 04:01:39 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
|
|
|
|
#include "gtkwindow.h"
|
|
|
|
|
#include "gtkmain.h"
|
2013-12-20 14:05:43 +00:00
|
|
|
|
#include "gtkaccessible.h"
|
2014-02-08 00:21:49 +00:00
|
|
|
|
#include "gtkpopover.h"
|
2013-12-20 15:58:32 +00:00
|
|
|
|
#include "a11y/gtkmenubuttonaccessible.h"
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
#include "gtkprivate.h"
|
|
|
|
|
#include "gtkintl.h"
|
|
|
|
|
|
|
|
|
|
struct _GtkMenuButtonPrivate
|
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
GtkWidget *menu; /* The menu and the popover are mutually exclusive */
|
|
|
|
|
GtkWidget *popover; /* Only one at a time can be set */
|
2012-05-29 17:39:37 +00:00
|
|
|
|
GMenuModel *model;
|
|
|
|
|
|
|
|
|
|
GtkMenuButtonShowMenuCallback func;
|
|
|
|
|
gpointer user_data;
|
|
|
|
|
|
|
|
|
|
GtkWidget *align_widget;
|
|
|
|
|
gpointer arrow_widget;
|
2013-09-22 03:37:48 +00:00
|
|
|
|
GtkArrowType arrow_type;
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gboolean use_popover;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
2012-08-20 21:03:15 +00:00
|
|
|
|
PROP_POPUP,
|
2014-02-22 17:08:45 +00:00
|
|
|
|
PROP_MENU_MODEL,
|
2012-05-29 17:39:37 +00:00
|
|
|
|
PROP_ALIGN_WIDGET,
|
2014-02-08 00:21:49 +00:00
|
|
|
|
PROP_DIRECTION,
|
|
|
|
|
PROP_USE_POPOVER,
|
|
|
|
|
PROP_POPOVER
|
2012-05-29 17:39:37 +00:00
|
|
|
|
};
|
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkMenuButton, gtk_menu_button, GTK_TYPE_TOGGLE_BUTTON)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-07-29 16:43:26 +00:00
|
|
|
|
static void gtk_menu_button_dispose (GObject *object);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_set_property (GObject *object,
|
2012-07-14 03:05:36 +00:00
|
|
|
|
guint property_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButton *self = GTK_MENU_BUTTON (object);
|
|
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
|
{
|
2012-08-20 21:03:15 +00:00
|
|
|
|
case PROP_POPUP:
|
|
|
|
|
gtk_menu_button_set_popup (self, g_value_get_object (value));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
break;
|
2014-02-22 17:08:45 +00:00
|
|
|
|
case PROP_MENU_MODEL:
|
2012-05-29 17:39:37 +00:00
|
|
|
|
gtk_menu_button_set_menu_model (self, g_value_get_object (value));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_ALIGN_WIDGET:
|
|
|
|
|
gtk_menu_button_set_align_widget (self, g_value_get_object (value));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_DIRECTION:
|
|
|
|
|
gtk_menu_button_set_direction (self, g_value_get_enum (value));
|
|
|
|
|
break;
|
2014-02-08 00:21:49 +00:00
|
|
|
|
case PROP_USE_POPOVER:
|
|
|
|
|
gtk_menu_button_set_use_popover (self, g_value_get_boolean (value));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_POPOVER:
|
|
|
|
|
gtk_menu_button_set_popover (self, g_value_get_object (value));
|
|
|
|
|
break;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_get_property (GObject *object,
|
2012-07-14 03:05:36 +00:00
|
|
|
|
guint property_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (object)->priv;
|
|
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
|
{
|
2012-08-20 21:03:15 +00:00
|
|
|
|
case PROP_POPUP:
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_value_set_object (value, priv->menu);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
break;
|
2014-02-22 17:08:45 +00:00
|
|
|
|
case PROP_MENU_MODEL:
|
2012-05-29 17:39:37 +00:00
|
|
|
|
g_value_set_object (value, priv->model);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_ALIGN_WIDGET:
|
|
|
|
|
g_value_set_object (value, priv->align_widget);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_DIRECTION:
|
|
|
|
|
g_value_set_enum (value, priv->arrow_type);
|
|
|
|
|
break;
|
2014-02-08 00:21:49 +00:00
|
|
|
|
case PROP_USE_POPOVER:
|
|
|
|
|
g_value_set_boolean (value, priv->use_popover);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_POPOVER:
|
|
|
|
|
g_value_set_object (value, priv->popover);
|
|
|
|
|
break;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_state_flags_changed (GtkWidget *widget,
|
|
|
|
|
GtkStateFlags previous_state_flags)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButton *button = GTK_MENU_BUTTON (widget);
|
|
|
|
|
GtkMenuButtonPrivate *priv = button->priv;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (!gtk_widget_is_sensitive (widget))
|
|
|
|
|
{
|
|
|
|
|
if (priv->menu)
|
|
|
|
|
gtk_menu_shell_deactivate (GTK_MENU_SHELL (priv->menu));
|
|
|
|
|
else if (priv->popover)
|
|
|
|
|
gtk_widget_hide (priv->popover);
|
|
|
|
|
}
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-08-07 02:26:13 +00:00
|
|
|
|
menu_position_up_down_func (GtkMenu *menu,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y,
|
|
|
|
|
gboolean *push_in,
|
|
|
|
|
GtkMenuButton *menu_button)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
GtkWidget *widget = GTK_WIDGET (menu_button);
|
2012-09-17 13:50:03 +00:00
|
|
|
|
GtkWidget *toplevel;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
GtkTextDirection direction;
|
|
|
|
|
GdkRectangle monitor;
|
|
|
|
|
gint monitor_num;
|
|
|
|
|
GdkScreen *screen;
|
|
|
|
|
GdkWindow *window;
|
2013-12-22 17:43:35 +00:00
|
|
|
|
GtkAllocation menu_allocation, allocation, arrow_allocation;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
GtkAlign align;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-09-17 13:50:03 +00:00
|
|
|
|
/* In the common case the menu button is showing a dropdown menu, set the
|
|
|
|
|
* corresponding type hint on the toplevel, so the WM can omit the top side
|
|
|
|
|
* of the shadows.
|
|
|
|
|
*/
|
|
|
|
|
if (priv->arrow_type == GTK_ARROW_DOWN)
|
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
toplevel = gtk_widget_get_toplevel (priv->menu);
|
2012-09-17 13:50:03 +00:00
|
|
|
|
gtk_window_set_type_hint (GTK_WINDOW (toplevel), GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
align = gtk_widget_get_halign (priv->menu);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
direction = gtk_widget_get_direction (widget);
|
|
|
|
|
window = gtk_widget_get_window (priv->align_widget ? priv->align_widget : widget);
|
|
|
|
|
|
|
|
|
|
screen = gtk_widget_get_screen (GTK_WIDGET (menu));
|
|
|
|
|
monitor_num = gdk_screen_get_monitor_at_window (screen, window);
|
|
|
|
|
if (monitor_num < 0)
|
|
|
|
|
monitor_num = 0;
|
|
|
|
|
gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
|
|
|
|
|
|
|
|
|
|
gtk_widget_get_allocation (priv->align_widget ? priv->align_widget : widget, &allocation);
|
|
|
|
|
gtk_widget_get_allocation (widget, &arrow_allocation);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_widget_get_allocation (priv->menu, &menu_allocation);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
gdk_window_get_origin (window, x, y);
|
|
|
|
|
*x += allocation.x;
|
|
|
|
|
*y += allocation.y;
|
|
|
|
|
|
2012-08-07 02:26:13 +00:00
|
|
|
|
/* treat the default align value like START */
|
|
|
|
|
if (align == GTK_ALIGN_FILL)
|
|
|
|
|
align = GTK_ALIGN_START;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-08-07 02:26:13 +00:00
|
|
|
|
if (align == GTK_ALIGN_CENTER)
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*x -= (menu_allocation.width - allocation.width) / 2;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
else if ((align == GTK_ALIGN_START && direction == GTK_TEXT_DIR_LTR) ||
|
|
|
|
|
(align == GTK_ALIGN_END && direction == GTK_TEXT_DIR_RTL))
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*x += MAX (allocation.width - menu_allocation.width, 0);
|
|
|
|
|
else if (menu_allocation.width > allocation.width)
|
|
|
|
|
*x -= menu_allocation.width - allocation.width;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2013-12-22 17:43:35 +00:00
|
|
|
|
if (priv->arrow_type == GTK_ARROW_UP && *y - menu_allocation.height >= monitor.y)
|
2012-08-07 02:26:13 +00:00
|
|
|
|
{
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*y -= menu_allocation.height;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2013-12-22 17:43:35 +00:00
|
|
|
|
if ((*y + arrow_allocation.height + menu_allocation.height) <= monitor.y + monitor.height)
|
2012-08-07 02:26:13 +00:00
|
|
|
|
*y += arrow_allocation.height;
|
2013-12-22 17:43:35 +00:00
|
|
|
|
else if ((*y - menu_allocation.height) >= monitor.y)
|
|
|
|
|
*y -= menu_allocation.height;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
else if (monitor.y + monitor.height - (*y + arrow_allocation.height) > *y)
|
|
|
|
|
*y += arrow_allocation.height;
|
|
|
|
|
else
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*y -= menu_allocation.height;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*push_in = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-07-14 03:05:36 +00:00
|
|
|
|
menu_position_side_func (GtkMenu *menu,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y,
|
|
|
|
|
gboolean *push_in,
|
|
|
|
|
GtkMenuButton *menu_button)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
GtkAllocation allocation;
|
2013-12-22 17:43:35 +00:00
|
|
|
|
GtkAllocation menu_allocation;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
GtkWidget *widget = GTK_WIDGET (menu_button);
|
|
|
|
|
GdkRectangle monitor;
|
|
|
|
|
gint monitor_num;
|
|
|
|
|
GdkScreen *screen;
|
|
|
|
|
GdkWindow *window;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
GtkAlign align;
|
2012-09-22 03:53:11 +00:00
|
|
|
|
GtkTextDirection direction;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
window = gtk_widget_get_window (widget);
|
|
|
|
|
|
2012-09-22 03:53:11 +00:00
|
|
|
|
direction = gtk_widget_get_direction (widget);
|
2012-08-07 02:26:13 +00:00
|
|
|
|
align = gtk_widget_get_valign (GTK_WIDGET (menu));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
screen = gtk_widget_get_screen (GTK_WIDGET (menu));
|
|
|
|
|
monitor_num = gdk_screen_get_monitor_at_window (screen, window);
|
|
|
|
|
if (monitor_num < 0)
|
|
|
|
|
monitor_num = 0;
|
|
|
|
|
gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
|
|
|
|
|
|
|
|
|
|
gdk_window_get_origin (gtk_button_get_event_window (GTK_BUTTON (menu_button)), x, y);
|
|
|
|
|
|
2012-08-07 02:26:13 +00:00
|
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_widget_get_allocation (priv->menu, &menu_allocation);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-09-22 03:53:11 +00:00
|
|
|
|
if ((priv->arrow_type == GTK_ARROW_RIGHT && direction == GTK_TEXT_DIR_LTR) ||
|
|
|
|
|
(priv->arrow_type == GTK_ARROW_LEFT && direction == GTK_TEXT_DIR_RTL))
|
|
|
|
|
|
2012-08-07 02:26:13 +00:00
|
|
|
|
{
|
2013-12-22 17:43:35 +00:00
|
|
|
|
if (*x + allocation.width + menu_allocation.width <= monitor.x + monitor.width)
|
2012-08-07 02:26:13 +00:00
|
|
|
|
*x += allocation.width;
|
|
|
|
|
else
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*x -= menu_allocation.width;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
}
|
2012-05-29 17:39:37 +00:00
|
|
|
|
else
|
2012-08-07 02:26:13 +00:00
|
|
|
|
{
|
2013-12-22 17:43:35 +00:00
|
|
|
|
if (*x - menu_allocation.width >= monitor.x)
|
|
|
|
|
*x -= menu_allocation.width;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
else
|
|
|
|
|
*x += allocation.width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* treat the default align value like START */
|
|
|
|
|
if (align == GTK_ALIGN_FILL)
|
|
|
|
|
align = GTK_ALIGN_START;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-08-07 02:26:13 +00:00
|
|
|
|
if (align == GTK_ALIGN_CENTER)
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*y -= (menu_allocation.height - allocation.height) / 2;
|
2012-08-07 02:26:13 +00:00
|
|
|
|
else if (align == GTK_ALIGN_END)
|
2013-12-22 17:43:35 +00:00
|
|
|
|
*y -= menu_allocation.height - allocation.height;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
*push_in = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
popup_menu (GtkMenuButton *menu_button,
|
|
|
|
|
GdkEventButton *event)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
GtkMenuPositionFunc func;
|
|
|
|
|
|
|
|
|
|
if (priv->func)
|
|
|
|
|
priv->func (priv->user_data);
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (!priv->menu)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch (priv->arrow_type)
|
|
|
|
|
{
|
|
|
|
|
case GTK_ARROW_LEFT:
|
|
|
|
|
case GTK_ARROW_RIGHT:
|
|
|
|
|
func = (GtkMenuPositionFunc) menu_position_side_func;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2012-08-07 02:26:13 +00:00
|
|
|
|
func = (GtkMenuPositionFunc) menu_position_up_down_func;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_menu_popup_for_device (GTK_MENU (priv->menu),
|
2012-06-29 22:30:53 +00:00
|
|
|
|
event ? event->device : NULL,
|
|
|
|
|
NULL, NULL,
|
2012-05-29 17:39:37 +00:00
|
|
|
|
func,
|
|
|
|
|
GTK_WIDGET (menu_button),
|
|
|
|
|
NULL,
|
|
|
|
|
event ? event->button : 0,
|
|
|
|
|
event ? event->time : gtk_get_current_event_time ());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_toggled (GtkToggleButton *button)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButton *menu_button = GTK_MENU_BUTTON (button);
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (!gtk_toggle_button_get_active (button))
|
2012-05-29 17:39:37 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu)
|
|
|
|
|
{
|
|
|
|
|
if (!gtk_widget_get_visible (priv->menu))
|
|
|
|
|
{
|
|
|
|
|
/* we get here only when the menu is activated by a key
|
|
|
|
|
* press, so that we can select the first menu item
|
|
|
|
|
*/
|
|
|
|
|
popup_menu (menu_button, NULL);
|
|
|
|
|
gtk_menu_shell_select_first (GTK_MENU_SHELL (priv->menu), FALSE);
|
|
|
|
|
}
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
2014-02-08 00:21:49 +00:00
|
|
|
|
else if (priv->popover)
|
|
|
|
|
gtk_widget_show (priv->popover);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2012-07-14 03:05:36 +00:00
|
|
|
|
gtk_menu_button_button_press_event (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
GtkMenuButton *menu_button = GTK_MENU_BUTTON (widget);
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
if (event->button == GDK_BUTTON_PRIMARY)
|
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu)
|
|
|
|
|
popup_menu (menu_button, event);
|
|
|
|
|
else if (priv->popover)
|
|
|
|
|
gtk_widget_show (priv->popover);
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), TRUE);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET_CLASS (gtk_menu_button_parent_class)->button_press_event (widget, event);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-25 03:32:41 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_add (GtkContainer *container,
|
|
|
|
|
GtkWidget *child)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButton *button = GTK_MENU_BUTTON (container);
|
|
|
|
|
|
|
|
|
|
if (button->priv->arrow_widget)
|
2012-09-04 13:38:28 +00:00
|
|
|
|
gtk_container_remove (container, button->priv->arrow_widget);
|
2012-08-25 03:32:41 +00:00
|
|
|
|
|
|
|
|
|
GTK_CONTAINER_CLASS (gtk_menu_button_parent_class)->add (container, child);
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-04 13:38:28 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_remove (GtkContainer *container,
|
|
|
|
|
GtkWidget *child)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButton *button = GTK_MENU_BUTTON (container);
|
|
|
|
|
|
|
|
|
|
if (child == button->priv->arrow_widget)
|
|
|
|
|
button->priv->arrow_widget = NULL;
|
|
|
|
|
|
|
|
|
|
GTK_CONTAINER_CLASS (gtk_menu_button_parent_class)->remove (container, child);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_class_init (GtkMenuButtonClass *klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
2012-08-25 03:32:41 +00:00
|
|
|
|
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
GtkToggleButtonClass *toggle_button_class = GTK_TOGGLE_BUTTON_CLASS (klass);
|
|
|
|
|
|
|
|
|
|
gobject_class->set_property = gtk_menu_button_set_property;
|
|
|
|
|
gobject_class->get_property = gtk_menu_button_get_property;
|
2012-07-29 16:43:26 +00:00
|
|
|
|
gobject_class->dispose = gtk_menu_button_dispose;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
widget_class->state_flags_changed = gtk_menu_button_state_flags_changed;
|
|
|
|
|
widget_class->button_press_event = gtk_menu_button_button_press_event;
|
|
|
|
|
|
2012-08-25 03:32:41 +00:00
|
|
|
|
container_class->add = gtk_menu_button_add;
|
2012-09-04 13:38:28 +00:00
|
|
|
|
container_class->remove = gtk_menu_button_remove;
|
2012-08-25 03:32:41 +00:00
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
toggle_button_class->toggled = gtk_menu_button_toggled;
|
|
|
|
|
|
|
|
|
|
/**
|
2012-08-20 21:03:15 +00:00
|
|
|
|
* GtkMenuButton:popup:
|
|
|
|
|
*
|
|
|
|
|
* The #GtkMenu that will be popped up when the button is clicked.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_POPUP,
|
|
|
|
|
g_param_spec_object ("popup",
|
2014-01-05 04:36:12 +00:00
|
|
|
|
P_("Popup"),
|
2012-08-20 21:03:15 +00:00
|
|
|
|
P_("The dropdown menu."),
|
|
|
|
|
GTK_TYPE_MENU,
|
|
|
|
|
G_PARAM_READWRITE));
|
2012-10-17 12:07:31 +00:00
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkMenuButton:menu-model:
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* The #GMenuModel from which the popup will be created.
|
|
|
|
|
* Depending on the #GtkMenuButton:use-popover property, that may
|
|
|
|
|
* be a menu or a popover.
|
|
|
|
|
*
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* See gtk_menu_button_set_menu_model() for the interaction with the
|
2013-01-13 13:25:37 +00:00
|
|
|
|
* #GtkMenuButton:popup property.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
2014-02-22 17:08:45 +00:00
|
|
|
|
PROP_MENU_MODEL,
|
2012-05-29 17:39:37 +00:00
|
|
|
|
g_param_spec_object ("menu-model",
|
2014-01-05 04:36:12 +00:00
|
|
|
|
P_("Menu model"),
|
2014-02-08 00:21:49 +00:00
|
|
|
|
P_("The model from which the popup is made."),
|
2012-05-29 17:39:37 +00:00
|
|
|
|
G_TYPE_MENU_MODEL,
|
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
/**
|
|
|
|
|
* GtkMenuButton:align-widget:
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* The #GtkWidget to use to align the menu with.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_ALIGN_WIDGET,
|
|
|
|
|
g_param_spec_object ("align-widget",
|
2014-01-05 04:36:12 +00:00
|
|
|
|
P_("Align with"),
|
2012-05-29 17:39:37 +00:00
|
|
|
|
P_("The parent widget which the menu should align with."),
|
|
|
|
|
GTK_TYPE_CONTAINER,
|
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
/**
|
|
|
|
|
* GtkMenuButton:direction:
|
|
|
|
|
*
|
|
|
|
|
* The #GtkArrowType representing the direction in which the
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* menu or popover will be popped out.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_DIRECTION,
|
|
|
|
|
g_param_spec_enum ("direction",
|
2014-01-05 04:36:12 +00:00
|
|
|
|
P_("Direction"),
|
2012-05-29 17:39:37 +00:00
|
|
|
|
P_("The direction the arrow should point."),
|
|
|
|
|
GTK_TYPE_ARROW_TYPE,
|
|
|
|
|
GTK_ARROW_DOWN,
|
2012-09-01 03:10:30 +00:00
|
|
|
|
G_PARAM_READWRITE));
|
2014-02-08 00:21:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkMenuButton:use-popover:
|
|
|
|
|
*
|
|
|
|
|
* Whether to construct a #GtkPopover from the menu model,
|
|
|
|
|
* or a #GtkMenu.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_USE_POPOVER,
|
|
|
|
|
g_param_spec_boolean ("use-popover",
|
|
|
|
|
P_("Use a popover"),
|
|
|
|
|
P_("Use a popover instead of a menu"),
|
2014-04-25 03:35:18 +00:00
|
|
|
|
TRUE,
|
2014-02-08 00:21:49 +00:00
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkMenuButton:popover:
|
|
|
|
|
*
|
|
|
|
|
* The #GtkPopover that will be popped up when the button is clicked.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_POPOVER,
|
|
|
|
|
g_param_spec_object ("popover",
|
|
|
|
|
P_("Popover"),
|
|
|
|
|
P_("The popover"),
|
|
|
|
|
GTK_TYPE_POPOVER,
|
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
|
2013-12-20 15:58:32 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_MENU_BUTTON_ACCESSIBLE);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
add_arrow (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *arrow;
|
|
|
|
|
|
|
|
|
|
arrow = gtk_arrow_new (menu_button->priv->arrow_type, GTK_SHADOW_NONE);
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (menu_button), arrow);
|
|
|
|
|
gtk_widget_show (arrow);
|
|
|
|
|
menu_button->priv->arrow_widget = arrow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_menu_button_init (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
2013-12-20 14:05:43 +00:00
|
|
|
|
AtkObject *accessible;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
|
priv = gtk_menu_button_get_instance_private (menu_button);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
menu_button->priv = priv;
|
|
|
|
|
priv->arrow_type = GTK_ARROW_DOWN;
|
2014-04-26 18:40:52 +00:00
|
|
|
|
priv->use_popover = TRUE;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2012-09-01 03:10:30 +00:00
|
|
|
|
add_arrow (menu_button);
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (menu_button), FALSE);
|
2013-12-20 14:05:43 +00:00
|
|
|
|
|
|
|
|
|
accessible = gtk_widget_get_accessible (GTK_WIDGET (menu_button));
|
|
|
|
|
if (GTK_IS_ACCESSIBLE (accessible))
|
|
|
|
|
atk_object_set_name (accessible, _("Menu"));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkMenuButton widget with downwards-pointing
|
|
|
|
|
* arrow as the only child. You can replace the child widget
|
|
|
|
|
* with another #GtkWidget should you wish to.
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns: The newly created #GtkMenuButton widget
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_menu_button_new (void)
|
|
|
|
|
{
|
|
|
|
|
return g_object_new (GTK_TYPE_MENU_BUTTON, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Callback for the "deactivate" signal on the pop-up menu.
|
|
|
|
|
* This is used so that we unset the state of the toggle button
|
|
|
|
|
* when the pop-up menu disappears.
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Also used for the "close" signal on the popover.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*/
|
2014-02-08 00:21:49 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
menu_deactivate_cb (GtkMenuButton *menu_button)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (menu_button), FALSE);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
menu_detacher (GtkWidget *widget,
|
|
|
|
|
GtkMenu *menu)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (widget)->priv;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_return_if_fail (priv->menu == (GtkWidget *) menu);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
priv->menu = NULL;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This function is used in GtkMenuToolButton, the call back will
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* be called when GtkMenuToolButton would have emitted the “show-menu”
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* signal.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2012-08-20 21:03:15 +00:00
|
|
|
|
_gtk_menu_button_set_popup_with_func (GtkMenuButton *menu_button,
|
|
|
|
|
GtkWidget *menu,
|
|
|
|
|
GtkMenuButtonShowMenuCallback func,
|
|
|
|
|
gpointer user_data)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU (menu) || menu == NULL);
|
|
|
|
|
|
|
|
|
|
priv = menu_button->priv;
|
|
|
|
|
priv->func = func;
|
|
|
|
|
priv->user_data = user_data;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu == GTK_WIDGET (menu))
|
2012-05-29 17:39:37 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (gtk_widget_get_visible (priv->menu))
|
|
|
|
|
gtk_menu_shell_deactivate (GTK_MENU_SHELL (priv->menu));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->menu,
|
2012-05-29 17:39:37 +00:00
|
|
|
|
menu_deactivate_cb,
|
|
|
|
|
menu_button);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_menu_detach (GTK_MENU (priv->menu));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
priv->menu = menu;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_menu_attach_to_widget (GTK_MENU (priv->menu), GTK_WIDGET (menu_button),
|
2012-05-29 17:39:37 +00:00
|
|
|
|
menu_detacher);
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_widget_set_visible (priv->menu, FALSE);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_signal_connect_swapped (priv->menu, "deactivate",
|
|
|
|
|
G_CALLBACK (menu_deactivate_cb), menu_button);
|
|
|
|
|
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (menu_button)), "menu-button");
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-22 02:40:48 +00:00
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (menu_button), priv->menu != NULL);
|
|
|
|
|
|
2012-10-17 21:02:53 +00:00
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "popup");
|
2012-05-29 17:39:37 +00:00
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "menu-model");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-08-20 21:03:15 +00:00
|
|
|
|
* gtk_menu_button_set_popup:
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* @menu_button: a #GtkMenuButton
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* @menu: (allow-none): a #GtkMenu
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the #GtkMenu that will be popped up when the button is clicked,
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* or %NULL to disable the button. If #GtkMenuButton:menu-model or
|
|
|
|
|
* #GtkMenuButton:popover are set, they will be set to %NULL.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
void
|
2012-08-20 21:03:15 +00:00
|
|
|
|
gtk_menu_button_set_popup (GtkMenuButton *menu_button,
|
2014-02-08 00:21:49 +00:00
|
|
|
|
GtkWidget *menu)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_MENU (menu) || menu == NULL);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
g_object_freeze_notify (G_OBJECT (menu_button));
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
g_clear_object (&priv->model);
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
_gtk_menu_button_set_popup_with_func (menu_button, menu, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (menu && priv->popover)
|
|
|
|
|
gtk_menu_button_set_popover (menu_button, NULL);
|
|
|
|
|
|
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (menu_button),
|
|
|
|
|
priv->menu != NULL || priv->popover != NULL);
|
2014-02-22 17:36:55 +00:00
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (menu_button));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-08-20 21:03:15 +00:00
|
|
|
|
* gtk_menu_button_get_popup:
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
|
|
|
|
* Returns the #GtkMenu that pops out of the button.
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* If the button does not use a #GtkMenu, this function
|
|
|
|
|
* returns %NULL.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns: (transfer none): a #GtkMenu or %NULL
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
GtkMenu *
|
2012-08-20 21:03:15 +00:00
|
|
|
|
gtk_menu_button_get_popup (GtkMenuButton *menu_button)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
return GTK_MENU (menu_button->priv->menu);
|
2012-08-20 21:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_set_menu_model:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
* @menu_model: (allow-none): a #GMenuModel
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Sets the #GMenuModel from which the popup will be constructed,
|
|
|
|
|
* or %NULL to disable the button.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Depending on the value of #GtkMenuButton:use-popover, either a
|
|
|
|
|
* #GtkMenu will be created with gtk_menu_new_from_model(), or a
|
|
|
|
|
* #GtkPopover with gtk_popover_new_from_model(). In either case,
|
|
|
|
|
* actions will be connected as documented for these functions.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* If #GtkMenuButton:popup or #GtkMenuButton:popover are already set,
|
|
|
|
|
* their content will be lost and replaced by the newly created popup.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_menu_button_set_menu_model (GtkMenuButton *menu_button,
|
2012-07-14 03:05:36 +00:00
|
|
|
|
GMenuModel *menu_model)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
g_return_if_fail (G_IS_MENU_MODEL (menu_model) || menu_model == NULL);
|
|
|
|
|
|
|
|
|
|
priv = menu_button->priv;
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
g_object_freeze_notify (G_OBJECT (menu_button));
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
if (menu_model)
|
|
|
|
|
g_object_ref (menu_model);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
if (menu_model)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-22 17:36:55 +00:00
|
|
|
|
if (priv->use_popover)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *popover;
|
|
|
|
|
|
|
|
|
|
popover = gtk_popover_new_from_model (GTK_WIDGET (menu_button), menu_model);
|
|
|
|
|
gtk_menu_button_set_popover (menu_button, popover);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *menu;
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
menu = gtk_menu_new_from_model (menu_model);
|
|
|
|
|
gtk_widget_show_all (menu);
|
|
|
|
|
gtk_menu_button_set_popup (menu_button, menu);
|
|
|
|
|
}
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
2014-02-08 00:21:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-22 17:36:55 +00:00
|
|
|
|
gtk_menu_button_set_popup (menu_button, NULL);
|
|
|
|
|
gtk_menu_button_set_popover (menu_button, NULL);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
}
|
2014-02-22 17:36:55 +00:00
|
|
|
|
|
|
|
|
|
priv->model = menu_model;
|
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "menu-model");
|
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (menu_button));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_get_menu_model:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns the #GMenuModel used to generate the popup.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns: (transfer none): a #GMenuModel or %NULL
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
GMenuModel *
|
|
|
|
|
gtk_menu_button_get_menu_model (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
|
|
|
|
|
|
|
|
|
|
return menu_button->priv->model;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-04 15:46:35 +00:00
|
|
|
|
static void
|
|
|
|
|
set_align_widget_pointer (GtkMenuButton *menu_button,
|
|
|
|
|
GtkWidget *align_widget)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
priv = menu_button->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->align_widget)
|
|
|
|
|
g_object_remove_weak_pointer (G_OBJECT (priv->align_widget), (gpointer *) &priv->align_widget);
|
|
|
|
|
|
|
|
|
|
priv->align_widget = align_widget;
|
|
|
|
|
|
|
|
|
|
if (align_widget)
|
|
|
|
|
g_object_add_weak_pointer (G_OBJECT (priv->align_widget), (gpointer *) &priv->align_widget);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_set_align_widget:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
* @align_widget: (allow-none): a #GtkWidget
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Sets the #GtkWidget to use to line the menu with when popped up.
|
|
|
|
|
* Note that the @align_widget must contain the #GtkMenuButton itself.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Setting it to %NULL means that the menu will be aligned with the
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* button itself.
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Note that this property is only used with menus currently,
|
|
|
|
|
* and not for popovers.
|
|
|
|
|
*
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_menu_button_set_align_widget (GtkMenuButton *menu_button,
|
2012-07-14 03:05:36 +00:00
|
|
|
|
GtkWidget *align_widget)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
g_return_if_fail (align_widget == NULL || gtk_widget_is_ancestor (GTK_WIDGET (menu_button), align_widget));
|
|
|
|
|
|
|
|
|
|
priv = menu_button->priv;
|
|
|
|
|
if (priv->align_widget == align_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-11-04 15:46:35 +00:00
|
|
|
|
set_align_widget_pointer (menu_button, align_widget);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "align-widget");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_get_align_widget:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
|
|
|
|
* Returns the parent #GtkWidget to use to line up with menu.
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns: (transfer none): a #GtkWidget value or %NULL
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_menu_button_get_align_widget (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
|
|
|
|
|
|
|
|
|
|
return menu_button->priv->align_widget;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
static void
|
|
|
|
|
update_popover_direction (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
|
|
|
|
|
if (!priv->popover)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch (priv->arrow_type)
|
|
|
|
|
{
|
|
|
|
|
case GTK_ARROW_UP:
|
|
|
|
|
gtk_popover_set_position (GTK_POPOVER (priv->popover), GTK_POS_TOP);
|
|
|
|
|
break;
|
|
|
|
|
case GTK_ARROW_DOWN:
|
|
|
|
|
case GTK_ARROW_NONE:
|
|
|
|
|
gtk_popover_set_position (GTK_POPOVER (priv->popover), GTK_POS_BOTTOM);
|
|
|
|
|
break;
|
|
|
|
|
case GTK_ARROW_LEFT:
|
|
|
|
|
gtk_popover_set_position (GTK_POPOVER (priv->popover), GTK_POS_LEFT);
|
|
|
|
|
break;
|
|
|
|
|
case GTK_ARROW_RIGHT:
|
|
|
|
|
gtk_popover_set_position (GTK_POPOVER (priv->popover), GTK_POS_RIGHT);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_set_direction:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
* @direction: a #GtkArrowType
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Sets the direction in which the popup will be popped up, as
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* well as changing the arrow’s direction. The child will not
|
2012-05-29 17:39:37 +00:00
|
|
|
|
* be changed to an arrow if it was customized.
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* If the does not fit in the available space in the given direction,
|
|
|
|
|
* GTK+ will its best to keep it inside the screen and fully visible.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* If you pass %GTK_ARROW_NONE for a @direction, the popup will behave
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* as if you passed %GTK_ARROW_DOWN (although you won’t see any arrows).
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_menu_button_set_direction (GtkMenuButton *menu_button,
|
|
|
|
|
GtkArrowType direction)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
GtkWidget *child;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
|
|
|
|
|
if (priv->arrow_type == direction)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->arrow_type = direction;
|
|
|
|
|
|
2012-08-21 16:49:02 +00:00
|
|
|
|
/* Is it custom content? We don't change that */
|
2012-09-01 03:10:30 +00:00
|
|
|
|
child = gtk_bin_get_child (GTK_BIN (menu_button));
|
2012-05-29 17:39:37 +00:00
|
|
|
|
if (priv->arrow_widget != child)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gtk_arrow_set (GTK_ARROW (child), priv->arrow_type, GTK_SHADOW_NONE);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
|
|
|
|
update_popover_direction (menu_button);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_get_direction:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns the direction the popup will be pointing at when popped up.
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
2014-02-08 00:21:49 +00:00
|
|
|
|
* Returns: a #GtkArrowType value
|
2012-05-29 17:39:37 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.6
|
|
|
|
|
*/
|
|
|
|
|
GtkArrowType
|
|
|
|
|
gtk_menu_button_get_direction (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), GTK_ARROW_DOWN);
|
|
|
|
|
|
|
|
|
|
return menu_button->priv->arrow_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-07-29 16:43:26 +00:00
|
|
|
|
gtk_menu_button_dispose (GObject *object)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = GTK_MENU_BUTTON (object)->priv;
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
if (priv->menu)
|
2012-05-29 17:39:37 +00:00
|
|
|
|
{
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->menu,
|
2012-05-29 17:39:37 +00:00
|
|
|
|
menu_deactivate_cb,
|
|
|
|
|
object);
|
2014-02-08 00:21:49 +00:00
|
|
|
|
gtk_menu_detach (GTK_MENU (priv->menu));
|
|
|
|
|
priv->menu = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (priv->popover)
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_destroy (priv->popover);
|
|
|
|
|
priv->popover = NULL;
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-04 15:46:35 +00:00
|
|
|
|
set_align_widget_pointer (GTK_MENU_BUTTON (object), NULL);
|
|
|
|
|
|
2012-05-29 17:39:37 +00:00
|
|
|
|
g_clear_object (&priv->model);
|
|
|
|
|
|
2012-07-29 16:43:26 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_menu_button_parent_class)->dispose (object);
|
2012-05-29 17:39:37 +00:00
|
|
|
|
}
|
2014-02-08 00:21:49 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_set_use_popover:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
* @use_popover: %TRUE to construct a popover from the menu model
|
|
|
|
|
*
|
|
|
|
|
* Sets whether to construct a #GtkPopover instead of #GtkMenu
|
|
|
|
|
* when gtk_menu_button_set_menu_model() is called. Note that
|
|
|
|
|
* this property is only consulted when a new menu model is set.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_menu_button_set_use_popover (GtkMenuButton *menu_button,
|
|
|
|
|
gboolean use_popover)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
|
|
|
|
|
priv = menu_button->priv;
|
|
|
|
|
|
|
|
|
|
use_popover = use_popover != FALSE;
|
|
|
|
|
|
|
|
|
|
if (priv->use_popover == use_popover)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->use_popover = use_popover;
|
|
|
|
|
|
2014-02-22 17:49:24 +00:00
|
|
|
|
g_object_freeze_notify (G_OBJECT (menu_button));
|
|
|
|
|
|
|
|
|
|
if (priv->model)
|
|
|
|
|
gtk_menu_button_set_menu_model (menu_button, priv->model);
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "use-popover");
|
2014-02-22 17:49:24 +00:00
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (menu_button));
|
2014-02-08 00:21:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_get_use_popover:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
|
|
|
|
* Returns whether a #GtkPopover or a #GtkMenu will be constructed
|
|
|
|
|
* from the menu model.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if using a #GtkPopover
|
2014-02-08 00:21:49 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_menu_button_get_use_popover (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), FALSE);
|
|
|
|
|
|
|
|
|
|
return menu_button->priv->use_popover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_set_popover:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
* @popover: (allow-none): a #GtkPopover
|
|
|
|
|
*
|
|
|
|
|
* Sets the #GtkPopover that will be popped up when the button is
|
|
|
|
|
* clicked, or %NULL to disable the button. If #GtkMenuButton:menu-model
|
|
|
|
|
* or #GtkMenuButton:popup are set, they will be set to %NULL.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_menu_button_set_popover (GtkMenuButton *menu_button,
|
|
|
|
|
GtkWidget *popover)
|
|
|
|
|
{
|
|
|
|
|
GtkMenuButtonPrivate *priv = menu_button->priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_MENU_BUTTON (menu_button));
|
|
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover) || popover == NULL);
|
|
|
|
|
|
2014-02-22 17:36:55 +00:00
|
|
|
|
g_object_freeze_notify (G_OBJECT (menu_button));
|
|
|
|
|
|
2014-02-08 00:21:49 +00:00
|
|
|
|
g_clear_object (&priv->model);
|
|
|
|
|
|
|
|
|
|
if (priv->popover)
|
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_visible (priv->popover))
|
|
|
|
|
gtk_widget_hide (priv->popover);
|
|
|
|
|
|
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->popover,
|
|
|
|
|
menu_deactivate_cb,
|
|
|
|
|
menu_button);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
priv->popover = popover;
|
|
|
|
|
|
|
|
|
|
if (popover)
|
|
|
|
|
{
|
|
|
|
|
gtk_popover_set_relative_to (GTK_POPOVER (priv->popover), GTK_WIDGET (menu_button));
|
|
|
|
|
g_signal_connect_swapped (priv->popover, "closed",
|
|
|
|
|
G_CALLBACK (menu_deactivate_cb), menu_button);
|
|
|
|
|
update_popover_direction (menu_button);
|
|
|
|
|
gtk_style_context_remove_class (gtk_widget_get_style_context (GTK_WIDGET (menu_button)), "menu-button");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (popover && priv->menu)
|
|
|
|
|
gtk_menu_button_set_popup (menu_button, NULL);
|
|
|
|
|
|
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (menu_button),
|
|
|
|
|
priv->menu != NULL || priv->popover != NULL);
|
2014-02-22 17:36:55 +00:00
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "popover");
|
|
|
|
|
g_object_notify (G_OBJECT (menu_button), "menu-model");
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (menu_button));
|
2014-02-08 00:21:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_menu_button_get_popover:
|
|
|
|
|
* @menu_button: a #GtkMenuButton
|
|
|
|
|
*
|
|
|
|
|
* Returns the #GtkPopover that pops out of the button.
|
|
|
|
|
* If the button is not using a #GtkPopover, this function
|
|
|
|
|
* returns %NULL.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer none): a #GtkPopover or %NULL
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
GtkPopover *
|
|
|
|
|
gtk_menu_button_get_popover (GtkMenuButton *menu_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_MENU_BUTTON (menu_button), NULL);
|
|
|
|
|
|
|
|
|
|
return GTK_POPOVER (menu_button->priv->popover);
|
|
|
|
|
}
|