From: Andrea Zagli Date: Mon, 27 May 2013 09:31:02 +0000 (+0200) Subject: Use of gdouble instead of gfloat in GtkFormFieldFloat X-Git-Tag: 0.5.0~3 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=86146d0b1fce83603cf598878f4f8717137835d7;p=libgtkform Use of gdouble instead of gfloat in GtkFormFieldFloat because gfloat is not precise. Added test. --- diff --git a/libgtkform/fieldfloat.c b/libgtkform/fieldfloat.c index cc42624..4379104 100644 --- a/libgtkform/fieldfloat.c +++ b/libgtkform/fieldfloat.c @@ -206,7 +206,7 @@ gchar char *cur = g_strdup (setlocale (LC_NUMERIC, NULL)); gda_locale_changed (); - gfloat fval = g_strtod (value, NULL); + gdouble fval = g_strtod (value, NULL); setlocale (LC_NUMERIC, "C"); gda_locale_changed (); @@ -443,7 +443,7 @@ gtk_form_field_float_set_from_datamodel (GtkFormField *field, GdaDataModel *dm, { gboolean ret = FALSE; GtkFormFieldFloatPrivate *priv; - gfloat value; + gdouble value; gchar *field_name; g_return_val_if_fail (IS_GTK_FORM_FIELD_FLOAT (field), FALSE); @@ -453,7 +453,7 @@ gtk_form_field_float_set_from_datamodel (GtkFormField *field, GdaDataModel *dm, field_name = gtk_form_field_get_field_name (field); - value = gdaex_data_model_get_field_value_float_at (dm, row, field_name); + value = gdaex_data_model_get_field_value_double_at (dm, row, field_name); setlocale (LC_NUMERIC, ""); gda_locale_changed (); diff --git a/test/Makefile.am b/test/Makefile.am index c3ee566..c42ec12 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -6,6 +6,7 @@ AM_CPPFLAGS = $(GTKFORM_CFLAGS) \ -DGUIDIR="\"@abs_builddir@\"" noinst_PROGRAMS = test \ + double \ from_xml \ from_xml_with_db diff --git a/test/double.c b/test/double.c new file mode 100644 index 0000000..de10d93 --- /dev/null +++ b/test/double.c @@ -0,0 +1,103 @@ +/* + * Copyright (C) 2013 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include + +#include + +#include +#include + +GtkWidget *w; + +GdaEx *gdaex; + +GtkForm *form; + +G_MODULE_EXPORT void +on_btn_save_clicked (GtkButton *button, + gpointer user_data) +{ + gchar *sql; + GdaDataModel *dm; + + sql = gtk_form_get_sql (form, GTK_FORM_SQL_UPDATE); + g_message("SQL UPDATE %s",sql); + gdaex_execute (gdaex, sql); + g_free (sql); + + sql = gtk_form_get_sql (form, GTK_FORM_SQL_SELECT); + + dm = gdaex_query (gdaex, sql); + g_free (sql); + if (dm != NULL && gda_data_model_get_n_rows (dm) > 0) + { + gtk_form_fill_from_datamodel (form, dm, 0); + } +} + +int +main (int argc, char **argv) +{ + GError *error; + GtkBuilder *gtkbuilder; + + gchar *sql; + GdaDataModel *dm; + + gtk_init (&argc, &argv); + + gdaex = gdaex_new_from_string ("PostgreSQL://HOST=localhost;USERNAME=postgres;PASSWORD=postgres;DB_NAME=prove"); + if (gdaex == NULL) + { + return 0; + } + + gtkbuilder = gtk_builder_new (); + + error = NULL; + gtk_builder_add_objects_from_file (gtkbuilder, GUIDIR "/test_db.gui", + g_strsplit_set ("w_double", "|", -1), + &error); + if (error != NULL) + { + g_error ("Errore: %s", error->message); + } + + form = gtk_form_new_from_file (GUIDIR "/double.xml", gtkbuilder); + if (form == NULL) return 0; + + w = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "w_double")); + + gtk_builder_connect_signals (gtkbuilder, NULL); + + sql = gtk_form_get_sql (form, GTK_FORM_SQL_SELECT); + + dm = gdaex_query (gdaex, sql); + g_free (sql); + if (dm != NULL && gda_data_model_get_n_rows (dm) > 0) + { + gtk_form_fill_from_datamodel (form, dm, 0); + } + + gtk_widget_show_all (w); + + gtk_main (); + + return 0; +} \ No newline at end of file diff --git a/test/double.xml b/test/double.xml new file mode 100644 index 0000000..8a3c64c --- /dev/null +++ b/test/double.xml @@ -0,0 +1,17 @@ + + + gtkform_double
+ + + + t + + + + + + 2 + + + +
diff --git a/test/test_db.gui b/test/test_db.gui index bdeaf3f..b50ae34 100644 --- a/test/test_db.gui +++ b/test/test_db.gui @@ -1,29 +1,76 @@ - + - - + + + + 100 + 1 + 1 + 10 + + + + + + + + + + + + + + + + + + + 1 + China + + + 2 + Germany + + + 3 + India + + + 4 + Italy + + + 6 + USA + + + True + False test libform 600 440 - + - + True + False 3 - vertical - + True + False 3 9 2 3 3 - + True + False 0 ID @@ -33,8 +80,9 @@ - + True + False 0 Name @@ -48,6 +96,7 @@ True + False 0 @@ -62,6 +111,10 @@ True True 200 + False + False + True + True 1 @@ -74,6 +127,7 @@ True + False 0 Age @@ -88,6 +142,10 @@ True True + False + False + True + True adjustment2 1 @@ -102,6 +160,7 @@ True + False 0 Nation @@ -115,6 +174,7 @@ True + False 0 Married @@ -145,6 +205,7 @@ True + False 0 Description @@ -178,6 +239,7 @@ True + False 0 Birthday @@ -191,6 +253,7 @@ True + False lstore_nation @@ -213,7 +276,11 @@ True True 10 - + • + False + False + True + True 1 @@ -225,6 +292,7 @@ True + False 0 Sex @@ -238,6 +306,7 @@ True + False None @@ -248,6 +317,8 @@ True + True + True 0 @@ -261,6 +332,8 @@ rbtnNone + True + True 1 @@ -274,6 +347,8 @@ rbtnNone + True + True 2 @@ -288,6 +363,7 @@ True + False 0 Income @@ -302,7 +378,11 @@ True True - + • + False + False + True + True 1 @@ -315,6 +395,7 @@ False + True 0 @@ -324,6 +405,7 @@ True + False spread @@ -334,7 +416,7 @@ False True True - + False @@ -351,7 +433,7 @@ False True True - + False @@ -368,7 +450,7 @@ False True True - + False @@ -379,6 +461,7 @@ True + False lstore_customers @@ -400,7 +483,7 @@ True True True - + False @@ -415,7 +498,7 @@ True True True - + False @@ -433,10 +516,12 @@ True + False 2 True + False 0 SQL @@ -466,54 +551,128 @@ + True + True 3 - - 1 - 100 - 1 - 10 - - - - - - - - - - - - - - - - - - - 1 - China - - - 2 - Germany - - - 3 - India - - - 4 - Italy - - - 6 - USA - - + + False + + + + True + False + + + True + False + 2 + 2 + + + True + False + ID + + + + + True + False + Importo + + + 1 + 2 + + + + + True + True + False + ● + 1 + False + False + True + True + + + 1 + 2 + + + + + True + True + ● + False + False + True + True + + + 1 + 2 + 1 + 2 + + + + + True + True + 0 + + + + + True + False + + + gtk-save + True + True + True + True + + + + False + False + 0 + + + + + gtk-close + True + True + True + True + + + + False + False + 1 + + + + + True + True + 1 + + + +