From: Andrea Zagli Date: Tue, 24 Aug 2010 15:08:12 +0000 (+0200) Subject: Gestione tipi aggregazione territoriale. X-Git-Tag: 0.0.1~3 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=fc5cbaa7e78a7c50ac1ddbda03c14d4571bd042d;p=solipa%2Fterritorio Gestione tipi aggregazione territoriale. --- diff --git a/data/territorio/form/Makefile.am b/data/territorio/form/Makefile.am index f33747f..b3208a4 100644 --- a/data/territorio/form/Makefile.am +++ b/data/territorio/form/Makefile.am @@ -4,6 +4,7 @@ form_DATA = \ comune.form \ provincia.form \ regione.form \ - stato.form + stato.form \ + tipo_aggregazione_territoriale.form EXTRA_DIST = $(form_DATA) diff --git a/data/territorio/form/tipo_aggregazione_territoriale.form b/data/territorio/form/tipo_aggregazione_territoriale.form new file mode 100644 index 0000000..86001de --- /dev/null +++ b/data/territorio/form/tipo_aggregazione_territoriale.form @@ -0,0 +1,17 @@ + + + + tipi_aggregazione_territoriale
+ + + + t + t + + + + + + + +
diff --git a/data/territorio/gui/territorio.gui b/data/territorio/gui/territorio.gui index 4483a3f..dc8732a 100644 --- a/data/territorio/gui/territorio.gui +++ b/data/territorio/gui/territorio.gui @@ -87,6 +87,33 @@ + + + True + _Tabelle + True + + + True + + + True + _Tipi aggregazione territoriale + True + + + + + + True + _Aggregazioni territoriali + True + + + + + + True @@ -343,6 +370,14 @@ + + + + + + + + Stato - Territorio True @@ -1473,4 +1508,260 @@ + + Tipi aggregazioni territoriali - Territorio + True + center-on-parent + 550 + 400 + True + + + True + 5 + vertical + 5 + + + True + <b>Tipi aggregazioni territoriali</b> + True + + + False + 0 + + + + + True + True + automatic + automatic + etched-in + + + True + True + lstore_tipi_aggregazione_territoriale + False + 0 + + + Nome + + + + 1 + + + + + + + + + 1 + + + + + True + 5 + end + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + True + True + True + True + + + False + False + 2 + + + + + gtk-cancel + True + True + True + True + + + False + False + 3 + + + + + gtk-ok + True + True + True + True + + + False + False + 4 + + + + + False + 2 + + + + + + + Tipo aggregazione territoriale - Territorio + True + center-on-parent + True + + + True + 5 + vertical + 5 + + + True + 2 + 2 + 5 + 5 + + + True + 0 + ID + + + GTK_FILL + GTK_FILL + + + + + True + 0 + lbl_id + + + 1 + 2 + GTK_FILL + + + + + True + 0 + Nome + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + 150 + + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + 0 + + + + + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + False + 1 + + + + + diff --git a/docs/territorio.sql b/docs/territorio.sql index d323dfc..411eaf9 100644 --- a/docs/territorio.sql +++ b/docs/territorio.sql @@ -2,7 +2,7 @@ -- PostgreSQL database dump -- --- Started on 2010-08-24 12:35:17 +-- Started on 2010-08-24 16:56:56 SET statement_timeout = 0; SET client_encoding = 'UTF8'; @@ -50,7 +50,7 @@ SET default_with_oids = false; CREATE TABLE aggregazioni_territoriali ( id integer NOT NULL, - id_tipi_aggragazioni_territoriali integer, + id_tipi_aggregazione_territoriale integer, nome character varying(255) DEFAULT ''::character varying, status character varying(1) DEFAULT ''::character varying ); @@ -152,10 +152,10 @@ CREATE TABLE stati ( -- -- TOC entry 1513 (class 1259 OID 59496) -- Dependencies: 1808 1809 3 --- Name: tipi_aggregazioni_territoriali; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: tipi_aggregazione_territoriale; Type: TABLE; Schema: public; Owner: -; Tablespace: -- -CREATE TABLE tipi_aggregazioni_territoriali ( +CREATE TABLE tipi_aggregazione_territoriale ( id integer NOT NULL, nome character varying(150) DEFAULT ''::character varying, status character varying(1) DEFAULT ''::character varying @@ -253,7 +253,7 @@ ALTER TABLE ONLY stati -- Name: tipi_aggregazioni_territoriali_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- -ALTER TABLE ONLY tipi_aggregazioni_territoriali +ALTER TABLE ONLY tipi_aggregazione_territoriale ADD CONSTRAINT tipi_aggregazioni_territoriali_pkey PRIMARY KEY (id); @@ -279,7 +279,7 @@ GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; --- Completed on 2010-08-24 12:35:17 +-- Completed on 2010-08-24 16:56:56 -- -- PostgreSQL database dump complete diff --git a/src/Makefile.am b/src/Makefile.am index fc90d3e..05f541e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,4 +28,8 @@ territorio_SOURCES = \ stati.c \ stati.h \ stato.c \ - stato.h \ No newline at end of file + stato.h \ + tipiaggregazioneterritoriale.c \ + tipiaggregazioneterritoriale.h \ + tipoaggregazioneterritoriale.c \ + tipoaggregazioneterritoriale.h \ No newline at end of file diff --git a/src/main.c b/src/main.c index f61c0cd..5f338b9 100644 --- a/src/main.c +++ b/src/main.c @@ -32,6 +32,7 @@ #include "province.h" #include "regioni.h" #include "stati.h" +#include "tipiaggregazioneterritoriale.h" static Commons *commons; @@ -106,6 +107,19 @@ on_mnu_view_comuni_activate (GtkMenuItem *menuitem, main_set_vbx_body_child (vbx); } +G_MODULE_EXPORT void +on_mnu_tables_tipi_aggregazione_territoriale_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + TipiAggregazioneTerritoriale *m = tipi_aggregazione_territoriale_new (commons, FALSE); + + vbx = tipi_aggregazione_territoriale_get_widget (m); + + main_set_vbx_body_child (vbx); +} + G_MODULE_EXPORT void on_mnu_help_about_activate (GtkMenuItem *menuitem, gpointer user_data) diff --git a/src/tipiaggregazioneterritoriale.c b/src/tipiaggregazioneterritoriale.c new file mode 100644 index 0000000..68ff5d5 --- /dev/null +++ b/src/tipiaggregazioneterritoriale.c @@ -0,0 +1,445 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 "tipiaggregazioneterritoriale.h" +#include "tipoaggregazioneterritoriale.h" + +static void tipi_aggregazione_territoriale_class_init (TipiAggregazioneTerritorialeClass *klass); +static void tipi_aggregazione_territoriale_init (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale); + +static void tipi_aggregazione_territoriale_carica (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale); +static void tipi_aggregazione_territoriale_modifica (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale); + +static void tipi_aggregazione_territoriale_selezionato (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale); +static void tipi_aggregazione_territoriale_on_tipo_aggregazione_territoriale_aggiornato (gpointer instance, gpointer user_data); + +static void tipi_aggregazione_territoriale_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void tipi_aggregazione_territoriale_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static void tipi_aggregazione_territoriale_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data); +static void tipi_aggregazione_territoriale_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data); +static void tipi_aggregazione_territoriale_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data); +static void tipi_aggregazione_territoriale_on_trv_tipi_aggregazione_territoriale_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data); + +static void tipi_aggregazione_territoriale_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void tipi_aggregazione_territoriale_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data); + +#define TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE, TipiAggregazioneTerritorialePrivate)) + +enum +{ + COL_ID, + COL_NOME +}; + +typedef struct _TipiAggregazioneTerritorialePrivate TipiAggregazioneTerritorialePrivate; +struct _TipiAggregazioneTerritorialePrivate + { + Commons *commons; + + GtkWidget *widget; + GtkTreeSelection *selection; + GtkListStore *lstore_tipi_aggregazione_territoriale; + + gboolean selezione; + GtkWindow *wtransient; + }; + +G_DEFINE_TYPE (TipiAggregazioneTerritoriale, tipi_aggregazione_territoriale, G_TYPE_OBJECT) + +static void +tipi_aggregazione_territoriale_class_init (TipiAggregazioneTerritorialeClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (TipiAggregazioneTerritorialePrivate)); + + object_class->set_property = tipi_aggregazione_territoriale_set_property; + object_class->get_property = tipi_aggregazione_territoriale_get_property; + + /** + * TipiAggregazioneTerritoriale::selezionato: + * @tipi_aggregazione_territoriale: + * + */ + klass->selezionato_signal_id = g_signal_new ("selezionato", + G_TYPE_FROM_CLASS (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__UINT, + G_TYPE_NONE, + 1, G_TYPE_UINT); +} + +static void +tipi_aggregazione_territoriale_init (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale) +{ + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); +} + +/** + * tipi_aggregazione_territoriale_new: + * @commons: + * @selezione: + * + * Returns: the newly created #TipiAggregazioneTerritoriale object. + */ +TipiAggregazioneTerritoriale +*tipi_aggregazione_territoriale_new (Commons *commons, gboolean selezione) +{ + GError *error; + + TipiAggregazioneTerritoriale *a = TIPI_AGGREGAZIONE_TERRITORIALE (g_object_new (tipi_aggregazione_territoriale_get_type (), NULL)); + + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (a); + + priv->commons = commons; + priv->selezione = selezione; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit (g_strconcat ("lstore_tipi_aggregazione_territoriale|", + (selezione ? "w_tipi_aggregazione_territoriale" : "vbox10"), + 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, (selezione ? "w_tipi_aggregazione_territoriale" : "vbox10"))); + priv->selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview5"))); + priv->lstore_tipi_aggregazione_territoriale = GTK_LIST_STORE (gtk_builder_get_object (priv->commons->gtkbuilder, "lstore_tipi_aggregazione_territoriale")); + + if (priv->selezione) + { + priv->wtransient = GTK_WINDOW (priv->widget); + } + else + { + priv->wtransient = GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")); + } + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button29"), + "clicked", G_CALLBACK (tipi_aggregazione_territoriale_on_btn_nuovo_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button30"), + "clicked", G_CALLBACK (tipi_aggregazione_territoriale_on_btn_modifica_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button31"), + "clicked", G_CALLBACK (tipi_aggregazione_territoriale_on_btn_elimina_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview5"), + "row-activated", G_CALLBACK (tipi_aggregazione_territoriale_on_trv_tipi_aggregazione_territoriale_row_activated), (gpointer)a); + + if (priv->selezione) + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "label26"))); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button32"), + "clicked", G_CALLBACK (tipi_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button33"), + "clicked", G_CALLBACK (tipi_aggregazione_territoriale_on_btn_seleziona_clicked), (gpointer)a); + } + else + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button32"))); + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button33"))); + } + + tipi_aggregazione_territoriale_carica (a); + + return a; +} + +/** + * tipi_aggregazione_territoriale_get_widget: + * @tipi_aggregazione_territoriale: + * + */ +GtkWidget +*tipi_aggregazione_territoriale_get_widget (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale) +{ + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + return priv->widget; +} + +/* PRIVATE */ +static void +tipi_aggregazione_territoriale_carica (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale) +{ + GtkTreeIter iter; + GdaDataModel *dm; + + gint rows; + gint row; + + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + gtk_list_store_clear (priv->lstore_tipi_aggregazione_territoriale); + + dm = gdaex_query (priv->commons->gdaex, + "SELECT c.id, c.nome" + " FROM tipi_aggregazione_territoriale 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_tipi_aggregazione_territoriale, &iter); + + gtk_list_store_set (priv->lstore_tipi_aggregazione_territoriale, &iter, + COL_ID, gdaex_data_model_get_field_value_stringify_at (dm, row, "id"), + COL_NOME, gdaex_data_model_get_field_value_stringify_at (dm, row, "nome"), + -1); + } + + g_object_unref (dm); + } +} + +static void +tipi_aggregazione_territoriale_modifica (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale) +{ + GtkTreeIter iter; + gchar *id; + + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + GtkWidget *w; + + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_aggregazione_territoriale), &iter, + COL_ID, &id, + -1); + + TipoAggregazioneTerritoriale *c = tipo_aggregazione_territoriale_new (priv->commons, strtol (id, NULL, 10)); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (tipi_aggregazione_territoriale_on_tipo_aggregazione_territoriale_aggiornato), (gpointer)tipi_aggregazione_territoriale); + + w = tipo_aggregazione_territoriale_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 tipo aggregazione territoriale"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_aggregazione_territoriale_selezionato (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale) +{ + GtkTreeIter iter; + gchar *id; + + TipiAggregazioneTerritorialeClass *klass = TIPI_AGGREGAZIONE_TERRITORIALE_GET_CLASS (tipi_aggregazione_territoriale); + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_aggregazione_territoriale), &iter, + COL_ID, &id, + -1); + + g_signal_emit (G_OBJECT (tipi_aggregazione_territoriale), klass->selezionato_signal_id, 0, strtol (id, NULL, 10)); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (tipi_aggregazione_territoriale)); + } + else + { + GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un tipo aggregazione territoriale"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_aggregazione_territoriale_on_tipo_aggregazione_territoriale_aggiornato (gpointer instance, gpointer user_data) +{ + tipi_aggregazione_territoriale_carica ((TipiAggregazioneTerritoriale *)user_data); +} + +static void +tipi_aggregazione_territoriale_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale = TIPI_AGGREGAZIONE_TERRITORIALE (object); + + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +tipi_aggregazione_territoriale_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale = TIPI_AGGREGAZIONE_TERRITORIALE (object); + + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +/* CALLBACK */ +static void +tipi_aggregazione_territoriale_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *w; + + TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale = (TipiAggregazioneTerritoriale *)user_data; + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + TipoAggregazioneTerritoriale *c = tipo_aggregazione_territoriale_new (priv->commons, 0); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (tipi_aggregazione_territoriale_on_tipo_aggregazione_territoriale_aggiornato), (gpointer)tipi_aggregazione_territoriale); + + w = tipo_aggregazione_territoriale_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient); + gtk_widget_show (w); +} + +static void +tipi_aggregazione_territoriale_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data) +{ + tipi_aggregazione_territoriale_modifica ((TipiAggregazioneTerritoriale *)user_data); +} + +static void +tipi_aggregazione_territoriale_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *dialog; + gboolean risp; + + GtkTreeIter iter; + gchar *id; + + TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale = (TipiAggregazioneTerritoriale *)user_data; + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipi_aggregazione_territoriale); + + 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 aggregazione territoriale selezionato?"); + risp = gtk_dialog_run (GTK_DIALOG (dialog)); + if (risp == GTK_RESPONSE_YES) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_aggregazione_territoriale), &iter, + COL_ID, &id, + -1); + + gdaex_execute (priv->commons->gdaex, + g_strdup_printf ("UPDATE tipi_aggregazione_territoriale SET status = 'E' WHERE id = %s", id)); + + tipi_aggregazione_territoriale_carica (tipi_aggregazione_territoriale); + } + 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 tipo aggregazione territoriale"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_aggregazione_territoriale_on_trv_tipi_aggregazione_territoriale_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data) +{ + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE ((TipiAggregazioneTerritoriale *)user_data); + + if (priv->selezione) + { + tipi_aggregazione_territoriale_selezionato ((TipiAggregazioneTerritoriale *)user_data); + } + else + { + tipi_aggregazione_territoriale_modifica ((TipiAggregazioneTerritoriale *)user_data); + } +} + + +static void +tipi_aggregazione_territoriale_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + TipiAggregazioneTerritorialePrivate *priv = TIPI_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE ((TipiAggregazioneTerritoriale *)user_data); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (user_data)); +} + +static void +tipi_aggregazione_territoriale_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data) +{ + tipi_aggregazione_territoriale_selezionato ((TipiAggregazioneTerritoriale *)user_data); +} diff --git a/src/tipiaggregazioneterritoriale.h b/src/tipiaggregazioneterritoriale.h new file mode 100644 index 0000000..d28e414 --- /dev/null +++ b/src/tipiaggregazioneterritoriale.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 __TIPI_AGGREGAZIONE_TERRITORIALE_H__ +#define __TIPI_AGGREGAZIONE_TERRITORIALE_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_TIPI_AGGREGAZIONE_TERRITORIALE (tipi_aggregazione_territoriale_get_type ()) +#define TIPI_AGGREGAZIONE_TERRITORIALE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE, TipiAggregazioneTerritoriale)) +#define TIPI_AGGREGAZIONE_TERRITORIALE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE, TipiAggregazioneTerritorialeClass)) +#define IS_TIPI_AGGREGAZIONE_TERRITORIALE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE)) +#define IS_TIPI_AGGREGAZIONE_TERRITORIALE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE)) +#define TIPI_AGGREGAZIONE_TERRITORIALE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_TIPI_AGGREGAZIONE_TERRITORIALE, TipiAggregazioneTerritorialeClass)) + + +typedef struct _TipiAggregazioneTerritoriale TipiAggregazioneTerritoriale; +typedef struct _TipiAggregazioneTerritorialeClass TipiAggregazioneTerritorialeClass; + +struct _TipiAggregazioneTerritoriale + { + GObject parent; + }; + +struct _TipiAggregazioneTerritorialeClass + { + GObjectClass parent_class; + + guint selezionato_signal_id; + }; + +GType tipi_aggregazione_territoriale_get_type (void) G_GNUC_CONST; + +TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale_new (Commons *commons, gboolean selezione); + +GtkWidget *tipi_aggregazione_territoriale_get_widget (TipiAggregazioneTerritoriale *tipi_aggregazione_territoriale); + + +G_END_DECLS + +#endif /* __TIPI_AGGREGAZIONE_TERRITORIALE_H__ */ diff --git a/src/tipoaggregazioneterritoriale.c b/src/tipoaggregazioneterritoriale.c new file mode 100644 index 0000000..fc63131 --- /dev/null +++ b/src/tipoaggregazioneterritoriale.c @@ -0,0 +1,338 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 + +#include "tipoaggregazioneterritoriale.h" + +static void tipo_aggregazione_territoriale_class_init (TipoAggregazioneTerritorialeClass *klass); +static void tipo_aggregazione_territoriale_init (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale); + +static void tipo_aggregazione_territoriale_carica (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale); +static void tipo_aggregazione_territoriale_salva (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale); + +static gboolean tipo_aggregazione_territoriale_conferma_chiusura (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale); + +static void tipo_aggregazione_territoriale_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void tipo_aggregazione_territoriale_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static gboolean tipo_aggregazione_territoriale_on_w_tipo_aggregazione_territoriale_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +static void tipo_aggregazione_territoriale_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void tipo_aggregazione_territoriale_on_btn_salva_clicked (GtkButton *button, + gpointer user_data); + +#define TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE, TipoAggregazioneTerritorialePrivate)) + +enum +{ + LBL_ID +}; + +typedef struct _TipoAggregazioneTerritorialePrivate TipoAggregazioneTerritorialePrivate; +struct _TipoAggregazioneTerritorialePrivate + { + Commons *commons; + + GtkForm *form; + + GtkWidget *w; + + GObject **objects; + + gint id; + }; + +G_DEFINE_TYPE (TipoAggregazioneTerritoriale, tipo_aggregazione_territoriale, G_TYPE_OBJECT) + +static void +tipo_aggregazione_territoriale_class_init (TipoAggregazioneTerritorialeClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (TipoAggregazioneTerritorialePrivate)); + + object_class->set_property = tipo_aggregazione_territoriale_set_property; + object_class->get_property = tipo_aggregazione_territoriale_get_property; + + /** + * TipoAggregazioneTerritoriale::aggiornato: + * @tipo_aggregazione_territoriale: + * + */ + klass->aggiornato_signal_id = g_signal_new ("aggiornato", + G_TYPE_FROM_CLASS (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); +} + +static void +tipo_aggregazione_territoriale_init (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale) +{ + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); +} + +/** + * tipo_aggregazione_territoriale_new: + * @commons: + * @id: + * + * Returns: the newly created #TipoAggregazioneTerritoriale object. + */ +TipoAggregazioneTerritoriale +*tipo_aggregazione_territoriale_new (Commons *commons, gint id) +{ + GError *error; + + TipoAggregazioneTerritoriale *a = TIPO_AGGREGAZIONE_TERRITORIALE (g_object_new (tipo_aggregazione_territoriale_get_type (), NULL)); + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (a); + + priv->commons = commons; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit (g_strconcat ("w_tipo_aggregazione_territoriale", NULL), "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s.", error->message); + return NULL; + } + + 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, "tipo_aggregazione_territoriale.form", NULL), priv->commons->gtkbuilder); + + priv->w = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_tipo_aggregazione_territoriale")); + + priv->objects = gtk_form_get_objects_by_name (priv->form, + "label28", + NULL); + + g_signal_connect (priv->w, + "delete-event", G_CALLBACK (tipo_aggregazione_territoriale_on_w_tipo_aggregazione_territoriale_delete_event), (gpointer *)a); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button34"), + "clicked", G_CALLBACK (tipo_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer *)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button35"), + "clicked", G_CALLBACK (tipo_aggregazione_territoriale_on_btn_salva_clicked), (gpointer *)a); + + priv->id = id; + + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), ""); + + gtk_form_set_as_origin (priv->form); + } + else + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), g_strdup_printf ("%d", priv->id)); + tipo_aggregazione_territoriale_carica (a); + } + + return a; +} + +/** + * tipo_aggregazione_territoriale_get_widget: + * @tipo_aggregazione_territoriale: + * + */ +GtkWidget +*tipo_aggregazione_territoriale_get_widget (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale) +{ + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + return priv->w; +} + +/* PRIVATE */ +static void +tipo_aggregazione_territoriale_carica (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale) +{ + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + if (gtk_form_fill_from_table (priv->form)) + { + } +} + +static void +tipo_aggregazione_territoriale_salva (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale) +{ + GError *error = NULL; + gchar *sql; + GtkWidget *dialog; + + GDate *da; + GDate *a; + + TipoAggregazioneTerritorialeClass *klass = TIPO_AGGREGAZIONE_TERRITORIALE_GET_CLASS (tipo_aggregazione_territoriale); + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + if (!gtk_form_check (priv->form, (priv->id != 0), NULL, TRUE, priv->w, TRUE)) + { + return; + } + + if (priv->id == 0) + { + sql = gtk_form_get_sql (priv->form, GTK_FORM_SQL_INSERT); + } + else + { + sql = gtk_form_get_sql (priv->form, GTK_FORM_SQL_UPDATE); + } + + if (gdaex_execute (priv->commons->gdaex, sql) == 1) + { + g_signal_emit (tipo_aggregazione_territoriale, klass->aggiornato_signal_id, 0); + + gtk_form_set_as_origin (priv->form); + + if (priv->id == 0) + { + priv->id = strtol (gtk_label_get_text (GTK_LABEL (priv->objects[LBL_ID])), NULL, 10); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_INFO, + GTK_BUTTONS_OK, + "Salvataggio eseguito con successo."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } + else + { + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), ""); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Errore durante il salvataggio."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipo_aggregazione_territoriale_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale = TIPO_AGGREGAZIONE_TERRITORIALE (object); + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +tipo_aggregazione_territoriale_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale = TIPO_AGGREGAZIONE_TERRITORIALE (object); + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static gboolean +tipo_aggregazione_territoriale_conferma_chiusura (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale) +{ + GtkWidget *dialog; + + gboolean ret; + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + ret = TRUE; + if (gtk_form_is_changed (priv->form)) + { + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + "Sicuro di voler chiudere senza salvare?"); + if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_NO) + { + ret = FALSE; + } + gtk_widget_destroy (dialog); + } + + return ret; +} + +/* CALLBACK */ +static gboolean +tipo_aggregazione_territoriale_on_w_tipo_aggregazione_territoriale_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + return !tipo_aggregazione_territoriale_conferma_chiusura ((TipoAggregazioneTerritoriale *)user_data); +} + +static void +tipo_aggregazione_territoriale_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale = (TipoAggregazioneTerritoriale *)user_data; + + TipoAggregazioneTerritorialePrivate *priv = TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (tipo_aggregazione_territoriale); + + if (tipo_aggregazione_territoriale_conferma_chiusura (tipo_aggregazione_territoriale)) gtk_widget_destroy (priv->w); +} + +static void +tipo_aggregazione_territoriale_on_btn_salva_clicked (GtkButton *button, + gpointer user_data) +{ + tipo_aggregazione_territoriale_salva ((TipoAggregazioneTerritoriale *)user_data); +} diff --git a/src/tipoaggregazioneterritoriale.h b/src/tipoaggregazioneterritoriale.h new file mode 100644 index 0000000..2d1144e --- /dev/null +++ b/src/tipoaggregazioneterritoriale.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 __TIPO_AGGREGAZIONE_TERRITORIALE_H__ +#define __TIPO_AGGREGAZIONE_TERRITORIALE_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_TIPO_AGGREGAZIONE_TERRITORIALE (tipo_aggregazione_territoriale_get_type ()) +#define TIPO_AGGREGAZIONE_TERRITORIALE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE, TipoAggregazioneTerritoriale)) +#define TIPO_AGGREGAZIONE_TERRITORIALE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE, TipoAggregazioneTerritorialeClass)) +#define IS_TIPO_AGGREGAZIONE_TERRITORIALE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE)) +#define IS_TIPO_AGGREGAZIONE_TERRITORIALE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE)) +#define TIPO_AGGREGAZIONE_TERRITORIALE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_TIPO_AGGREGAZIONE_TERRITORIALE, TipoAggregazioneTerritorialeClass)) + + +typedef struct _TipoAggregazioneTerritoriale TipoAggregazioneTerritoriale; +typedef struct _TipoAggregazioneTerritorialeClass TipoAggregazioneTerritorialeClass; + +struct _TipoAggregazioneTerritoriale + { + GObject parent; + }; + +struct _TipoAggregazioneTerritorialeClass + { + GObjectClass parent_class; + + guint aggiornato_signal_id; + }; + +GType tipo_aggregazione_territoriale_get_type (void) G_GNUC_CONST; + +TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale_new (Commons *commons, gint id); + +GtkWidget *tipo_aggregazione_territoriale_get_widget (TipoAggregazioneTerritoriale *tipo_aggregazione_territoriale); + + +G_END_DECLS + +#endif /* __TIPO_AGGREGAZIONE_TERRITORIALE_H__ */