Solipa *solipa;
SolipaMailUI *mailui;
+GtkBuilder *builder;
+
GtkWidget *w;
GtkWidget *mailui_w;
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);
}
main (int argc, char *argv[])
{
GError *error;
- GtkBuilder *builder;
gtk_init (&argc, &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"
<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">•</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>
</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>