diff options
author | Xan Lopez <xan@igalia.com> | 2013-03-10 04:18:28 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-03-11 20:38:46 +0800 |
commit | 6da63a35ffe4254084c80d5abb568f9e9906be5a (patch) | |
tree | 6311c96033b634b06ff3e7f04f131efd5e659994 /embed | |
parent | bc16d2a4d7c0dc06f5c36ca3c75c7eb40f5c3676 (diff) | |
download | gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar.gz gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar.bz2 gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar.lz gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar.xz gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.tar.zst gsoc2013-epiphany-6da63a35ffe4254084c80d5abb568f9e9906be5a.zip |
ephy-embed-shell: add a ::web-view-created signal
Emitted every time we create an EphyWebView anywhere. This will be
useful in our tests.
https://bugzilla.gnome.org/show_bug.cgi?id=695300
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-shell.c | 19 | ||||
-rw-r--r-- | embed/ephy-web-view.c | 3 |
2 files changed, 21 insertions, 1 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c index fe2969e9b..19e543216 100644 --- a/embed/ephy-embed-shell.c +++ b/embed/ephy-embed-shell.c @@ -74,6 +74,7 @@ enum DOWNLOAD_REMOVED, PREPARE_CLOSE, RESTORED_WINDOW, + WEB_VIEW_CREATED, LAST_SIGNAL }; @@ -489,6 +490,24 @@ ephy_embed_shell_class_init (EphyEmbedShellClass *klass) G_TYPE_NONE, 0); + /** + * EphyEmbedShell::web-view-created: + * @shell: the #EphyEmbedShell + * @view: the newly created #EphyWebView + * + * The ::web-view-created signal will be emitted every time a new + * #EphyWebView is created. + * + **/ + signals[WEB_VIEW_CREATED] = + g_signal_new ("web-view-created", + EPHY_TYPE_EMBED_SHELL, + G_SIGNAL_RUN_LAST, + 0, NULL, NULL, + g_cclosure_marshal_VOID__OBJECT, + G_TYPE_NONE, 1, + EPHY_TYPE_WEB_VIEW); + g_type_class_add_private (object_class, sizeof (EphyEmbedShellPrivate)); } diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 67fc4c7c5..4f739f357 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1284,10 +1284,11 @@ ephy_web_view_constructed (GObject *object) * have both enabled at the same time in WebKit now (although our * API does not reflect this atm). See r67274 in WebKit. */ #ifndef HAVE_WEBKIT2 - /* This is the default behaviour in WebKit2 */ webkit_web_view_set_full_content_zoom (WEBKIT_WEB_VIEW (object), TRUE); #endif + + g_signal_emit_by_name (ephy_embed_shell_get_default (), "web-view-created", object); } static void |