]> saetta.ns0.it Git - solipa/territorio/commitdiff
Aggiustamenti all'import vie da civilia.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 26 Jan 2012 16:04:46 +0000 (17:04 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 26 Jan 2012 16:04:46 +0000 (17:04 +0100)
Migrazione a solipa_message_dialog.

18 files changed:
src/aggregazioneterritoriale.c
src/aggregazioniterritoriali.c
src/comune.c
src/comuni.c
src/importacapcomuniitaliani.c
src/importacomuniistat.c
src/importaregioniprovinceistat.c
src/importaviecivilia.c
src/province.c
src/provincia.c
src/regione.c
src/regioni.c
src/stati.c
src/stato.c
src/tipiaggregazioneterritoriale.c
src/tipoaggregazioneterritoriale.c
src/via.c
src/vie.c

index 272997eee1f280b60b63368db112ca4967f18b65..c9934171e0f4295f62d69c4e7f6f21795335e5e9 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "aggregazioneterritoriale.h"
 
@@ -201,12 +202,7 @@ territorio_aggregazione_territoriale_carica (TerritorioAggregazioneTerritoriale
 static void
 territorio_aggregazione_territoriale_salva (TerritorioAggregazioneTerritoriale *territorio_aggregazione_territoriale)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioAggregazioneTerritorialeClass *klass = TERRITORIO_AGGREGAZIONE_TERRITORIALE_GET_CLASS (territorio_aggregazione_territoriale);
 
@@ -237,13 +233,10 @@ territorio_aggregazione_territoriale_salva (TerritorioAggregazioneTerritoriale *
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -252,13 +245,10 @@ territorio_aggregazione_territoriale_salva (TerritorioAggregazioneTerritoriale *
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
index 6cfee4d025bef8e6f35eae51231dd38b965749ff..b2c1d9c210aecf7fef1b13a3fc269b06282954f9 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -18,6 +18,7 @@
  */
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "aggregazioniterritoriali.h"
 #include "aggregazioneterritoriale.h"
@@ -431,9 +432,6 @@ territorio_aggregazioni_territoriali_on_btn_elimina_clicked (GtkButton *button,
 {
        AutozIResource *ires1;
 
-       GtkWidget *dialog;
-       gboolean risp;
-
        GtkTreeIter iter;
        gchar *id;
 
@@ -452,13 +450,10 @@ territorio_aggregazioni_territoriali_on_btn_elimina_clicked (GtkButton *button,
                                        return;
                                }
 
-                       dialog = gtk_message_dialog_new (priv->wtransient,
-                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                        GTK_MESSAGE_QUESTION,
-                                                        GTK_BUTTONS_YES_NO,
-                                                        "Sicuro di voler eliminare l'aggregazione territoriale selezionata?");
-                       risp = gtk_dialog_run (GTK_DIALOG (dialog));
-                       if (risp == GTK_RESPONSE_YES)
+                       if (solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler eliminare l'aggregazione territoriale selezionata?") == GTK_RESPONSE_YES)
                                {
                                        gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_aggregazioni_territoriali), &iter,
                                                            COL_ID, &id,
@@ -469,7 +464,6 @@ territorio_aggregazioni_territoriali_on_btn_elimina_clicked (GtkButton *button,
 
                                        territorio_aggregazioni_territoriali_carica (territorio_aggregazioni_territoriali);
                                }
-                       gtk_widget_destroy (dialog);
                }
        else
                {
index 108a42358f2173da06dcfc90842534916efdf5cd..4f5f3256ecc5ebf2fc5b212c97ff7215b8de4cb3 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "comune.h"
 #include "widget.h"
@@ -290,12 +291,7 @@ territorio_comune_carica (TerritorioComune *territorio_comune)
 static void
 territorio_comune_salva (TerritorioComune *territorio_comune)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioComuneClass *klass = TERRITORIO_COMUNE_GET_CLASS (territorio_comune);
 
@@ -326,13 +322,10 @@ territorio_comune_salva (TerritorioComune *territorio_comune)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -341,13 +334,10 @@ territorio_comune_salva (TerritorioComune *territorio_comune)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
index 6ab286be0b4e5f16a5e1cb13da86c1dcc9e31762..081cc4cdb61f67c23edd1716daa04ce463ad2b14 100644 (file)
@@ -362,13 +362,10 @@ territorio_comuni_modifica (TerritorioComuni *territorio_comuni)
                }
        else
                {
-                       GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient,
-                                                                   GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                   GTK_MESSAGE_WARNING,
-                                                                   GTK_BUTTONS_OK,
-                                                                   "Occorre prima selezionare un comune.");
-                       gtk_dialog_run (GTK_DIALOG (dialog));
-                       gtk_widget_destroy (dialog);
+                       solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Occorre prima selezionare un comune.");
                }
 }
 
@@ -394,13 +391,10 @@ territorio_comuni_selezionato (TerritorioComuni *territorio_comuni)
                }
        else
                {
-                       GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient,
-                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                        GTK_MESSAGE_WARNING,
-                                                        GTK_BUTTONS_OK,
-                                                        "Occorre prima selezionare un comune.");
-                       gtk_dialog_run (GTK_DIALOG (dialog));
-                       gtk_widget_destroy (dialog);
+                       solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Occorre prima selezionare un comune.");
                }
 }
 
@@ -537,9 +531,6 @@ static void
 territorio_comuni_on_btn_elimina_clicked (GtkButton *button,
                         gpointer user_data)
 {
-       GtkWidget *dialog;
-       gboolean risp;
-
        GtkTreeIter iter;
        guint id;
 
@@ -574,30 +565,23 @@ territorio_comuni_on_btn_elimina_clicked (GtkButton *button,
                                        return;
                                }
 
-                       dialog = gtk_message_dialog_new (priv->wtransient,
-                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                        GTK_MESSAGE_QUESTION,
-                                                        GTK_BUTTONS_YES_NO,
-                                                        "Sicuro di voler eliminare il comune selezionato?");
-                       risp = gtk_dialog_run (GTK_DIALOG (dialog));
-                       if (risp == GTK_RESPONSE_YES)
+                       if (solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler eliminare il comune selezionato?") == GTK_RESPONSE_YES)
                                {
                                        gdaex_execute (priv->commons->gdaex,
                                                       g_strdup_printf ("UPDATE comuni SET status = 'E' WHERE id = %d", id));
 
                                        territorio_comuni_carica (territorio_comuni);
                                }
-                       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 comune");
-                       gtk_dialog_run (GTK_DIALOG (dialog));
-                       gtk_widget_destroy (dialog);
+                       solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Occorre prima selezionare un comune");
                }
 }
 
index d57dc2cd5962b6fa67beb2a511cf899f46054669..cb0fb006733e9d8cb80c86b873fcc64c721e4bfa 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libsolipa/libsolipa.h>
+
 #include "importacapcomuniitaliani.h"
 
 static void territorio_importa_capcomuniitaliani_class_init (TerritorioImportaCapComuniItalianiClass *klass);
@@ -90,8 +92,6 @@ TerritorioImportaCapComuniItaliani
                        GError *error;
                        GSList *errors;
 
-                       GtkWidget *dialog;
-
                        gint row;
                        gint rows;
 
@@ -119,13 +119,10 @@ TerritorioImportaCapComuniItaliani
                        dm = gda_data_model_import_new_file (filename, TRUE, plist);
                        if (dm == NULL)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Errore durante l'importazione del file: %s.", filename));
                                        return NULL;
                                }
 
@@ -139,13 +136,10 @@ TerritorioImportaCapComuniItaliani
                                                        errors = g_slist_next (errors);
                                                }
 
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file.");
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              "Errore durante l'importazione del file.");
                                        return NULL;
                                }
 
@@ -153,13 +147,10 @@ TerritorioImportaCapComuniItaliani
                        g_message ("Numero di record: %d.", rows);
                        if (rows < 1)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Nessuna informazione da importare nel file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Nessuna informazione da importare nel file: %s.", filename));
                                        return NULL;
                                }
 
index fa7f1ddad7538424e7644c5b7a1b8f29bb57dba5..44feeee1b5cf9730b5471155ebb98a5897d14928 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libsolipa/libsolipa.h>
+
 #include "importacomuniistat.h"
 
 static void territorio_importa_comuniistat_class_init (TerritorioImportaComuniIstatClass *klass);
@@ -90,8 +92,6 @@ TerritorioImportaComuniIstat
                        GError *error;
                        GSList *errors;
 
-                       GtkWidget *dialog;
-
                        gint row;
                        gint rows;
 
@@ -134,13 +134,10 @@ TerritorioImportaComuniIstat
                        dm = gda_data_model_import_new_file (filename, TRUE, plist);
                        if (dm == NULL)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Errore durante l'importazione del file: %s.", filename));
                                        return NULL;
                                }
 
@@ -154,13 +151,10 @@ TerritorioImportaComuniIstat
                                                        errors = g_slist_next (errors);
                                                }
 
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file.");
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              "Errore durante l'importazione del file.");
                                        return NULL;
                                }
 
@@ -168,13 +162,10 @@ TerritorioImportaComuniIstat
                        g_message ("Numero di record: %d.", rows);
                        if (rows < 1)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Nessuna informazione da importare nel file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Nessuna informazione da importare nel file: %s.", filename));
                                        return NULL;
                                }
 
@@ -264,7 +255,6 @@ static void
 territorio_importa_comuniistat_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaComuniIstat *territorio_importa_comuniistat = TERRITORIO_IMPORTA_COMUNIISTAT (object);
-
        TerritorioImportaComuniIstatPrivate *priv = TERRITORIO_IMPORTA_COMUNIISTAT_GET_PRIVATE (territorio_importa_comuniistat);
 
        switch (property_id)
@@ -279,7 +269,6 @@ static void
 territorio_importa_comuniistat_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaComuniIstat *territorio_importa_comuniistat = TERRITORIO_IMPORTA_COMUNIISTAT (object);
-
        TerritorioImportaComuniIstatPrivate *priv = TERRITORIO_IMPORTA_COMUNIISTAT_GET_PRIVATE (territorio_importa_comuniistat);
 
        switch (property_id)
index 6c03dbef1a024e1486f437a3c7cb8a6235666405..89bc8c56ef7c81e9c8ca8add8a532e36f07c87fb 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libsolipa/libsolipa.h>
+
 #include "importaregioniprovinceistat.h"
 
 static void territorio_importa_regioniprovinceistat_class_init (TerritorioImportaRegioniProvinceIstatClass *klass);
@@ -90,8 +92,6 @@ TerritorioImportaRegioniProvinceIstat
                        GError *error;
                        GSList *errors;
 
-                       GtkWidget *dialog;
-
                        gint row;
                        gint rows;
 
@@ -126,13 +126,10 @@ TerritorioImportaRegioniProvinceIstat
                        dm = gda_data_model_import_new_file (filename, TRUE, plist);
                        if (dm == NULL)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Errore durante l'importazione del file: %s.", filename));
                                        return NULL;
                                }
                        /*gda_data_model_dump (dm, stderr);*/
@@ -147,13 +144,10 @@ TerritorioImportaRegioniProvinceIstat
                                                        errors = g_slist_next (errors);
                                                }
 
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Errore durante l'importazione del file.");
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              "Errore durante l'importazione del file.");
                                        return NULL;
                                }
 
@@ -161,13 +155,10 @@ TerritorioImportaRegioniProvinceIstat
                        g_message ("Numero di record: %d.", rows);
                        if (rows < 1)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Nessuna informazione da importare nel file: %s.", filename);
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              g_strdup_printf ("Nessuna informazione da importare nel file: %s.", filename));
                                        return NULL;
                                }
 
@@ -284,7 +275,6 @@ static void
 territorio_importa_regioniprovinceistat_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaRegioniProvinceIstat *territorio_importa_regioniprovinceistat = TERRITORIO_IMPORTA_REGIONIPROVINCEISTAT (object);
-
        TerritorioImportaRegioniProvinceIstatPrivate *priv = TERRITORIO_IMPORTA_REGIONIPROVINCEISTAT_GET_PRIVATE (territorio_importa_regioniprovinceistat);
 
        switch (property_id)
@@ -299,7 +289,6 @@ static void
 territorio_importa_regioniprovinceistat_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaRegioniProvinceIstat *territorio_importa_regioniprovinceistat = TERRITORIO_IMPORTA_REGIONIPROVINCEISTAT (object);
-
        TerritorioImportaRegioniProvinceIstatPrivate *priv = TERRITORIO_IMPORTA_REGIONIPROVINCEISTAT_GET_PRIVATE (territorio_importa_regioniprovinceistat);
 
        switch (property_id)
index 90cd7c172603abc4ac26be478916350396b08fbc..5d737bfe29710eed1e1863d2977b4d99a0bcfcf5 100644 (file)
@@ -129,13 +129,10 @@ TerritorioImportaVieCivilia
                        gtk_widget_destroy (dialog);
                        if (gdaex == NULL)
                                {
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Impossibile stabilire la connessione al database Civilia.");
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              "Impossibile stabilire la connessione al database Civilia.");
                                        return NULL;
                                }
 
@@ -184,7 +181,7 @@ TerritorioImportaVieCivilia
                                                                               " FROM vie AS v INNER JOIN comuni AS c ON v.id_comuni = c.id"
                                                                               " INNER JOIN province AS p ON c.id_province = p.id"
                                                                               " WHERE p.cod_istat || c.cod_istat = '%s'"
-                                                                              " AND v.nome = '%s'",
+                                                                              " AND UPPER(v.nome) = UPPER('%s')",
                                                                               m1_comu_cod,
                                                                               nome);
                                                        dm_territorio = gdaex_query (priv->commons->gdaex, sql);
@@ -218,27 +215,20 @@ TerritorioImportaVieCivilia
                                                                                {
                                                                                        g_free (sql);
                                                                                        g_object_unref (w_progress);
-                                                                                       dialog = gtk_message_dialog_new (w_main,
-                                                                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                                                                        GTK_MESSAGE_WARNING,
-                                                                                                                        GTK_BUTTONS_OK,
-                                                                                                                        "Errore durante il salvataggio della via: %s.",
-                                                                                                                        gdaex_data_model_iter_get_field_value_stringify_at (iter, "M1_VIA_DESC"));
-                                                                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                                                                       gtk_widget_destroy (dialog);
+                                                                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                                                                              GTK_MESSAGE_WARNING,
+                                                                                                              GTK_BUTTONS_OK,
+                                                                                                              g_strdup_printf ("Errore durante il salvataggio della via: %s.",
+                                                                                                                               gdaex_data_model_iter_get_field_value_stringify_at (iter, "M1_VIA_DESC")));
                                                                                        return NULL;
                                                                                }
                                                                        g_free (sql);
                                                                }
                                                        else
                                                                {
-                                                                       if (dm_territorio != NULL)
-                                                                               {
-                                                                                       g_object_unref (dm_territorio);
-                                                                               }
+                                                                       id_vie = gdaex_data_model_get_value_integer_at (dm_territorio, 0, 0);
 
                                                                        /* aggiorno la via */
-                                                                       id_vie = gdaex_data_model_get_value_integer_at (dm_territorio, 0, 0);
                                                                        sql = g_strdup_printf ("UPDATE vie"
                                                                                               " SET nome = '%s',"
                                                                                               " id_comuni = (SELECT c.id FROM comuni AS c INNER JOIN province AS p ON c.id_province = p.id WHERE p.cod_istat || c.cod_istat = '%s'),"
@@ -252,17 +242,16 @@ TerritorioImportaVieCivilia
                                                                                {
                                                                                        g_free (sql);
                                                                                        g_object_unref (w_progress);
-                                                                                       dialog = gtk_message_dialog_new (w_main,
-                                                                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                                                                        GTK_MESSAGE_WARNING,
-                                                                                                                        GTK_BUTTONS_OK,
-                                                                                                                        "Errore durante il salvataggio della via: %s.",
-                                                                                                                        gdaex_data_model_iter_get_field_value_stringify_at (iter, "M1_VIA_DESC"));
-                                                                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                                                                       gtk_widget_destroy (dialog);
+                                                                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                                                                              GTK_MESSAGE_WARNING,
+                                                                                                              GTK_BUTTONS_OK,
+                                                                                                              g_strdup_printf ("Errore durante il salvataggio della via: %s.",
+                                                                                                                               gdaex_data_model_iter_get_field_value_stringify_at (iter, "M1_VIA_DESC")));
                                                                                        return NULL;
                                                                                }
                                                                        g_free (sql);
+
+                                                                       g_object_unref (dm_territorio);
                                                                }
 
                                                        g_free (nome);
@@ -278,13 +267,10 @@ TerritorioImportaVieCivilia
                        else
                                {
                                        gtk_widget_destroy (dialog);
-                                       dialog = gtk_message_dialog_new (w_main,
-                                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                                        GTK_MESSAGE_WARNING,
-                                                                        GTK_BUTTONS_OK,
-                                                                        "Impossibile leggere le vie dal database Civilia selezionato.");
-                                       gtk_dialog_run (GTK_DIALOG (dialog));
-                                       gtk_widget_destroy (dialog);
+                                       solipa_message_dialog (GTK_WIDGET (w_main),
+                                                              GTK_MESSAGE_WARNING,
+                                                              GTK_BUTTONS_OK,
+                                                              "Impossibile leggere le vie dal database Civilia selezionato.");
                                        return NULL;
                                }
 
@@ -304,7 +290,6 @@ static void
 territorio_importa_viecivilia_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaVieCivilia *territorio_importa_viecivilia = TERRITORIO_IMPORTA_VIECIVILIA (object);
-
        TerritorioImportaVieCiviliaPrivate *priv = TERRITORIO_IMPORTA_VIECIVILIA_GET_PRIVATE (territorio_importa_viecivilia);
 
        switch (property_id)
@@ -319,7 +304,6 @@ static void
 territorio_importa_viecivilia_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioImportaVieCivilia *territorio_importa_viecivilia = TERRITORIO_IMPORTA_VIECIVILIA (object);
-
        TerritorioImportaVieCiviliaPrivate *priv = TERRITORIO_IMPORTA_VIECIVILIA_GET_PRIVATE (territorio_importa_viecivilia);
 
        switch (property_id)
index c9c1ab7f79587a6c707397681a7881f7ad473c9a..ff03ec9e83b595d812a1e677412e73ad178a5b77 100644 (file)
@@ -20,6 +20,7 @@
 #include <gdk/gdkkeysyms.h>
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "province.h"
 #include "provincia.h"
index ea9624a4a63b7b3c6b87fa8036b3aaec08e5c2a7..82b85351ef250b39ff68a243257d3348569e5ff0 100644 (file)
@@ -281,12 +281,7 @@ territorio_provincia_carica (TerritorioProvincia *territorio_provincia)
 static void
 territorio_provincia_salva (TerritorioProvincia *territorio_provincia)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioProvinciaClass *klass = TERRITORIO_PROVINCIA_GET_CLASS (territorio_provincia);
 
@@ -317,13 +312,10 @@ territorio_provincia_salva (TerritorioProvincia *territorio_provincia)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -332,13 +324,10 @@ territorio_provincia_salva (TerritorioProvincia *territorio_provincia)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
@@ -346,7 +335,6 @@ static void
 territorio_provincia_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioProvincia *territorio_provincia = TERRITORIO_PROVINCIA (object);
-
        TerritorioProvinciaPrivate *priv = TERRITORIO_PROVINCIA_GET_PRIVATE (territorio_provincia);
 
        switch (property_id)
@@ -361,7 +349,6 @@ static void
 territorio_provincia_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioProvincia *territorio_provincia = TERRITORIO_PROVINCIA (object);
-
        TerritorioProvinciaPrivate *priv = TERRITORIO_PROVINCIA_GET_PRIVATE (territorio_provincia);
 
        switch (property_id)
index 7b7491fe8ca48b17ed544e78e3937fae8bd60e68..f23226765200ffe33914de030d5936ea831ccf40 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "regione.h"
 
@@ -221,12 +222,7 @@ territorio_regione_carica (TerritorioRegione *territorio_regione)
 static void
 territorio_regione_salva (TerritorioRegione *territorio_regione)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioRegioneClass *klass = TERRITORIO_REGIONE_GET_CLASS (territorio_regione);
 
@@ -257,13 +253,10 @@ territorio_regione_salva (TerritorioRegione *territorio_regione)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -272,13 +265,10 @@ territorio_regione_salva (TerritorioRegione *territorio_regione)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
@@ -286,7 +276,6 @@ static void
 territorio_regione_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioRegione *territorio_regione = TERRITORIO_REGIONE (object);
-
        TerritorioRegionePrivate *priv = TERRITORIO_REGIONE_GET_PRIVATE (territorio_regione);
 
        switch (property_id)
@@ -301,7 +290,6 @@ static void
 territorio_regione_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioRegione *territorio_regione = TERRITORIO_REGIONE (object);
-
        TerritorioRegionePrivate *priv = TERRITORIO_REGIONE_GET_PRIVATE (territorio_regione);
 
        switch (property_id)
index 485420672cad85c8364e7b03659d2b3d8267d984..f3dcf1d06d64307c393d0ecf9b7105e804e0a797 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -20,6 +20,7 @@
 #include <gdk/gdkkeysyms.h>
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "regioni.h"
 #include "regione.h"
index 0404acd9a6248915fe3e3320c87fe9cab4ff0f4f..93bd436a2a9aede689e86381a98e24f977eda2a9 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -20,6 +20,7 @@
 #include <gdk/gdkkeysyms.h>
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "stati.h"
 #include "stato.h"
@@ -455,9 +456,6 @@ territorio_stati_on_btn_elimina_clicked (GtkButton *button,
 {
        AutozIResource *ires1;
 
-       GtkWidget *dialog;
-       gboolean risp;
-
        GtkTreeIter iter;
        guint id;
 
@@ -476,13 +474,10 @@ territorio_stati_on_btn_elimina_clicked (GtkButton *button,
                                        return;
                                }
 
-                       dialog = gtk_message_dialog_new (priv->wtransient,
-                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                        GTK_MESSAGE_QUESTION,
-                                                        GTK_BUTTONS_YES_NO,
-                                                        "Sicuro di voler eliminare lo stato selezionato?");
-                       risp = gtk_dialog_run (GTK_DIALOG (dialog));
-                       if (risp == GTK_RESPONSE_YES)
+                       if (solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler eliminare lo stato selezionato?") == GTK_RESPONSE_YES)
                                {
                                        gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_stati), &iter,
                                                            COL_ID, &id,
@@ -493,7 +488,6 @@ territorio_stati_on_btn_elimina_clicked (GtkButton *button,
 
                                        territorio_stati_carica (territorio_stati);
                                }
-                       gtk_widget_destroy (dialog);
                }
        else
                {
index 85d991075122d2c33803f824ea287098a9be4214..b9607cfc3a90d72dd3a340619f59fe1cad0f982e 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "stato.h"
 
@@ -221,12 +222,7 @@ territorio_stato_carica (TerritorioStato *territorio_stato)
 static void
 territorio_stato_salva (TerritorioStato *territorio_stato)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioStatoClass *klass = TERRITORIO_STATO_GET_CLASS (territorio_stato);
 
@@ -257,13 +253,10 @@ territorio_stato_salva (TerritorioStato *territorio_stato)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -272,13 +265,10 @@ territorio_stato_salva (TerritorioStato *territorio_stato)
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
@@ -286,7 +276,6 @@ static void
 territorio_stato_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioStato *territorio_stato = TERRITORIO_STATO (object);
-
        TerritorioStatoPrivate *priv = TERRITORIO_STATO_GET_PRIVATE (territorio_stato);
 
        switch (property_id)
@@ -301,7 +290,6 @@ static void
 territorio_stato_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioStato *territorio_stato = TERRITORIO_STATO (object);
-
        TerritorioStatoPrivate *priv = TERRITORIO_STATO_GET_PRIVATE (territorio_stato);
 
        switch (property_id)
index 2dee4193a3a9cd0ed20006b8d0d04fe4dfb09602..e23d0832ce65262ae53e349daf1f60e2aab4dbc1 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -18,6 +18,7 @@
  */
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "tipiaggregazioneterritoriale.h"
 #include "tipoaggregazioneterritoriale.h"
@@ -428,9 +429,6 @@ territorio_tipi_aggregazione_territoriale_on_btn_elimina_clicked (GtkButton *but
 {
        AutozIResource *ires1;
 
-       GtkWidget *dialog;
-       gboolean risp;
-
        GtkTreeIter iter;
        gchar *id;
 
@@ -449,13 +447,10 @@ territorio_tipi_aggregazione_territoriale_on_btn_elimina_clicked (GtkButton *but
                                        return;
                                }
 
-                       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)
+                       if (solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler eliminare il tipo aggregazione territoriale selezionato?") == GTK_RESPONSE_YES)
                                {
                                        gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_aggregazione_territoriale), &iter,
                                                            COL_ID, &id,
@@ -466,7 +461,6 @@ territorio_tipi_aggregazione_territoriale_on_btn_elimina_clicked (GtkButton *but
 
                                        territorio_tipi_aggregazione_territoriale_carica (territorio_tipi_aggregazione_territoriale);
                                }
-                       gtk_widget_destroy (dialog);
                }
        else
                {
index fd5f9e3ab7fe06a3ec81e5d89f35941054d7d0e4..62c752b8d617c5f486538dc482b53cf4036070fb 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "tipoaggregazioneterritoriale.h"
 
@@ -200,12 +201,7 @@ territorio_tipo_aggregazione_territoriale_carica (TerritorioTipoAggregazioneTerr
 static void
 territorio_tipo_aggregazione_territoriale_salva (TerritorioTipoAggregazioneTerritoriale *territorio_tipo_aggregazione_territoriale)
 {
-       GError *error = NULL;
        gchar *sql;
-       GtkWidget *dialog;
-
-       GDate *da;
-       GDate *a;
 
        TerritorioTipoAggregazioneTerritorialeClass *klass = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE_GET_CLASS (territorio_tipo_aggregazione_territoriale);
 
@@ -236,13 +232,10 @@ territorio_tipo_aggregazione_territoriale_salva (TerritorioTipoAggregazioneTerri
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_INFO,
+                                              GTK_BUTTONS_OK,
+                                              "Salvataggio eseguito con successo.");
                }
        else
                {
@@ -251,13 +244,10 @@ territorio_tipo_aggregazione_territoriale_salva (TerritorioTipoAggregazioneTerri
                                        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);
+                       solipa_message_dialog (priv->w,
+                                              GTK_MESSAGE_WARNING,
+                                              GTK_BUTTONS_OK,
+                                              "Errore durante il salvataggio.");
                }
 }
 
index c5b56a8fa3954b94082eb485e8f766a76ac07a13..bba73e2e8d7f63cef998c327a2f8794164460b38 100644 (file)
--- a/src/via.c
+++ b/src/via.c
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -19,6 +19,7 @@
 
 #include <libgtkform/form.h>
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "via.h"
 #include "widget.h"
@@ -40,15 +41,10 @@ static void territorio_via_get_property (GObject *object,
                                      GValue *value,
                                      GParamSpec *pspec);
 
-static void territorio_via_on_comune_selezionato (gpointer instance, guint id, gpointer user_data);
-
 static gboolean territorio_via_on_w_via_delete_event (GtkWidget *widget,
                                GdkEvent *event,
                                gpointer user_data);
 
-static void territorio_via_on_btn_comune_clicked (GtkButton *button,
-                      gpointer user_data);
-
 static void territorio_via_on_btn_annulla_clicked (GtkButton *button,
                                     gpointer user_data);
 static void territorio_via_on_btn_salva_clicked (GtkButton *button,
index 0e5207cc3560086573b6733913f026d9c4b582f8..e3263e7f5c0975b7f68df68865231219bb444f31 100644 (file)
--- a/src/vie.c
+++ b/src/vie.c
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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
@@ -22,6 +22,7 @@
 #include <gdk/gdkkeysyms.h>
 
 #include <libautoz/autoz.h>
+#include <libsolipa/libsolipa.h>
 
 #include "vie.h"
 #include "via.h"
@@ -603,9 +604,6 @@ static void
 territorio_vie_on_btn_elimina_clicked (GtkButton *button,
                         gpointer user_data)
 {
-       GtkWidget *dialog;
-       gboolean risp;
-
        GtkTreeIter iter;
        guint id;
        guint id_comuni;
@@ -642,20 +640,16 @@ territorio_vie_on_btn_elimina_clicked (GtkButton *button,
                                        return;
                                }
 
-                       dialog = gtk_message_dialog_new (priv->wtransient,
-                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
-                                                        GTK_MESSAGE_QUESTION,
-                                                        GTK_BUTTONS_YES_NO,
-                                                        "Sicuro di voler eliminare la via selezionata?");
-                       risp = gtk_dialog_run (GTK_DIALOG (dialog));
-                       if (risp == GTK_RESPONSE_YES)
+                       if (solipa_message_dialog (GTK_WIDGET (priv->wtransient),
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler eliminare la via selezionata?") == GTK_RESPONSE_YES)
                                {
                                        gdaex_execute (priv->commons->gdaex,
                                                       g_strdup_printf ("UPDATE vie SET status = 'E' WHERE id = %d", id));
 
                                        territorio_vie_carica (territorio_vie);
                                }
-                       gtk_widget_destroy (dialog);
                }
        else
                {