aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.h
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnu.org>2000-01-16 04:08:30 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-16 04:08:30 +0800
commit3c49032de459fa26e8512005b859c8eb8768caf8 (patch)
tree31c06aa6698678a67d41532a60b270fb6b492793 /shell/e-shell-view.h
parent19a9abb138faf5f77afdca76670a23a476a7a922 (diff)
downloadgsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.gz
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.bz2
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.lz
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.xz
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.tar.zst
gsoc2013-evolution-3c49032de459fa26e8512005b859c8eb8768caf8.zip
Use e_bar_set_item_data.
2000-01-10 Miguel de Icaza <miguel@gnu.org> * widgets/shortcut-bar/e-shortcut-bar.c (e_shortcut_bar_add_item): Use e_bar_set_item_data. Drop item_url; Require image argument; Require user data argument. 2000-01-09 Miguel de Icaza <miguel@gnu.org> * widgets/shortcut-bar/e-icon-bar.c (e_icon_bar_init): Turn on anti-aliasing. svn path=/trunk/; revision=1573
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r--shell/e-shell-view.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h
index c5d3b797b5..4011cfc6ac 100644
--- a/shell/e-shell-view.h
+++ b/shell/e-shell-view.h
@@ -19,16 +19,28 @@ struct _EShellView {
/* Our user interface handler */
GnomeUIHandler *uih;
+
+ /*
+ *
+ */
+ char shortcut_displayed;
+ GtkWidget *shortcut_hpaned;
+ GtkWidget *shortcut_bar;
+ GtkWidget *contents;
};
typedef struct {
GnomeAppClass parent_class;
} EShellViewClass;
-GtkWidget *e_shell_view_new (EShell *eshell);
+GtkWidget *e_shell_view_new (EShell *eshell, gboolean show_shortcut_bar);
GtkType e_shell_view_get_type (void);
void e_shell_view_new_folder (EShellView *esv);
void e_shell_view_new_shortcut (EShellView *esv);
+void e_shell_view_set_view (EShellView *eshell_view,
+ EFolder *efolder);
+void e_shell_view_display_shortcut_bar (EShellView *eshell_view, gboolean display);
+
#endif /* E_SHELL_VIEW_H */