]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunto il parametro smtp server nel test di SolipaMailUI. evolution-data-server-3
authorAndrea Zagli <azagli@libero.it>
Mon, 29 Aug 2011 10:12:28 +0000 (12:12 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 29 Aug 2011 10:12:28 +0000 (12:12 +0200)
Test sotto win della compilazione condizionale (closes #38).

tests/mailui.c
tests/tests.ui

index 8ebe31c18a111fb525ee9bdfe4880be925999d48..1f03545a50331c9f0b5a1e5b465a052f3c78bced 100644 (file)
@@ -21,6 +21,8 @@
 Solipa *solipa;
 SolipaMailUI *mailui;
 
+GtkBuilder *builder;
+
 GtkWidget *w;
 GtkWidget *mailui_w;
 
@@ -34,7 +36,27 @@ on_btn_cancel_clicked (gpointer instance, gpointer user_data)
 static void
 on_btn_ok_clicked (gpointer instance, gpointer user_data)
 {
+       gchar *smtp;
+
        g_debug ("OK clicked");
+
+       smtp = (gchar *)gtk_entry_get_text (GTK_ENTRY (gtk_builder_get_object (builder, "entry1")));
+       if (smtp == NULL)
+               {
+                       smtp = g_strdup ("smtp://localhost/");
+               }
+       else
+               {
+                       if (g_strcmp0 (g_strstrip (smtp), "") == 0)
+                               {
+                                       smtp = g_strdup ("smtp://localhost/");
+                               }
+               }
+
+       g_object_set (G_OBJECT (mailui),
+                     "smtp-uri", smtp,
+                     NULL);
+
        solipa_mail_ui_send (mailui);
 }
 
@@ -50,7 +72,6 @@ int
 main (int argc, char *argv[])
 {
        GError *error;
-       GtkBuilder *builder;
 
        gtk_init (&argc, &argv);
 
@@ -91,16 +112,18 @@ main (int argc, char *argv[])
                            mailui_w,
                            TRUE, TRUE, 5);
 
+       gtk_entry_set_text (GTK_ENTRY (gtk_builder_get_object (builder, "entry1")), "smtp://localhost/");
+
        g_signal_connect (gtk_builder_get_object (builder, "button1"), "clicked",
                          G_CALLBACK (on_btn_cancel_clicked), NULL);
        g_signal_connect (gtk_builder_get_object (builder, "button2"), "clicked",
                          G_CALLBACK (on_btn_ok_clicked), NULL);
 
        g_object_set (G_OBJECT (mailui),
-                     "smtp-uri", "smtp://mail.comune.scandicci.fi.it/",
-                     "from", "Andrea Zagli <a.zagli@comune.scandicci.fi.it>",
+                     "smtp-uri", "smtp://localhost/",
+                     "from", "Andrea Zagli <azagli@libero.it>",
                      "from-editable", FALSE,
-                     "to", "a.zagli@comune.scandicci.fi.it",
+                     "to", "azagli@libero.it",
                      "bcc-visible", FALSE,
                      "subject", "Da SolipaMailUI",
                      "body", "Il body della mail\n"
index 47a76e5ff2be6390ab473ec4791a7467cce99884..52305eb8c791833fa16a8e315b58c435f162cc52 100644 (file)
         <property name="border_width">5</property>
         <property name="orientation">vertical</property>
         <property name="spacing">5</property>
+        <child>
+          <object class="GtkTable" id="table1">
+            <property name="visible">True</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">5</property>
+            <property name="row_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label1">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">SMTP server:</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="invisible_char">&#x2022;</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
         <child>
           <object class="GtkVBox" id="vbox3">
             <property name="visible">True</property>
@@ -33,7 +68,7 @@
             </child>
           </object>
           <packing>
-            <property name="position">0</property>
+            <property name="position">1</property>
           </packing>
         </child>
         <child>
           </object>
           <packing>
             <property name="expand">False</property>
-            <property name="position">1</property>
+            <property name="position">2</property>
           </packing>
         </child>
       </object>