diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-08-02 05:34:08 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-08-02 05:34:08 +0000 |
commit | 4134499c25b8c071e47761e16d1d86a51c8500a6 (patch) | |
tree | c1bf511beb028d3b2b65e72783731ccda2824c96 /gtk/gtkentry.h | |
parent | 856064b03600d87960aef07e1fb0d404cca2c2ef (diff) | |
download | gdk-pixbuf-4134499c25b8c071e47761e16d1d86a51c8500a6.tar.gz |
Add a new binding signal ::backspace, bind it to the backspace key, and
Mon Aug 2 01:30:03 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.[hc]:
* gtk/gtkentry.[hc]: Add a new binding signal ::backspace,
bind it to the backspace key, and make it pay attention
to the Pango backspace_deletes_character
attribute. (#119891, Noah Levitt, patch by Theppitak
Karoonboonyanan)
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index be8b4a644..b34ed4774 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -137,6 +137,7 @@ struct _GtkEntryClass void (* delete_from_cursor) (GtkEntry *entry, GtkDeleteType type, gint count); + void (* backspace) (GtkEntry *entry); void (* cut_clipboard) (GtkEntry *entry); void (* copy_clipboard) (GtkEntry *entry); void (* paste_clipboard) (GtkEntry *entry); @@ -146,7 +147,6 @@ struct _GtkEntryClass void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); void (*_gtk_reserved3) (void); - void (*_gtk_reserved4) (void); }; GType gtk_entry_get_type (void) G_GNUC_CONST; |