diff options
author | Benjamin Otte <otte@redhat.com> | 2018-08-17 05:07:32 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-03-25 23:14:27 -0400 |
commit | 9b99b8980703b5531e35a13147dff1cf1c88e21e (patch) | |
tree | 07dc203e96a419422ea4cef25281d417b86c44c0 /gtk/gtkshortcut.h | |
parent | 62f96bfda6e884cdbdca6c00ae75c2c702bcb9e4 (diff) | |
download | gtk+-9b99b8980703b5531e35a13147dff1cf1c88e21e.tar.gz |
gtk: Remove accel paths
It's an outdated technology now that everybody is using GActionGroups.
If somebody wanted to support changeable shortcuts, they'd need to
reintroduce it in another way.
Diffstat (limited to 'gtk/gtkshortcut.h')
-rw-r--r-- | gtk/gtkshortcut.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtkshortcut.h b/gtk/gtkshortcut.h index a95df8d82d..fa32805ef5 100644 --- a/gtk/gtkshortcut.h +++ b/gtk/gtkshortcut.h @@ -74,6 +74,11 @@ gboolean gtk_shortcut_get_mnemonic_activate (GtkShortcut GDK_AVAILABLE_IN_ALL void gtk_shortcut_set_mnemonic_activate (GtkShortcut *self, gboolean mnemonic_activate); +GDK_AVAILABLE_IN_ALL +gboolean gtk_shortcut_get_activate (GtkShortcut *self); +GDK_AVAILABLE_IN_ALL +void gtk_shortcut_set_activate (GtkShortcut *self, + gboolean activate); G_END_DECLS |