]> saetta.ns0.it Git - libgtkform/commitdiff
Added test from xml binded to a database.
authorAndrea Zagli <azagli@libero.it>
Mon, 3 Aug 2009 15:41:49 +0000 (17:41 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 3 Aug 2009 15:41:49 +0000 (17:41 +0200)
Fixed many bugs.

13 files changed:
.gitignore
ChangeLog
config.h.in
libgtkform.pc.in
src/fieldboolean.c
src/fielddatetime.c
src/fieldtext.c
src/widgetcheck.c
test/Makefile.am
test/database.db [new file with mode: 0644]
test/from_xml_with_db.c [new file with mode: 0644]
test/test_db.gui [new file with mode: 0644]
test/test_db.xml [new file with mode: 0644]

index cdb61cef37294494a8b181b0fa6c413b99a6591c..ecd4e0828eca6b7c5fddb7863d8153b1d8724709 100644 (file)
@@ -40,6 +40,7 @@ src/libgtkform.la
 test/.libs/
 test/test
 test/from_xml
+test/from_xml_with_db
 *.bak
 *.stamp
 *.tar.gz
index 477e5a80f05cf45e15ca3581173ff8419959cd0a..98190502b3daca19cb111d38ec1f3cbdc2ca047e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,36 @@
+commit 6fa9f1b3d2febf69b2cde145fca1b6af6db28e98
+Author: Andrea Zagli <azagli@libero.it>
+Date:   2009-08-01
+
+    Replaced strptime with a custom function, because strptime is not
+    implemented on windows.
+
+M      docs/reference/libgtkform-decl-list.txt
+M      docs/reference/libgtkform-decl.txt
+M      docs/reference/libgtkform-undocumented.txt
+M      docs/reference/libgtkform-unused.txt
+M      src/fielddatetime.c
+M      src/fielddatetime.h
+M      src/form.c
+M      test/test.xml
+
+commit 5b5ed2d9881acc46488341de18e24848e514d5d0
+Author: Andrea Zagli <azagli@libero.it>
+Date:  2009-08-01
+
+    Changed autogen.sh to work on windows.
+
+M      .gitignore
+M      ChangeLog
+M      autogen.sh
+M      docs/reference/libgtkform-decl-list.txt
+M      docs/reference/libgtkform-decl.txt
+M      docs/reference/libgtkform-undocumented.txt
+M      docs/reference/libgtkform-unused.txt
+
 commit 9ba72dc3a4d7c9677c29ad64d078b48ffa6f6b6e
 Author: Andrea Zagli <azagli@libero.it>
-Date:   2009-07-30
+Date:  2009-07-30
 
     Finished to implement definition load from xml file.
 
index 6816f309757086fc3dddb75c8119c52730cbfa72..4388cd21e6931a5754b0eaa9dd9be1f7b419396c 100644 (file)
@@ -68,6 +68,9 @@
 /* Define to the one symbol short name of this package. */
 #undef PACKAGE_TARNAME
 
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
 /* Define to the version of this package. */
 #undef PACKAGE_VERSION
 
index bfbedc4a5be1735c78c6b8e59104a37de58c7049..86fc5511ea1ce345b6cd9b7d7f241433fdaabfa7 100644 (file)
@@ -4,7 +4,7 @@ libdir=@libdir@
 includedir=@includedir@
 
 Name: @PACKAGE_NAME@
-Description: Class for easly manage Gtk+ forms binded to db.
+Description: Class for easly manage Gtk+ forms binded to db (or not).
 Version: @PACKAGE_VERSION@
 Requires: gtk+-2.0, libxml-2.0, libgdaex
 Libs: -L${libdir} -lgtkform
index 96874f010e969591ec0db22781c6227ddafc1a0e..fb00e9ef817e04f52d652f24ac308c690a409fe1 100644 (file)
@@ -164,7 +164,7 @@ const gchar
 
                        bool_value = gtk_form_field_boolean_str_to_boolean (value);
 
-                       ret = g_strconcat ("'", (bool_value ? "t" : "f"), "'", NULL);
+                       ret = g_strconcat ("'", (bool_value ? "1" : "0"), "'", NULL);
                }
 
        return ret;
@@ -213,15 +213,23 @@ gboolean
 gtk_form_field_boolean_set_from_datamodel (GtkFormField *field, GdaDataModel *dm, gint row)
 {
        gboolean ret = FALSE;
-       const gchar *field_name = gtk_form_field_get_field_name (field);
+       const gchar *field_name;
+       gchar *value;
 
-       if (dm != NULL)
-               {
-                       gchar *value;
+       g_return_val_if_fail (IS_GTK_FORM_FIELD_BOOLEAN (field), FALSE);
+       g_return_val_if_fail (GDA_IS_DATA_MODEL (dm), FALSE);
+
+       field_name = gtk_form_field_get_field_name (field);
 
-                       value = g_strdup_printf ("%d", gdaex_data_model_get_field_value_boolean_at (dm, row, field_name));              
-                       ret = gtk_form_field_boolean_set_value_stringify (field, value);
+       if (gdaex_data_model_get_field_value_boolean_at (dm, row, field_name))
+               {
+                       value = g_strdup_printf ("TRUE");
+               }
+       else
+               {
+                       value = g_strdup_printf ("FALSE");
                }
+       ret = gtk_form_field_boolean_set_value_stringify (field, value);
 
        return ret;
 }
index e9a1da41c5db3677783d15cd76847ab35a07d766..1a7be418b07f18874ae99e149310e69ad60b722d 100644 (file)
@@ -223,13 +223,17 @@ gtk_form_field_datetime_clear (GtkFormField *field)
                {
                        char *buf;
 
-                       buf = malloc (100);
+                       buf = malloc (30);
 
-                       if (strftime (buf, 100, format, priv->default_value) != '\0')
+                       if (strftime (buf, 30, format, priv->default_value) != '\0')
                                {
                                        ret = gtk_form_field_datetime_set_value_stringify (field, buf);
                                }
                }
+       else
+               {
+                       ret = gtk_form_field_datetime_set_value_stringify (field, "");
+               }
 
        return ret;
 }
index 0510976d33fc3f0c2ebf14e34db54f5395934e36..263e45897e3f09dd0ec422bd18af2f4fc1efe46d 100644 (file)
@@ -210,8 +210,14 @@ gtk_form_field_text_set_from_datamodel (GtkFormField *field, GdaDataModel *dm, g
 
        if (dm != NULL)
                {
-                       ret = gtk_form_field_text_set_value_stringify (field,
-                                                                              gdaex_data_model_get_field_value_stringify_at (dm, row, field_name));
+                       gchar *strret;
+
+                       strret = gdaex_data_model_get_field_value_stringify_at (dm, row, field_name);
+                       if (strret == NULL)
+                               {
+                                       strret = g_strdup ("");
+                               }
+                       ret = gtk_form_field_text_set_value_stringify (field, strret);
                }
 
        return ret;
index 0df26c7c359ab227fa5b7960b2efdf121730bbb4..3875b9d6d5dcba0a33fda5afb65f71c8d20a8d62 100644 (file)
@@ -91,9 +91,23 @@ GtkFormWidget
 const gchar
 *gtk_form_widget_check_get_value_stringify (GtkFormWidget *fwidget)
 {
-       GtkWidget *w = gtk_form_widget_get_widget (fwidget);
+       GtkWidget *w;
+       gchar *ret;
+
+       g_return_val_if_fail (IS_GTK_FORM_WIDGET_CHECK (fwidget), "");
+
+       w = gtk_form_widget_get_widget (fwidget);
 
-       return g_strdup_printf ("%d", gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w)));
+       if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w)))
+               {
+                       ret = g_strdup ("TRUE");
+               }
+       else
+               {
+                       ret = g_strdup ("FALSE");
+               }
+
+       return ret;
 }
 
 /**
@@ -109,6 +123,8 @@ gtk_form_widget_check_set_value_stringify (GtkFormWidget *fwidget, const gchar *
        GtkWidget *w;
        gboolean active = FALSE;
 
+       g_return_val_if_fail (IS_GTK_FORM_WIDGET_CHECK (fwidget), FALSE);
+
        g_object_get (G_OBJECT (fwidget),
                      "widget", &w,
                      NULL);
@@ -133,6 +149,8 @@ gtk_form_widget_check_set_editable (GtkFormWidget *fwidget, gboolean editable)
 {
        GtkWidget *w;
 
+       g_return_if_fail (IS_GTK_FORM_WIDGET_CHECK (fwidget));
+
        g_object_get (G_OBJECT (fwidget),
                      "widget", &w,
                      NULL);
index 4537996ce6c137542713d928832ef779d9eaa122..65a35b67408b5ac7d2a45ce67c30e330c072ec7a 100644 (file)
@@ -6,7 +6,8 @@ AM_CPPFLAGS = $(GTKFORM_CFLAGS) \
               -DGUIDIR="\"@abs_builddir@\""
 
 noinst_PROGRAMS = test \
-                  from_xml
+                  from_xml \
+                  from_xml_with_db
 
 test_SOURCES = main.c
 
diff --git a/test/database.db b/test/database.db
new file mode 100644 (file)
index 0000000..1d3b906
Binary files /dev/null and b/test/database.db differ
diff --git a/test/from_xml_with_db.c b/test/from_xml_with_db.c
new file mode 100644 (file)
index 0000000..f191319
--- /dev/null
@@ -0,0 +1,225 @@
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ *  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 <string.h>
+
+#include <gtk/gtk.h>
+
+#include <libgdaex.h>
+
+#include "form.h"
+#include "field.h"
+#include "fieldboolean.h"
+#include "fielddatetime.h"
+#include "fieldinteger.h"
+#include "fieldfloat.h"
+#include "fieldtext.h"
+#include "widget.h"
+#include "widgetcheck.h"
+#include "widgetcombobox.h"
+#include "widgetentry.h"
+#include "widgetlabel.h"
+#include "widgetspin.h"
+#include "widgettextview.h"
+
+GdaEx *gdaex;
+
+GtkForm *form;
+
+GtkWidget *w;
+GtkWidget *lbl_id;
+GtkWidget *txtv_sql;
+GtkWidget *btn_new;
+GtkWidget *btn_edit;
+GtkWidget *btn_delete;
+GtkWidget *cb_customers;
+GtkWidget *btn_open;
+
+GtkListStore *lstore_customers;
+
+GtkTextBuffer *buf;
+
+gint current_id;
+
+void fill_cb_customers (void);
+
+void
+on_btn_new_clicked (GtkButton *button,
+                         gpointer user_data)
+{
+       gtk_form_clear (form);
+       current_id = 0;
+}
+
+void
+on_btn_save_clicked (GtkButton *button,
+                         gpointer user_data)
+{
+       gchar *sql;
+
+       if (current_id == 0)
+               {
+                       /* must find new id */
+                       GdaDataModel *dm;
+                       gint new_id = 0;
+
+                       sql = "SELECT MAX(id) FROM customers";
+                       dm = gdaex_query (gdaex, sql);
+
+                       if (dm != NULL)
+                               {
+                                       new_id = gdaex_data_model_get_value_integer_at (dm, 0, 0);
+                               }
+                       new_id++;
+
+                       gtk_label_set_text (GTK_LABEL (lbl_id), g_strdup_printf ("%d", new_id));
+
+                       sql = gtk_form_get_sql (form, GTK_FORM_SQL_INSERT);
+               }
+       else
+               {
+                       sql = gtk_form_get_sql (form, GTK_FORM_SQL_UPDATE);
+               }
+
+       gtk_text_buffer_set_text (buf, sql, strlen (sql));
+
+       gdaex_execute (gdaex, sql);
+
+       fill_cb_customers ();
+       on_btn_new_clicked (NULL, NULL);
+}
+
+void
+on_btn_delete_clicked (GtkButton *button,
+                         gpointer user_data)
+{
+       gchar *sql = gtk_form_get_sql (form, GTK_FORM_SQL_DELETE);
+
+       gtk_text_buffer_set_text (buf, sql, strlen (sql));
+
+       gdaex_execute (gdaex, sql);
+
+       fill_cb_customers ();
+       on_btn_new_clicked (NULL, NULL);
+}
+
+void
+on_btn_open_clicked (GtkButton *button,
+                         gpointer user_data)
+{
+       GtkTreeIter iter;
+       gint id;
+       GdaDataModel *dm;
+
+       if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (cb_customers), &iter))
+               {
+                       return;
+               }
+
+       gtk_tree_model_get (GTK_TREE_MODEL (lstore_customers), &iter,
+                           0, &id,
+                           -1);
+
+       gtk_label_set_text (GTK_LABEL (lbl_id), g_strdup_printf ("%d", id));
+
+       gchar *sql = gtk_form_get_sql (form, GTK_FORM_SQL_SELECT);
+
+       gtk_text_buffer_set_text (buf, sql, strlen (sql));
+
+       dm = gdaex_query (gdaex, sql);
+       if (dm == NULL)
+               {
+                       on_btn_new_clicked (NULL, NULL);
+                       return;
+               }
+
+       gtk_form_fill_from_datamodel (form, dm, 0);
+       current_id = id;
+}
+
+void
+fill_cb_customers (void)
+{
+       gchar *sql = "SELECT * FROM customers";
+       GtkTreeIter iter;
+       GdaDataModel *dm;
+       gint rows;
+       gint row;
+
+       gtk_list_store_clear (lstore_customers);
+
+       dm = gdaex_query (gdaex, sql);
+       if (dm == NULL)
+               {
+                       return;
+               }
+
+       rows = gda_data_model_get_n_rows (dm);
+       for (row = 0; row < rows; row++)
+               {
+                       gtk_list_store_append (lstore_customers, &iter);
+                       gtk_list_store_set (lstore_customers, &iter,
+                                           0, gdaex_data_model_get_field_value_integer_at (dm, row, "id"),
+                                           1, gdaex_data_model_get_field_value_stringify_at (dm, row, "name"),
+                                           -1);
+               }
+}
+
+int
+main (int argc, char **argv)
+{
+       GtkBuilder *gtkbuilder;
+
+       gtk_init (&argc, &argv);
+
+       gdaex = gdaex_new_from_string ("SQLite://DB_DIR=test;DB_NAME=database.db");
+       if (gdaex == NULL)
+               {
+                       return 0;
+               }
+
+       form = gtk_form_new_from_file (GUIDIR "/test_db.xml", NULL);
+       if (form == NULL) return 0;
+
+       gtkbuilder = gtk_form_get_gtkbuilder (form);
+
+       w = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "wMain"));
+
+       lbl_id = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "lbl_id"));
+       btn_new = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "btn_new"));
+       btn_edit = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "btn_edit"));
+       btn_delete = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "btn_delete"));
+       cb_customers = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "cb_customers"));
+       btn_open = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "btn_open"));
+
+       lstore_customers = GTK_LIST_STORE (gtk_builder_get_object (gtkbuilder, "lstore_customers"));
+
+       fill_cb_customers ();
+       on_btn_new_clicked (NULL, NULL);
+
+       txtv_sql = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "txtv_sql"));
+       buf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtv_sql));
+
+       gtk_builder_connect_signals (gtkbuilder, NULL);
+
+       gtk_widget_show_all (w);
+
+       gtk_main ();
+
+       return 0;
+}
diff --git a/test/test_db.gui b/test/test_db.gui
new file mode 100644 (file)
index 0000000..216dc37
--- /dev/null
@@ -0,0 +1,413 @@
+<?xml version="1.0"?>
+<interface>
+  <!-- interface-requires gtk+ 2.12 -->
+  <!-- interface-naming-policy toplevel-contextual -->
+  <object class="GtkWindow" id="wMain">
+    <property name="visible">True</property>
+    <property name="title" translatable="yes">test libform</property>
+    <property name="default_width">600</property>
+    <property name="default_height">440</property>
+    <signal name="delete_event" handler="gtk_main_quit"/>
+    <child>
+      <object class="GtkVBox" id="vbox1">
+        <property name="visible">True</property>
+        <property name="border_width">3</property>
+        <child>
+          <object class="GtkTable" id="table1">
+            <property name="visible">True</property>
+            <property name="border_width">3</property>
+            <property name="n_rows">7</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">3</property>
+            <property name="row_spacing">3</property>
+            <child>
+              <object class="GtkLabel" id="label1">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label2">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="lbl_id">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txt_name">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">200</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label4">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Age</property>
+              </object>
+              <packing>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkSpinButton" id="spn_age">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="adjustment">adjustment2</property>
+                <property name="climb_rate">1</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label6">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Nation</property>
+              </object>
+              <packing>
+                <property name="top_attach">3</property>
+                <property name="bottom_attach">4</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label9">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Married</property>
+              </object>
+              <packing>
+                <property name="top_attach">4</property>
+                <property name="bottom_attach">5</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkCheckButton" id="chk_married">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_underline">True</property>
+                <property name="draw_indicator">True</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">4</property>
+                <property name="bottom_attach">5</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label10">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Description</property>
+              </object>
+              <packing>
+                <property name="top_attach">5</property>
+                <property name="bottom_attach">6</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <child>
+                  <object class="GtkTextView" id="txtv_description">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">5</property>
+                <property name="bottom_attach">6</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label11">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Birthday</property>
+              </object>
+              <packing>
+                <property name="top_attach">6</property>
+                <property name="bottom_attach">7</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkComboBox" id="cb_nation">
+                <property name="visible">True</property>
+                <property name="model">lstore_nation</property>
+                <child>
+                  <object class="GtkCellRendererText" id="cellrenderertext2"/>
+                  <attributes>
+                    <attribute name="text">1</attribute>
+                  </attributes>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">3</property>
+                <property name="bottom_attach">4</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txt_birthday">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">10</property>
+                <property name="invisible_char">&#x2022;</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">6</property>
+                <property name="bottom_attach">7</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox2">
+            <property name="visible">True</property>
+            <property name="layout_style">spread</property>
+            <child>
+              <object class="GtkButton" id="btn_new">
+                <property name="label" translatable="yes">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_underline">True</property>
+                <property name="use_stock">True</property>
+                <signal name="clicked" handler="on_btn_new_clicked"/>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="btn_save">
+                <property name="label" translatable="yes">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_underline">True</property>
+                <property name="use_stock">True</property>
+                <signal name="clicked" handler="on_btn_save_clicked"/>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="btn_delete">
+                <property name="label" translatable="yes">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_underline">True</property>
+                <property name="use_stock">True</property>
+                <signal name="clicked" handler="on_btn_delete_clicked"/>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkComboBox" id="cb_customers">
+                <property name="visible">True</property>
+                <property name="model">lstore_customers</property>
+                <child>
+                  <object class="GtkCellRendererText" id="cellrenderertext1"/>
+                  <attributes>
+                    <attribute name="text">1</attribute>
+                  </attributes>
+                </child>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="btn_open">
+                <property name="label" translatable="yes">gtk-open</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+                <signal name="clicked" handler="on_btn_open_clicked"/>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">False</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkTable" id="table2">
+            <property name="visible">True</property>
+            <property name="n_columns">2</property>
+            <child>
+              <object class="GtkLabel" id="label7">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">SQL</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"></property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="shadow_type">in</property>
+                <child>
+                  <object class="GtkTextView" id="txtv_sql">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="wrap_mode">word</property>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="position">3</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkAdjustment" id="adjustment2">
+    <property name="value">1</property>
+    <property name="upper">100</property>
+    <property name="step_increment">1</property>
+    <property name="page_increment">10</property>
+  </object>
+  <object class="GtkListStore" id="lstore_customers">
+    <columns>
+      <!-- column-name id -->
+      <column type="guint"/>
+      <!-- column-name name -->
+      <column type="gchararray"/>
+    </columns>
+  </object>
+  <object class="GtkListStore" id="lstore_nation">
+    <columns>
+      <!-- column-name id -->
+      <column type="guint"/>
+      <!-- column-name name -->
+      <column type="gchararray"/>
+    </columns>
+    <data>
+      <row>
+        <col id="0">1</col>
+        <col id="1" translatable="yes">China</col>
+      </row>
+      <row>
+        <col id="0">2</col>
+        <col id="1" translatable="yes">Germany</col>
+      </row>
+      <row>
+        <col id="0">3</col>
+        <col id="1" translatable="yes">India</col>
+      </row>
+      <row>
+        <col id="0">4</col>
+        <col id="1" translatable="yes">Italy</col>
+      </row>
+      <row>
+        <col id="0">6</col>
+        <col id="1" translatable="yes">USA</col>
+      </row>
+    </data>
+  </object>
+</interface>
diff --git a/test/test_db.xml b/test/test_db.xml
new file mode 100644 (file)
index 0000000..c62baa9
--- /dev/null
@@ -0,0 +1,47 @@
+<gtkform>
+
+       <gtkbuilder-file>test/test_db.gui</gtkbuilder-file>
+
+       <table>customers</table>
+
+       <widget type="label" name="lbl_id">
+               <field type="integer" name="id">
+                       <is-key>t</is-key>
+               </field>
+       </widget>
+
+       <widget type="entry" name="txt_name">
+               <field type="text" name="name">
+                       <obligatory>TRUE</obligatory>
+               </field>
+       </widget>
+
+       <widget type="spin" name="spn_age">
+               <field type="integer" name="age">
+               </field>
+       </widget>
+
+       <widget type="combobox" name="cb_nation">
+               <column-field>0</column-field>
+               <field type="integer" name="nation">
+                       <default>3</default>
+               </field>
+       </widget>
+
+       <widget type="checkbox" name="chk_married">
+               <field type="boolean" name="married">
+               </field>
+       </widget>
+
+       <widget type="textview" name="txtv_description">
+               <field type="text" name="description">
+                       <default>It is...</default>
+               </field>
+       </widget>
+
+       <widget type="entry" name="txt_birthday">
+               <field type="datetime" name="birthday">
+               </field>
+       </widget>
+
+</gtkform>