goa: Add missing linker flag (for real).
[platform/upstream/evolution-data-server.git] / libedataserver / e-source-mail-account.h
1 /*
2  * e-source-mail-account.h
3  *
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.
8  *
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.
13  *
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/>
16  *
17  */
18
19 #if !defined (__LIBEDATASERVER_H_INSIDE__) && !defined (LIBEDATASERVER_COMPILATION)
20 #error "Only <libedataserver/libedataserver.h> should be included directly."
21 #endif
22
23 #ifndef E_SOURCE_MAIL_ACCOUNT_H
24 #define E_SOURCE_MAIL_ACCOUNT_H
25
26 #include <libedataserver/e-source-backend.h>
27
28 /* Standard GObject macros */
29 #define E_TYPE_SOURCE_MAIL_ACCOUNT \
30         (e_source_mail_account_get_type ())
31 #define E_SOURCE_MAIL_ACCOUNT(obj) \
32         (G_TYPE_CHECK_INSTANCE_CAST \
33         ((obj), E_TYPE_SOURCE_MAIL_ACCOUNT, ESourceMailAccount))
34 #define E_SOURCE_MAIL_ACCOUNT_CLASS(cls) \
35         (G_TYPE_CHECK_CLASS_CAST \
36         ((cls), E_TYPE_SOURCE_MAIL_ACCOUNT, ESourceMailAccountClass))
37 #define E_IS_SOURCE_MAIL_ACCOUNT(obj) \
38         (G_TYPE_CHECK_INSTANCE_TYPE \
39         ((obj), E_TYPE_SOURCE_MAIL_ACCOUNT))
40 #define E_IS_SOURCE_MAIL_ACCOUNT_CLASS(cls) \
41         (G_TYPE_CHECK_CLASS_TYPE \
42         ((cls), E_TYPE_SOURCE_MAIL_ACCOUNT))
43 #define E_SOURCE_MAIL_ACCOUNT_GET_CLASS(obj) \
44         (G_TYPE_INSTANCE_GET_CLASS \
45         ((obj), E_TYPE_SOURCE_MAIL_ACCOUNT, ESourceMailAccountClass))
46
47 /**
48  * E_SOURCE_EXTENSION_MAIL_ACCOUNT:
49  *
50  * Pass this extension name to e_source_get_extension() to access
51  * #ESourceMailAccount.  This is also used as a group name in key files.
52  *
53  * Since: 3.6
54  **/
55 #define E_SOURCE_EXTENSION_MAIL_ACCOUNT "Mail Account"
56
57 G_BEGIN_DECLS
58
59 typedef struct _ESourceMailAccount ESourceMailAccount;
60 typedef struct _ESourceMailAccountClass ESourceMailAccountClass;
61 typedef struct _ESourceMailAccountPrivate ESourceMailAccountPrivate;
62
63 /**
64  * ESourceMailAccount:
65  *
66  * Contains only private data that should be read and manipulated using the
67  * functions below.
68  *
69  * Since: 3.6
70  **/
71 struct _ESourceMailAccount {
72         ESourceBackend parent;
73         ESourceMailAccountPrivate *priv;
74 };
75
76 struct _ESourceMailAccountClass {
77         ESourceBackendClass parent_class;
78 };
79
80 GType           e_source_mail_account_get_type
81                                         (void) G_GNUC_CONST;
82 const gchar *   e_source_mail_account_get_identity_uid
83                                         (ESourceMailAccount *extension);
84 gchar *         e_source_mail_account_dup_identity_uid
85                                         (ESourceMailAccount *extension);
86 void            e_source_mail_account_set_identity_uid
87                                         (ESourceMailAccount *extension,
88                                          const gchar *identity_uid);
89
90 G_END_DECLS
91
92 #endif /* E_SOURCE_MAIL_ACCOUNT_H */