X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-conf.h;h=759d6200baf0ebd3d8e3a5fc99aa89a17395c422;hp=e451a4ba0c37ec0a7ac31439a165809dd9304544;hb=e45958deaf9701399c552ea0d84c2447efacd4ca;hpb=8f7092d5bb826759e5f32c8b3e9c4a6e7a6a6b43 diff --git a/src/modest-conf.h b/src/modest-conf.h index e451a4b..759d620 100644 --- a/src/modest-conf.h +++ b/src/modest-conf.h @@ -31,7 +31,6 @@ #define __MODEST_CONF_H__ #include -#include "modest-conf-keys.h" G_BEGIN_DECLS @@ -45,12 +44,20 @@ G_BEGIN_DECLS typedef struct _ModestConf ModestConf; typedef struct _ModestConfClass ModestConfClass; -typedef enum _ModestConfEvent ModestConfEvent; -enum _ModestConfEvent { +typedef guint ModestConfNotificationId; + +typedef enum { + MODEST_CONF_VALUE_INT, + MODEST_CONF_VALUE_BOOL, + MODEST_CONF_VALUE_FLOAT, + MODEST_CONF_VALUE_STRING +} ModestConfValueType; + +typedef enum { MODEST_CONF_EVENT_KEY_CHANGED, MODEST_CONF_EVENT_KEY_UNSET -}; +} ModestConfEvent; struct _ModestConf { GObject parent; @@ -58,15 +65,18 @@ struct _ModestConf { struct _ModestConfClass { GObjectClass parent_class; - void (* key_changed) (ModestConf* self, const gchar *key, ModestConfEvent event); + void (* key_changed) (ModestConf* self, + const gchar *key, + ModestConfEvent event, + ModestConfNotificationId id); }; /** * modest_conf_get_type: * - * get the GType for ModestConf + * get the #GType for #ModestConf * - * Returns: the GType + * Returns: the #GType */ GType modest_conf_get_type (void) G_GNUC_CONST; @@ -74,9 +84,9 @@ GType modest_conf_get_type (void) G_GNUC_CONST; /** * modest_conf_new: * - * create a new modest ModestConf object. + * create a new modest #ModestConf object. * - * Returns: a new ModestConf instance, or NULL in case + * Returns: a new #ModestConf instance, or NULL in case * of any error */ ModestConf* modest_conf_new (void); @@ -110,54 +120,49 @@ gchar* modest_conf_get_string (ModestConf* self, const gchar* key, GError */ gint modest_conf_get_int (ModestConf* self, const gchar* key, GError **err); - /** - * modest_conf_get_bool: + * modest_conf_get_float: * @self: a ModestConf instance * @key: the key of the value to retrieve * @err: a GError ptr, or NULL to ignore. * - * get a boolean value from the configuration system + * get an integer from the configuration system * - * Returns: a boolean value with the value for the key, or FALSE in case of error - * (of course, FALSE can also be returned in non-error cases). + * Returns: an double with the value for the key, or -1 in case of + * error (of course, -1 can also be returned in non-error cases). * @err gives details in case of error */ -gboolean modest_conf_get_bool (ModestConf* self, const gchar* key, GError **err); - +gdouble modest_conf_get_float (ModestConf* self, const gchar* key, GError **err); - -/** - * modest_conf_get_string_or_default: +/** + * modest_conf_get_bool: * @self: a ModestConf instance * @key: the key of the value to retrieve * @err: a GError ptr, or NULL to ignore. * - * get a string from the configuration system; if the value is not set, - * or some error occurs, return @defaultval (copied) - * - * Returns: a newly allocated string with the value for the key, - * or the @defaultval in case of any error + * get a boolean value from the configuration system + * + * Returns: a boolean value with the value for the key, or FALSE in case of error + * (of course, FALSE can also be returned in non-error cases). + * @err gives details in case of error */ -gchar* modest_conf_get_string_or_default (ModestConf* self, const gchar* key, - const gchar *defaultval); +gboolean modest_conf_get_bool (ModestConf* self, const gchar* key, GError **err); -/** - * modest_conf_get_int_or_default: +/** + * modest_conf_get_list: * @self: a ModestConf instance * @key: the key of the value to retrieve + * @list_type: the type of the elements of the list * @err: a GError ptr, or NULL to ignore. * - * get an integer from the configuration system; if the value is not set, - * or some error occurs, return @defaultval. - * - * Returns: an integer with the value for the key, or the @defaultval in case - * of any error + * get a list of values from the configuration system + * + * Returns: a list with the values for the key, or NULL in case of error + * @err gives details in case of error */ -gint modest_conf_get_int_or_default (ModestConf* self, const gchar* key, - int defaultval); - +GSList* modest_conf_get_list (ModestConf* self, const gchar* key, + ModestConfValueType list_type, GError **err); /** * modest_conf_set_string: @@ -190,6 +195,23 @@ gboolean modest_conf_set_int (ModestConf* self, const gchar* key, int val GError **err); /** + * modest_conf_set_float: + * @self: a ModestConf instance + * @key: the key of the value to set + * @val: the value to set + * @err: a GError ptr, or NULL if not interested. + * + * store an integer value in the configuration system + * + * Returns: TRUE if succeeded or FALSE in case of error. + * @err gives details in case of error + */ +gboolean modest_conf_set_float (ModestConf* self, + const gchar* key, + gdouble val, + GError **err); + +/** * modest_conf_set_bool: * @self: a ModestConf instance * @key: the key of the value to set @@ -205,6 +227,24 @@ gboolean modest_conf_set_bool (ModestConf* self, const gchar* key, gboole GError **err); +/** + * modest_conf_set_list: + * @self: a ModestConf instance + * @key: the key of the value to retrieve + * @val: the list with the values to set + * @list_type: the type of the elements of the list + * @err: a GError ptr, or NULL to ignore. + * + * set a list of values in the configuration system + * + * Returns: TRUE if succeeded or FALSE in case of error. + * @err gives details in case of error + */ +gboolean modest_conf_set_list (ModestConf* self, const gchar* key, + GSList *val, ModestConfValueType list_type, + GError **err); + + /** * modest_conf_list_subkeys: * @self: a ModestConf instance @@ -215,7 +255,7 @@ gboolean modest_conf_set_bool (ModestConf* self, const gchar* key, gboole * * Returns: a newly allocated list or NULL in case of error * the returned GSList must be freed by the caller - * @err gives details in case of error + * @err might give details in case of error */ GSList* modest_conf_list_subkeys (ModestConf* self, const gchar* key, GError **err); @@ -230,7 +270,7 @@ GSList* modest_conf_list_subkeys (ModestConf* self, const gchar* key, * attempts to remove @key and all its subkeys * * Returns: TRUE if succeeded or FALSE in case of error. - * @err gives details in case of error + * @err might give details in case of error */ gboolean modest_conf_remove_key (ModestConf* self, const gchar* key, GError **err); @@ -249,31 +289,51 @@ gboolean modest_conf_remove_key (ModestConf* self, const gchar* key, GError gboolean modest_conf_key_exists (ModestConf* self, const gchar* key, GError **err); + +/** + * modest_conf_key_valid: + * @str: some key + * + * check whether @str is a valid key in the config system + * This is a *class* function, and therefore does not require a ModestConf + * instance + * + * Returns: TRUE if it is valid, FALSE otherwise + */ +gboolean modest_conf_key_is_valid (const gchar* str); + + /** * modest_conf_key_escape: - * @self: a ModestConf instance. Not used, but for consistency with other ModestConf funcs - * @str: a string to escape + * @str: a non-empty string to escape * * returns an escaped version of @str, ie. something suitable as a key + * This is a *class* function, and therefore does not require a ModestConf + * instance. Note: this for is invidual elements in a key * * Returns: a newly allocated string with the escaped version */ -gchar* modest_conf_key_escape (ModestConf *self, const gchar* str); +gchar* modest_conf_key_escape (const gchar* str); /** * modest_conf_key_escape: - * @self: a ModestConf instance. Not used, but for consistency with other ModestConf funcs * @str: a string to escape * - * returns an unescaped version of @str + * returns an unescaped version of @str. This is a *class* function, and + * therefore does not require a ModestConf instance + * Note: this for is invidual elements in a key * * Returns: a newly allocated string with the unescaped version */ -gchar* modest_conf_key_unescape (ModestConf *self, const gchar* str); +gchar* modest_conf_key_unescape (const gchar* str); +void modest_conf_listen_to_namespace (ModestConf *self, + const gchar *namespace); +void modest_conf_forget_namespace (ModestConf *self, + const gchar *namespace); G_END_DECLS #endif /* __MODEST_CONF_H__ */