aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-14 04:46:14 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-14 04:46:14 +0800
commitbf60b7ae05e75e10a8f15ec8ca2635874c4dab90 (patch)
tree141774e6817ed54e8bab9e6a0ea362f3cc19b148 /src/ephy-window.h
parent816da20fe31c6186a80ef92fe824ccd9088f9a15 (diff)
downloadgsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar.gz
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar.bz2
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar.lz
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar.xz
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.tar.zst
gsoc2013-epiphany-bf60b7ae05e75e10a8f15ec8ca2635874c4dab90.zip
Add ephy_window_get_ui_manager(), and remove the manager from the public
2004-09-13 Christian Persch <chpe@cvs.gnome.org> * data/art/epiphany-entry.png: * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_set_window): * src/bookmarks/ephy-bookmarksbar.c: (ephy_bookmarksbar_set_window): * src/bookmarks/ephy-favorites-menu.c: (ephy_favorites_menu_clean), (ephy_favorites_menu_rebuild): * src/ephy-encoding-menu.c: (ephy_encoding_menu_set_window): * src/ephy-tabs-menu.c: (ephy_tabs_menu_set_window), (ephy_tabs_menu_clean), (ephy_tabs_menu_update): * src/ephy-window.c: (add_widget), (sync_chromes_visibility), (ephy_window_key_press_event), (init_menu_updaters), (setup_ui_manager), (show_embed_popup), (ephy_window_init), (ephy_window_finalize), (ephy_window_set_print_preview), (ephy_window_get_ui_manager): * src/ephy-window.h: * src/ppview-toolbar.c: (ppview_toolbar_set_window): * src/toolbar.c: (toolbar_set_window), (toolbar_new): * src/window-commands.c: (window_cmd_edit_toolbar): Add ephy_window_get_ui_manager(), and remove the manager from the public EphyWindow struct.
Diffstat (limited to 'src/ephy-window.h')
-rw-r--r--src/ephy-window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-window.h b/src/ephy-window.h
index cace444f5..433b44cbb 100644
--- a/src/ephy-window.h
+++ b/src/ephy-window.h
@@ -45,11 +45,9 @@ typedef struct EphyWindowPrivate EphyWindowPrivate;
struct _EphyWindow
{
GtkWindow parent;
+
/*< private >*/
EphyWindowPrivate *priv;
-
- /*< public >*/
- GObject *ui_merge;
};
struct EphyWindowClass
@@ -69,6 +67,8 @@ EphyWindow *ephy_window_new_with_chrome (EphyEmbedChrome chrome);
void ephy_window_set_print_preview (EphyWindow *window,
gboolean enabled);
+GObject *ephy_window_get_ui_manager (EphyWindow *window);
+
GtkWidget *ephy_window_get_toolbar (EphyWindow *window);
GtkWidget *ephy_window_get_bookmarksbar (EphyWindow *window);