]> saetta.ns0.it Git - solipa/territorio/commitdiff
Quando il pulsante salva รจ disabilitato in uscita non controlla i cambiamenti (closes...
authorAndrea Zagli <azagli@libero.it>
Mon, 26 Dec 2011 09:51:18 +0000 (10:51 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 26 Dec 2011 09:51:18 +0000 (10:51 +0100)
.anjuta_sym_db.db
data/territorio/gui/territorio.gui
src/aggregazioneterritoriale.c
src/aggregazioniterritoriali.c
src/comune.c
src/provincia.c
src/regione.c
src/stato.c
src/tipoaggregazioneterritoriale.c
src/via.c

index 9c64799adf9937c1b552889a20a48fd8bdffbff2..7e782602b818b3caf88d8632279749f20328e59d 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 0178d85683206c2184cb1d38f6708b57efbef175..fe770326ffdb05d8c26d6424f3ddc32812dc99fd 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <interface>
-  <!-- interface-requires gtkformui 0.0 -->
   <requires lib="gtk+" version="2.24"/>
+  <!-- interface-requires gtkformui 0.0 -->
   <!-- interface-naming-policy project-wide -->
   <object class="GtkAboutDialog" id="dlg_about">
     <property name="can_focus">False</property>
@@ -43,6 +43,8 @@
     <columns>
       <!-- column-name id -->
       <column type="gchararray"/>
+      <!-- column-name tipo -->
+      <column type="gchararray"/>
       <!-- column-name nome -->
       <column type="gchararray"/>
     </columns>
                 <property name="model">lstore_aggregazioni_territoriali</property>
                 <property name="headers_clickable">False</property>
                 <property name="rules_hint">True</property>
-                <property name="search_column">0</property>
+                <property name="search_column">2</property>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn15">
+                    <property name="title" translatable="yes">Tipo</property>
+                    <property name="clickable">True</property>
+                    <property name="reorderable">True</property>
+                    <property name="sort_column_id">1</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext16"/>
+                      <attributes>
+                        <attribute name="text">1</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
                 <child>
                   <object class="GtkTreeViewColumn" id="treeviewcolumn6">
                     <property name="title">Nome</property>
+                    <property name="clickable">True</property>
+                    <property name="reorderable">True</property>
+                    <property name="sort_column_id">2</property>
                     <child>
                       <object class="GtkCellRendererText" id="cellrenderertext6"/>
                       <attributes>
-                        <attribute name="text">1</attribute>
+                        <attribute name="text">2</attribute>
                       </attributes>
                     </child>
                   </object>
index 8401b4fe6219f770af0c531af8a3e78329329f6b..272997eee1f280b60b63368db112ca4967f18b65 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 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
@@ -144,12 +144,12 @@ TerritorioAggregazioneTerritoriale
                                                      NULL);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (territorio_aggregazione_territoriale_on_w_aggregazione_territoriale_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (territorio_aggregazione_territoriale_on_w_aggregazione_territoriale_delete_event), (gpointer)a);
 
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button41"),
-                         "clicked", G_CALLBACK (territorio_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button42"),
-                         "clicked", G_CALLBACK (territorio_aggregazione_territoriale_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_aggregazione_territoriale_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
 
@@ -295,25 +295,21 @@ territorio_aggregazione_territoriale_get_property (GObject *object, guint proper
 static gboolean
 territorio_aggregazione_territoriale_conferma_chiusura (TerritorioAggregazioneTerritoriale *territorio_aggregazione_territoriale)
 {
-       GtkWidget *dialog;
-
        gboolean ret;
 
        TerritorioAggregazioneTerritorialePrivate *priv = TERRITORIO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (territorio_aggregazione_territoriale);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button42")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index e56ef3af768d9985e0da0b02dca9eacfd365aa35..5bc5ab7801bc50419c9742d8318065ee017d35bd 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 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
@@ -61,6 +61,7 @@ static void territorio_aggregazioni_territoriali_on_btn_seleziona_clicked (GtkBu
 enum
 {
        COL_ID,
+       COL_TIPO,
        COL_NOME
 };
 
@@ -219,19 +220,20 @@ territorio_aggregazioni_territoriali_carica (TerritorioAggregazioniTerritoriali
        gtk_list_store_clear (priv->lstore_aggregazioni_territoriali);
 
        dm = gdaex_query (priv->commons->gdaex,
-                         "SELECT c.id, c.nome"
+                         "SELECT c.id, t.nome AS tipo, c.nome"
                          " FROM aggregazioni_territoriali AS c"
+                         " INNER JOIN tipi_aggregazione_territoriale AS t ON c.id_tipi_aggregazione_territoriale = t.id"
                          " WHERE c.status <> 'E'"
-                         " ORDER BY c.nome");
+                         " ORDER BY t.nome, 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_aggregazioni_territoriali, &iter);
-
                                        gtk_list_store_set (priv->lstore_aggregazioni_territoriali, &iter,
                                                            COL_ID, gdaex_data_model_get_field_value_stringify_at (dm, row, "id"),
+                                                           COL_TIPO, gdaex_data_model_get_field_value_stringify_at (dm, row, "tipo"),
                                                            COL_NOME, gdaex_data_model_get_field_value_stringify_at (dm, row, "nome"),
                                                            -1);
                                }
index b4ca11481d2dc33468a2e8727ce50c1f611f4e36..d961ca6f76a84ce9f6347e8a24709f119d3b9188 100644 (file)
@@ -382,25 +382,20 @@ territorio_comune_get_property (GObject *object, guint property_id, GValue *valu
 static gboolean
 territorio_comune_conferma_chiusura (TerritorioComune *territorio_comune)
 {
-       GtkWidget *dialog;
-
        gboolean ret;
 
        TerritorioComunePrivate *priv = TERRITORIO_COMUNE_GET_PRIVATE (territorio_comune);
 
-       ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button28")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index 6d6ee6699e63698ba89396407ae45715c38900ae..ea9624a4a63b7b3c6b87fa8036b3aaec08e5c2a7 100644 (file)
@@ -171,12 +171,12 @@ TerritorioProvincia
        gtk_widget_show_all (twidget);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (territorio_provincia_on_w_provincia_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (territorio_provincia_on_w_provincia_delete_event), (gpointer)a);
 
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button20"),
-                         "clicked", G_CALLBACK (territorio_provincia_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_provincia_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button21"),
-                         "clicked", G_CALLBACK (territorio_provincia_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_provincia_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
 
@@ -382,18 +382,16 @@ territorio_provincia_conferma_chiusura (TerritorioProvincia *territorio_provinci
        TerritorioProvinciaPrivate *priv = TERRITORIO_PROVINCIA_GET_PRIVATE (territorio_provincia);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button21")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index ac6d9dca8a2331c97c50c9e9ba06f7bfdf34116e..7b7491fe8ca48b17ed544e78e3937fae8bd60e68 100644 (file)
@@ -322,18 +322,16 @@ territorio_regione_conferma_chiusura (TerritorioRegione *territorio_regione)
        TerritorioRegionePrivate *priv = TERRITORIO_REGIONE_GET_PRIVATE (territorio_regione);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button14")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index 02fb64ff5b5c248bd2ca66208e48b934a6455270..85d991075122d2c33803f824ea287098a9be4214 100644 (file)
@@ -315,25 +315,21 @@ territorio_stato_get_property (GObject *object, guint property_id, GValue *value
 static gboolean
 territorio_stato_conferma_chiusura (TerritorioStato *territorio_stato)
 {
-       GtkWidget *dialog;
-
        gboolean ret;
 
        TerritorioStatoPrivate *priv = TERRITORIO_STATO_GET_PRIVATE (territorio_stato);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button7")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index c1fe3553d6dd3f3586de7ab420ccfd8cb279ce09..fd5f9e3ab7fe06a3ec81e5d89f35941054d7d0e4 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 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
@@ -143,12 +143,12 @@ TerritorioTipoAggregazioneTerritoriale
                                                      NULL);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (territorio_tipo_aggregazione_territoriale_on_w_tipo_aggregazione_territoriale_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (territorio_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 (territorio_tipo_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_tipo_aggregazione_territoriale_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button35"),
-                         "clicked", G_CALLBACK (territorio_tipo_aggregazione_territoriale_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (territorio_tipo_aggregazione_territoriale_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
 
@@ -265,7 +265,6 @@ static void
 territorio_tipo_aggregazione_territoriale_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        TerritorioTipoAggregazioneTerritoriale *territorio_tipo_aggregazione_territoriale = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE (object);
-
        TerritorioTipoAggregazioneTerritorialePrivate *priv = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (territorio_tipo_aggregazione_territoriale);
 
        switch (property_id)
@@ -280,7 +279,6 @@ static void
 territorio_tipo_aggregazione_territoriale_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        TerritorioTipoAggregazioneTerritoriale *territorio_tipo_aggregazione_territoriale = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE (object);
-
        TerritorioTipoAggregazioneTerritorialePrivate *priv = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (territorio_tipo_aggregazione_territoriale);
 
        switch (property_id)
@@ -294,25 +292,21 @@ territorio_tipo_aggregazione_territoriale_get_property (GObject *object, guint p
 static gboolean
 territorio_tipo_aggregazione_territoriale_conferma_chiusura (TerritorioTipoAggregazioneTerritoriale *territorio_tipo_aggregazione_territoriale)
 {
-       GtkWidget *dialog;
-
        gboolean ret;
 
        TerritorioTipoAggregazioneTerritorialePrivate *priv = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE_GET_PRIVATE (territorio_tipo_aggregazione_territoriale);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button35")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;
index d5242ec45ec50dbcadbc91e4fa20523dcf0993be..c5b56a8fa3954b94082eb485e8f766a76ac07a13 100644 (file)
--- a/src/via.c
+++ b/src/via.c
@@ -296,7 +296,6 @@ static void
 territorio_via_salva (TerritorioVia *territorio_via)
 {
        gchar *sql;
-       GtkWidget *dialog;
        AutozIResource *ires1;
 
        TerritorioViaClass *klass = TERRITORIO_VIA_GET_CLASS (territorio_via);
@@ -339,13 +338,10 @@ territorio_via_salva (TerritorioVia *territorio_via)
                                        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
                {
@@ -354,13 +350,10 @@ territorio_via_salva (TerritorioVia *territorio_via)
                                        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.");
                }
 }
 
@@ -395,25 +388,21 @@ territorio_via_get_property (GObject *object, guint property_id, GValue *value,
 static gboolean
 territorio_via_conferma_chiusura (TerritorioVia *territorio_via)
 {
-       GtkWidget *dialog;
-
        gboolean ret;
 
        TerritorioViaPrivate *priv = TERRITORIO_VIA_GET_PRIVATE (territorio_via);
 
        ret = TRUE;
-       if (gtk_form_is_changed (priv->form))
+       if (gtk_widget_get_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button52")))
+           && 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)
+                       if (solipa_message_dialog (priv->w,
+                                                  GTK_MESSAGE_QUESTION,
+                                                  GTK_BUTTONS_YES_NO,
+                                                  "Sicuro di voler chiudere senza salvare?") == GTK_RESPONSE_NO)
                                {
                                        ret = FALSE;
                                }
-                       gtk_widget_destroy (dialog);
                }
 
        return ret;