diff options
author | Gustavo Noronha Silva <gns@gnome.org> | 2009-12-16 22:40:51 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <gns@gnome.org> | 2009-12-17 20:21:25 +0800 |
commit | f26d3ba7ce8a3577739a08971e466e2b33cecf31 (patch) | |
tree | aeb8ff89de563f43ab512f492121d83bb7c04982 /embed/ephy-embed.h | |
parent | de05c84965bc829f14fb9165bd05d5612967a36d (diff) | |
download | gsoc2013-epiphany-f26d3ba7ce8a3577739a08971e466e2b33cecf31.tar.gz gsoc2013-epiphany-f26d3ba7ce8a3577739a08971e466e2b33cecf31.tar.zst gsoc2013-epiphany-f26d3ba7ce8a3577739a08971e466e2b33cecf31.zip |
Make it possible to add arbitrary widgets above the WebView
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index bb32af04a..939cfa7f8 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -51,8 +51,10 @@ struct EphyEmbedClass { GtkVBoxClass parent_class; }; -GType ephy_embed_get_type (void); -EphyWebView* ephy_embed_get_web_view (EphyEmbed *embed); +GType ephy_embed_get_type (void); +EphyWebView* ephy_embed_get_web_view (EphyEmbed *embed); +void ephy_embed_add_top_widget (EphyEmbed *embed, GtkWidget *widget, gboolean destroy_on_transition); +void ephy_embed_remove_top_widget (EphyEmbed *embed, GtkWidget *widget); G_END_DECLS |