aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-04-28 20:28:43 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-04-28 20:28:43 +0800
commit180c09f50c3e0ff6cedd601ca60b02c7d5d4922a (patch)
treebd3d3310f0a4b3b5983f3c90e5e5e35cb1af69c9 /src/ephy-shell.h
parent87df5c2a8c41c2574f63131d97fee96615dc495c (diff)
downloadgsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar.gz
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar.bz2
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar.lz
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar.xz
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.tar.zst
gsoc2013-epiphany-180c09f50c3e0ff6cedd601ca60b02c7d5d4922a.zip
Actually pass a parent to history/bookmarks window, where to open the url.
2003-04-28 Marco Pesenti Gritti <marco@it.gnome.org> * src/ephy-automation.c: (impl_ephy_automation_open_bookmarks_editor): * src/ephy-shell.c: (ephy_shell_show_bookmarks_editor), (ephy_shell_show_history_window): * src/ephy-shell.h: * src/window-commands.c: (window_cmd_go_bookmarks), (window_cmd_go_history): Actually pass a parent to history/bookmarks window, where to open the url. Bad who regressed this ;)
Diffstat (limited to 'src/ephy-shell.h')
-rw-r--r--src/ephy-shell.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/ephy-shell.h b/src/ephy-shell.h
index 6df099efb..06bc65cce 100644
--- a/src/ephy-shell.h
+++ b/src/ephy-shell.h
@@ -77,29 +77,31 @@ struct EphyShellClass
EphyEmbedShellClass parent_class;
};
-GType ephy_shell_get_type (void);
+GType ephy_shell_get_type (void);
-EphyShell *ephy_shell_new (void);
+EphyShell *ephy_shell_new (void);
-EphyWindow *ephy_shell_get_active_window (EphyShell *gs);
+EphyWindow *ephy_shell_get_active_window (EphyShell *gs);
-EphyTab *ephy_shell_new_tab (EphyShell *shell,
- EphyWindow *parent_window,
- EphyTab *previous_tab,
- const char *url,
- EphyNewTabFlags flags);
+EphyTab *ephy_shell_new_tab (EphyShell *shell,
+ EphyWindow *parent_window,
+ EphyTab *previous_tab,
+ const char *url,
+ EphyNewTabFlags flags);
-Session *ephy_shell_get_session (EphyShell *gs);
+Session *ephy_shell_get_session (EphyShell *gs);
-EphyAutocompletion *ephy_shell_get_autocompletion (EphyShell *gs);
+EphyAutocompletion *ephy_shell_get_autocompletion (EphyShell *gs);
-EphyBookmarks *ephy_shell_get_bookmarks (EphyShell *gs);
+EphyBookmarks *ephy_shell_get_bookmarks (EphyShell *gs);
-EphyToolbarsModel *ephy_shell_get_toolbars_model (EphyShell *gs);
+EphyToolbarsModel *ephy_shell_get_toolbars_model (EphyShell *gs);
-void ephy_shell_show_bookmarks_editor (EphyShell *gs);
+void ephy_shell_show_bookmarks_editor (EphyShell *gs,
+ GtkWidget *parent);
-void ephy_shell_show_history_window (EphyShell *gs);
+void ephy_shell_show_history_window (EphyShell *gs,
+ GtkWidget *parent);
G_END_DECLS