diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:00 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:01:00 +0800 |
commit | 6638472fdbeee7c135c822ada01d09f407ca18e6 (patch) | |
tree | 9c9af360bfaaf544fd4ee45133b3eedb1ec7340c /embed/ephy-embed.c | |
parent | 2be1a6942311c3f8fd0d9335820919d281b437db (diff) | |
download | gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar.gz gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar.bz2 gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar.lz gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar.xz gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.tar.zst gsoc2013-epiphany-6638472fdbeee7c135c822ada01d09f407ca18e6.zip |
Move title/address update on open-uri signal to EphyEmbed.
Also refactor some common code in ephy-embed-utils.c
svn path=/trunk/; revision=7562
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 0a822ee11..6c6d4cdd8 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -1273,3 +1273,24 @@ ephy_embed_get_icon_address (EphyEmbed *embed) return iface->get_icon_address (embed); } +/** + * ephy_embed_get_is_blank: + * @embed: an #EphyEmbed + * + * Returns whether the @embed's address is "blank". + * + * Return value: %TRUE if the @embed's address is "blank" + **/ +gboolean +ephy_embed_get_is_blank (EphyEmbed *embed) +{ + EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); + return iface->get_is_blank (embed); +} + +const char * +ephy_embed_get_loading_title (EphyEmbed *embed) +{ + EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed); + return iface->get_loading_title (embed); +} |