summaryrefslogtreecommitdiff
path: root/embed/ephy-web-view.h
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-07 19:55:34 +0100
committerXan Lopez <xan@igalia.com>2012-03-07 19:57:21 +0100
commit603a9503df75635a63a5dc42454a9a61bcc518c2 (patch)
tree37f7445b1c8429a26c8fde704b5568d760975632 /embed/ephy-web-view.h
parentc58efa251b4a978f9621b8ebcd4de4e4f4f695d2 (diff)
downloadepiphany-603a9503df75635a63a5dc42454a9a61bcc518c2.tar.gz
ephy-web-view: remember when we are loading the homepage
And add a getter for the information.
Diffstat (limited to 'embed/ephy-web-view.h')
-rw-r--r--embed/ephy-web-view.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/embed/ephy-web-view.h b/embed/ephy-web-view.h
index 789d6cfa5..46336e75b 100644
--- a/embed/ephy-web-view.h
+++ b/embed/ephy-web-view.h
@@ -124,6 +124,8 @@ struct _EphyWebViewClass
void (* new_document_now) (EphyWebView *view,
const char *uri);
+
+ void (* loading_homepage) (EphyWebView *view);
};
GType ephy_web_view_get_type (void);
@@ -190,11 +192,15 @@ void ephy_web_view_save (EphyWebView
const char *uri);
void ephy_web_view_load_homepage (EphyWebView *view);
-char *
-ephy_web_view_create_web_application (EphyWebView *view, const char *title, GdkPixbuf *icon);
-
-GdkPixbuf *
-ephy_web_view_get_snapshot (EphyWebView *view, int x, int y, int width, int height);
+char * ephy_web_view_create_web_application (EphyWebView *view,
+ const char *title,
+ GdkPixbuf *icon);
+GdkPixbuf * ephy_web_view_get_snapshot (EphyWebView *view,
+ int x,
+ int y,
+ int width,
+ int height);
+gboolean ephy_web_view_is_loading_homepage (EphyWebView *view);
G_END_DECLS