From 1bb4b10ce6a3e857b14e0637e17203960dcc9543 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 8 Aug 2004 11:32:18 +0000 Subject: Make ephy_embed_single_open_window() return the newly opened embed widget. 2004-08-08 Christian Persch * embed/ephy-embed-single.c: (ephy_embed_single_open_window): * embed/ephy-embed-single.h: * embed/mozilla/mozilla-embed-single.cpp: (impl_open_window): * src/ephy-tab.c: (popups_manager_show): Make ephy_embed_single_open_window() return the newly opened embed widget. --- embed/ephy-embed-single.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'embed/ephy-embed-single.c') diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index 64f72d3a3..80788dada 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -190,21 +190,26 @@ ephy_embed_single_get_font_list (EphyEmbedSingle *single, * @single: the #EphyEmbedSingle * @parent: the requested window's parent #EphyEmbed * @address: the URL to load + * @name: a name for the window * @features: a Javascript features string * * Opens a new window, as if it were opened in @parent using the Javascript * method and arguments: window.open("@address", * "_blank", "@features");. * - * Use ephy_shell_new_tab() unless this handling of the @features string is + * Returns: the new embed. This is either a #EphyEmbed, or, when @features specified + * "chrome", a #GtkMozEmbed. + * + * NOTE: Use ephy_shell_new_tab() unless this handling of the @features string is * required. */ -void +GtkWidget * ephy_embed_single_open_window (EphyEmbedSingle *single, EphyEmbed *parent, const char *address, + const char *name, const char *features) { EphyEmbedSingleIface *iface = EPHY_EMBED_SINGLE_GET_IFACE (single); - return iface->open_window (single, parent, address, features); + return iface->open_window (single, parent, address, name, features); } -- cgit v1.2.3