diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:48 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:48 +0800 |
commit | 2be1a6942311c3f8fd0d9335820919d281b437db (patch) | |
tree | e050677a298de872b4870c6a1ee8e88267aa954c /embed/ephy-embed.h | |
parent | 929c43cd4cadadb2d1ddc26fd2d0500867d9ea75 (diff) | |
download | gsoc2013-epiphany-2be1a6942311c3f8fd0d9335820919d281b437db.tar.gz gsoc2013-epiphany-2be1a6942311c3f8fd0d9335820919d281b437db.tar.zst gsoc2013-epiphany-2be1a6942311c3f8fd0d9335820919d281b437db.zip |
Move icon and icon-address to EphyEmbed.
There's a snippet that needs to be moved elsewhere I think:
eb = ephy_shell_get_bookmarks (ephy_shell);
ephy_bookmarks_set_icon (eb, priv->address,
priv->icon_address);
It's done in mozilla_embed_set_icon_address.
svn path=/trunk/; revision=7561
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 0dc9cfa72..87d78f20d 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -252,6 +252,8 @@ struct _EphyEmbedIface EphyEmbedAddressExpire expire); const char * (* get_address) (EphyEmbed *embed); const char * (* get_status_message) (EphyEmbed *embed); + GdkPixbuf * (* get_icon) (EphyEmbed *embed); + const char * (* get_icon_address) (EphyEmbed *embed); }; GType ephy_embed_net_state_get_type (void); @@ -368,6 +370,11 @@ const char * ephy_embed_get_address (EphyEmbed *embed); /* Status messages */ const char * ephy_embed_get_status_message (EphyEmbed *embed); +/* Icon and Icon Address */ + +GdkPixbuf * ephy_embed_get_icon (EphyEmbed *embed); +const char * ephy_embed_get_icon_address (EphyEmbed *embed); + /* Encoding */ char *ephy_embed_get_encoding (EphyEmbed *embed); |