* added modest_conf_key_escape and modest_conf_key_unescape, to
[modest] / src / modest-conf.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_CONF_H__
31 #define __MODEST_CONF_H__
32
33 #include <glib-object.h>
34 #include "modest-conf-keys.h"
35
36 G_BEGIN_DECLS
37
38 /* convenience macros */
39 #define MODEST_TYPE_CONF             (modest_conf_get_type())
40 #define MODEST_CONF(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_CONF,ModestConf))
41 #define MODEST_CONF_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_CONF,GObject))
42 #define MODEST_IS_CONF(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_CONF))
43 #define MODEST_IS_CONF_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_CONF))
44 #define MODEST_CONF_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_CONF,ModestConfClass))
45
46 typedef struct _ModestConf        ModestConf;
47 typedef struct _ModestConfClass   ModestConfClass;
48 typedef enum   _ModestConfEvent   ModestConfEvent;
49
50 struct _ModestConf {
51          GObject parent;
52 };
53
54 struct _ModestConfClass {
55         GObjectClass parent_class;      
56         void (* key_changed) (ModestConf* self, const gchar *key, ModestConfEvent event);
57 };
58
59 enum _ModestConfEvent {
60         MODEST_CONF_EVENT_KEY_CHANGED,
61         MODEST_CONF_EVENT_KEY_UNSET
62 };
63
64 /**
65  * modest_conf_get_type:
66  * 
67  * get the GType for ModestConf
68  *  
69  * Returns: the GType
70  */
71 GType        modest_conf_get_type    (void) G_GNUC_CONST;
72
73
74 /**
75  * modest_conf_new:
76  * 
77  * create a new modest ModestConf object. 
78  * 
79  * Returns: a new ModestConf instance, or NULL in case
80  * of any error
81  */
82 GObject*     modest_conf_new         (void);
83
84
85 /**
86  * modest_conf_get_string:
87  * @self: a ModestConf instance
88  * @key: the key of the value to retrieve
89  * @err: a GError ptr, or NULL to ignore.
90  * 
91  * get a string from the configuration system
92  *
93  * Returns: a newly allocated string with the value for the key,
94  * or NULL in case of error. @err gives details in case of error
95  */
96 gchar*       modest_conf_get_string  (ModestConf* self, const gchar* key, GError **err);
97
98
99 /** 
100  * modest_conf_get_int:
101  * @self: a ModestConf instance
102  * @key: the key of the value to retrieve
103  * @err: a GError ptr, or NULL to ignore.
104  * 
105  * get an integer from the configuration system
106  *  
107  * Returns: an integer with the value for the key, or -1 in case of error
108  * (of course, -1 can also be returned in non-error cases).
109  * @err gives details in case of error
110  */
111 int          modest_conf_get_int     (ModestConf* self, const gchar* key, GError **err);
112
113
114 /** 
115  * modest_conf_get_bool:
116  * @self: a ModestConf instance
117  * @key: the key of the value to retrieve
118  * @err: a GError ptr, or NULL to ignore.
119  * 
120  * get a boolean value from the configuration system
121  *  
122  * Returns: a boolean value with the value for the key, or -1 in case of error
123  * (of course, -1 can also be returned in non-error cases).
124  * @err gives details in case of error
125  */
126 gboolean     modest_conf_get_bool    (ModestConf* self, const gchar* key, GError **err);
127
128
129 /**
130  * modest_conf_set_string:
131  * @self: a ModestConf instance
132  * @key: the key of the value to set
133  * @val: the value to set
134  * @err: a GError ptr, or NULL if not interested.
135  *
136  * store a string value in the configuration system
137  * 
138  * Returns: TRUE if succeeded or FALSE in case of error.
139  * @err gives details in case of error
140  */
141 gboolean     modest_conf_set_string (ModestConf* self, const gchar* key, const gchar *val,
142                                      GError **err);
143
144 /**
145  * modest_conf_set_int:
146  * @self: a ModestConf instance
147  * @key: the key of the value to set
148  * @val: the value to set
149  * @err: a GError ptr, or NULL if not interested.
150  *
151  * store an integer value in the configuration system
152  * 
153  * Returns: TRUE if succeeded or FALSE in case of error.
154  * @err gives details in case of error
155  */
156 gboolean     modest_conf_set_int    (ModestConf* self, const gchar* key, int val,
157                                      GError **err);
158
159 /**
160  * modest_conf_set_bool:
161  * @self: a ModestConf instance
162  * @key: the key of the value to set
163  * @val: the value to set
164  * @err: a GError ptr, or NULL if not interested.
165  *
166  * store a boolean value in the configuration system
167  * 
168  * Returns: TRUE if succeeded or FALSE in case of error.
169  * @err gives details in case of error
170  */
171 gboolean     modest_conf_set_bool    (ModestConf* self, const gchar* key, gboolean val,
172                                       GError **err);
173
174
175 /**
176  * modest_conf_list_subkeys:
177  * @self: a ModestConf instance
178  * @key: the key whose subkeys will be listed
179  * @err: a GError ptr, or NULL if not interested.
180  *
181  * list all the subkeys for a given key
182  * 
183  * Returns: a newly allocated list or NULL in case of error
184  * the returned GSList must be freed by the caller
185  * @err gives details in case of error
186  */
187 GSList*     modest_conf_list_subkeys    (ModestConf* self, const gchar* key,
188                                         GError **err);
189
190
191 /**
192  * modest_conf_remove_key:
193  * @self: a ModestConf instance
194  * @key: the key to remove
195  * @err: a GError ptr, or NULL if not interested.
196  *
197  * attempts to remove @key and all its subkeys
198  * 
199  * Returns: TRUE if succeeded or FALSE in case of error.
200  * @err gives details in case of error
201  */
202 gboolean   modest_conf_remove_key    (ModestConf* self, const gchar* key, GError **err);
203
204
205 /**
206  * modest_conf_key_exists:
207  * @self: a ModestConf instance
208  * @key: the key to remove
209  * @err: a GError ptr, or NULL if not interested.
210  *
211  * checks if the given key exists in the configuration system
212  * 
213  * Returns: TRUE if it exists, FALSE otherwise.
214  * @err gives details in case of error
215  */
216 gboolean   modest_conf_key_exists   (ModestConf* self, const gchar* key, GError **err);
217
218
219 /**
220  * modest_conf_key_escape:
221  * @self: a ModestConf instance. Not used, but for consistency with other ModestConf funcs
222  * @str: a string to escape
223  *
224  * returns an escaped version of @str, ie. something suitable as a key
225  * 
226  * Returns: a newly allocated string with the escaped version
227  */
228 gchar* modest_conf_key_escape (ModestConf *self, const gchar* str);
229
230
231 /**
232  * modest_conf_key_escape:
233  * @self: a ModestConf instance. Not used, but for consistency with other ModestConf funcs
234  * @str: a string to escape
235  *
236  * returns an unescaped version of @str
237  * 
238  * Returns: a newly allocated string with the unescaped version
239  */
240 gchar* modest_conf_key_unescape (ModestConf *self, const gchar* str);
241
242
243
244 G_END_DECLS
245
246 #endif /* __MODEST_CONF_H__ */
247