aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-message-pane.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@gnome.org>2010-07-08 03:10:46 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-26 09:29:58 +0800
commit714942ce29c622ac8d48877922f188aef23bff76 (patch)
treefb2a264bd022c2571e0bd6e61fc15cd04180cf3b /mail/e-mail-message-pane.h
parent8ac8ea3de8cb717e95c49b468b64037b80f1376c (diff)
downloadgsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar.gz
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar.bz2
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar.lz
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar.xz
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.tar.zst
gsoc2013-evolution-714942ce29c622ac8d48877922f188aef23bff76.zip
Add class for message pane.
Diffstat (limited to 'mail/e-mail-message-pane.h')
-rw-r--r--mail/e-mail-message-pane.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/mail/e-mail-message-pane.h b/mail/e-mail-message-pane.h
new file mode 100644
index 0000000000..b6f49df6f2
--- /dev/null
+++ b/mail/e-mail-message-pane.h
@@ -0,0 +1,75 @@
+/*
+ * e-mail-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) 1999-2008 Novell, Inc. (www.novell.com)
+ *
+ */
+
+#ifndef E_MAIL_MESSAGE_PANE_H
+#define E_MAIL_MESSAGE_PANE_H
+
+#include <gtk/gtk.h>
+#include "e-mail-pane.h"
+#include <misc/e-focus-tracker.h>
+#include <shell/e-shell-backend.h>
+
+/* Standard GObject macros */
+#define E_TYPE_MAIL_MESSAGE_PANE \
+ (e_mail_message_pane_get_type ())
+#define E_MAIL_MESSAGE_PANE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST \
+ ((obj), E_TYPE_MAIL_MESSAGE_PANE, EMailMessagePane))
+#define E_MAIL_MESSAGE_PANE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), E_TYPE_MAIL_MESSAGE_PANE, EMailMessagePaneClass))
+#define E_IS_MAIL_MESSAGE_PANE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE \
+ ((obj), E_TYPE_MAIL_MESSAGE_PANE))
+#define E_IS_MAIL_MESSAGE_PANE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), E_TYPE_MAIL_MESSAGE_PANE))
+#define E_MAIL_MESSAGE_PANE_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS \
+ ((obj), E_TYPE_MAIL_MESSAGE_PANE, EMailMessagePaneClass))
+
+G_BEGIN_DECLS
+
+typedef struct _EMailMessagePane EMailMessagePane;
+typedef struct _EMailMessagePaneClass EMailMessagePaneClass;
+typedef struct _EMailMessagePanePrivate EMailMessagePanePrivate;
+
+struct _EMailMessagePane {
+ EMailPane parent;
+ EMailMessagePanePrivate *priv;
+};
+
+struct _EMailMessagePaneClass {
+ EMailPaneClass parent_class;
+};
+
+GType e_mail_message_pane_get_type (void);
+GtkWidget * e_mail_message_pane_new (EShellBackend *shell_backend);
+void e_mail_message_pane_close (EMailMessagePane *browser);
+gboolean e_mail_message_pane_get_show_deleted (EMailMessagePane *browser);
+void e_mail_message_pane_set_show_deleted (EMailMessagePane *browser,
+ gboolean show_deleted);
+EFocusTracker * e_mail_message_pane_get_focus_tracker(EMailMessagePane *browser);
+GtkUIManager * e_mail_message_pane_get_ui_manager (EMailMessagePane *browser);
+
+G_END_DECLS
+
+#endif /* E_MAIL_MESSAGE_PANE_H */