diff options
author | Owen Taylor <owt1@cornell.edu> | 1998-03-10 03:17:02 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-03-10 03:17:02 +0000 |
commit | 2f50a3044ed8bf7783e8362d956b6f77010795cd (patch) | |
tree | ade65b5ee1804697cc26df7b59ed317bc99807cb /gtk/gtkeditable.h | |
parent | 990bddfe1688861332443d89a4796a710e18ae39 (diff) | |
download | gdk-pixbuf-2f50a3044ed8bf7783e8362d956b6f77010795cd.tar.gz |
commiting changes from owen:
Mon Mar 9 20:38:15 1998 Owen Taylor <owt1@cornell.edu>
* gtk/gtkentry.c gtk/gtkeditable.c gtk/gtkspinbutton.c:
Moved "activate" to editable class. Made the vfuncs in
gtkeditable just vfuncs not signals.
* gtkentry.[ch] gtktext.[ch]: Made behavior when pressing
multiple buttons at once more rational.
* gtkentry.c gtktext.c: Unified and rationalized key
bindings. (Now are basically emacs+CUA)
* gtktext.c:
- Last position now always shares the property of the preceding
character
- Freeze the widget when inserting large amounts of text.
- Selecting lines now selects the _whole_ line.
- Fixed bug with displaying the cursor
- Ctrl-Home/End now move the cursor to the _absolute home/end
* gtkmenuitem.c: Remove necessary code out of a g_return_if_fail
-timj
Diffstat (limited to 'gtk/gtkeditable.h')
-rw-r--r-- | gtk/gtkeditable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkeditable.h b/gtk/gtkeditable.h index 893f8edf8..a2fd4a1b6 100644 --- a/gtk/gtkeditable.h +++ b/gtk/gtkeditable.h @@ -73,6 +73,7 @@ struct _GtkEditableClass void (* set_selection)(GtkEditable *editable, gint start_pos, gint end_pos); + void (* activate) (GtkEditable *editable); void (* changed) (GtkEditable *editable); }; |