From 7cc9e4a8e9d7a9ae063005e27bca383687b3084e Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Wed, 7 Mar 2012 18:53:19 +0200 Subject: ephy-host-store: add a clear() method This adds always a default item "All sites" which, when selected, will show all urls in all hosts. https://bugzilla.gnome.org/show_bug.cgi?id=671575 --- lib/widgets/ephy-hosts-store.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'lib/widgets/ephy-hosts-store.c') diff --git a/lib/widgets/ephy-hosts-store.c b/lib/widgets/ephy-hosts-store.c index ed76072e6..99fff4833 100644 --- a/lib/widgets/ephy-hosts-store.c +++ b/lib/widgets/ephy-hosts-store.c @@ -20,8 +20,11 @@ */ #include "config.h" + #include "ephy-hosts-store.h" +#include + G_DEFINE_TYPE (EphyHostsStore, ephy_hosts_store, GTK_TYPE_LIST_STORE) static void @@ -99,3 +102,13 @@ ephy_hosts_store_get_host_from_path (EphyHostsStore *store, -1); return host; } + +void +ephy_hosts_store_clear (EphyHostsStore *store) +{ + gtk_list_store_clear (GTK_LIST_STORE (store)); + gtk_list_store_insert_with_values (GTK_LIST_STORE (store), NULL, 0, + EPHY_HOSTS_STORE_COLUMN_ID, 0, + EPHY_HOSTS_STORE_COLUMN_TITLE, _("All sites"), + -1); +} -- cgit v1.2.3