aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-05-01 12:34:35 +0800
committernobody <nobody@localhost>2000-05-01 12:34:35 +0800
commit0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed (patch)
tree2de188bb8dddea80c5aa5b53a2a275df404bdcc1 /shell/e-shell-view.h
parent54534fbe36359c1c5b2e7373f97b4cbff81f7108 (diff)
downloadgsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar.gz
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar.bz2
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar.lz
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar.xz
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.tar.zst
gsoc2013-evolution-0f0df9f2f49b43fa9d7aaaed17b2b81067e1d7ed.zip
This commit was manufactured by cvs2svn to create tag 'may13'.may13
svn path=/tags/may13/; revision=2708
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r--shell/e-shell-view.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h
deleted file mode 100644
index 97e5f41742..0000000000
--- a/shell/e-shell-view.h
+++ /dev/null
@@ -1,57 +0,0 @@
-#ifndef E_SHELL_VIEW_H
-#define E_SHELL_VIEW_H
-
-#include <bonobo/bonobo-object.h>
-#include <bonobo/bonobo-ui-handler.h>
-#include "e-shell.h"
-#include "e-util/e-paned.h"
-
-#define E_SHELL_VIEW_TYPE (e_shell_view_get_type ())
-#define E_SHELL_VIEW(o) (GTK_CHECK_CAST ((o), E_SHELL_VIEW_TYPE, EShellView))
-#define E_SHELL_VIEW_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_SHELL_VIEW_TYPE, EShellViewClass))
-#define E_IS_SHELL_VIEW(o) (GTK_CHECK_TYPE ((o), E_SHELL_VIEW_TYPE))
-#define E_IS_SHELL_VIEW_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_SHELL_VIEW_TYPE))
-
-typedef struct _EShellViewPrivate EShellViewPrivate;
-
-struct _EShellView {
- GnomeApp parent;
-
- /* Pointer to our model */
- EShell *eshell;
-
- /* Our user interface handler */
- BonoboUIHandler *uih;
-
-
- EFolder *efolder;
-
- gboolean shortcut_displayed;
- GtkWidget *hpaned;
- GtkWidget *shortcut_bar;
- GtkWidget *treeview;
- GtkWidget *contents;
-
- EShellViewPrivate *priv;
-};
-
-typedef struct {
- GnomeAppClass parent_class;
-} EShellViewClass;
-
-GtkWidget *e_shell_view_new (EShell *eshell, EFolder *folder,
- 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_toggle_shortcut_bar (EShellView *eshell_view);
-void e_shell_view_toggle_treeview (EShellView *eshell_view);
-
-void e_shell_view_display_shortcut_bar (EShellView *eshell_view, gboolean display);
-
-#endif /* E_SHELL_VIEW_H */