aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-folder-pane.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@gnome.org>2010-07-08 03:19:28 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-26 09:29:58 +0800
commit8ccf32a107e85f950df3da452ffd293e132f048b (patch)
treedec171892c93e8f7934326c09209d14cf2af0e65 /mail/e-mail-folder-pane.h
parent714942ce29c622ac8d48877922f188aef23bff76 (diff)
downloadgsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar.gz
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar.bz2
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar.lz
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar.xz
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.tar.zst
gsoc2013-evolution-8ccf32a107e85f950df3da452ffd293e132f048b.zip
Add folder pane.
Diffstat (limited to 'mail/e-mail-folder-pane.h')
-rw-r--r--mail/e-mail-folder-pane.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/mail/e-mail-folder-pane.h b/mail/e-mail-folder-pane.h
new file mode 100644
index 0000000000..db5951bff2
--- /dev/null
+++ b/mail/e-mail-folder-pane.h
@@ -0,0 +1,74 @@
+/*
+ * e-mail-folder-pane.h
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with the program; if not, see <http://www.gnu.org/licenses/>
+ *
+ *
+ * Copyright (C) 2010 Intel corporation. (www.intel.com)
+ *
+ */
+
+#ifndef E_MAIL_FOLDER_PANE_H
+#define E_MAIL_FOLDER_PANE_H
+
+#include <gtk/gtk.h>
+#include <misc/e-focus-tracker.h>
+#include <shell/e-shell-backend.h>
+
+/* Standard GObject macros */
+#define E_TYPE_MAIL_FOLDER_PANE \
+ (e_mail_folder_pane_get_type ())
+#define E_MAIL_FOLDER_PANE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST \
+ ((obj), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPane))
+#define E_MAIL_FOLDER_PANE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPaneClass))
+#define E_IS_MAIL_FOLDER_PANE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE \
+ ((obj), E_TYPE_MAIL_FOLDER_PANE))
+#define E_IS_MAIL_FOLDER_PANE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), E_TYPE_MAIL_FOLDER_PANE))
+#define E_MAIL_FOLDER_PANE_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS \
+ ((obj), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPaneClass))
+
+G_BEGIN_DECLS
+
+typedef struct _EMailFolderPane EMailFolderPane;
+typedef struct _EMailFolderPaneClass EMailFolderPaneClass;
+typedef struct _EMailFolderPanePrivate EMailFolderPanePrivate;
+
+struct _EMailFolderPane {
+ GtkVBox parent;
+ EMailFolderPanePrivate *priv;
+};
+
+struct _EMailFolderPaneClass {
+ GtkVBoxClass parent_class;
+};
+
+GType e_mail_folder_pane_get_type (void);
+GtkWidget * e_mail_folder_pane_new (EShellBackend *shell_backend);
+void e_mail_folder_pane_close (EMailFolderPane *browser);
+gboolean e_mail_folder_pane_get_show_deleted (EMailFolderPane *browser);
+void e_mail_folder_pane_set_show_deleted (EMailFolderPane *browser,
+ gboolean show_deleted);
+EFocusTracker * e_mail_folder_pane_get_focus_tracker(EMailFolderPane *browser);
+GtkUIManager * e_mail_folder_pane_get_ui_manager (EMailFolderPane *browser);
+
+G_END_DECLS
+
+#endif /* E_MAIL_FOLDER_PANE_H */