aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-entry.h
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-08-09 14:44:59 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-08-09 14:44:59 +0800
commit9ca73ebd87d811931bce784496b4141f722f7eb8 (patch)
treefc4faf09a547914a286f5d0bac0b767ddc225ade /widgets/text/e-entry.h
parentee974e6d09d80808df9275e44295575815a230e4 (diff)
downloadgsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar.gz
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar.bz2
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar.lz
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar.xz
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.tar.zst
gsoc2013-evolution-9ca73ebd87d811931bce784496b4141f722f7eb8.zip
Bumped version up to 0.10.99.2.
2001-08-09 Jon Trowbridge <trow@ximian.com> * configure.in: Bumped version up to 0.10.99.2. * gal/e-text/e-entry.c (e_entry_class_init): Added "completion_popup" signal. (e_entry_show_popup): Emit "completion_popup" signal if the popup has appeared or disappeared. (e_entry_enable_completion_full): Listen for "cancel_completion" signals from our model, and disable our completion if get one. (e_entry_completion_popup_is_visible): Added. Returns TRUE if the completion popup is on the screen. * gal/e-text/e-text-model.c (e_text_model_class_init): Added "cancel_completion" signal. (e_text_model_cancel_completion): Added. Emits "cancel_completion" signal. svn path=/trunk/; revision=11824
Diffstat (limited to 'widgets/text/e-entry.h')
-rw-r--r--widgets/text/e-entry.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/text/e-entry.h b/widgets/text/e-entry.h
index 948bb8a4b2..8c2f387414 100644
--- a/widgets/text/e-entry.h
+++ b/widgets/text/e-entry.h
@@ -68,6 +68,7 @@ struct _EEntryClass {
void (* changed) (EEntry *entry);
void (* activate) (EEntry *entry);
void (* popup) (EEntry *entry, GdkEventButton *ev, gint pos);
+ void (* completion_popup) (EEntry *entry, gint visible);
};
GtkType e_entry_get_type (void);
@@ -87,6 +88,7 @@ void e_entry_set_editable (EEntry *entry, gboolean editable);
void e_entry_enable_completion (EEntry *entry, ECompletion *completion);
void e_entry_enable_completion_full (EEntry *entry, ECompletion *completion, gint autocomplete_delay,
EEntryCompletionHandler handler);
+gboolean e_entry_completion_popup_is_visible (EEntry *entry);
END_GNOME_DECLS