[gtk/wip/matthiasc/popup4: 120/121] menubutton: Work around event propagation gotchas
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/matthiasc/popup4: 120/121] menubutton: Work around event propagation gotchas
- Date: Fri, 26 Apr 2019 03:42:27 +0000 (UTC)
commit 50a974ad7ccf0d7ee6ee773881cb0c2d23d9b045
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Apr 26 03:15:34 2019 +0000
menubutton: Work around event propagation gotchas
When the popover is opened, we don't want the button
to intercept events or focus that are propagated
into the popover.
A better fix for this would be to turn the menu button
into a bin that has a toggle button as a child.
gtk/gtkmenubutton.c | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkmenubutton.c b/gtk/gtkmenubutton.c
index 60b5a2b034..78e6310980 100644
--- a/gtk/gtkmenubutton.c
+++ b/gtk/gtkmenubutton.c
@@ -121,6 +121,8 @@
#include "gtkprivate.h"
#include "gtkstylecontext.h"
#include "gtktypebuiltins.h"
+#include "gtkwidgetprivate.h"
+#include "gtkbuttonprivate.h"
#include "a11y/gtkmenubuttonaccessible.h"
@@ -401,6 +403,16 @@ popup_menu (GtkMenuButton *menu_button,
event);
}
+static void
+update_button_events (GtkButton *button,
+ gboolean enable)
+{
+ g_object_set (gtk_button_get_gesture (button),
+ "propagation-phase",
+ enable ? GTK_PHASE_CAPTURE : GTK_PHASE_NONE,
+ NULL);
+}
+
static void
gtk_menu_button_toggled (GtkToggleButton *button)
{
@@ -430,9 +442,15 @@ gtk_menu_button_toggled (GtkToggleButton *button)
else if (priv->popover)
{
if (active)
- gtk_popover_popup (GTK_POPOVER (priv->popover));
+ {
+ update_button_events (GTK_BUTTON (button), FALSE);
+ gtk_popover_popup (GTK_POPOVER (priv->popover));
+ }
else
- gtk_popover_popdown (GTK_POPOVER (priv->popover));
+ {
+ update_button_events (GTK_BUTTON (button), TRUE);
+ gtk_popover_popdown (GTK_POPOVER (priv->popover));
+ }
}
if (GTK_TOGGLE_BUTTON_CLASS (gtk_menu_button_parent_class)->toggled)
@@ -465,6 +483,21 @@ gtk_menu_button_remove (GtkContainer *container,
GTK_CONTAINER_CLASS (gtk_menu_button_parent_class)->remove (container, child);
}
+static gboolean
+gtk_menu_button_focus (GtkWidget *widget,
+ GtkDirectionType direction)
+{
+ GtkMenuButton *button = GTK_MENU_BUTTON (widget);
+ GtkMenuButtonPrivate *priv = gtk_menu_button_get_instance_private (button);
+
+ if (priv->menu && gtk_widget_get_visible (priv->menu))
+ return gtk_widget_focus_move (priv->menu, direction);
+ else if (priv->popover && gtk_widget_get_visible (priv->popover))
+ return gtk_widget_focus_move (priv->popover, direction);
+ else
+ return GTK_WIDGET_CLASS (gtk_menu_button_parent_class)->focus (widget, direction);
+}
+
static void
gtk_menu_button_class_init (GtkMenuButtonClass *klass)
{
@@ -478,6 +511,7 @@ gtk_menu_button_class_init (GtkMenuButtonClass *klass)
gobject_class->dispose = gtk_menu_button_dispose;
widget_class->state_flags_changed = gtk_menu_button_state_flags_changed;
+ widget_class->focus = gtk_menu_button_focus;
container_class->add = gtk_menu_button_add;
container_class->remove = gtk_menu_button_remove;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]