diff options
author | Matthias Clasen <mclasen@dhcp64-228.boston.redhat.com> | 2004-04-12 19:40:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-04-12 19:40:22 +0000 |
commit | d7cb94614d93ca364cc3095bd6489a516b7da7c6 (patch) | |
tree | daabcb6ee4c59e657d782f0f86fcd9fd2147f91b /gtk/gtkentryprivate.h | |
parent | 1672ba391cbe9f48c7503b8cefb81550e4ed9a38 (diff) | |
download | gdk-pixbuf-d7cb94614d93ca364cc3095bd6489a516b7da7c6.tar.gz |
Typo fix.
2004-04-12 Matthias Clasen <mclasen@dhcp64-228.boston.redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Typo fix.
* gtk/gtkentrycompletion.c (gtk_entry_completion_init): Don't add
a shadow inside the scrolled window, add it around the vbox.
* gtk/gtkentryprivate.h:
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
Return a boolean indicating whether the popup is positioned above
or below. Scroll the completions to the beginning or the end,
depending on the positioning.
* gtk/gtkentry.c (gtk_entry_completion_key_press): Make keynav
wrap around in the entry completion popup, and allow GDK_UP to
enter the popup. (#137440)
2004-04-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentry.c (gtk_entry_size_request): Make sure the style is
there before using it.
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r-- | gtk/gtkentryprivate.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h index a4dd01155..7816c8784 100644 --- a/gtk/gtkentryprivate.h +++ b/gtk/gtkentryprivate.h @@ -56,9 +56,12 @@ struct _GtkEntryCompletionPrivate gulong completion_timeout; gulong changed_id; gulong key_press_id; + gulong key_release_id; + + gboolean may_wrap; }; -gint _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion); +gboolean _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion); void _gtk_entry_completion_popup (GtkEntryCompletion *completion); void _gtk_entry_completion_popdown (GtkEntryCompletion *completion); |