From 85939a287cbb2b9c789581ddc6d529dd24d2c870 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Wed, 12 Oct 2005 19:45:07 +0000 Subject: Remove the "network-status" signal from the embed single, and make it a 2005-10-12 Christian Persch * embed/ephy-embed-single.c: (ephy_embed_single_iface_init), (ephy_embed_single_set_network_status), (ephy_embed_single_get_network_status): * embed/ephy-embed-single.h: * embed/mozilla/EphySingle.cpp: * embed/mozilla/EphySingle.h: * embed/mozilla/mozilla-embed-single.cpp: * src/ephy-window.c: (sync_tab_icon), (sync_network_status), (ephy_window_dispose), (ephy_window_init): * src/epiphany.defs: * src/window-commands.c: (window_cmd_file_work_offline): Remove the "network-status" signal from the embed single, and make it a property instead. Keep track of the network status in EphySingle, and emit property notification when it changes. --- embed/mozilla/mozilla-embed-single.cpp | 51 +++++++++++++++++++++++++++++----- 1 file changed, 44 insertions(+), 7 deletions(-) (limited to 'embed/mozilla/mozilla-embed-single.cpp') diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index f01fbcab3..da5272b96 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -105,6 +105,14 @@ struct MozillaEmbedSinglePrivate GtkWidget *theme_window; EphySingle *mSingleObserver; + + guint online : 1; +}; + +enum +{ + PROP_0, + PROP_NETWORK_STATUS }; static void mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass); @@ -626,18 +634,23 @@ impl_clear_auth_cache (EphyEmbedSingle *shell) } static void -impl_set_offline_mode (EphyEmbedSingle *shell, - gboolean offline) +impl_set_network_status (EphyEmbedSingle *single, + gboolean online) { nsCOMPtr io = do_GetService(NS_IOSERVICE_CONTRACTID); if (!io) return; - io->SetOffline(offline); + io->SetOffline (!online); } static gboolean -impl_get_offline_mode (EphyEmbedSingle *shell) +impl_get_network_status (EphyEmbedSingle *esingle) { + MozillaEmbedSingle *single = MOZILLA_EMBED_SINGLE (esingle); + MozillaEmbedSinglePrivate *priv = single->priv; + + NS_ENSURE_TRUE (priv->mSingleObserver, TRUE); + nsCOMPtr io = do_GetService(NS_IOSERVICE_CONTRACTID); if (!io) return FALSE; /* no way to check the state, assume offline */ @@ -646,7 +659,12 @@ impl_get_offline_mode (EphyEmbedSingle *shell) rv = io->GetOffline(&isOffline); NS_ENSURE_SUCCESS (rv, FALSE); - return isOffline; + PRBool isOnline = !isOffline; + PRBool reallyOnline = priv->mSingleObserver->IsOnline (); + + g_return_val_if_fail (reallyOnline == isOnline, TRUE); + + return !isOffline; } static GList * @@ -984,6 +1002,22 @@ impl_open_window (EphyEmbedSingle *single, return EphyUtils::FindEmbed (newWindow); } +static void +mozilla_embed_single_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + EphyEmbedSingle *single = EPHY_EMBED_SINGLE (object); + + switch (prop_id) + { + case PROP_NETWORK_STATUS: + g_value_set_boolean (value, ephy_embed_single_get_network_status (single)); + break; + } +} + static void mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass) { @@ -993,6 +1027,9 @@ mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass) object_class->dispose = mozilla_embed_single_dispose; object_class->finalize = mozilla_embed_single_finalize; + object_class->get_property = mozilla_embed_single_get_property; + + g_object_class_override_property (object_class, PROP_NETWORK_STATUS, "network-status"); g_type_class_add_private (object_class, sizeof (MozillaEmbedSinglePrivate)); } @@ -1002,8 +1039,8 @@ ephy_embed_single_iface_init (EphyEmbedSingleIface *iface) { iface->clear_cache = impl_clear_cache; iface->clear_auth_cache = impl_clear_auth_cache; - iface->set_offline_mode = impl_set_offline_mode; - iface->get_offline_mode = impl_get_offline_mode; + iface->set_network_status = impl_set_network_status; + iface->get_network_status = impl_get_network_status; iface->get_font_list = impl_get_font_list; iface->open_window = impl_open_window; } -- cgit v1.2.3