diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-26 07:38:48 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-26 07:38:48 +0800 |
commit | 4ccad4249c928907f8b9a0f089b47ddb5c7bbfae (patch) | |
tree | 985030477b7b91bd9ea8d1ed1d57cb497035be86 /lib/widgets/ephy-location-entry.h | |
parent | 2ac5ef454443b113eb54a1b1ce21065db295d8c7 (diff) | |
download | gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar.gz gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar.bz2 gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar.lz gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar.xz gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.tar.zst gsoc2013-epiphany-4ccad4249c928907f8b9a0f089b47ddb5c7bbfae.zip |
Moves the completion_func from lib/widgets/ephy-location-entry.c to
src/ephy-location-action.c.
Adds a function to set the completion_func in
lib/widgets/ephy-location-entry.c|h.
Part of bug #392979.
svn path=/trunk/; revision=7821
Diffstat (limited to 'lib/widgets/ephy-location-entry.h')
-rw-r--r-- | lib/widgets/ephy-location-entry.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h index 549416c23..c7e905bc5 100644 --- a/lib/widgets/ephy-location-entry.h +++ b/lib/widgets/ephy-location-entry.h @@ -28,6 +28,7 @@ #include <gtk/gtkwidget.h> #include <gtk/gtktoolitem.h> #include <gtk/gtktreemodel.h> +#include <gtk/gtkentrycompletion.h> G_BEGIN_DECLS @@ -80,6 +81,9 @@ void ephy_location_entry_set_location (EphyLocationEntry *le, const char *address, const char *typed_address); +void ephy_location_entry_set_completion_func (EphyLocationEntry *le, + GtkEntryCompletionMatchFunc completion_func); + const char *ephy_location_entry_get_location (EphyLocationEntry *le); gboolean ephy_location_entry_reset (EphyLocationEntry *entry); |