diff options
author | Xan Lopez <xan@igalia.com> | 2012-06-28 19:27:25 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-06-28 19:27:25 +0800 |
commit | b4d5a8daa7fede8dc03d6765c2ac55ea71d0a385 (patch) | |
tree | 03144b841a91e07d7c6d6b9e03b3fb6b4275c303 /embed/ephy-embed-private.h | |
parent | 26b13c310b1cb6e7239d8c34197da005aa0edcff (diff) | |
download | gsoc2013-epiphany-b4d5a8daa7fede8dc03d6765c2ac55ea71d0a385.tar.gz gsoc2013-epiphany-b4d5a8daa7fede8dc03d6765c2ac55ea71d0a385.tar.zst gsoc2013-epiphany-b4d5a8daa7fede8dc03d6765c2ac55ea71d0a385.zip |
ephy-web-view: move private methods to the private header
Diffstat (limited to 'embed/ephy-embed-private.h')
-rw-r--r-- | embed/ephy-embed-private.h | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/embed/ephy-embed-private.h b/embed/ephy-embed-private.h index 34ba6bcb1..e82368d7f 100644 --- a/embed/ephy-embed-private.h +++ b/embed/ephy-embed-private.h @@ -44,10 +44,28 @@ G_BEGIN_DECLS "^file:.*$" \ ")" -void ephy_web_view_set_visit_type (EphyWebView *view, - EphyHistoryPageVisitType visit_type); +void ephy_web_view_set_visit_type (EphyWebView *view, + EphyHistoryPageVisitType visit_type); +EphyHistoryPageVisitType ephy_web_view_get_visit_type (EphyWebView *view); +void ephy_web_view_set_address (EphyWebView *view, + const char *address); +void ephy_web_view_set_loading_title (EphyWebView *view, + const char *title, + gboolean is_address); +void ephy_web_view_popups_manager_reset (EphyWebView *view); +void ephy_web_view_save (EphyWebView *view, + const char *uri); +void ephy_web_view_load_homepage (EphyWebView *view); -EphyHistoryPageVisitType ephy_web_view_get_visit_type (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); +gboolean ephy_web_view_is_loading_homepage (EphyWebView *view); G_END_DECLS |