]> saetta.ns0.it Git - solipa/territorio/commitdiff
Aggiunto salva e chiudi in stato.
authorAndrea Zagli <azagli@libero.it>
Sat, 6 Jan 2018 08:35:26 +0000 (09:35 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 6 Jan 2018 08:35:26 +0000 (09:35 +0100)
data/territorio/gui/territorio.gui
src/stato.c

index a724735747281f2a85569bffdfcea71706272a67..01282526d736c1933d7861c894908adedea4dbd9 100644 (file)
@@ -13,7 +13,7 @@
     <property name="type_hint">normal</property>
     <property name="program_name">Territorio</property>
     <property name="version">0.0.3</property>
-    <property name="copyright" translatable="yes">Andrea Zagli &lt;azagli@libero.it&gt; 2010-2016</property>
+    <property name="copyright" translatable="yes">Andrea Zagli &lt;azagli@libero.it&gt; 2010-2018</property>
     <property name="authors">Andrea Zagli &lt;azagli@libero.it&gt;</property>
     <property name="logo_icon_name">image-missing</property>
     <child internal-child="vbox">
                 <property name="position">1</property>
               </packing>
             </child>
+            <child>
+              <object class="GtkButton" id="button71">
+                <property name="label" translatable="yes">Salva e _chiudi</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+              </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
           </object>
           <packing>
             <property name="expand">False</property>
index 020e008bfa36d77ec1fb3eb85f1090a1d298748c..44ded1a728da0c432ae4328a19b6820d2424f561 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2018 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
@@ -27,7 +27,7 @@ static void territorio_stato_class_init (TerritorioStatoClass *klass);
 static void territorio_stato_init (TerritorioStato *territorio_stato);
 
 static void territorio_stato_carica (TerritorioStato *territorio_stato);
-static void territorio_stato_salva (TerritorioStato *territorio_stato);
+static void territorio_stato_salva (TerritorioStato *territorio_stato, gboolean chiudi);
 
 static gboolean territorio_stato_conferma_chiusura (TerritorioStato *territorio_stato);
 
@@ -48,6 +48,8 @@ static void territorio_stato_on_btn_annulla_clicked (GtkButton *button,
                                     gpointer user_data);
 static void territorio_stato_on_btn_salva_clicked (GtkButton *button,
                                   gpointer user_data);
+static void territorio_stato_on_btn_salva_chiudi_clicked (GtkButton *button,
+                                  gpointer user_data);
 
 #define TERRITORIO_STATO_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TERRITORIO_STATO, TerritorioStatoPrivate))
 
@@ -150,6 +152,8 @@ TerritorioStato
                          "clicked", G_CALLBACK (territorio_stato_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button7"),
                          "clicked", G_CALLBACK (territorio_stato_on_btn_salva_clicked), (gpointer)a);
+       g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button71"),
+                         "clicked", G_CALLBACK (territorio_stato_on_btn_salva_chiudi_clicked), (gpointer)a);
 
        priv->id = id;
 
@@ -220,7 +224,7 @@ territorio_stato_carica (TerritorioStato *territorio_stato)
 }
 
 static void
-territorio_stato_salva (TerritorioStato *territorio_stato)
+territorio_stato_salva (TerritorioStato *territorio_stato, gboolean chiudi)
 {
        gchar *sql;
 
@@ -257,6 +261,12 @@ territorio_stato_salva (TerritorioStato *territorio_stato)
                                               GTK_MESSAGE_INFO,
                                               GTK_BUTTONS_OK,
                                               "Salvataggio eseguito con successo.");
+
+                       if (chiudi)
+                               {
+                                       gtk_widget_destroy (priv->w);
+                                       g_object_unref (territorio_stato);
+                               }
                }
        else
                {
@@ -347,5 +357,12 @@ static void
 territorio_stato_on_btn_salva_clicked (GtkButton *button,
                       gpointer user_data)
 {
-       territorio_stato_salva ((TerritorioStato *)user_data);
+       territorio_stato_salva ((TerritorioStato *)user_data, FALSE);
+}
+
+static void
+territorio_stato_on_btn_salva_chiudi_clicked (GtkButton *button,
+                      gpointer user_data)
+{
+       territorio_stato_salva ((TerritorioStato *)user_data, TRUE);
 }