From: Andrea Zagli Date: Thu, 18 Aug 2011 14:47:04 +0000 (+0200) Subject: Aggiunte le funzioni TerritorioProvincia::is_in_regione, X-Git-Tag: gtk3~11 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=948e46045c85d8cb8c150bdfc5f989158b95e114;p=solipa%2Fterritorio Aggiunte le funzioni TerritorioProvincia::is_in_regione, TerritorioComune::is_in_provincia, TerritoriVia::is_in_comune. Aggiunti i controlli di coerenza nel widget. --- diff --git a/src/comune.c b/src/comune.c index b62ec02..7c648bd 100644 --- a/src/comune.c +++ b/src/comune.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -214,6 +214,38 @@ GtkWidget return priv->w; } +gboolean +territorio_comune_is_in_provincia (TerritorioCommons *commons, guint id_comuni, guint id_province) +{ + gchar *sql; + GdaDataModel *dm; + + gboolean ret; + + ret = FALSE; + + sql = g_strdup_printf ("SELECT id" + " FROM comuni" + " WHERE id = %d" + " AND id_province = %d" + " AND status <> 'E'", + id_comuni, + id_province); + dm = gdaex_query (commons->gdaex, sql); + g_free (sql); + if (dm != NULL) + { + if (gda_data_model_get_n_rows (dm) > 0) + { + ret = TRUE; + } + + g_object_unref (dm); + } + + return ret; +} + /* PRIVATE */ static void territorio_comune_carica (TerritorioComune *territorio_comune) diff --git a/src/comune.h b/src/comune.h index df8fd27..2b02cc0 100644 --- a/src/comune.h +++ b/src/comune.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -59,6 +59,8 @@ TerritorioComune *territorio_comune_new (TerritorioCommons *commons, gint id); GtkWidget *territorio_comune_get_widget (TerritorioComune *territorio_comune); +gboolean territorio_comune_is_in_provincia (TerritorioCommons *commons, guint id_comuni, guint id_province); + G_END_DECLS diff --git a/src/provincia.c b/src/provincia.c index 907ebe6..aab32c3 100644 --- a/src/provincia.c +++ b/src/provincia.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -214,6 +214,38 @@ GtkWidget return priv->w; } +gboolean +territorio_provincia_is_in_regione (TerritorioCommons *commons, guint id_province, guint id_regioni) +{ + gchar *sql; + GdaDataModel *dm; + + gboolean ret; + + ret = FALSE; + + sql = g_strdup_printf ("SELECT id" + " FROM province" + " WHERE id = %d" + " AND id_regioni = %d" + " AND status <> 'E'", + id_province, + id_regioni); + dm = gdaex_query (commons->gdaex, sql); + g_free (sql); + if (dm != NULL) + { + if (gda_data_model_get_n_rows (dm) > 0) + { + ret = TRUE; + } + + g_object_unref (dm); + } + + return ret; +} + /* PRIVATE */ static void territorio_provincia_carica (TerritorioProvincia *territorio_provincia) diff --git a/src/provincia.h b/src/provincia.h index ee21fe2..d4ba1dd 100644 --- a/src/provincia.h +++ b/src/provincia.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -59,6 +59,8 @@ TerritorioProvincia *territorio_provincia_new (TerritorioCommons *commons, gint GtkWidget *territorio_provincia_get_widget (TerritorioProvincia *territorio_provincia); +gboolean territorio_provincia_is_in_regione (TerritorioCommons *commons, guint id_province, guint id_regioni); + G_END_DECLS diff --git a/src/via.c b/src/via.c index 22bf794..909cdbb 100644 --- a/src/via.c +++ b/src/via.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -219,6 +219,38 @@ GtkWidget return priv->w; } +gboolean +territorio_via_is_in_comune (TerritorioCommons *commons, guint id_vie, guint id_comuni) +{ + gchar *sql; + GdaDataModel *dm; + + gboolean ret; + + ret = FALSE; + + sql = g_strdup_printf ("SELECT id" + " FROM vie" + " WHERE id = %d" + " AND id_comuni = %d" + " AND status <> 'E'", + id_vie, + id_comuni); + dm = gdaex_query (commons->gdaex, sql); + g_free (sql); + if (dm != NULL) + { + if (gda_data_model_get_n_rows (dm) > 0) + { + ret = TRUE; + } + + g_object_unref (dm); + } + + return ret; +} + /* PRIVATE */ static void territorio_via_carica (TerritorioVia *territorio_via) diff --git a/src/via.h b/src/via.h index 935bba2..30de0a5 100644 --- a/src/via.h +++ b/src/via.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -59,6 +59,8 @@ TerritorioVia *territorio_via_new (TerritorioCommons *commons, gint id); GtkWidget *territorio_via_get_widget (TerritorioVia *territorio_via); +gboolean territorio_via_is_in_comune (TerritorioCommons *commons, guint id_vie, guint id_comuni); + G_END_DECLS diff --git a/src/widget.c b/src/widget.c index d2842cb..541b2d2 100644 --- a/src/widget.c +++ b/src/widget.c @@ -82,6 +82,8 @@ static void territorio_widget_get_property (GObject *object, static void territorio_widget_set_transient (TerritorioWidget *twidget); +static void territorio_widget_controllo_coerenza (TerritorioWidget *widget); + static void territorio_widget_on_stato_aggiornato (gpointer instance, gpointer user_data); static void territorio_widget_on_regione_aggiornato (gpointer instance, gpointer user_data); static void territorio_widget_on_provincia_aggiornato (gpointer instance, gpointer user_data); @@ -933,6 +935,37 @@ territorio_widget_set_transient (TerritorioWidget *twidget) } } +static void +territorio_widget_controllo_coerenza (TerritorioWidget *widget) +{ + TerritorioWidgetPrivate *priv = TERRITORIO_WIDGET_GET_PRIVATE (widget); + + if (strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_regione)), NULL, 10) > 0 + && !territorio_provincia_is_in_regione (priv->commons, + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_provincia)), NULL, 10), + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_regione)), NULL, 10))) + { + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_provincia), "0"); + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_comune), "0"); + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_via), "0"); + } + else if (strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_provincia)), NULL, 10) > 0 + && !territorio_comune_is_in_provincia (priv->commons, + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_comune)), NULL, 10), + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_provincia)), NULL, 10))) + { + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_comune), "0"); + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_via), "0"); + } + else if (strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_comune)), NULL, 10) > 0 + && !territorio_via_is_in_comune (priv->commons, + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_via)), NULL, 10), + strtol (gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_comune)), NULL, 10))) + { + gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_via), "0"); + } +} + /* CALLBACK */ static void territorio_widget_on_stato_aggiornato (gpointer instance, gpointer user_data) @@ -952,6 +985,8 @@ territorio_widget_on_regione_aggiornato (gpointer instance, gpointer user_data) gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_regione), gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_regione))); + + territorio_widget_controllo_coerenza (f); } static void @@ -962,6 +997,8 @@ territorio_widget_on_provincia_aggiornato (gpointer instance, gpointer user_data gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_provincia), gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_provincia))); + + territorio_widget_controllo_coerenza (f); } static void @@ -972,6 +1009,8 @@ territorio_widget_on_comune_aggiornato (gpointer instance, gpointer user_data) gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_comune), gtk_form_decoder_get_key (GTK_FORM_DECODER (priv->dec_comune))); + + territorio_widget_controllo_coerenza (f); } static void @@ -1000,6 +1039,8 @@ territorio_widget_on_regione_selezionato (gpointer instance, guint id, gpointer TerritorioWidgetPrivate *priv = TERRITORIO_WIDGET_GET_PRIVATE (f); gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_regione), g_strdup_printf ("%d", id)); + + territorio_widget_controllo_coerenza (f); } static void @@ -1009,6 +1050,8 @@ territorio_widget_on_provincia_selezionato (gpointer instance, guint id, gpointe TerritorioWidgetPrivate *priv = TERRITORIO_WIDGET_GET_PRIVATE (f); gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_provincia), g_strdup_printf ("%d", id)); + + territorio_widget_controllo_coerenza (f); } static void @@ -1018,6 +1061,8 @@ territorio_widget_on_comune_selezionato (gpointer instance, guint id, gpointer u TerritorioWidgetPrivate *priv = TERRITORIO_WIDGET_GET_PRIVATE (f); gtk_form_decoder_set_key (GTK_FORM_DECODER (priv->dec_comune), g_strdup_printf ("%d", id)); + + territorio_widget_controllo_coerenza (f); } static void