aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window-private.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-09-05 23:47:38 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-09-05 23:47:38 +0800
commiteca687589d106ff87cd4fca7bf581cb0532caf96 (patch)
treec6832474edfc52edd323a7d8d3ee5726f2b83ae3 /shell/e-shell-window-private.h
parent8bbf952350c37970e8947b807513e58e91435998 (diff)
downloadgsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar.gz
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar.bz2
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar.lz
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar.xz
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.tar.zst
gsoc2013-evolution-eca687589d106ff87cd4fca7bf581cb0532caf96.zip
Saving progress. Lots of changes. Things are a bit broken at the moment.
svn path=/branches/kill-bonobo/; revision=36260
Diffstat (limited to 'shell/e-shell-window-private.h')
-rw-r--r--shell/e-shell-window-private.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/shell/e-shell-window-private.h b/shell/e-shell-window-private.h
index db8174832d..81bf254c61 100644
--- a/shell/e-shell-window-private.h
+++ b/shell/e-shell-window-private.h
@@ -28,11 +28,11 @@
#include <e-shell.h>
#include <e-shell-view.h>
#include <e-shell-registry.h>
+#include <e-shell-switcher.h>
#include <e-shell-window-actions.h>
#include <e-menu-tool-button.h>
#include <e-online-button.h>
-#include <e-sidebar.h>
#define E_SHELL_WINDOW_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
@@ -58,11 +58,13 @@ struct _EShellWindowPrivate {
/*** UI Management ***/
- GtkUIManager *manager;
+ GtkUIManager *ui_manager;
GtkActionGroup *shell_actions;
+ GtkActionGroup *gal_view_actions;
GtkActionGroup *new_item_actions;
GtkActionGroup *new_source_actions;
GtkActionGroup *shell_view_actions;
+ guint gal_view_merge_id;
/*** Shell Views ***/
@@ -77,8 +79,8 @@ struct _EShellWindowPrivate {
GtkWidget *menu_tool_button;
GtkWidget *content_pane;
GtkWidget *content_notebook;
- GtkWidget *sidebar;
GtkWidget *sidebar_notebook;
+ GtkWidget *switcher;
GtkWidget *status_area;
GtkWidget *online_button;
GtkWidget *tooltip_label;
@@ -100,6 +102,8 @@ void e_shell_window_actions_init (EShellWindow *shell_window);
GtkWidget * e_shell_window_create_new_menu (EShellWindow *shell_window);
void e_shell_window_create_shell_view_actions
(EShellWindow *shell_window);
+void e_shell_window_update_gal_view_menu
+ (EShellWindow *shell_window);
G_END_DECLS