diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-04-28 07:47:08 +0000 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-04-28 07:47:08 +0000 |
commit | c5ce76fda210c9975d4640b0c228f1e8416ba36c (patch) | |
tree | a82595e4068ee5e96508f1f64c712a9dc01f8004 /gtk/gtkentryprivate.h | |
parent | 61de24aa9a155ab54df01662a43a6d93fc1c632f (diff) | |
download | gtk+-c5ce76fda210c9975d4640b0c228f1e8416ba36c.tar.gz |
Rember the user input that triggered the completion, add API to the
* gtk/gtkentry.c:
* gtk/gtkentrycompletion.c:
* gtk/gtkentrycompletion.h:
* gtk/gtkentryprivate.h:
Rember the user input that triggered the completion, add
API to the retrieve it and reset the entry contents to it
if the user cancels the tentative completion during
the inline-selection.
svn path=/trunk/; revision=17666
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r-- | gtk/gtkentryprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h index 696f744401..a7678002b8 100644 --- a/gtk/gtkentryprivate.h +++ b/gtk/gtkentryprivate.h @@ -66,6 +66,8 @@ struct _GtkEntryCompletionPrivate guint popup_single_match : 1; guint inline_selection : 1; + gchar *completion_prefix; + GSource *check_completion_idle; }; |