--- /dev/null
+/*
+ * 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;
+}
--- /dev/null
+<?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">•</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>