aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2007-12-27 03:00:00 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2007-12-27 03:00:00 +0800
commit7236ef4936158ed4f713d5d5da061e0696e9ea76 (patch)
treec3580d9a07dedbcfc6ade32b1dc195031a7f1a79
parent0b39aeca159fdd8126cb7423dbe8753bf1b5c1e7 (diff)
downloadgsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar.gz
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar.bz2
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar.lz
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar.xz
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.tar.zst
gsoc2013-epiphany-7236ef4936158ed4f713d5d5da061e0696e9ea76.zip
Catch bookmarks and history in EphyLocationActionPrivate, it's smarter.
Fixes bug #505777. svn path=/trunk/; revision=7828
-rw-r--r--lib/widgets/ephy-location-entry.c5
-rw-r--r--lib/widgets/ephy-location-entry.h3
-rw-r--r--src/ephy-location-action.c19
3 files changed, 15 insertions, 12 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index c531b7169..2121fe9cf 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -941,13 +941,14 @@ extracell_data_func (GtkCellLayout *cell_layout,
void
ephy_location_entry_set_completion_func (EphyLocationEntry *le,
- GtkEntryCompletionMatchFunc completion_func)
+ GtkEntryCompletionMatchFunc completion_func,
+ gpointer user_data)
{
EphyLocationEntryPrivate *priv = le->priv;
GtkEntryCompletion *completion;
completion = gtk_entry_get_completion (GTK_ENTRY (priv->icon_entry->entry));
- gtk_entry_completion_set_match_func (completion, completion_func, NULL, NULL);
+ gtk_entry_completion_set_match_func (completion, completion_func, user_data, NULL);
}
void
diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h
index c7e905bc5..0833bedf4 100644
--- a/lib/widgets/ephy-location-entry.h
+++ b/lib/widgets/ephy-location-entry.h
@@ -82,7 +82,8 @@ void ephy_location_entry_set_location (EphyLocationEntry *le,
const char *typed_address);
void ephy_location_entry_set_completion_func (EphyLocationEntry *le,
- GtkEntryCompletionMatchFunc completion_func);
+ GtkEntryCompletionMatchFunc completion_func,
+ gpointer user_data);
const char *ephy_location_entry_get_location (EphyLocationEntry *le);
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c
index 3d7ef7838..73f817089 100644
--- a/src/ephy-location-action.c
+++ b/src/ephy-location-action.c
@@ -51,6 +51,7 @@ struct _EphyLocationActionPrivate
char *typed_address;
EphyNode *smart_bmks;
EphyBookmarks *bookmarks;
+ EphyNode *history;
GdkPixbuf *icon;
char *lock_stock_id;
char *lock_tooltip;
@@ -155,9 +156,9 @@ completion_func (GtkEntryCompletion *completion,
gboolean ret = FALSE;
GtkTreeModel *model;
GtkTreeIter iter2;
+ EphyLocationActionPrivate *priv;
- EphyNode *history;
- EphyBookmarks *bookmarks;
+ priv = EPHY_LOCATION_ACTION (data)->priv;
model = gtk_entry_completion_get_model (completion);
@@ -201,10 +202,6 @@ completion_func (GtkEntryCompletion *completion,
}
}
- bookmarks = ephy_shell_get_bookmarks (ephy_shell);
- history = ephy_history_get_pages (EPHY_HISTORY (
- ephy_embed_shell_get_global_history (embed_shell)));
-
gtk_tree_model_sort_convert_iter_to_child_iter
(GTK_TREE_MODEL_SORT (model), &iter2, iter);
@@ -212,8 +209,8 @@ completion_func (GtkEntryCompletion *completion,
* and we are seeing an history item, then we skip showing it.
* The bookmark will be shown instead since we are not filtering it out.
*/
- if (ephy_bookmarks_find_bookmark (bookmarks, url) != NULL &&
- (iter2.user_data2 == history))
+ if (ephy_bookmarks_find_bookmark (priv->bookmarks, url) != NULL &&
+ (iter2.user_data2 == priv->history))
ret = FALSE;
g_free (item);
@@ -514,7 +511,8 @@ connect_proxy (GtkAction *action, GtkWidget *proxy)
EPHY_COMPLETION_URL_COL);
ephy_location_entry_set_completion_func (EPHY_LOCATION_ENTRY (proxy),
- completion_func);
+ completion_func,
+ EPHY_LOCATION_ACTION (action));
add_completion_actions (action, proxy);
@@ -871,6 +869,9 @@ ephy_location_action_init (EphyLocationAction *action)
(action->priv->bookmarks);
init_actions_list (action);
+
+ priv->history = ephy_history_get_pages (EPHY_HISTORY (
+ ephy_embed_shell_get_global_history (embed_shell)));
ephy_node_signal_connect_object (priv->smart_bmks,
EPHY_NODE_CHILD_ADDED,