aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>2000-01-12 12:25:38 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-12 12:25:38 +0800
commitc1209c281ed79b5dcc9c201f1968fba972c3641a (patch)
treef7ddae99a57045442873205a8088d5aa3f6cc9ea /shell/e-shell-view.h
parentf3c94fc0f415a4025add6debe451ca3e9e449d83 (diff)
downloadgsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.gz
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.bz2
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.lz
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.xz
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.zst
gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.zip
More
More svn path=/trunk/; revision=1561
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r--shell/e-shell-view.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h
new file mode 100644
index 0000000000..c5d3b797b5
--- /dev/null
+++ b/shell/e-shell-view.h
@@ -0,0 +1,34 @@
+#ifndef E_SHELL_VIEW_H
+#define E_SHELL_VIEW_H
+
+#include <bonobo/gnome-object.h>
+#include <bonobo/gnome-ui-handler.h>
+#include "e-shell.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))
+
+struct _EShellView {
+ GnomeApp parent;
+
+ /* Pointer to our model */
+ EShell *eshell;
+
+ /* Our user interface handler */
+ GnomeUIHandler *uih;
+};
+
+typedef struct {
+ GnomeAppClass parent_class;
+} EShellViewClass;
+
+GtkWidget *e_shell_view_new (EShell *eshell);
+GtkType e_shell_view_get_type (void);
+
+void e_shell_view_new_folder (EShellView *esv);
+void e_shell_view_new_shortcut (EShellView *esv);
+
+#endif /* E_SHELL_VIEW_H */