Updated Indonesian translation
[evolution.git] / mail / e-mail-folder-pane.h
blobe9d9ee0858fb0968696e2c80eda4df2327ebc7b6
1 /*
2 * e-mail-folder-pane.h
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) version 3.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with the program; if not, see <http://www.gnu.org/licenses/>
18 * Copyright (C) 2010 Intel corporation. (www.intel.com)
22 #ifndef E_MAIL_FOLDER_PANE_H
23 #define E_MAIL_FOLDER_PANE_H
25 #include <mail/e-mail-paned-view.h>
27 /* Standard GObject macros */
28 #define E_TYPE_MAIL_FOLDER_PANE \
29 (e_mail_folder_pane_get_type ())
30 #define E_MAIL_FOLDER_PANE(obj) \
31 (G_TYPE_CHECK_INSTANCE_CAST \
32 ((obj), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPane))
33 #define E_MAIL_FOLDER_PANE_CLASS(cls) \
34 (G_TYPE_CHECK_CLASS_CAST \
35 ((cls), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPaneClass))
36 #define E_IS_MAIL_FOLDER_PANE(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE \
38 ((obj), E_TYPE_MAIL_FOLDER_PANE))
39 #define E_IS_MAIL_FOLDER_PANE_CLASS(cls) \
40 (G_TYPE_CHECK_CLASS_CAST \
41 ((cls), E_TYPE_MAIL_FOLDER_PANE))
42 #define E_MAIL_FOLDER_PANE_GET_CLASS(obj) \
43 (G_TYPE_INSTANCE_GET_CLASS \
44 ((obj), E_TYPE_MAIL_FOLDER_PANE, EMailFolderPaneClass))
46 G_BEGIN_DECLS
48 typedef struct _EMailFolderPane EMailFolderPane;
49 typedef struct _EMailFolderPaneClass EMailFolderPaneClass;
50 typedef struct _EMailFolderPanePrivate EMailFolderPanePrivate;
52 struct _EMailFolderPane {
53 EMailPanedView parent;
54 EMailFolderPanePrivate *priv;
57 struct _EMailFolderPaneClass {
58 EMailPanedViewClass parent_class;
61 GType e_mail_folder_pane_get_type (void);
62 EMailView * e_mail_folder_pane_new (EShellView *shell_view);
64 G_END_DECLS
66 #endif /* E_MAIL_FOLDER_PANE_H */