summaryrefslogtreecommitdiff
path: root/gtk/gtkentry.h
diff options
context:
space:
mode:
authorOwen Taylor <owt1@cornell.edu>1998-03-10 03:17:02 +0000
committerTim Janik <timj@src.gnome.org>1998-03-10 03:17:02 +0000
commit2f50a3044ed8bf7783e8362d956b6f77010795cd (patch)
treeade65b5ee1804697cc26df7b59ed317bc99807cb /gtk/gtkentry.h
parent990bddfe1688861332443d89a4796a710e18ae39 (diff)
downloadgtk+-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/gtkentry.h')
-rw-r--r--gtk/gtkentry.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h
index eb45b45d26..5974934ebd 100644
--- a/gtk/gtkentry.h
+++ b/gtk/gtkentry.h
@@ -51,13 +51,12 @@ struct _GtkEntry
gint16 scroll_offset;
guint visible : 1;
guint32 timer;
+ guint button;
};
struct _GtkEntryClass
{
GtkEditableClass parent_class;
-
- void (* activate) (GtkEntry *entry);
};
guint gtk_entry_get_type (void);