<column type="gboolean"/>
</columns>
</object>
+ <object class="GtkTreeStore" id="tstore_ds_tables_fields">
+ <columns>
+ <!-- column-name id_ds -->
+ <column type="guint"/>
+ <!-- column-name name_ds -->
+ <column type="gchararray"/>
+ <!-- column-name cncstring_ds -->
+ <column type="gchararray"/>
+ <!-- column-name id_table -->
+ <column type="guint"/>
+ <!-- column-name name_table -->
+ <column type="gchararray"/>
+ <!-- column-name id_field -->
+ <column type="guint"/>
+ <!-- column-name name_field -->
+ <column type="gchararray"/>
+ <!-- column-name choosen -->
+ <column type="gboolean"/>
+ </columns>
+ </object>
+ <object class="GtkWindow" id="w_datasources">
+ <property name="title" translatable="yes">Datasources - Audit GUI</property>
+ <property name="modal">True</property>
+ <property name="window_position">center-on-parent</property>
+ <property name="destroy_with_parent">True</property>
+ <child>
+ <object class="GtkVBox" id="vbox5">
+ <property name="visible">True</property>
+ <property name="border_width">5</property>
+ <property name="orientation">vertical</property>
+ <property name="spacing">5</property>
+ <child>
+ <object class="GtkScrolledWindow" id="scrolledwindow2">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="hscrollbar_policy">automatic</property>
+ <property name="vscrollbar_policy">automatic</property>
+ <property name="shadow_type">etched-in</property>
+ <child>
+ <object class="GtkTreeView" id="treeview2">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="model">tstore_ds_tables_fields</property>
+ <property name="headers_clickable">False</property>
+ <property name="search_column">0</property>
+ <child>
+ <object class="GtkTreeViewColumn" id="treeviewcolumn5">
+ <property name="title">Datasource</property>
+ <child>
+ <object class="GtkCellRendererText" id="cellrenderertext5"/>
+ <attributes>
+ <attribute name="text">1</attribute>
+ </attributes>
+ </child>
+ <child>
+ <object class="GtkCellRendererText" id="cellrenderertext6"/>
+ <attributes>
+ <attribute name="text">2</attribute>
+ </attributes>
+ </child>
+ </object>
+ </child>
+ <child>
+ <object class="GtkTreeViewColumn" id="treeviewcolumn3">
+ <property name="title">Table</property>
+ <child>
+ <object class="GtkCellRendererText" id="cellrenderertext3"/>
+ <attributes>
+ <attribute name="text">4</attribute>
+ </attributes>
+ </child>
+ </object>
+ </child>
+ <child>
+ <object class="GtkTreeViewColumn" id="treeviewcolumn4">
+ <property name="title">Field</property>
+ <child>
+ <object class="GtkCellRendererText" id="cellrenderertext4"/>
+ <attributes>
+ <attribute name="text">6</attribute>
+ </attributes>
+ </child>
+ <child>
+ <object class="GtkCellRendererToggle" id="cellrenderertoggle2"/>
+ <attributes>
+ <attribute name="activatable">7</attribute>
+ </attributes>
+ </child>
+ </object>
+ </child>
+ </object>
+ </child>
+ </object>
+ <packing>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkHButtonBox" id="hbuttonbox4">
+ <property name="visible">True</property>
+ <property name="spacing">5</property>
+ <property name="layout_style">end</property>
+ <child>
+ <object class="GtkButton" id="button7">
+ <property name="label">gtk-new</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="receives_default">True</property>
+ <property name="use_stock">True</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkButton" id="button9">
+ <property name="label">gtk-edit</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="receives_default">True</property>
+ <property name="use_stock">True</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="position">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkButton" id="button8">
+ <property name="label">gtk-delete</property>
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="receives_default">True</property>
+ <property name="use_stock">True</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">False</property>
+ <property name="position">2</property>
+ </packing>
+ </child>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="position">1</property>
+ </packing>
+ </child>
+ </object>
+ </child>
+ </object>
</interface>
--- /dev/null
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include "datasources.h"
+
+static void datasources_class_init (DatasourcesClass *klass);
+static void datasources_init (Datasources *datasources);
+
+static void datasources_load (Datasources *datasources);
+static void datasources_edit (Datasources *datasources);
+
+static void datasources_on_costo_aggiornato (gpointer instance, gpointer user_data);
+
+static void datasources_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void datasources_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
+
+static void datasources_on_btn_new_clicked (GtkButton *button,
+ gpointer user_data);
+static void datasources_on_btn_edit_clicked (GtkButton *button,
+ gpointer user_data);
+static void datasources_on_btn_delete_clicked (GtkButton *button,
+ gpointer user_data);
+static void datasources_on_trv_datasources_row_activated (GtkTreeView *tree_view,
+ GtkTreePath *tree_path,
+ GtkTreeViewColumn *column,
+ gpointer user_data);
+
+#define DATASOURCES_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_DATASOURCES, DatasourcesPrivate))
+
+enum
+{
+ COL_ID,
+ COL_NOME
+};
+
+typedef struct _DatasourcesPrivate DatasourcesPrivate;
+struct _DatasourcesPrivate
+ {
+ Commons *commons;
+
+ GtkWidget *widget;
+ GtkTreeSelection *selection;
+ GtkTreeStore *tstore_datasources;
+ };
+
+G_DEFINE_TYPE (Datasources, datasources, G_TYPE_OBJECT)
+
+static void
+datasources_class_init (DatasourcesClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (object_class, sizeof (DatasourcesPrivate));
+
+ object_class->set_property = datasources_set_property;
+ object_class->get_property = datasources_get_property;
+}
+
+static void
+datasources_init (Datasources *datasources)
+{
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+}
+
+/**
+ * datasources_new:
+ * @commons:
+ *
+ * Returns: the newly created #Datasources object.
+ */
+Datasources
+*datasources_new (Commons *commons)
+{
+ GError *error;
+
+ Datasources *a = DATASOURCES (g_object_new (datasources_get_type (), NULL));
+
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (a);
+
+ priv->commons = commons;
+
+ error = NULL;
+ gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
+ g_strsplit (g_strconcat ("tstore_ds_tables_fields|",
+ "vbox5",
+ NULL), "|", -1),
+ &error);
+ if (error != NULL)
+ {
+ g_warning ("Errore: %s.", error->message);
+ return NULL;
+ }
+
+ priv->widget = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "vbox5"));
+ priv->selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview2")));
+ priv->tstore_datasources = GTK_TREE_STORE (gtk_builder_get_object (priv->commons->gtkbuilder, "tstore_ds_tables_fields"));
+
+ g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button7"),
+ "clicked", G_CALLBACK (datasources_on_btn_new_clicked), (gpointer)a);
+ g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button9"),
+ "clicked", G_CALLBACK (datasources_on_btn_edit_clicked), (gpointer)a);
+ g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button8"),
+ "clicked", G_CALLBACK (datasources_on_btn_delete_clicked), (gpointer)a);
+ g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview2"),
+ "row-activated", G_CALLBACK (datasources_on_trv_datasources_row_activated), (gpointer)a);
+
+ datasources_load (a);
+
+ return a;
+}
+
+/**
+ * datasources_get_widget:
+ * @datasources:
+ *
+ */
+GtkWidget
+*datasources_get_widget (Datasources *datasources)
+{
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ return priv->widget;
+}
+
+/* PRIVATE */
+static void
+datasources_load (Datasources *datasources)
+{
+ /*GtkTreeIter iter;
+ GdaDataModel *dm;
+
+ gint rows;
+ gint row;
+
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ gtk_list_store_clear (priv->lstore_datasources);
+
+ dm = gdaex_query (priv->commons->gdaex,
+ "SELECT c.id, c.nome"
+ " FROM datasources AS c"
+ " WHERE c.status <> 'E'"
+ " ORDER BY c.nome");
+ if (dm != NULL)
+ {
+ rows = gda_data_model_get_n_rows (dm);
+ for (row = 0; row < rows; row++)
+ {
+ gtk_list_store_append (priv->lstore_datasources, &iter);
+
+ gtk_list_store_set (priv->lstore_datasources, &iter,
+ 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);
+ }
+
+ g_object_unref (dm);
+ }*/
+}
+
+static void
+datasources_edit (Datasources *datasources)
+{
+ /*GtkTreeIter iter;
+ guint id;
+
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter))
+ {
+ GtkWidget *w;
+
+ gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_datasources), &iter,
+ COL_ID, &id,
+ -1);
+
+ Datasourceso *c = datasourceso_new (priv->commons, id);
+
+ g_signal_connect (G_OBJECT (c), "aggiornato",
+ G_CALLBACK (datasources_on_costo_aggiornato), (gpointer)datasources);
+
+ w = datasourceso_get_widget (c);
+ gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient);
+ gtk_widget_show (w);
+ }
+ else
+ {
+ GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient,
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Occorre prima selezionare un datasourceso");
+ gtk_dialog_run (GTK_DIALOG (dialog));
+ gtk_widget_destroy (dialog);
+ }*/
+}
+
+static void
+datasources_on_costo_aggiornato (gpointer instance, gpointer user_data)
+{
+ datasources_load ((Datasources *)user_data);
+}
+
+static void
+datasources_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+ Datasources *datasources = DATASOURCES (object);
+
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+datasources_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+ Datasources *datasources = DATASOURCES (object);
+
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+/* CALLBACK */
+static void
+datasources_on_btn_new_clicked (GtkButton *button,
+ gpointer user_data)
+{
+ /*GtkWidget *w;
+
+ Datasources *datasources = (Datasources *)user_data;
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ Datasourceso *c = datasourceso_new (priv->commons, 0);
+
+ g_signal_connect (G_OBJECT (c), "aggiornato",
+ G_CALLBACK (datasources_on_costo_aggiornato), (gpointer)datasources);
+
+ w = datasourceso_get_widget (c);
+ gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient);
+ gtk_widget_show (w);*/
+}
+
+static void
+datasources_on_btn_edit_clicked (GtkButton *button,
+ gpointer user_data)
+{
+ datasources_edit ((Datasources *)user_data);
+}
+
+static void
+datasources_on_btn_delete_clicked (GtkButton *button,
+ gpointer user_data)
+{
+ /*GtkWidget *dialog;
+ gboolean risp;
+
+ GtkTreeIter iter;
+ guint id;
+
+ Datasources *datasources = (Datasources *)user_data;
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources);
+
+ 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 l'datasourceso selezionato?");
+ risp = gtk_dialog_run (GTK_DIALOG (dialog));
+ if (risp == GTK_RESPONSE_YES)
+ {
+ gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_datasources), &iter,
+ COL_ID, &id,
+ -1);
+
+ gdaex_execute (priv->commons->gdaex,
+ g_strdup_printf ("UPDATE datasources SET status = 'E' WHERE id = %d", id));
+
+ datasources_carica (datasources);
+ }
+ gtk_widget_destroy (dialog);
+ }
+ else
+ {
+ dialog = gtk_message_dialog_new (priv->wtransient,
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Occorre prima selezionare un datasourceso");
+ gtk_dialog_run (GTK_DIALOG (dialog));
+ gtk_widget_destroy (dialog);
+ }*/
+}
+
+static void
+datasources_on_trv_datasources_row_activated (GtkTreeView *tree_view,
+ GtkTreePath *tree_path,
+ GtkTreeViewColumn *column,
+ gpointer user_data)
+{
+ DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE ((Datasources *)user_data);
+
+ datasources_edit ((Datasources *)user_data);
+}
\ No newline at end of file
--- /dev/null
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __DATASOURCES_H__
+#define __DATASOURCES_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+#include <gtk/gtk.h>
+#include <libgdaex.h>
+
+#include "commons.h"
+
+G_BEGIN_DECLS
+
+
+#define TYPE_DATASOURCES (datasources_get_type ())
+#define DATASOURCES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_DATASOURCES, Datasources))
+#define DATASOURCES_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_DATASOURCES, DatasourcesClass))
+#define IS_DATASOURCES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_DATASOURCES))
+#define IS_DATASOURCES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_DATASOURCES))
+#define DATASOURCES_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_DATASOURCES, DatasourcesClass))
+
+
+typedef struct _Datasources Datasources;
+typedef struct _DatasourcesClass DatasourcesClass;
+
+struct _Datasources
+ {
+ GObject parent;
+ };
+
+struct _DatasourcesClass
+ {
+ GObjectClass parent_class;
+ };
+
+GType datasources_get_type (void) G_GNUC_CONST;
+
+Datasources *datasources_new (Commons *commons);
+
+GtkWidget *datasources_get_widget (Datasources *datasources);
+
+
+G_END_DECLS
+
+#endif /* __DATASOURCES_H__ */