mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 13:10:08 +00:00
Add GtkShortcutManager
This adds an interface for taking care of shortcut controllers with managed scope. Only GtkWindow currently implements this interface, so we need to ensure that we check if any top-level widget we reach is a shortcuts manager before we call into it.
This commit is contained in:
parent
bbe98d9f7c
commit
09400b6bfe
@ -343,6 +343,7 @@
|
||||
<title>Keyboard shortcuts</title>
|
||||
<xi:include href="xml/gtkshortcut.xml" />
|
||||
<xi:include href="xml/gtkshortcuttrigger.xml" />
|
||||
<xi:include href="xml/gtkshortcutmanager.xml" />
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
|
@ -6096,12 +6096,21 @@ GTK_SHORTCUT_GET_CLASS
|
||||
gtk_shortcut_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gtkshortcutmanager</FILE>
|
||||
<TITLE>GtkShortcutManager</TITLE>
|
||||
GtkShortcutManager
|
||||
GtkShortcutManagerInterface
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gtkshortcutcontroller</FILE>
|
||||
<TITLE>GtkShortcutController</TITLE>
|
||||
GtkShortcutController
|
||||
gtk_shortcut_controller_new
|
||||
GtkShortcutScope
|
||||
GtkShortcutManager
|
||||
GtkShortcutManagerInterface
|
||||
gtk_shortcut_controller_set_mnemonics_modifiers
|
||||
gtk_shortcut_controller_get_mnemonics_modifiers
|
||||
gtk_shortcut_controller_set_scope
|
||||
@ -6116,9 +6125,16 @@ GTK_SHORTCUT_CONTROLLER_CLASS
|
||||
GTK_IS_SHORTCUT_CONTROLLER
|
||||
GTK_IS_SHORTCUT_CONTROLLER_CLASS
|
||||
GTK_SHORTCUT_CONTROLLER_GET_CLASS
|
||||
GTK_TYPE_SHORTCUT_MANAGER
|
||||
GTK_SHORTCUT_MANAGER
|
||||
GTK_SHORTCUT_MANAGER_CLASS
|
||||
GTK_IS_SHORTCUT_MANAGER
|
||||
GTK_IS_SHORTCUT_MANAGER_CLASS
|
||||
GTK_SHORTCUT_MANAGER_GET_CLASS
|
||||
|
||||
<SUBSECTION Private>
|
||||
gtk_shortcut_controller_get_type
|
||||
gtk_shortcut_manager_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
@ -168,6 +168,7 @@ gtk_settings_get_type
|
||||
gtk_shortcut_get_type
|
||||
gtk_shortcut_controller_get_type
|
||||
gtk_shortcut_label_get_type
|
||||
gtk_shortcut_manager_get_type
|
||||
gtk_shortcuts_window_get_type
|
||||
gtk_shortcuts_section_get_type
|
||||
gtk_shortcuts_group_get_type
|
||||
|
@ -200,6 +200,7 @@
|
||||
#include <gtk/gtkshortcut.h>
|
||||
#include <gtk/gtkshortcutcontroller.h>
|
||||
#include <gtk/gtkshortcutlabel.h>
|
||||
#include <gtk/gtkshortcutmanager.h>
|
||||
#include <gtk/gtkshortcutsgroup.h>
|
||||
#include <gtk/gtkshortcutssection.h>
|
||||
#include <gtk/gtkshortcutsshortcut.h>
|
||||
|
@ -27,6 +27,8 @@
|
||||
#include "gtkprivate.h"
|
||||
#include "gtkintl.h"
|
||||
|
||||
#include "gtkshortcutmanager.h"
|
||||
|
||||
/**
|
||||
* SECTION:gtkroot
|
||||
* @Title: GtkRoot
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include "gtkeventcontrollerprivate.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkshortcut.h"
|
||||
#include "gtkshortcutmanager.h"
|
||||
#include "gtkshortcuttrigger.h"
|
||||
#include "gtktypebuiltins.h"
|
||||
#include "gtkwidgetprivate.h"
|
||||
@ -295,17 +296,10 @@ gtk_shortcut_controller_init (GtkShortcutController *self)
|
||||
self->mnemonics_modifiers = GDK_MOD1_MASK;
|
||||
}
|
||||
|
||||
static void
|
||||
complain_if_reached (gpointer should_be_gone)
|
||||
{
|
||||
g_critical ("Shortcut controllers failed to clean up.");
|
||||
}
|
||||
|
||||
void
|
||||
gtk_shortcut_controller_root (GtkShortcutController *self)
|
||||
{
|
||||
GtkWidget *attach;
|
||||
GSList *controllers;
|
||||
GtkShortcutManager *manager;
|
||||
|
||||
switch (self->scope)
|
||||
{
|
||||
@ -313,8 +307,30 @@ gtk_shortcut_controller_root (GtkShortcutController *self)
|
||||
return;
|
||||
|
||||
case GTK_SHORTCUT_SCOPE_MANAGED:
|
||||
{
|
||||
GtkWidget *widget;
|
||||
|
||||
for (widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self));
|
||||
!GTK_IS_SHORTCUT_MANAGER (widget);
|
||||
widget = _gtk_widget_get_parent (widget))
|
||||
;
|
||||
|
||||
if (!GTK_IS_SHORTCUT_MANAGER (widget))
|
||||
return;
|
||||
|
||||
manager = GTK_SHORTCUT_MANAGER (widget);
|
||||
}
|
||||
break;
|
||||
|
||||
case GTK_SHORTCUT_SCOPE_GLOBAL:
|
||||
attach = GTK_WIDGET (gtk_widget_get_root (gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self))));
|
||||
{
|
||||
GtkRoot *root = gtk_widget_get_root (gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self)));
|
||||
|
||||
if (!GTK_IS_SHORTCUT_MANAGER (root))
|
||||
return;
|
||||
|
||||
manager = GTK_SHORTCUT_MANAGER (root);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -322,16 +338,13 @@ gtk_shortcut_controller_root (GtkShortcutController *self)
|
||||
return;
|
||||
}
|
||||
|
||||
controllers = g_object_steal_data (G_OBJECT (attach), "gtk-shortcut-controllers");
|
||||
controllers = g_slist_prepend (controllers, g_object_ref (self));
|
||||
g_object_set_data_full (G_OBJECT (attach), "gtk-shortcut-controllers", controllers, complain_if_reached);
|
||||
GTK_SHORTCUT_MANAGER_GET_IFACE (manager)->add_controller (manager, self);
|
||||
}
|
||||
|
||||
void
|
||||
gtk_shortcut_controller_unroot (GtkShortcutController *self)
|
||||
{
|
||||
GtkWidget *attach;
|
||||
GSList *controllers;
|
||||
GtkShortcutManager *manager;
|
||||
|
||||
switch (self->scope)
|
||||
{
|
||||
@ -339,8 +352,30 @@ gtk_shortcut_controller_unroot (GtkShortcutController *self)
|
||||
return;
|
||||
|
||||
case GTK_SHORTCUT_SCOPE_MANAGED:
|
||||
{
|
||||
GtkWidget *widget;
|
||||
|
||||
for (widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self));
|
||||
!GTK_IS_SHORTCUT_MANAGER (widget);
|
||||
widget = _gtk_widget_get_parent (widget))
|
||||
;
|
||||
|
||||
if (!GTK_IS_SHORTCUT_MANAGER (widget))
|
||||
return;
|
||||
|
||||
manager = GTK_SHORTCUT_MANAGER (widget);
|
||||
}
|
||||
break;
|
||||
|
||||
case GTK_SHORTCUT_SCOPE_GLOBAL:
|
||||
attach = GTK_WIDGET (gtk_widget_get_root (gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self))));
|
||||
{
|
||||
GtkRoot *root = gtk_widget_get_root (gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (self)));
|
||||
|
||||
if (!GTK_IS_SHORTCUT_MANAGER (root))
|
||||
return;
|
||||
|
||||
manager = GTK_SHORTCUT_MANAGER (root);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -348,11 +383,7 @@ gtk_shortcut_controller_unroot (GtkShortcutController *self)
|
||||
return;
|
||||
}
|
||||
|
||||
controllers = g_object_steal_data (G_OBJECT (attach), "gtk-shortcut-controllers");
|
||||
controllers = g_slist_remove (controllers, self);
|
||||
if (controllers)
|
||||
g_object_set_data_full (G_OBJECT (attach), "gtk-shortcut-controllers", controllers, complain_if_reached);
|
||||
g_object_unref (self);
|
||||
GTK_SHORTCUT_MANAGER_GET_IFACE (manager)->remove_controller (manager, self);
|
||||
}
|
||||
|
||||
GtkEventController *
|
||||
|
70
gtk/gtkshortcutmanager.c
Normal file
70
gtk/gtkshortcutmanager.c
Normal file
@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Copyright © 2018 Benjamin Otte
|
||||
*
|
||||
* 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.1 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/>.
|
||||
*
|
||||
* Authors: Benjamin Otte <otte@gnome.org>
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkshortcutmanager.h"
|
||||
|
||||
/**
|
||||
* SECTION:gtkshortcutmanager
|
||||
* @title: GtkShortcutManager
|
||||
* @short_description: Interface for managing shortcuts
|
||||
*
|
||||
* The GtkShortcutManager interface is used to implement
|
||||
* shortcut scopes.
|
||||
*/
|
||||
G_DEFINE_INTERFACE (GtkShortcutManager, gtk_shortcut_manager, G_TYPE_OBJECT)
|
||||
|
||||
static void
|
||||
complain_if_reached (gpointer should_be_gone)
|
||||
{
|
||||
g_critical ("Shortcut controllers failed to clean up.");
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_shortcut_manager_default_add_controller (GtkShortcutManager *self,
|
||||
GtkShortcutController *controller)
|
||||
{
|
||||
GSList *controllers;
|
||||
|
||||
controllers = g_object_steal_data (G_OBJECT (self), "gtk-shortcut-controllers");
|
||||
controllers = g_slist_prepend (controllers, g_object_ref (controller));
|
||||
g_object_set_data_full (G_OBJECT (self), "gtk-shortcut-controllers", controllers, complain_if_reached);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_shortcut_manager_default_remove_controller (GtkShortcutManager *self,
|
||||
GtkShortcutController *controller)
|
||||
{
|
||||
GSList *controllers;
|
||||
|
||||
controllers = g_object_steal_data (G_OBJECT (self), "gtk-shortcut-controllers");
|
||||
controllers = g_slist_remove (controllers, controller);
|
||||
if (controllers)
|
||||
g_object_set_data_full (G_OBJECT (self), "gtk-shortcut-controllers", controllers, complain_if_reached);
|
||||
g_object_unref (controller);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_shortcut_manager_default_init (GtkShortcutManagerInterface *iface)
|
||||
{
|
||||
iface->add_controller = gtk_shortcut_manager_default_add_controller;
|
||||
iface->remove_controller = gtk_shortcut_manager_default_remove_controller;
|
||||
}
|
||||
|
71
gtk/gtkshortcutmanager.h
Normal file
71
gtk/gtkshortcutmanager.h
Normal file
@ -0,0 +1,71 @@
|
||||
/*
|
||||
* Copyright © 2018 Benjamin Otte
|
||||
*
|
||||
* 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.1 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/>.
|
||||
*
|
||||
* Authors: Benjamin Otte <otte@gnome.org>
|
||||
*/
|
||||
|
||||
#ifndef __GTK_SHORTCUT_MANAGER_H__
|
||||
#define __GTK_SHORTCUT_MANAGER_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtkshortcutcontroller.h>
|
||||
#include <gtk/gtkwidget.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_SHORTCUT_MANAGER (gtk_shortcut_manager_get_type ())
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
G_DECLARE_INTERFACE (GtkShortcutManager, gtk_shortcut_manager, GTK, SHORTCUT_MANAGER, GtkWidget)
|
||||
|
||||
/**
|
||||
* GtkShortcutManager:
|
||||
*
|
||||
* This object is used to implement support for #GtkShortcutScopes. Every
|
||||
* widget that implements #GtkShortcutManager will be used as a
|
||||
* %GTK_SHORTCUT_SCOPE_MANAGED.
|
||||
*/
|
||||
|
||||
/**
|
||||
* GtkShortcutManagerInterface:
|
||||
* @add_controller: Add a #GtkShortcutController to be managed.
|
||||
* @remove_controller: Remove a #GtkShortcutController that had previously
|
||||
* been added.
|
||||
*
|
||||
* The list of functions that can be implemented for the #GtkShortcutManager interface.
|
||||
*
|
||||
* Note that no function is mandatory to implement, the default implementation will work
|
||||
* fine.
|
||||
*/
|
||||
struct _GtkShortcutManagerInterface
|
||||
{
|
||||
/*< private >*/
|
||||
GTypeInterface g_iface;
|
||||
|
||||
/*< public >*/
|
||||
void (* add_controller) (GtkShortcutManager *self,
|
||||
GtkShortcutController *controller);
|
||||
void (* remove_controller) (GtkShortcutManager *self,
|
||||
GtkShortcutController *controller);
|
||||
};
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_SHORTCUT_MANAGER_H__ */
|
@ -60,6 +60,7 @@
|
||||
#include "gtksettingsprivate.h"
|
||||
#include "gtkshortcut.h"
|
||||
#include "gtkshortcutcontrollerprivate.h"
|
||||
#include "gtkshortcutmanager.h"
|
||||
#include "gtkshortcuttrigger.h"
|
||||
#include "gtksizegroup-private.h"
|
||||
#include "gtksnapshotprivate.h"
|
||||
@ -2439,9 +2440,10 @@ gtk_widget_init (GTypeInstance *instance, gpointer g_class)
|
||||
gtk_css_node_set_name (priv->cssnode, GTK_WIDGET_CLASS (g_class)->priv->css_name);
|
||||
|
||||
if (g_type_is_a (G_TYPE_FROM_CLASS (g_class), GTK_TYPE_ROOT))
|
||||
{
|
||||
priv->root = (GtkRoot *) widget;
|
||||
priv->root = (GtkRoot *) widget;
|
||||
|
||||
if (g_type_is_a (G_TYPE_FROM_CLASS (g_class), GTK_TYPE_SHORTCUT_MANAGER))
|
||||
{
|
||||
controller = gtk_shortcut_controller_new ();
|
||||
gtk_shortcut_controller_set_run_managed (GTK_SHORTCUT_CONTROLLER (controller), TRUE);
|
||||
gtk_widget_add_controller (widget, controller);
|
||||
|
@ -64,6 +64,7 @@
|
||||
#include "gtksettings.h"
|
||||
#include "gtkshortcut.h"
|
||||
#include "gtkshortcutcontroller.h"
|
||||
#include "gtkshortcutmanager.h"
|
||||
#include "gtkshortcuttrigger.h"
|
||||
#include "gtksnapshot.h"
|
||||
#include "gtkstylecontextprivate.h"
|
||||
@ -547,6 +548,7 @@ static void gtk_window_buildable_custom_finished (GtkBuildable
|
||||
const gchar *tagname,
|
||||
gpointer user_data);
|
||||
|
||||
static void gtk_window_shortcut_manager_interface_init (GtkShortcutManagerInterface *iface);
|
||||
/* GtkRoot */
|
||||
static void gtk_window_root_interface_init (GtkRootInterface *iface);
|
||||
static void gtk_window_native_interface_init (GtkNativeInterface *iface);
|
||||
@ -567,6 +569,8 @@ G_DEFINE_TYPE_WITH_CODE (GtkWindow, gtk_window, GTK_TYPE_BIN,
|
||||
gtk_window_buildable_interface_init)
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_NATIVE,
|
||||
gtk_window_native_interface_init)
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_SHORTCUT_MANAGER,
|
||||
gtk_window_shortcut_manager_interface_init)
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_ROOT,
|
||||
gtk_window_root_interface_init))
|
||||
|
||||
@ -2230,6 +2234,11 @@ gtk_window_buildable_custom_finished (GtkBuildable *buildable,
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_window_shortcut_manager_interface_init (GtkShortcutManagerInterface *iface)
|
||||
{
|
||||
}
|
||||
|
||||
static GdkDisplay *
|
||||
gtk_window_root_get_display (GtkRoot *root)
|
||||
{
|
||||
|
@ -333,6 +333,7 @@ gtk_public_sources = files([
|
||||
'gtkshortcut.c',
|
||||
'gtkshortcutcontroller.c',
|
||||
'gtkshortcutlabel.c',
|
||||
'gtkshortcutmanager.c',
|
||||
'gtkshortcutsgroup.c',
|
||||
'gtkshortcutssection.c',
|
||||
'gtkshortcutsshortcut.c',
|
||||
@ -572,6 +573,7 @@ gtk_public_headers = files([
|
||||
'gtkshortcut.h',
|
||||
'gtkshortcutcontroller.h',
|
||||
'gtkshortcutlabel.h',
|
||||
'gtkshortcutmanager.h',
|
||||
'gtkshortcutsgroup.h',
|
||||
'gtkshortcutssection.h',
|
||||
'gtkshortcutsshortcut.h',
|
||||
|
Loading…
Reference in New Issue
Block a user