diff options
author | Owen Taylor <owt1@cornell.edu> | 1998-03-07 03:05:36 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-03-07 03:05:36 +0000 |
commit | 1941bf4cbf30ba6a0b63ae2f881a6f7d6c13a677 (patch) | |
tree | 89e9341d9fe045a882937df16a9ba6b0f2f730b3 /gtk/gtktext.h | |
parent | 761549b9682de5b9b6d8a1f06f8e75cff911a551 (diff) | |
download | gdk-pixbuf-1941bf4cbf30ba6a0b63ae2f881a6f7d6c13a677.tar.gz |
Disallow pasting into non-editable widgets.
Fri Mar 6 21:30:05 1998 Owen Taylor <owt1@cornell.edu>
* gtk/gtkeditable.c: Disallow pasting into non-editable
widgets.
* gtk/gtktext.[ch]:
-Added scrolling when dragging the selection
paste the top/bottom.
-Fix some of the problems with displaying the selection
state before mouse release.
-Disallow pasting into non-editable widgets
-Fixed segfault when changing window size
-Update the cursor correctly when switching between
editable and non-editable
* testgtk.c: Added a toggle button for editability for
the text widget.
Diffstat (limited to 'gtk/gtktext.h')
-rw-r--r-- | gtk/gtktext.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtktext.h b/gtk/gtktext.h index b35d129cf..19c507a1e 100644 --- a/gtk/gtktext.h +++ b/gtk/gtktext.h @@ -144,6 +144,8 @@ struct _GtkText GList *tab_stops; gint default_tab_width; + /* Timer used for auto-scrolling off ends */ + guint32 timer; }; struct _GtkTextClass |