]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Tolta la combobox tipo recapito in ufficio recapito (refs #645 #646).
authorAndrea Zagli <azagli@libero.it>
Sun, 13 Nov 2016 14:49:14 +0000 (15:49 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 13 Nov 2016 15:11:58 +0000 (16:11 +0100)
data/organigramma/form/ufficio_recapito.form
data/organigramma/gui/organigramma.gui
src/ufficiorecapito.c

index 034a86d17147a90f47be753e3a528a7ea541fd66..2376f0ea1bd23989a9c0e3de14c7ea50c011cf65 100644 (file)
                </field>
        </widget>
 
-       <widget type="combobox" name="combobox2" label="label39">
-               <column-field>0</column-field>
-               <sql with-empty-entry="t">
-                       SELECT id, nome FROM tipi_recapito WHERE status &lt;&gt; 'E' ORDER BY nome
-               </sql>
+       <widget type="decoder" name="gtkformdecoder7" label="label39">
+               <decoder>
+                       <sql>
+                               SELECT a.nome
+                               FROM tipi_recapito AS a
+                               WHERE a.id = ##key0::gint
+                       </sql>
+               </decoder>
                <field type="integer" name="id_tipi_recapito">
                        <obligatory>t</obligatory>
                </field>
index e3045d592355e11b6f7c988964124ea437e6f744..dd907ae9ca35c9747132f71aa4803d06a7e70bbe 100644 (file)
                 <property name="top_attach">1</property>
               </packing>
             </child>
-            <child>
-              <object class="GtkComboBox" id="combobox2">
-                <property name="visible">True</property>
-                <property name="can_focus">False</property>
-                <property name="hexpand">True</property>
-                <child>
-                  <object class="GtkCellRendererText" id="cellrenderertext7"/>
-                  <attributes>
-                    <attribute name="text">1</attribute>
-                  </attributes>
-                </child>
-              </object>
-              <packing>
-                <property name="left_attach">1</property>
-                <property name="top_attach">0</property>
-              </packing>
-            </child>
             <child>
               <object class="GtkCheckButton" id="checkbutton8">
                 <property name="visible">True</property>
                 <property name="top_attach">4</property>
               </packing>
             </child>
+            <child>
+              <object class="GtkFormDecoder" id="gtkformdecoder7">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
           </object>
           <packing>
             <property name="expand">True</property>
index 70b37f0e9e87fb8f86a517d9ee6a6d6a72c588d5..43dbba815691383d893a087585304190a38630a1 100644 (file)
 
 #include <libzakautho/autoz.h>
 #include <libgtkform/form.h>
+#include <libgtkformui/gtkformdecoder.h>
 #include <libsolipa/utils.h>
 
 #include "ufficiorecapito.h"
+#include "tipirecapito.h"
 
 static void organigramma_ufficio_recapito_class_init (OrganigrammaUfficioRecapitoClass *klass);
 static void organigramma_ufficio_recapito_init (OrganigrammaUfficioRecapito *organigramma_ufficio_recapito);
@@ -37,6 +39,8 @@ static void organigramma_ufficio_recapito_salva (OrganigrammaUfficioRecapito *or
 
 static gboolean organigramma_ufficio_recapito_conferma_chiusura (OrganigrammaUfficioRecapito *organigramma_ufficio_recapito);
 
+static void organigramma_ufficio_recapito_on_tipo_recapito_selezionato (gpointer instance, guint id, gpointer user_data);
+
 static void organigramma_ufficio_recapito_set_property (GObject *object,
                                      guint property_id,
                                      const GValue *value,
@@ -50,6 +54,9 @@ static gboolean organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito
                                GdkEvent *event,
                                gpointer user_data);
 
+static void organigramma_ufficio_recapito_on_btn_tipo_recapito_clicked (GtkButton *button,
+                      gpointer user_data);
+
 static void organigramma_ufficio_recapito_on_btn_annulla_clicked (GtkButton *button,
                                     gpointer user_data);
 static void organigramma_ufficio_recapito_on_btn_salva_clicked (GtkButton *button,
@@ -159,6 +166,9 @@ OrganigrammaUfficioRecapito
        g_signal_connect (priv->w,
                          "delete-event", G_CALLBACK (organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event), (gpointer)a);
 
+       g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "gtkformdecoder7"),
+                         "btn-browse-clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_tipo_recapito_clicked), (gpointer)a);
+
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button48")),
                          "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button49")),
@@ -324,6 +334,16 @@ organigramma_ufficio_recapito_conferma_chiusura (OrganigrammaUfficioRecapito *or
 }
 
 /* CALLBACK */
+static void
+organigramma_ufficio_recapito_on_tipo_recapito_selezionato (gpointer instance, guint id, gpointer user_data)
+{
+       OrganigrammaUfficioRecapito *f = (OrganigrammaUfficioRecapito *)user_data;
+       OrganigrammaUfficioRecapitoPrivate *priv = ORGANIGRAMMA_UFFICIO_RECAPITO_GET_PRIVATE (f);
+
+       gtk_form_widget_set_value_stringify (gtk_form_get_form_widget_from_name (priv->form, "gtkformdecoder7"),
+                                            g_strdup_printf ("%d", id));
+}
+
 static gboolean
 organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event (GtkWidget *widget,
                                GdkEvent *event,
@@ -332,6 +352,25 @@ organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event (G
        return !organigramma_ufficio_recapito_conferma_chiusura ((OrganigrammaUfficioRecapito *)user_data);
 }
 
+static void
+organigramma_ufficio_recapito_on_btn_tipo_recapito_clicked (GtkButton *button,
+                      gpointer user_data)
+{
+       GtkWidget *w;
+
+       OrganigrammaUfficioRecapito *rf = (OrganigrammaUfficioRecapito *)user_data;
+       OrganigrammaUfficioRecapitoPrivate *priv = ORGANIGRAMMA_UFFICIO_RECAPITO_GET_PRIVATE (rf);
+
+       OrganigrammaTipiRecapito *c = organigramma_tipi_recapito_new (priv->commons, TRUE);
+
+       g_signal_connect (G_OBJECT (c), "selezionato",
+                         G_CALLBACK (organigramma_ufficio_recapito_on_tipo_recapito_selezionato), user_data);
+
+       w = organigramma_tipi_recapito_get_widget (c);
+       gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (priv->w));
+       gtk_widget_show (w);
+}
+
 static void
 organigramma_ufficio_recapito_on_btn_annulla_clicked (GtkButton *button,
                         gpointer user_data)