summaryrefslogtreecommitdiff
path: root/gtk/gtkshortcutsgroup.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove GtkShortcutsGestureMatthias Clasen2015-12-051-9/+1
| | | | | | The gesture functionality was taken over by GtkShortcutsShortcut, so this widget is no longer needed, and it never was in a stable release, so lets get rid of it.
* shortcuts: Fix size group handlingMatthias Clasen2015-11-221-13/+36
| | | | | We need to keep pointers to the size groups and apply them to shortcuts that are added later.
* shortcuts: Complete the container implementationsMatthias Clasen2015-11-221-0/+33
| | | | | | Various problems with the container implementations in GtkShortcutsWindow, Section and Group were showing up in glade.
* shortcuts: Support direction-specific shortcutsMatthias Clasen2015-11-141-3/+17
| | | | | | | | | The prime example for direction-dependent shortcuts is using <Alt>Left or <Alt>Right to go back. Support this by adding a direction property to GtkShortcutsShortcut, and filtering by the current text direction. https://bugzilla.gnome.org/show_bug.cgi?id=757888
* shortcuts: Some property hygieneMatthias Clasen2015-10-271-2/+2
| | | | | Bring property notification for some of the new shortcuts widgets up to the standards of our testsuite.
* Add GtkShortcutsWindowMatthias Clasen2015-10-211-0/+306
This is a toplevel window that is tailored towards showing help for shortcuts in an application. The implementation closely follows this design: https://wiki.gnome.org/Design/OS/HelpOverlay This implementation is inspired by earlier work in gnome-builder, thanks to Christian Hergert. https://bugzilla.gnome.org/show_bug.cgi?id=756428