aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.h
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-10-26 04:01:00 +0800
committerXan Lopez <xan@src.gnome.org>2007-10-26 04:01:00 +0800
commit6638472fdbeee7c135c822ada01d09f407ca18e6 (patch)
tree9c9af360bfaaf544fd4ee45133b3eedb1ec7340c /embed/ephy-embed.h
parent2be1a6942311c3f8fd0d9335820919d281b437db (diff)
downloadgsoc2013-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.h')
-rw-r--r--embed/ephy-embed.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h
index 87d78f20d..61d3ab735 100644
--- a/embed/ephy-embed.h
+++ b/embed/ephy-embed.h
@@ -254,6 +254,8 @@ struct _EphyEmbedIface
const char * (* get_status_message) (EphyEmbed *embed);
GdkPixbuf * (* get_icon) (EphyEmbed *embed);
const char * (* get_icon_address) (EphyEmbed *embed);
+ gboolean (* get_is_blank) (EphyEmbed *embed);
+ const char * (* get_loading_title) (EphyEmbed *embed);
};
GType ephy_embed_net_state_get_type (void);
@@ -285,7 +287,6 @@ const char *ephy_embed_get_title (EphyEmbed *embed);
char *ephy_embed_get_location (EphyEmbed *embed,
gboolean toplevel);
-
const char *ephy_embed_get_link_message (EphyEmbed *embed);
char *ephy_embed_get_js_status (EphyEmbed *embed);
@@ -375,6 +376,11 @@ const char * ephy_embed_get_status_message (EphyEmbed *embed);
GdkPixbuf * ephy_embed_get_icon (EphyEmbed *embed);
const char * ephy_embed_get_icon_address (EphyEmbed *embed);
+/* Is blank */
+gboolean ephy_embed_get_is_blank (EphyEmbed *embed);
+
+const char * ephy_embed_get_loading_title (EphyEmbed *embed);
+
/* Encoding */
char *ephy_embed_get_encoding (EphyEmbed *embed);