aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-shell-module.h
blob: d27e35f7d4b45982e4fa262c6a211e256131cfde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * e-mail-shell-module.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_SHELL_MODULE_H
#define E_MAIL_SHELL_MODULE_H

#include <shell/e-shell-module.h>

#include <camel/camel-folder.h>
#include <camel/camel-store.h>
#include <e-util/e-signature-list.h>
#include <libedataserver/e-account-list.h>

G_BEGIN_DECLS

/* Globally available shell module. 
 *
 * XXX I don't like having this globally available but passing it around to
 *     all the various utilities that need to access to the module's data
 *     directory and local folders is too much of a pain for now. */
extern EShellModule *mail_shell_module;

typedef enum {
    E_MAIL_FOLDER_INBOX,
    E_MAIL_FOLDER_DRAFTS,
    E_MAIL_FOLDER_OUTBOX,
    E_MAIL_FOLDER_SENT,
    E_MAIL_FOLDER_TEMPLATES,
    E_MAIL_FOLDER_LOCAL_INBOX
} EMailFolderType;

struct _EMFolderTreeModel;

CamelFolder *   e_mail_shell_module_get_folder  (EShellModule *shell_module,
                         EMailFolderType folder_type);
const gchar *   e_mail_shell_module_get_folder_uri
                        (EShellModule *shell_module,
                         EMailFolderType folder_type);
struct _EMFolderTreeModel *
        e_mail_shell_module_get_folder_tree_model
                        (EShellModule *shell_module);
void        e_mail_shell_module_add_store   (EShellModule *shell_module,
                         CamelStore *store,
                         const gchar *name);
CamelStore *    e_mail_shell_module_get_local_store
                        (EShellModule *shell_module);
CamelStore *    e_mail_shell_module_load_store_by_uri
                        (EShellModule *shell_module,
                         const gchar *uri,
                         const gchar *name);
void        e_mail_shell_module_remove_store(EShellModule *shell_module,
                         CamelStore *store);
void        e_mail_shell_module_remove_store_by_uri
                        (EShellModule *shell_module,
                         const gchar *uri);
void        e_mail_shell_module_stores_foreach
                        (EShellModule *shell_module,
                         GHFunc func,
                         gpointer user_data);

G_END_DECLS

#endif /* E_MAIL_SHELL_MODULE_H */