Extending test-client-custom-summary to try e_book_client_get_contacts_uids()
[platform/upstream/evolution-data-server.git] / camel / camel-local-settings.h
1 /*
2  * camel-local-settings.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 (__CAMEL_H_INSIDE__) && !defined (CAMEL_COMPILATION)
20 #error "Only <camel/camel.h> can be included directly."
21 #endif
22
23 #ifndef CAMEL_LOCAL_SETTINGS_H
24 #define CAMEL_LOCAL_SETTINGS_H
25
26 #include <camel/camel-store-settings.h>
27
28 /* Standard GObject macros */
29 #define CAMEL_TYPE_LOCAL_SETTINGS \
30         (camel_local_settings_get_type ())
31 #define CAMEL_LOCAL_SETTINGS(obj) \
32         (G_TYPE_CHECK_INSTANCE_CAST \
33         ((obj), CAMEL_TYPE_LOCAL_SETTINGS, CamelLocalSettings))
34 #define CAMEL_LOCAL_SETTINGS_CLASS(cls) \
35         (G_TYPE_CHECK_CLASS_CAST \
36         ((cls), CAMEL_TYPE_LOCAL_SETTINGS, CamelLocalSettingsClass))
37 #define CAMEL_IS_LOCAL_SETTINGS(obj) \
38         (G_TYPE_CHECK_INSTANCE_TYPE \
39         ((obj), CAMEL_TYPE_LOCAL_SETTINGS))
40 #define CAMEL_IS_LOCAL_SETTINGS_CLASS(cls) \
41         (G_TYPE_CHECK_CLASS_TYPE \
42         ((cls), CAMEL_TYPE_LOCAL_SETTINGS))
43 #define CAMEL_LOCAL_SETTINGS_GET_CLASS(obj) \
44         (G_TYPE_INSTANCE_GET_CLASS \
45         ((obj), CAMEL_TYPE_LOCAL_SETTINGS, CamelLocalSettingsClass))
46
47 G_BEGIN_DECLS
48
49 /**
50  * CamelLocalSettings:
51  *
52  * Contains only private data that should be read and manipulated using the
53  * functions below.
54  *
55  * Since: 3.4
56  **/
57 typedef struct _CamelLocalSettings CamelLocalSettings;
58 typedef struct _CamelLocalSettingsClass CamelLocalSettingsClass;
59 typedef struct _CamelLocalSettingsPrivate CamelLocalSettingsPrivate;
60
61 struct _CamelLocalSettings {
62         CamelStoreSettings parent;
63         CamelLocalSettingsPrivate *priv;
64 };
65
66 struct _CamelLocalSettingsClass {
67         CamelStoreSettingsClass parent_class;
68 };
69
70 GType           camel_local_settings_get_type   (void) G_GNUC_CONST;
71 const gchar *   camel_local_settings_get_path   (CamelLocalSettings *settings);
72 gchar *         camel_local_settings_dup_path   (CamelLocalSettings *settings);
73 void            camel_local_settings_set_path   (CamelLocalSettings *settings,
74                                                  const gchar *path);
75
76 G_END_DECLS
77
78 #endif /* CAMEL_LOCAL_SETTINGS_H */
79