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/EphySingle.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'embed/mozilla/EphySingle.h') diff --git a/embed/mozilla/EphySingle.h b/embed/mozilla/EphySingle.h index aff9de9a6..9bbc3f863 100644 --- a/embed/mozilla/EphySingle.h +++ b/embed/mozilla/EphySingle.h @@ -45,6 +45,8 @@ public: nsresult Init (EphyEmbedSingle *aOwner); nsresult Detach (); + PRBool IsOnline() { return mIsOnline; } + protected: nsresult EmitCookieNotification (const char *name, nsISupports *aSubject); nsresult EmitPermissionNotification (const char *name, nsISupports *aSubject); @@ -52,6 +54,7 @@ protected: private: nsCOMPtr mObserverService; EphyEmbedSingle *mOwner; + PRBool mIsOnline; }; EphyCookie *mozilla_cookie_to_ephy_cookie (nsICookie *cookie); -- cgit v1.2.3