X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-conf.h;h=4cdfb570aff8757b36ea850ccc94eeb4d24baef3;hp=c68154949e14e593af62dd5f5e6c3259018f21f5;hb=c5c7a9164713055c43ec69bdda8c2767271515a1;hpb=d80cc8ba404a6493c47cd718e75aa56a469a5eb4 diff --git a/src/modest-conf.h b/src/modest-conf.h index c681549..4cdfb57 100644 --- a/src/modest-conf.h +++ b/src/modest-conf.h @@ -121,6 +121,19 @@ 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_float: + * @self: a ModestConf instance + * @key: the key of the value to retrieve + * @err: a GError ptr, or NULL to ignore. + * + * get an integer from the configuration system + * + * 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 + */ +gdouble modest_conf_get_float (ModestConf* self, const gchar* key, GError **err); /** * modest_conf_get_bool: @@ -183,6 +196,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