diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-08-15 06:47:39 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-08-15 06:47:39 +0800 |
commit | aefbb7f4a30188b281becee9d61b4b519c625a9f (patch) | |
tree | 76bb433a45c34fa885bb8398e96741bfddfefc88 /lib/widgets/ephy-location-entry.h | |
parent | 82a8ea1c5dbe7e892763d1f7395fe7d69c7a485d (diff) | |
download | gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar.gz gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar.bz2 gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar.lz gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar.xz gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.tar.zst gsoc2013-epiphany-aefbb7f4a30188b281becee9d61b4b519c625a9f.zip |
Port the location bar to use GRegex.
Use a simple regex matching the input text, implements the same behaviour of
the current bar, plus:
- substring suggestions (closes: #151932)
- unicode support (closes: #343906)
- diacritics in topic keywords (closes: #328162)
- completion on history items titles (closes: #534218)
Also, of course, closes: #517960 - port the url bar to GRegex.
svn path=/trunk/; revision=8419
Diffstat (limited to 'lib/widgets/ephy-location-entry.h')
-rw-r--r-- | lib/widgets/ephy-location-entry.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h index a949d949b..3c558dfa5 100644 --- a/lib/widgets/ephy-location-entry.h +++ b/lib/widgets/ephy-location-entry.h @@ -82,9 +82,10 @@ 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, - gpointer user_data); +void ephy_location_entry_set_match_func (EphyLocationEntry *le, + GtkEntryCompletionMatchFunc match_func, + gpointer user_data, + GDestroyNotify notify); const char *ephy_location_entry_get_location (EphyLocationEntry *le); @@ -92,6 +93,8 @@ gboolean ephy_location_entry_get_can_undo (EphyLocationEntry *le); gboolean ephy_location_entry_get_can_redo (EphyLocationEntry *entry); +GRegex * ephy_location_entry_get_regex (EphyLocationEntry *entry); + gboolean ephy_location_entry_reset (EphyLocationEntry *entry); void ephy_location_entry_undo_reset (EphyLocationEntry *entry); |