From: Andrea Zagli Date: Sun, 15 May 2016 09:11:42 +0000 (+0200) Subject: Added function ZakFormElement::unformat. X-Git-Tag: debian/0.0.1-1~3 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=88e12493799fb48a4fa9a88e26069fc8a0323d6e;p=zakform%2Flibzakform Added function ZakFormElement::unformat. --- diff --git a/src/formelement.c b/src/formelement.c index 5f2b4f2..431219a 100644 --- a/src/formelement.c +++ b/src/formelement.c @@ -20,6 +20,8 @@ #include #endif +#include + #include #include "formelement.h" @@ -413,6 +415,12 @@ gchar return ret; } +/** + * zak_form_element_format: + * @element: + * @value: + * + */ gchar *zak_form_element_format (ZakFormElement *element, const gchar *value) { @@ -489,6 +497,109 @@ gchar return ret; } +/** + * zak_form_element_unformat: + * @element: + * @value: + * + */ +gchar +*zak_form_element_unformat (ZakFormElement *element, const gchar *value) +{ + gchar *ret; + + gchar *_value; + gchar *type; + GHashTable *format; + + gchar *thousands_saparator; + gchar *currency_symbol; + gdouble unformatted; + + GDateTime *gdt; + gchar *datetime_format; + + if (value == NULL) + { + _value = zak_form_element_get_value (element); + } + else + { + _value = g_strdup (value); + } + type = zak_form_element_get_provider_type (element); + format = zak_form_element_get_format (element); + + if (g_ascii_strcasecmp (type, "integer") == 0) + { + thousands_saparator = (gchar *)g_hash_table_lookup (format, "thousands_separator"); + currency_symbol = (gchar *)g_hash_table_lookup (format, "currency_symbol"); + + unformatted = zak_utils_unformat_money_full (_value, thousands_saparator, currency_symbol); + + ret = zak_utils_format_money_full (unformatted, 0, "", NULL); + } + else if (g_ascii_strcasecmp (type, "float") == 0) + { + thousands_saparator = (gchar *)g_hash_table_lookup (format, "thousands_separator"); + currency_symbol = (gchar *)g_hash_table_lookup (format, "currency_symbol"); + + unformatted = zak_utils_unformat_money_full (_value, thousands_saparator, currency_symbol); + + char *cur = g_strdup (setlocale (LC_NUMERIC, NULL)); + + setlocale (LC_NUMERIC, "C"); + + ret = g_strdup_printf ("%f", unformatted); + + setlocale (LC_NUMERIC, cur); + + g_free (cur); + } + else if (g_ascii_strcasecmp (type, "string") == 0) + { + ret = g_strdup (_value); + } + else if (g_ascii_strcasecmp (type, "boolean") == 0) + { + ret = g_strdup (zak_utils_string_to_boolean (_value) ? "1" : "0"); + } + else if (g_ascii_strcasecmp (type, "date") == 0 + || g_ascii_strcasecmp (type, "time") == 0 + || g_ascii_strcasecmp (type, "datetime") == 0) + { + datetime_format = (gchar *)g_hash_table_lookup (format, "content"); + gdt = zak_utils_get_gdatetime_from_string (_value, datetime_format); + + if (gdt == NULL) + { + ret = g_strdup (""); + } + else + { + if (g_ascii_strcasecmp (type, "date") == 0) + { + ret = zak_utils_gdatetime_format (gdt, "%F"); + } + else if (g_ascii_strcasecmp (type, "time") == 0) + { + ret = zak_utils_gdatetime_format (gdt, "%T"); + } + else if (g_ascii_strcasecmp (type, "datetime") == 0) + { + ret = zak_utils_gdatetime_format (gdt, "%F %T"); + } + } + + if (gdt != NULL) + { + g_date_time_unref (gdt); + } + } + + return ret; +} + /** * zak_form_element_set_value: * @element: diff --git a/src/formelement.h b/src/formelement.h index 16e425f..a3489d4 100644 --- a/src/formelement.h +++ b/src/formelement.h @@ -63,6 +63,7 @@ void zak_form_element_set_provider_type (ZakFormElement *element, const gchar *t gchar *zak_form_element_get_provider_type (ZakFormElement *element); gchar *zak_form_element_format (ZakFormElement *element, const gchar *value); +gchar *zak_form_element_unformat (ZakFormElement *element, const gchar *value); gboolean zak_form_element_set_value (ZakFormElement *element, const gchar *value); gchar *zak_form_element_get_value (ZakFormElement *element);