summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrendereraccel.c
Commit message (Collapse)AuthorAgeFilesLines
* Add a missing includeMatthias Clasen2009-09-021-0/+1
| | | | This was reported in bug 593606.
* Bug 526149 - GtkCellRendererAccel editing conflicts with mnemonicsKristian Rietveld2009-08-231-0/+4
| | | | | | | GtkCellRendererAccel also needs to acquire the GTK+ grab in addition to a GDK keyboard grab. With the GDK keyboard grab, KeyPress and KeyRelease events are delivered as usual, although we only want to receive them for our grab widget.
* Display invalid accelerators as "Invalid" in GTK mode.Christian Persch2009-04-201-1/+10
| | | | | | When in GTK_CELL_RENDERER_ACCEL_MODE_GTK, display accelerator key combinations that don't pass gtk_accelerator_valid() as "Invalid". Bug #572799.
* Display localised accelerator keys also in OTHER modeChristian Persch2009-04-111-1/+4
| | | | This fixes bug 572797.
* Use C_() instead of Q_(). String change!Matthias Clasen2008-10-271-3/+2
| | | | | | | | | | | | | | | | 2008-10-26 Matthias Clasen <mclasen@redhat.com> * gtk/gtkaccellabel.c: * gtk/gtkcalendar.c: * gtk/gtkcellrendereraccel.c: * gtk/gtkcellrendererprogress.c: * gtk/gtkimmulticontext.c: * gtk/gtkrecentchoosermenu.c: * gtk/gtkvolumebutton.c: Use C_() instead of Q_(). String change! svn path=/trunk/; revision=21716
* Bug 555724 – gtkcellrendereraccel not initialised correctlyChristian Persch2008-10-131-0/+9
| | | | svn path=/trunk/; revision=21641
* gtk/gtkaboutdialog.c gtk/gtkcellrendereraccel.c gtk/gtkcellrenderercombo.cSven Neumann2008-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-08-11 Sven Neumann <sven@gimp.org> * gtk/gtkaboutdialog.c * gtk/gtkcellrendereraccel.c * gtk/gtkcellrenderercombo.c * gtk/gtkcellrendererspin.c * gtk/gtkcellrenderertext.c * gtk/gtkclipboard.c * gtk/gtkcolorsel.c * gtk/gtkcombo.c * gtk/gtkcombobox.c * gtk/gtkdnd-quartz.c * gtk/gtkdnd.c * gtk/gtkentry.c * gtk/gtkentrycompletion.c * gtk/gtkfilechooserbutton.c * gtk/gtkfilechooserdefault.c * gtk/gtkfilechooserentry.c * gtk/gtkfontsel.c * gtk/gtkinputdialog.c * gtk/gtkmenutoolbutton.c * gtk/gtkpathbar.c * gtk/gtktooltip.c: use canonical signal names in g_signal_connect(). svn path=/trunk/; revision=21060
* implement getter for keycode property. (#476665, patch by ChristianKristian Rietveld2007-09-131-0/+4
| | | | | | | | | | | 2007-09-14 Kristian Rietveld <kris@gtk.org> * gtk/gtkcellrendereraccel.c (gtk_cell_renderer_accel_get_property): implement getter for keycode property. (#476665, patch by Christian Persch). svn path=/trunk/; revision=18817
* use multihead safe ungrab functions instead of gdk_keyboard_ungrab() andMichael Natterer2007-03-071-53/+36
| | | | | | | | | | | | 2007-03-07 Michael Natterer <mitch@imendio.com> * gtk/gtkcellrendereraccel.c: use multihead safe ungrab functions instead of gdk_keyboard_ungrab() and gdk_pointer_ungrab(), remove empty finalize() implementation, some cosmetic cleanup (bug #415645). svn path=/trunk/; revision=17412
* Add new infrastructure for notifications of failed keyboard navigation andMichael Natterer2006-11-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2006-11-16 Michael Natterer <mitch@imendio.com> Add new infrastructure for notifications of failed keyboard navigation and navigation with restricted set of keys. The patch handles configurable beeping, navigating the GUI with cursor keys only (as in phone environments), and configurable wrap-around. Fixes bugs #322640, #70986, #318827, #334726, #334742 and #309291. * gtk/gtksettings.c: added properties gtk-keynav-cursor-only, gtk-keynav-wrap-around and gtk-error-bell. * gtk/gtkwidget.[ch]: added new signal "keynav-failed" and public API to emit it. Added New function gtk_widget_error_bell() which looks at the gtk-error-bell setting and calls gdk_window_beep() accordingly. * gtk/gtk.symbols: add the new widget symbols. * gtk/gtkcellrendereraccel.c * gtk/gtkimcontextsimple.c * gtk/gtkmenu.c * gtk/gtknotebook.c: use gtk_widget_error_bell() or look at the gtk-error-bell setting instead of calling gdk_display_beep() unconditionally. * gtk/gtkcombobox.c * gtk/gtkentry.c * gtk/gtkiconview.c * gtk/gtklabel.c * gtk/gtkmenushell.c * gtk/gtkspinbutton.c * gtk/gtktextview.c * gtk/gtktreeview.c: call gtk_widget_error_bell() on failed keynav. * gtk/gtkentry.c * gtk/gtklabel.c * gtk/gtkrange.c * gtk/gtktextview.c: consult gtk_widget_keynav_failed() on failed cursor navigation and leave the widget if it returns FALSE. * gtk/gtkmenushell.c * gtk/gtknotebook.c: only wrap around if gtk-keynav-wrap-around is TRUE. * gtk/gtkradiobutton.c: ask gtk_widget_keynav_failed() to decide whether to to wrap-around, and don't select active items on cursor navigation if gtk-keynav-cursor-only is TRUE. Should look at gtk-keynav-wrap-around too, will look into that.
* Apply a cleanup patch by Kjartan Maraas (#341812)Matthias Clasen2006-10-081-3/+1
| | | | | | 2006-10-08 Matthias Clasen <mclasen@redhat.com> * Apply a cleanup patch by Kjartan Maraas (#341812)
* More of the sameMatthias Clasen2006-05-141-1/+1
|
* Renamed GtkCellRendererKeys to GtkCellRendererAccel to be consistent withMichael Natterer2005-09-221-135/+136
| | | | | | | | | | | | | | | | | | 2005-09-22 Michael Natterer <mitch@imendio.com> Renamed GtkCellRendererKeys to GtkCellRendererAccel to be consistent with GTK+ terminology: * gtk/gtkcellrendererkeys.[ch] * tests/testkeys.c: removed... * gtk/gtkcellrendereraccel.[ch] * tests/testaccel.c: ...and added. * gtk/Makefile.am * gtk/gtk.h * gtk/gtk.symbols * tests/Makefile.am: changed accordingly.
* Forgotten filesMatthias Clasen2005-09-111-0/+611