diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:34 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:34 +0800 |
commit | 929c43cd4cadadb2d1ddc26fd2d0500867d9ea75 (patch) | |
tree | 29f40b4ed449ca09cc3fff1639562fabc9e76212 /embed/ephy-embed.h | |
parent | 51a7dc7dd4e0871d0da50228a163a1b124aeda1c (diff) | |
download | gsoc2013-epiphany-929c43cd4cadadb2d1ddc26fd2d0500867d9ea75.tar.gz gsoc2013-epiphany-929c43cd4cadadb2d1ddc26fd2d0500867d9ea75.tar.zst gsoc2013-epiphany-929c43cd4cadadb2d1ddc26fd2d0500867d9ea75.zip |
Move status-message and logic of link-message to EphyEmbed.
Create a property for link-message in EphyEmbed too.
svn path=/trunk/; revision=7560
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 70058eec6..0dc9cfa72 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -199,7 +199,7 @@ struct _EphyEmbedIface const char * (* get_title) (EphyEmbed *embed); char * (* get_location) (EphyEmbed *embed, gboolean toplevel); - char * (* get_link_message) (EphyEmbed *embed); + const char * (* get_link_message) (EphyEmbed *embed); char * (* get_js_status) (EphyEmbed *embed); int (* shistory_n_items) (EphyEmbed *embed); void (* shistory_get_nth) (EphyEmbed *embed, @@ -251,6 +251,7 @@ struct _EphyEmbedIface const char *address, EphyEmbedAddressExpire expire); const char * (* get_address) (EphyEmbed *embed); + const char * (* get_status_message) (EphyEmbed *embed); }; GType ephy_embed_net_state_get_type (void); @@ -283,7 +284,7 @@ const char *ephy_embed_get_title (EphyEmbed *embed); char *ephy_embed_get_location (EphyEmbed *embed, gboolean toplevel); -char *ephy_embed_get_link_message (EphyEmbed *embed); +const char *ephy_embed_get_link_message (EphyEmbed *embed); char *ephy_embed_get_js_status (EphyEmbed *embed); @@ -364,6 +365,9 @@ void ephy_embed_set_typed_address (EphyEmbed *embed, /* Address */ const char * ephy_embed_get_address (EphyEmbed *embed); +/* Status messages */ +const char * ephy_embed_get_status_message (EphyEmbed *embed); + /* Encoding */ char *ephy_embed_get_encoding (EphyEmbed *embed); |