--- /dev/null
+<?xml version="1.0"?>
+<gtkform>
+
+ <table>nodi</table>
+
+ <widget type="label" name="label6" label="label10">
+ <field type="integer" name="id">
+ <is-key>t</is-key>
+ <auto-increment>t</auto-increment>
+ </field>
+ </widget>
+
+ <widget type="entry" name="entry2">
+ <field type="text" name="nodo_superiore">
+ <to-load>f</to-load>
+ <to-save>f</to-save>
+ </field>
+ </widget>
+
+ <widget type="label" name="label5" label="label4">
+ <on-change what="update" when="after">
+ <widget-name>entry2</widget-name>
+ <sql>
+ SELECT nome FROM tipi_nodo WHERE id = ##label5::gint
+ </sql>
+ </on-change>
+ <field type="integer" name="id_nodi">
+ </field>
+ </widget>
+
+ <widget type="combobox" name="combobox1" label="label1">
+ <column-field>0</column-field>
+ <sql with-empty-entry="t">
+ SELECT id, nome FROM tipi_nodo WHERE status <> 'E' ORDER BY nome
+ </sql>
+ <field type="integer" name="id_tipi_nodo"/>
+ </widget>
+
+ <widget type="entry" name="entry1" label="label2">
+ <field type="text" name="nome" />
+ </widget>
+
+ <widget type="textview" name="textview1" label="label3">
+ <field type="text" name="descrizione" />
+ </widget>
+
+</gtkform>
<child>
<object class="GtkComboBox" id="combobox1">
<property name="visible">True</property>
+ <property name="model">lstore_tipi_nodo</property>
<child>
<object class="GtkCellRendererText" id="cellrenderertext3"/>
<attributes>
gtk_tree_store_append (priv->tstore_nodi, &iter, NULL);
gtk_tree_store_set (priv->tstore_nodi, &iter,
- COL_ID, gdaex_data_model_get_field_value_stringify_at (dm, row, "id"),
+ COL_ID, gdaex_data_model_get_field_value_integer_at (dm, row, "id"),
COL_NOME, gdaex_data_model_get_field_value_stringify_at (dm, row, "nome"),
-1);
}
if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter))
{
dialog = gtk_message_dialog_new (priv->wtransient,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_QUESTION,
- GTK_BUTTONS_YES_NO,
- "Sicuro di voler eliminare il tipo nodo selezionato?");
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_QUESTION,
+ GTK_BUTTONS_YES_NO,
+ "Sicuro di voler eliminare il tipo nodo selezionato?");
risp = gtk_dialog_run (GTK_DIALOG (dialog));
if (risp == GTK_RESPONSE_YES)
{
gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_nodi), &iter,
- COL_ID, &id,
- -1);
+ COL_ID, &id,
+ -1);
gdaex_execute (priv->commons->gdaex,
g_strdup_printf ("UPDATE nodi SET status = 'E' WHERE id = %d", id));
else
{
dialog = gtk_message_dialog_new (priv->wtransient,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_OK,
- "Occorre prima selezionare un tipo nodo");
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Occorre prima selezionare un tipo nodo");
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
error = NULL;
gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
- g_strsplit ("w_nodo", "|", -1),
+ g_strsplit ("lstore_tipi_nodo|w_nodo", "|", -1),
&error);
if (error != NULL)
{
return NULL;
}
- priv->form = gtk_form_new_from_file (g_build_filename (priv->commons->formdir, "nodo.form", NULL), priv->commons->gtkbuilder);
+ priv->form = gtk_form_new ();
+ g_object_set (G_OBJECT (priv->form), "gdaex", priv->commons->gdaex, NULL);
+ gtk_form_load_from_file (priv->form, g_build_filename (priv->commons->formdir, "nodo.form", NULL), priv->commons->gtkbuilder);
g_object_set (priv->form, "gdaex", priv->commons->gdaex, NULL);