Use set_label api for incoming server captions
[modest] / src / hildon2 / modest-easysetup-wizard-dialog.c
1
2 /* Copyright (c) 2006, Nokia Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in the
13  *   documentation and/or other materials provided with the distribution.
14  * * Neither the name of the Nokia Corporation nor the names of its
15  *   contributors may be used to endorse or promote products derived from
16  *   this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
19  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
22  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30  
31 #include <config.h>
32 #include "modest-easysetup-wizard-dialog.h"
33 #include <glib/gi18n.h>
34 #include <gtk/gtknotebook.h>
35 #include <gtk/gtkvbox.h>
36 #include <gtk/gtklabel.h>
37 #include <gtk/gtkentry.h>
38 #include <gtk/gtkbutton.h>
39 #include <gtk/gtkcheckbutton.h>
40 #include <gtk/gtkmessagedialog.h>
41 #include <gtk/gtkseparator.h>
42 #include "modest-country-picker.h"
43 #include "modest-provider-picker.h"
44 #include "modest-servertype-picker.h"
45 #include "widgets/modest-validating-entry.h"
46 #include "modest-text-utils.h"
47 #include "modest-conf.h"
48 #include "modest-defs.h"
49 #include "modest-account-mgr.h"
50 #include "modest-signal-mgr.h"
51 #include "modest-account-mgr-helpers.h"
52 #include "modest-runtime.h" /* For modest_runtime_get_account_mgr(). */
53 #include "modest-connection-specific-smtp-window.h"
54 #include "widgets/modest-ui-constants.h"
55 #include "widgets/modest-default-account-settings-dialog.h"
56 #include "widgets/modest-easysetup-wizard-page.h"
57 #include "modest-maemo-utils.h"
58 #include "modest-utils.h"
59 #include "modest-hildon-includes.h"
60 #include "modest-maemo-security-options-view.h"
61 #include "modest-account-protocol.h"
62
63 /* Include config.h so that _() works: */
64 #ifdef HAVE_CONFIG_H
65 #include <config.h>
66 #endif
67
68 G_DEFINE_TYPE (ModestEasysetupWizardDialog, modest_easysetup_wizard_dialog, MODEST_TYPE_WIZARD_DIALOG);
69
70 #define MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), \
71                                                     MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, \
72                                                     ModestEasysetupWizardDialogPrivate))
73
74 #define LABELS_WIDTH 480
75 #define DIALOG_WIDTH LABELS_WIDTH + MODEST_MARGIN_DOUBLE
76
77 typedef struct _ModestEasysetupWizardDialogPrivate ModestEasysetupWizardDialogPrivate;
78
79
80 typedef enum {
81         MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED = 0x01,
82         MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED = 0x02
83 } ModestEasysetupWizardDialogServerChanges;
84
85 struct _ModestEasysetupWizardDialogPrivate
86 {
87         ModestPresets *presets;
88
89         /* Remember what fields the user edited manually to not prefill them
90          * again. */
91         ModestEasysetupWizardDialogServerChanges server_changes;
92         
93         /* Check if the user changes a field to show a confirmation dialog */
94         gboolean dirty;
95
96         /* If we have a pending load of settings or not. */
97         gboolean pending_load_settings;
98         
99         /* Used by derived widgets to query existing accounts,
100          * and to create new accounts: */
101         ModestAccountMgr *account_manager;
102         ModestAccountSettings *settings;
103         
104         /* notebook pages: */
105         GtkWidget *page_welcome;
106         
107         GtkWidget *page_account_details;
108         GtkWidget *account_country_picker;
109         GtkWidget *account_serviceprovider_picker;
110         GtkWidget *entry_account_title;
111         
112         GtkWidget *page_user_details;
113         GtkWidget *entry_user_name;
114         GtkWidget *entry_user_username;
115         GtkWidget *entry_user_password;
116         GtkWidget *entry_user_email;
117         
118         GtkWidget *page_complete_easysetup;
119         
120         GtkWidget *page_custom_incoming;
121         GtkWidget *incoming_servertype_picker;
122         GtkWidget *caption_incoming;
123         GtkWidget *entry_incomingserver;
124
125         /* Security widgets */
126         GtkWidget *incoming_security;
127         GtkWidget *outgoing_security;
128
129         GtkWidget *page_custom_outgoing;
130         GtkWidget *entry_outgoingserver;
131         GtkWidget *checkbox_outgoing_smtp_specific;
132         GtkWidget *button_outgoing_smtp_servers;
133         
134         GtkWidget *page_complete_customsetup;
135
136         ModestProtocolType last_plugin_protocol_selected;
137         GSList *missing_data_signals;
138 };
139
140 static void save_to_settings (ModestEasysetupWizardDialog *self);
141 static void real_enable_buttons (ModestWizardDialog *dialog, gboolean enable_next);
142
143 static gboolean
144 on_delete_event (GtkWidget *widget,
145                  GdkEvent *event,
146                  ModestEasysetupWizardDialog *wizard)
147 {
148         gtk_dialog_response (GTK_DIALOG (wizard), GTK_RESPONSE_CANCEL);
149         return TRUE;
150 }
151
152 static void
153 on_easysetup_changed(GtkWidget* widget, ModestEasysetupWizardDialog* wizard)
154 {
155         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(wizard);
156         g_return_if_fail (priv != NULL);
157         priv->dirty = TRUE;
158 }
159
160 static void
161 modest_easysetup_wizard_dialog_dispose (GObject *object)
162 {
163         if (G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->dispose)
164                 G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->dispose (object);
165 }
166
167 static void
168 modest_easysetup_wizard_dialog_finalize (GObject *object)
169 {
170         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (object);
171         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
172         
173         if (priv->account_manager)
174                 g_object_unref (G_OBJECT (priv->account_manager));
175                 
176         if (priv->presets)
177                 modest_presets_destroy (priv->presets);
178
179         if (priv->settings)
180                 g_object_unref (priv->settings);
181
182         if (priv->missing_data_signals) {
183                 modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
184                 priv->missing_data_signals = NULL;
185         }
186                 
187         G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->finalize (object);
188 }
189
190 static void
191 create_subsequent_easysetup_pages (ModestEasysetupWizardDialog *self);
192
193 static void
194 set_default_custom_servernames(ModestEasysetupWizardDialog *dialog);
195
196 static void on_servertype_selector_changed(HildonTouchSelector *selector, gint column, gpointer user_data);
197
198 static gint 
199 get_port_from_protocol (ModestProtocolType server_type,
200                         gboolean alternate_port)
201 {
202         int server_port = 0;
203         ModestProtocol *protocol;
204         ModestProtocolRegistry *protocol_registry;
205
206         protocol_registry = modest_runtime_get_protocol_registry ();
207         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, server_type);
208
209         if (alternate_port) {
210                 server_port = modest_account_protocol_get_alternate_port (MODEST_ACCOUNT_PROTOCOL (protocol));
211         } else {
212                 server_port = modest_account_protocol_get_port (MODEST_ACCOUNT_PROTOCOL (protocol));
213         }
214         return server_port;
215 }
216
217 static void
218 invoke_enable_buttons_vfunc (ModestEasysetupWizardDialog *wizard_dialog)
219 {
220         ModestWizardDialogClass *klass = MODEST_WIZARD_DIALOG_GET_CLASS (wizard_dialog);
221         
222         /* Call the vfunc, which may be overridden by derived classes: */
223         if (klass->enable_buttons) {
224                 GtkNotebook *notebook = NULL;
225                 g_object_get (wizard_dialog, "wizard-notebook", &notebook, NULL);
226                 
227                 const gint current_page_num = gtk_notebook_get_current_page (notebook);
228                 if (current_page_num == -1)
229                         return;
230                         
231                 GtkWidget* current_page_widget = gtk_notebook_get_nth_page (notebook, current_page_num);
232                 (*(klass->enable_buttons))(MODEST_WIZARD_DIALOG (wizard_dialog), current_page_widget);
233         }
234 }
235
236 static void
237 on_caption_entry_changed (GtkEditable *editable, gpointer user_data)
238 {
239         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
240         g_assert(self);
241         invoke_enable_buttons_vfunc(self);
242 }
243
244 static void
245 on_caption_combobox_changed (GtkComboBox *widget, gpointer user_data)
246 {
247         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
248         g_assert(self);
249         invoke_enable_buttons_vfunc(self);
250 }
251
252 static void
253 on_picker_button_value_changed (HildonPickerButton *widget, gpointer user_data)
254 {
255         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
256         g_assert(self);
257         invoke_enable_buttons_vfunc(self);
258 }
259
260 /** This is a convenience function to create a caption containing a mandatory widget.
261  * When the widget is edited, the enable_buttons() vfunc will be called.
262  */
263 static GtkWidget* 
264 create_captioned (ModestEasysetupWizardDialog *self,
265                   GtkSizeGroup *title_size_group,
266                   GtkSizeGroup *value_size_group,
267                   const gchar *value,
268                   gboolean use_markup,
269                   GtkWidget *control)
270 {
271
272         GtkWidget *result;
273         result = modest_maemo_utils_create_captioned (title_size_group, value_size_group,
274                                                       value, use_markup, control);
275
276         /* Connect to the appropriate changed signal for the widget, 
277          * so we can ask for the prev/next buttons to be enabled/disabled appropriately:
278          */
279         if (GTK_IS_ENTRY (control)) {
280                 g_signal_connect (G_OBJECT (control), "changed",
281                                   G_CALLBACK (on_caption_entry_changed), self);
282                 
283         }
284         else if (GTK_IS_COMBO_BOX (control)) {
285                 g_signal_connect (G_OBJECT (control), "changed",
286                                   G_CALLBACK (on_caption_combobox_changed), self);
287         }
288          
289         return result;
290 }
291            
292 static GtkWidget*
293 create_page_welcome (ModestEasysetupWizardDialog *self)
294 {
295         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
296         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_intro"));
297         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
298         /* So that it is not truncated: */
299         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
300         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0);
301         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
302         gtk_widget_show (label);
303         gtk_widget_show (GTK_WIDGET (box));
304         return GTK_WIDGET (box);
305 }
306
307 static void
308 on_account_country_selector_changed (HildonTouchSelector *widget, gint column, gpointer user_data)
309 {
310         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
311         g_assert(self);
312         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
313         
314         priv->dirty = TRUE;
315         
316         /* Fill the providers picker, based on the selected country: */
317         if (priv->presets != NULL) {
318                 gint mcc = modest_country_picker_get_active_country_mcc (
319                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
320                 modest_provider_picker_fill (
321                         MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker), priv->presets, mcc);
322         }
323 }
324
325 static void
326 update_user_email_from_provider (ModestEasysetupWizardDialog *self)
327 {
328         ModestEasysetupWizardDialogPrivate *priv; 
329         gchar* provider_id;
330         gchar* domain_name = NULL;
331
332         g_assert(self);
333         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
334
335         /* Fill the providers combo, based on the selected country: */
336         provider_id = modest_provider_picker_get_active_provider_id (
337                 MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker));
338         
339         if(provider_id)
340                 domain_name = modest_presets_get_domain (priv->presets, provider_id);
341         
342         if(!domain_name)
343                 domain_name = g_strdup (MODEST_EXAMPLE_EMAIL_ADDRESS);
344                 
345         if (priv->entry_user_email)
346                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_user_email), domain_name);
347                 
348         g_free (domain_name);
349         
350         g_free (provider_id);
351 }
352
353 static void
354 on_account_serviceprovider_selector_changed (HildonTouchSelector *widget, gint column, gpointer user_data)
355 {
356         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
357         g_assert(self);
358         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
359         
360         priv->dirty = TRUE;
361
362         update_user_email_from_provider (self);
363 }
364
365 static void
366 on_entry_max (ModestValidatingEntry *self, gpointer user_data)
367 {
368         modest_platform_information_banner (GTK_WIDGET (self), NULL,
369                                             _CS("ckdg_ib_maximum_characters_reached"));
370 }
371
372 static GtkWidget*
373 create_page_account_details (ModestEasysetupWizardDialog *self)
374 {
375         GtkWidget *caption;
376         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
377         GtkWidget *label = gtk_label_new(_("mcen_ia_accountdetails"));
378         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
379
380         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
381         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
382         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, MODEST_MARGIN_HALF);
383         gtk_widget_show (label);
384
385         /* Create a size group to be used by all captions.
386          * Note that HildonCaption does not create a default size group if we do not specify one.
387          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
388         GtkSizeGroup* title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
389         GtkSizeGroup* value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
390
391         /* The country widgets: */
392         priv->account_country_picker = GTK_WIDGET (modest_country_picker_new (MODEST_EDITABLE_SIZE,
393                                                                               HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
394         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup, 
395                                                _("mcen_fi_country"), priv->account_country_picker);
396         g_signal_connect (G_OBJECT (priv->account_country_picker), "value-changed",
397                           G_CALLBACK (on_picker_button_value_changed), self);
398         gtk_box_pack_start (GTK_BOX (box), priv->account_country_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
399         gtk_widget_show (priv->account_country_picker);
400         
401         GtkWidget *separator = gtk_hseparator_new ();
402         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
403         gtk_widget_show (separator);
404             
405         /* The service provider widgets: */     
406         priv->account_serviceprovider_picker = GTK_WIDGET (modest_provider_picker_new (MODEST_EDITABLE_SIZE,
407                                                                                        HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
408         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup,
409                                                _("mcen_fi_serviceprovider"), 
410                                                priv->account_serviceprovider_picker);
411         g_signal_connect (G_OBJECT (priv->account_serviceprovider_picker), "value-changed",
412                           G_CALLBACK (on_picker_button_value_changed), self);
413         gtk_box_pack_start (GTK_BOX (box), priv->account_serviceprovider_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
414         gtk_widget_show (priv->account_serviceprovider_picker);
415         
416         /* The description widgets: */  
417         priv->entry_account_title = GTK_WIDGET (modest_validating_entry_new ());
418         g_signal_connect(G_OBJECT(priv->entry_account_title), "changed",
419                          G_CALLBACK(on_easysetup_changed), self);
420         /* Do use auto-capitalization: */
421         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_account_title), 
422                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_AUTOCAP);
423         
424         /* Set a default account title, choosing one that does not already exist: */
425         /* Note that this is irrelevant to the non-user visible name, which we will create later. */
426         gchar* default_account_name_start = g_strdup (_("mcen_ia_emailsetup_defaultname"));
427         gchar* default_account_name = modest_account_mgr_get_unused_account_display_name (
428                 priv->account_manager, default_account_name_start);
429         g_free (default_account_name_start);
430         default_account_name_start = NULL;
431         
432         hildon_entry_set_text (HILDON_ENTRY (priv->entry_account_title), default_account_name);
433         g_free (default_account_name);
434         default_account_name = NULL;
435
436         caption = create_captioned (self, title_sizegroup, value_sizegroup, _("mcen_fi_account_title"), FALSE,
437                                     priv->entry_account_title);
438         gtk_widget_show (priv->entry_account_title);
439         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
440         gtk_widget_show (caption);
441         
442         /* Prevent the use of some characters in the account title, 
443          * as required by our UI specification: */
444         GList *list_prevent = NULL;
445         list_prevent = g_list_append (list_prevent, "\\");
446         list_prevent = g_list_append (list_prevent, "/");
447         list_prevent = g_list_append (list_prevent, ":");
448         list_prevent = g_list_append (list_prevent, "*");
449         list_prevent = g_list_append (list_prevent, "?");
450         list_prevent = g_list_append (list_prevent, "\""); /* The UI spec mentions â€œ, but maybe means ", maybe both. */
451         list_prevent = g_list_append (list_prevent, "“");
452         list_prevent = g_list_append (list_prevent, "<"); 
453         list_prevent = g_list_append (list_prevent, ">"); 
454         list_prevent = g_list_append (list_prevent, "|");
455         list_prevent = g_list_append (list_prevent, "^");       
456         modest_validating_entry_set_unallowed_characters (
457                 MODEST_VALIDATING_ENTRY (priv->entry_account_title), list_prevent);
458         g_list_free (list_prevent);
459         list_prevent = NULL;
460         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_account_title),
461                                                                                                                                          modest_utils_on_entry_invalid_character, self);
462         
463         /* Set max length as in the UI spec:
464          * The UI spec seems to want us to show a dialog if we hit the maximum. */
465         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_account_title), 64);
466         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_account_title), 
467                                               on_entry_max, self);
468         
469         gtk_widget_show (GTK_WIDGET (box));
470
471         g_object_unref (title_sizegroup);
472         g_object_unref (value_sizegroup);
473         
474         return GTK_WIDGET (box);
475 }
476
477 static GtkWidget*
478 create_page_user_details (ModestEasysetupWizardDialog *self)
479 {
480         GtkSizeGroup* title_sizegroup;
481         GtkSizeGroup* value_sizegroup;
482         GtkWidget *box;
483         ModestEasysetupWizardDialogPrivate *priv;
484
485         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
486         
487         /* Create a size group to be used by all captions.
488          * Note that HildonCaption does not create a default size group if we do not specify one.
489          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
490         box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
491         title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
492         value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
493          
494         /* The name widgets: (use auto cap) */
495         priv->entry_user_name = GTK_WIDGET (modest_validating_entry_new ());
496         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_name), 
497                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_AUTOCAP);
498         
499         /* Set max length as in the UI spec:
500          * The UI spec seems to want us to show a dialog if we hit the maximum. */
501         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_name), 64);
502         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_name), 
503                                               on_entry_max, self);
504         GtkWidget *caption = create_captioned (self, title_sizegroup, value_sizegroup,
505                                                _("mcen_li_emailsetup_name"), FALSE, priv->entry_user_name);
506         g_signal_connect(G_OBJECT(priv->entry_user_name), "changed", 
507                          G_CALLBACK(on_easysetup_changed), self);
508         gtk_widget_show (priv->entry_user_name);
509         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
510         gtk_widget_show (caption);
511         
512         /* Prevent the use of some characters in the name, 
513          * as required by our UI specification: */
514         GList *list_prevent = NULL;
515         list_prevent = g_list_append (list_prevent, "<");
516         list_prevent = g_list_append (list_prevent, ">");
517         modest_validating_entry_set_unallowed_characters (
518                 MODEST_VALIDATING_ENTRY (priv->entry_user_name), list_prevent);
519         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_user_name),
520                 modest_utils_on_entry_invalid_character, self);
521         g_list_free (list_prevent);
522         
523         /* The username widgets: */     
524         priv->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
525         /* Auto-capitalization is the default, so let's turn it off: */
526         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_username), 
527                                          HILDON_GTK_INPUT_MODE_FULL);
528         caption = create_captioned (self, title_sizegroup, value_sizegroup, _("mail_fi_username"), FALSE,
529                                     priv->entry_user_username);
530         gtk_widget_show (priv->entry_user_username);
531         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
532         g_signal_connect(G_OBJECT(priv->entry_user_username), "changed", 
533                          G_CALLBACK(on_easysetup_changed), self);
534         gtk_widget_show (caption);
535         
536         /* Prevent the use of some characters in the username, 
537          * as required by our UI specification: */
538         modest_validating_entry_set_unallowed_characters_whitespace (
539                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
540         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_user_username),
541                 modest_utils_on_entry_invalid_character, self);
542         
543         /* Set max length as in the UI spec:
544          * The UI spec seems to want us to show a dialog if we hit the maximum. */
545         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
546         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_username), 
547                                               on_entry_max, self);
548         
549         /* The password widgets: */     
550         priv->entry_user_password = hildon_entry_new (MODEST_EDITABLE_SIZE);
551         /* Auto-capitalization is the default, so let's turn it off: */
552         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
553                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
554         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
555         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
556         caption = create_captioned (self, title_sizegroup, value_sizegroup,
557                                     _("mail_fi_password"), FALSE, priv->entry_user_password);
558         g_signal_connect(G_OBJECT(priv->entry_user_password), "changed", 
559                          G_CALLBACK(on_easysetup_changed), self);
560         gtk_widget_show (priv->entry_user_password);
561         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
562         gtk_widget_show (caption);
563         
564         /* The email address widgets: */        
565         priv->entry_user_email = GTK_WIDGET (modest_validating_entry_new ());
566         /* Auto-capitalization is the default, so let's turn it off: */
567         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_email), HILDON_GTK_INPUT_MODE_FULL);
568         caption = create_captioned (self, title_sizegroup, value_sizegroup,
569                                     _("mcen_li_emailsetup_email_address"), FALSE, priv->entry_user_email);
570         update_user_email_from_provider (self);
571         gtk_widget_show (priv->entry_user_email);
572         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
573         g_signal_connect(G_OBJECT(priv->entry_user_email), "changed", 
574                          G_CALLBACK(on_easysetup_changed), self);
575         gtk_widget_show (caption);
576         
577         /* Set max length as in the UI spec:
578          * The UI spec seems to want us to show a dialog if we hit the maximum. */
579         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_email), 64);
580         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_email), 
581                                               on_entry_max, self);
582         
583         
584         gtk_widget_show (GTK_WIDGET (box));
585         g_object_unref (title_sizegroup);
586         g_object_unref (value_sizegroup);
587         
588         return GTK_WIDGET (box);
589 }
590
591 static GtkWidget* 
592 create_page_complete_easysetup (ModestEasysetupWizardDialog *self)
593 {
594         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
595         
596         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_setup_complete"));
597         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
598         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
599         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
600         /* The documentation for gtk_label_set_line_wrap() says that we must 
601          * call gtk_widget_set_size_request() with a hard-coded width, 
602          * though I wonder why gtk_label_set_max_width_chars() isn't enough. */
603         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
604         gtk_widget_show (label);
605         
606         label = gtk_label_new (_("mcen_ia_easysetup_complete"));
607         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
608         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
609         
610         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
611         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
612         gtk_widget_show (label);
613         
614         gtk_widget_show (GTK_WIDGET (box));
615         return GTK_WIDGET (box);
616 }
617
618 /** Change the caption title for the incoming server, 
619  * as specified in the UI spec:
620  */
621 static void 
622 update_incoming_server_title (ModestEasysetupWizardDialog *self)
623 {
624         ModestEasysetupWizardDialogPrivate* priv; 
625         ModestProtocolType protocol_type; 
626         ModestProtocolRegistry *protocol_registry;
627
628         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
629         protocol_registry = modest_runtime_get_protocol_registry ();
630
631         protocol_type = modest_servertype_picker_get_active_servertype (
632                 MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));
633
634         /* This could happen when the combo box has still no active iter */
635         if (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
636                 gchar* incomingserver_title;
637                 const gchar *protocol_display_name;
638                 ModestProtocol *protocol;
639
640                 protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, 
641                                                                           protocol_type);
642                 protocol_display_name = modest_protocol_get_display_name (protocol);
643
644                 incomingserver_title = g_strdup_printf(_("mcen_li_emailsetup_servertype"), 
645                                                        protocol_display_name);
646
647                 modest_maemo_utils_captioned_set_label (priv->caption_incoming, incomingserver_title, TRUE);
648
649                 g_free(incomingserver_title);
650         }
651 }
652
653 /** Change the caption title for the incoming server, 
654  * as specified in the UI spec:
655  */
656 static void 
657 update_incoming_server_security_choices (ModestEasysetupWizardDialog *self)
658 {
659         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
660         ModestServertypePicker *server_type_picker;
661         ModestProtocolType protocol_type;
662         ModestSecurityOptionsView *view;
663
664         server_type_picker = 
665                 MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker);
666         protocol_type = 
667                 modest_servertype_picker_get_active_servertype (server_type_picker);
668         
669         /* Fill the combo with appropriately titled choices for all
670            those protocols */
671         view = MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security);
672         modest_security_options_view_set_server_type (view, protocol_type);
673 }
674
675 static void 
676 on_servertype_selector_changed(HildonTouchSelector *selector, gint column, gpointer user_data)
677 {
678         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
679         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
680         ModestServertypePicker *picker;
681         ModestProtocolType protocol_type;
682
683         priv->dirty = TRUE;
684         
685         /* Update title */
686         update_incoming_server_title (self);
687
688         /* Update security options if needed */
689         picker = MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker);
690         protocol_type = modest_servertype_picker_get_active_servertype (picker);
691         update_incoming_server_security_choices (self);
692         gtk_widget_show (priv->incoming_security);
693
694         set_default_custom_servernames (self);
695 }
696
697 static void 
698 on_entry_incoming_servername_changed(GtkEntry *entry, gpointer user_data)
699 {
700         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
701         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
702         priv->dirty = TRUE;
703         priv->server_changes |= MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED;
704 }
705
706 static GtkWidget* 
707 create_page_custom_incoming (ModestEasysetupWizardDialog *self)
708 {
709         ModestProtocolRegistry *protocol_registry;
710         ModestEasysetupWizardDialogPrivate* priv; 
711         GtkWidget *box; 
712         GtkWidget *scrolled_window;
713         GtkWidget *label;
714         GtkSizeGroup *title_sizegroup;
715         GtkSizeGroup *value_sizegroup;
716
717         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
718         protocol_registry = modest_runtime_get_protocol_registry ();
719
720         box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
721         scrolled_window = gtk_scrolled_window_new (NULL, NULL);
722
723         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
724                                         GTK_POLICY_NEVER,
725                                         GTK_POLICY_AUTOMATIC);
726
727         /* Show note that account type cannot be changed in future: */
728         label = gtk_label_new (_("mcen_ia_emailsetup_account_type"));
729         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
730         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
731         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
732         gtk_widget_show (label);
733         
734         /* Create a size group to be used by all captions.
735          * Note that HildonCaption does not create a default size group if we do not specify one.
736          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
737         title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
738         value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
739          
740         /* The incoming server widgets: */
741         priv->incoming_servertype_picker = GTK_WIDGET (modest_servertype_picker_new (MODEST_EDITABLE_SIZE,
742                                                                                      HILDON_BUTTON_ARRANGEMENT_HORIZONTAL,
743                                                                                      TRUE));
744         hildon_button_set_title (HILDON_BUTTON (priv->incoming_servertype_picker), _("mcen_li_emailsetup_type"));
745         g_signal_connect (G_OBJECT (priv->incoming_servertype_picker), "value-changed",
746                           G_CALLBACK (on_picker_button_value_changed), self);
747         gtk_box_pack_start (GTK_BOX (box), priv->incoming_servertype_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
748         gtk_widget_show (priv->incoming_servertype_picker);
749         
750         priv->entry_incomingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
751         g_signal_connect(G_OBJECT(priv->entry_incomingserver), "changed", G_CALLBACK(on_easysetup_changed), self);
752         /* Auto-capitalization is the default, so let's turn it off: */
753         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_incomingserver), HILDON_GTK_INPUT_MODE_FULL);
754         set_default_custom_servernames (self);
755
756         /* The caption title will be updated in update_incoming_server_title().
757          * so this default text will never be seen: */
758         priv->caption_incoming = create_captioned (self, title_sizegroup, value_sizegroup,
759                                                    "This will be removed", 
760                                                    FALSE, priv->entry_incomingserver);
761         update_incoming_server_title (self);
762         gtk_widget_show (priv->entry_incomingserver);
763         gtk_box_pack_start (GTK_BOX (box), priv->caption_incoming, FALSE, FALSE, MODEST_MARGIN_HALF);
764         gtk_widget_show (priv->caption_incoming);
765         
766         /* Change the caption title when the servertype changes, 
767          * as in the UI spec: */
768         g_signal_connect (G_OBJECT (hildon_picker_button_get_selector (HILDON_PICKER_BUTTON (priv->incoming_servertype_picker))), 
769                           "changed",
770                           G_CALLBACK (on_servertype_selector_changed), self);
771
772         /* Remember when the servername was changed manually: */
773         g_signal_connect (G_OBJECT (priv->entry_incomingserver), "changed",
774                           G_CALLBACK (on_entry_incoming_servername_changed), self);
775
776         /* The secure connection widgets. These are only valid for
777            protocols with security */   
778         priv->incoming_security = 
779                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_INCOMING,
780                                                         FALSE, title_sizegroup, value_sizegroup);
781         gtk_box_pack_start (GTK_BOX (box), priv->incoming_security, 
782                             FALSE, FALSE, MODEST_MARGIN_HALF);
783         gtk_widget_show_all (priv->incoming_security);
784
785         /* Set default selection */
786         modest_servertype_picker_set_active_servertype (
787                 MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker), 
788                 MODEST_PROTOCOLS_STORE_POP);
789
790         gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolled_window), box);
791         gtk_container_set_focus_vadjustment (GTK_CONTAINER (box),
792                                              gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (scrolled_window)));
793         gtk_widget_show (GTK_WIDGET (box));
794         gtk_widget_show (scrolled_window);
795
796         g_object_unref (title_sizegroup);
797         g_object_unref (value_sizegroup);
798
799         return GTK_WIDGET (scrolled_window);
800 }
801
802 static void
803 on_check_button_changed (HildonCheckButton *button, gpointer user_data)
804 {
805         GtkWidget *widget = GTK_WIDGET (user_data);
806         
807         /* Enable the widget only if the check button is active: */
808         const gboolean enable = hildon_check_button_get_active (button);
809         gtk_widget_set_sensitive (widget, enable);
810 }
811
812 /* Make the sensitivity of a widget depend on a check button.
813  */
814 static void
815 enable_widget_for_checkbutton (GtkWidget *widget, HildonCheckButton* button)
816 {
817         g_signal_connect (G_OBJECT (button), "toggled",
818                           G_CALLBACK (on_check_button_changed), widget);
819         
820         /* Set the starting sensitivity: */
821         on_check_button_changed (button, widget);
822 }
823
824 static void
825 on_button_outgoing_smtp_servers (GtkButton *button, gpointer user_data)
826 {
827         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
828         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
829         GtkWidget *specific_window;
830         
831         /* We set dirty here because setting it depending on the connection specific dialog
832         seems overkill */
833         priv->dirty = TRUE;
834         
835         /* Create the window, if necessary: */
836         specific_window = (GtkWidget *) modest_connection_specific_smtp_window_new ();
837         modest_connection_specific_smtp_window_fill_with_connections (MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window), priv->account_manager);
838
839         /* Show the window */
840         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (specific_window), GTK_WINDOW (self));
841         gtk_widget_show (specific_window);
842 }
843
844 static void 
845 on_entry_outgoing_servername_changed (GtkEntry *entry, gpointer user_data)
846 {
847         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
848         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
849         priv->server_changes |= MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED;
850 }
851
852 static GtkWidget* 
853 create_page_custom_outgoing (ModestEasysetupWizardDialog *self)
854 {
855         ModestEasysetupWizardDialogPrivate *priv;
856         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
857         
858         /* Create a size group to be used by all captions.
859          * Note that HildonCaption does not create a default size group if we do not specify one.
860          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
861         GtkSizeGroup *title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
862         GtkSizeGroup *value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
863          
864         /* The outgoing server widgets: */
865         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
866         priv->entry_outgoingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
867         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
868                   G_CALLBACK (on_easysetup_changed), self);
869         /* Auto-capitalization is the default, so let's turn it off: */
870         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
871         GtkWidget *caption = create_captioned (self, title_sizegroup, value_sizegroup,
872                                                _("mcen_li_emailsetup_smtp"), FALSE, priv->entry_outgoingserver);
873         gtk_widget_show (priv->entry_outgoingserver);
874         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
875         gtk_widget_show (caption);
876         set_default_custom_servernames (self);
877
878         /* The secure connection widgets. These are only valid for
879            protocols with security */   
880         priv->outgoing_security = 
881                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_OUTGOING,
882                                                         FALSE, title_sizegroup, value_sizegroup);
883         gtk_box_pack_start (GTK_BOX (box), priv->outgoing_security, 
884                             FALSE, FALSE, MODEST_MARGIN_HALF);
885         gtk_widget_show (priv->outgoing_security);
886
887         GtkWidget *separator = gtk_hseparator_new ();
888         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
889         gtk_widget_show (separator);
890
891         /* connection-specific checkbox: */
892         priv->checkbox_outgoing_smtp_specific = hildon_check_button_new (HILDON_SIZE_FINGER_HEIGHT);
893         hildon_check_button_set_active (HILDON_CHECK_BUTTON (priv->checkbox_outgoing_smtp_specific), 
894                                         FALSE);
895         gtk_button_set_label (GTK_BUTTON (priv->checkbox_outgoing_smtp_specific),
896                               _("mcen_fi_advsetup_connection_smtp"));
897         gtk_button_set_alignment (GTK_BUTTON (priv->checkbox_outgoing_smtp_specific),
898                                   0.0, 0.5);
899         g_signal_connect (G_OBJECT (priv->checkbox_outgoing_smtp_specific), "toggled",
900                   G_CALLBACK (on_easysetup_changed), self);
901
902         gtk_widget_show (priv->checkbox_outgoing_smtp_specific);
903         gtk_box_pack_start (GTK_BOX (box), priv->checkbox_outgoing_smtp_specific,
904                             FALSE, FALSE, MODEST_MARGIN_HALF);
905
906         /* Connection-specific SMTP-Severs Edit button: */
907         priv->button_outgoing_smtp_servers = gtk_button_new_with_label (_("mcen_bd_advsetup_optional_smtp"));
908         hildon_gtk_widget_set_theme_size (priv->button_outgoing_smtp_servers, 
909                                           HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);  
910         gtk_widget_show (priv->button_outgoing_smtp_servers);
911         gtk_box_pack_start (GTK_BOX (box), priv->button_outgoing_smtp_servers, 
912                             FALSE, FALSE, MODEST_MARGIN_HALF);
913
914         /* Only enable the button when the checkbox is checked: */
915         enable_widget_for_checkbutton (priv->button_outgoing_smtp_servers, 
916                                        HILDON_CHECK_BUTTON (priv->checkbox_outgoing_smtp_specific));
917
918         g_signal_connect (G_OBJECT (priv->button_outgoing_smtp_servers), "clicked",
919                           G_CALLBACK (on_button_outgoing_smtp_servers), self);
920
921         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
922                           G_CALLBACK (on_entry_outgoing_servername_changed), self);
923         gtk_widget_show (GTK_WIDGET (box));
924
925         g_object_unref (title_sizegroup);
926         g_object_unref (value_sizegroup);
927         
928         return GTK_WIDGET (box);
929 }
930
931 static gboolean
932 show_advanced_edit(gpointer user_data)
933 {
934         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
935         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
936         gint response;
937         
938         /* Show the Account Settings window: */
939         ModestAccountSettingsDialog *dialog = modest_default_account_settings_dialog_new ();
940         if (priv->pending_load_settings) {
941                 save_to_settings (self);
942                 priv->pending_load_settings = FALSE;
943         }
944         modest_account_settings_dialog_load_settings (dialog, priv->settings);
945         
946         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (dialog), GTK_WINDOW (self));
947         
948         response = gtk_dialog_run (GTK_DIALOG (dialog));
949
950         gtk_widget_destroy (GTK_WIDGET (dialog));
951         
952         return FALSE; /* Do not call this timeout callback again. */
953 }
954
955 static void
956 on_button_edit_advanced_settings (GtkButton *button, gpointer user_data)
957 {
958         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
959         
960         /* Show the Account Settings window: */
961         show_advanced_edit(self);
962 }
963 static GtkWidget* 
964 create_page_complete_custom (ModestEasysetupWizardDialog *self)
965 {
966         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
967         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_setup_complete"));
968         GtkWidget *button_edit = gtk_button_new_with_label (_("mcen_fi_advanced_settings"));
969         hildon_gtk_widget_set_theme_size (button_edit, HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
970         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
971         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
972         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
973         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
974         gtk_widget_show (label);
975         
976         label = gtk_label_new (_("mcen_ia_customsetup_complete"));
977         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0);
978         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
979         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
980         gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
981         gtk_widget_show (label);
982         
983         gtk_widget_show (button_edit);
984         gtk_box_pack_start (GTK_BOX (box), button_edit, FALSE, FALSE, MODEST_MARGIN_HALF);
985         
986         g_signal_connect (G_OBJECT (button_edit), "clicked", 
987                           G_CALLBACK (on_button_edit_advanced_settings), self);
988         
989         gtk_widget_show (GTK_WIDGET (box));
990         return GTK_WIDGET (box);
991 }
992
993
994 /*
995  */
996 static void 
997 on_response (ModestWizardDialog *wizard_dialog,
998              gint response_id,
999              gpointer user_data)
1000 {
1001         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1002
1003         invoke_enable_buttons_vfunc (self);
1004 }
1005
1006 static void 
1007 on_response_before (ModestWizardDialog *wizard_dialog,
1008                     gint response_id,
1009                     gpointer user_data)
1010 {
1011         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1012         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(wizard_dialog);
1013         if (response_id == GTK_RESPONSE_CANCEL) {
1014                 /* This is mostly copied from
1015                  * src/maemo/modest-account-settings-dialog.c */
1016                 if (priv->dirty) {
1017                         GtkDialog *dialog = GTK_DIALOG (hildon_note_new_confirmation (GTK_WINDOW (self), 
1018                                 _("imum_nc_wizard_confirm_lose_changes")));
1019                         /* TODO: These button names will be ambiguous, and not
1020                          * specified in the UI specification. */
1021
1022                         const gint dialog_response = gtk_dialog_run (dialog);
1023                         gtk_widget_destroy (GTK_WIDGET (dialog));
1024
1025                         if (dialog_response != GTK_RESPONSE_OK) {
1026                                 /* Don't let the dialog close */
1027                                 g_signal_stop_emission_by_name (wizard_dialog, "response");
1028                         }
1029                 }
1030         }
1031 }
1032
1033 typedef struct IdleData {
1034         ModestEasysetupWizardDialog *dialog;
1035         ModestPresets *presets;
1036 } IdleData;
1037
1038 static gboolean
1039 presets_idle (gpointer userdata)
1040 {
1041         IdleData *idle_data = (IdleData *) userdata;
1042         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (idle_data->dialog);
1043         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1044
1045         g_assert (idle_data->presets);
1046
1047         gdk_threads_enter ();
1048
1049         priv->presets = idle_data->presets;
1050
1051         if (MODEST_IS_COUNTRY_PICKER (priv->account_country_picker)) {
1052 /*              gint mcc = get_default_country_code(); */
1053                 gint mcc;
1054                 /* Fill the combo in an idle call, as it takes a lot of time */
1055                 modest_country_picker_load_data(
1056                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1057                 /* connect to country picker's changed signal, so we can fill the provider picker: */
1058                 g_signal_connect (G_OBJECT (hildon_picker_button_get_selector 
1059                                             (HILDON_PICKER_BUTTON (priv->account_country_picker))),
1060                                   "changed",
1061                                   G_CALLBACK (on_account_country_selector_changed), self);
1062             
1063                 modest_country_picker_set_active_country_locale (
1064                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1065                 mcc = modest_country_picker_get_active_country_mcc (
1066                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1067                 modest_provider_picker_fill (
1068                         MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker),
1069                         priv->presets, mcc);
1070                 /* connect to providers picker's changed signal, so we can fill the email address: */
1071                 g_signal_connect (G_OBJECT (hildon_picker_button_get_selector 
1072                                             (HILDON_PICKER_BUTTON (priv->account_serviceprovider_picker))),
1073                                   "changed",
1074                                   G_CALLBACK (on_account_serviceprovider_selector_changed), self);
1075                 
1076                 modest_provider_picker_set_others_provider (MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker));
1077         }
1078
1079         priv->dirty = FALSE;
1080
1081         g_object_unref (idle_data->dialog);
1082         g_free (idle_data);
1083
1084         gdk_threads_leave ();
1085
1086         return FALSE;
1087 }
1088
1089 static gpointer
1090 presets_loader (gpointer userdata)
1091 {
1092         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (userdata);
1093         ModestPresets *presets = NULL;
1094         IdleData *idle_data;
1095
1096         const gchar* path  = NULL;
1097         const gchar* path1 = MODEST_PROVIDER_DATA_FILE;
1098         const gchar* path2 = MODEST_MAEMO_PROVIDER_DATA_FILE;
1099         
1100         if (access(path1, R_OK) == 0) 
1101                 path = path1;
1102         else if (access(path2, R_OK) == 0)
1103                 path = path2;
1104         else {
1105                 g_warning ("%s: neither '%s' nor '%s' is a readable provider data file",
1106                            __FUNCTION__, path1, path2);
1107                 return NULL;
1108         }
1109
1110         presets = modest_presets_new (path);
1111         if (!presets) {
1112                 g_warning ("%s: failed to parse '%s'", __FUNCTION__, path);
1113                 return NULL;
1114         }
1115         
1116         idle_data = g_new0 (IdleData, 1);
1117         idle_data->dialog = self;
1118         idle_data->presets = presets;
1119         
1120         g_idle_add (presets_idle, idle_data);   
1121
1122         return NULL;
1123 }
1124
1125 static void
1126 modest_easysetup_wizard_dialog_append_page (GtkNotebook *notebook,
1127                                             GtkWidget *page,
1128                                             const gchar *label)
1129 {
1130         gint index;
1131         /* Append page and set attributes */
1132         index = gtk_notebook_append_page (notebook, page, gtk_label_new (label));
1133         gtk_container_child_set (GTK_CONTAINER (notebook), page,
1134                                  "tab-expand", TRUE, "tab-fill", TRUE,
1135                                  NULL);
1136         gtk_widget_show (page);
1137 }
1138
1139 static void
1140 init_user_page (ModestEasysetupWizardDialogPrivate *priv)
1141 {
1142         priv->page_user_details = NULL;
1143         priv->entry_user_name = NULL;
1144         priv->entry_user_username = NULL;
1145         priv->entry_user_password = NULL;
1146         priv->entry_user_email = NULL;
1147 }
1148
1149 static void
1150 init_incoming_page (ModestEasysetupWizardDialogPrivate *priv)
1151 {
1152         priv->page_custom_incoming = NULL;
1153         priv->incoming_servertype_picker = NULL;
1154         priv->caption_incoming = NULL;
1155         priv->entry_incomingserver = NULL;
1156         priv->entry_user_email = NULL;
1157         priv->incoming_security = NULL;
1158 }
1159
1160 static void
1161 init_outgoing_page (ModestEasysetupWizardDialogPrivate *priv)
1162 {
1163         priv->page_custom_outgoing = NULL;
1164         priv->entry_outgoingserver = NULL;
1165         priv->checkbox_outgoing_smtp_specific = NULL;
1166         priv->button_outgoing_smtp_servers = NULL;
1167         priv->outgoing_security = NULL;
1168 }
1169
1170 static void
1171 modest_easysetup_wizard_dialog_init (ModestEasysetupWizardDialog *self)
1172 {
1173         gtk_container_set_border_width (GTK_CONTAINER (self), MODEST_MARGIN_HALF);
1174         
1175         /* Create the notebook to be used by the ModestWizardDialog base class:
1176          * Each page of the notebook will be a page of the wizard: */
1177         GtkNotebook *notebook = GTK_NOTEBOOK (gtk_notebook_new());
1178         gtk_widget_set_size_request (GTK_WIDGET (notebook), DIALOG_WIDTH, -1);
1179         
1180         /* Set the notebook used by the ModestWizardDialog base class: */
1181         g_object_set (G_OBJECT(self), "wizard-notebook", notebook, NULL);
1182     
1183         /* Set the wizard title:
1184          * The actual window title will be a combination of this and the page's tab label title. */
1185         g_object_set (G_OBJECT(self), "wizard-name", _("mcen_ti_emailsetup"), NULL);
1186
1187         /* Read in the information about known service providers: */
1188         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1189         
1190         /* The server fields did not have been manually changed yet */
1191         priv->server_changes = 0;
1192         priv->pending_load_settings = TRUE;
1193
1194         /* Get the account manager object, 
1195          * so we can check for existing accounts,
1196          * and create new accounts: */
1197         priv->account_manager = modest_runtime_get_account_mgr ();
1198         g_object_ref (priv->account_manager);
1199         
1200         /* Initialize fields */
1201         priv->page_welcome = create_page_welcome (self);
1202         priv->page_account_details = create_page_account_details (self);
1203
1204         init_user_page (priv);
1205         init_incoming_page (priv);
1206         init_outgoing_page (priv);
1207
1208         priv->page_complete_easysetup = NULL;       
1209         priv->page_complete_customsetup = NULL;
1210         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1211         priv->missing_data_signals = NULL;
1212
1213         /* Add the common pages */
1214         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_welcome, 
1215                                                     _("mcen_ti_emailsetup_welcome"));
1216         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_account_details, 
1217                                                     _("mcen_ti_accountdetails"));
1218                 
1219         /* Connect to the dialog's response signal so we can enable/disable buttons 
1220          * for the newly-selected page, because the prev/next buttons cause response to be emitted.
1221          * Note that we use g_signal_connect_after() instead of g_signal_connect()
1222          * so that we can be enable/disable after ModestWizardDialog has done its own 
1223          * enabling/disabling of buttons.
1224          * 
1225          * HOWEVER, this doesn't work because ModestWizardDialog's response signal handler 
1226          * does g_signal_stop_emission_by_name(), stopping our signal handler from running.
1227          * 
1228          * It's not enough to connect to the notebook's switch-page signal, because 
1229          * ModestWizardDialog's "response" signal handler enables the buttons itself, 
1230          * _after_ switching the page (understandably).
1231          * (Note that if we had, if we used g_signal_connect() instead of g_signal_connect_after()
1232          * then gtk_notebook_get_current_page() would return an incorrect value.)
1233          */
1234         g_signal_connect_after (G_OBJECT (self), "response",
1235                                 G_CALLBACK (on_response), self);
1236
1237         /* This is to show a confirmation dialog when the user hits cancel */
1238         g_signal_connect (G_OBJECT (self), "response",
1239                           G_CALLBACK (on_response_before), self);
1240
1241         g_signal_connect (G_OBJECT (self), "delete-event",
1242                           G_CALLBACK (on_delete_event), self);
1243
1244         /* Reset dirty, because there was no user input until now */
1245         priv->dirty = FALSE;
1246         
1247         /* When this window is shown, hibernation should not be possible, 
1248          * because there is no sensible way to save the state: */
1249         modest_window_mgr_prevent_hibernation_while_window_is_shown (
1250                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
1251
1252         /* Load provider presets */
1253         g_object_ref (self);
1254         g_thread_create (presets_loader, self, FALSE, NULL);
1255
1256         priv->settings = modest_account_settings_new ();
1257 }
1258
1259 ModestEasysetupWizardDialog*
1260 modest_easysetup_wizard_dialog_new (void)
1261 {       
1262         
1263         return g_object_new (MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, NULL);
1264 }
1265
1266 static void 
1267 create_subsequent_customsetup_pages (ModestEasysetupWizardDialog *self)
1268 {
1269         ModestEasysetupWizardDialogPrivate *priv;
1270         GtkNotebook *notebook = NULL;
1271
1272         g_object_get (self, "wizard-notebook", &notebook, NULL);
1273         g_assert(notebook);
1274
1275         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1276
1277         if (!priv->page_user_details) {
1278                 priv->page_user_details = create_page_user_details (self);
1279         }                       
1280
1281         /* Create the custom pages: */
1282         if(!(priv->page_custom_incoming)) {
1283                 priv->page_custom_incoming = create_page_custom_incoming (self);
1284         }
1285                 
1286         /* TODO: only if needed */
1287         if(!(priv->page_custom_outgoing)) {
1288                 priv->page_custom_outgoing = create_page_custom_outgoing (self);
1289         }
1290         
1291         if(!(priv->page_complete_customsetup)) {
1292                 priv->page_complete_customsetup = create_page_complete_custom (self);
1293         }
1294
1295         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_user_details)))
1296                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_user_details,
1297                                                             _("mcen_ti_emailsetup_userdetails"));
1298
1299         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_incoming)))
1300                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_incoming, 
1301                                                             _("mcen_ti_emailsetup_incomingdetails"));
1302         
1303         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_outgoing)))           
1304                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_outgoing, 
1305                                                             _("mcen_ti_emailsetup_outgoingdetails"));
1306                 
1307         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_customsetup)))
1308                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_customsetup, 
1309                                                             _("mcen_ti_emailsetup_complete"));
1310                         
1311         /* This is unnecessary with GTK+ 2.10: */
1312         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1313 }
1314         
1315 static void 
1316 create_subsequent_easysetup_pages (ModestEasysetupWizardDialog *self)
1317 {
1318         ModestEasysetupWizardDialogPrivate *priv;
1319         GtkNotebook *notebook = NULL;
1320
1321         g_object_get (self, "wizard-notebook", &notebook, NULL);
1322         g_assert(notebook);
1323         
1324         /* Create the easysetup-specific pages: */
1325         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1326         if(!priv->page_complete_easysetup)
1327                 priv->page_complete_easysetup = create_page_complete_easysetup (self);
1328
1329         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_easysetup)))
1330                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_easysetup, 
1331                                                             _("mcen_ti_emailsetup_complete"));
1332                         
1333         /* This is unnecessary with GTK+ 2.10: */
1334         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1335 }
1336
1337 /* */
1338 static void
1339 remove_non_common_tabs (GtkNotebook *notebook, 
1340                         gboolean remove_user_details) 
1341 {
1342         gint starting_tab;
1343         /* The first 2 tabs are the common ones (welcome tab and the
1344            providers tab), so we always remove starting from the
1345            end */
1346
1347         starting_tab = (remove_user_details) ? 2 : 3;
1348         while (gtk_notebook_get_n_pages (notebook) > starting_tab) 
1349                 gtk_notebook_remove_page (notebook, -1); 
1350 }
1351
1352 static void
1353 on_missing_mandatory_data (ModestAccountProtocol *protocol,
1354                            gboolean missing,
1355                            gpointer user_data)
1356 {
1357         real_enable_buttons (MODEST_WIZARD_DIALOG (user_data), !missing);
1358 }
1359
1360 /* After the user details page,
1361  * the following pages depend on whether "Other" was chosen 
1362  * in the provider combobox on the account page
1363  */
1364 static void 
1365 create_subsequent_pages (ModestEasysetupWizardDialog *self)
1366 {
1367         ModestEasysetupWizardDialogPrivate *priv;
1368         ModestProviderPicker *picker;
1369         ModestProviderPickerIdType id_type;
1370         GtkNotebook *notebook;
1371
1372         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1373         picker = MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker);
1374         id_type = modest_provider_picker_get_active_id_type (picker);
1375         g_object_get (self, "wizard-notebook", &notebook, NULL);
1376
1377         if (id_type == MODEST_PROVIDER_PICKER_ID_OTHER) {
1378                 /* "Other..." was selected: */
1379
1380                 /* If we come from a rollbacked easysetup */
1381                 if (priv->page_complete_easysetup) {
1382                         remove_non_common_tabs (notebook, FALSE);
1383                         priv->page_complete_easysetup = NULL;
1384                 } 
1385                 
1386                 /* If we come from a rollbacked plugin protocol setup */
1387                 if (priv->last_plugin_protocol_selected != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1388                         remove_non_common_tabs (notebook, TRUE);
1389                         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1390                         modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1391                         priv->missing_data_signals = NULL;
1392                 }
1393
1394                 create_subsequent_customsetup_pages (self);
1395         } else {
1396                 /* If we come from a rollbacked custom setup */
1397                 if (priv->page_custom_incoming) {
1398                         remove_non_common_tabs (notebook, TRUE);
1399                         init_user_page (priv);
1400                         init_incoming_page (priv);
1401                         init_outgoing_page (priv);
1402                         init_user_page (priv);
1403                         priv->page_complete_customsetup = NULL;
1404                 }
1405
1406                 /* It's a pluggable protocol and not a provider with presets */
1407                 if (id_type == MODEST_PROVIDER_PICKER_ID_PLUGIN_PROTOCOL) {
1408                         ModestProtocol *protocol;
1409                         gchar *proto_name;
1410                         ModestProtocolType proto_type;
1411
1412                         
1413                         /* If we come from a rollbacked easy setup */
1414                         if (priv->last_plugin_protocol_selected == 
1415                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID &&
1416                             priv->page_complete_easysetup) {
1417                                 remove_non_common_tabs (notebook, TRUE);
1418                                 init_user_page (priv);
1419                                 priv->page_complete_easysetup = NULL;
1420                         }
1421                         
1422                         proto_name = modest_provider_picker_get_active_provider_id (picker);
1423                         protocol = modest_protocol_registry_get_protocol_by_name (modest_runtime_get_protocol_registry (),
1424                                                                                   MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1425                                                                                   proto_name);
1426                         proto_type = modest_protocol_get_type_id (protocol);
1427
1428                         if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol) &&
1429                             proto_type != priv->last_plugin_protocol_selected) {
1430                                 ModestPairList *tabs;
1431                                 GSList *tmp;
1432
1433                                 /* Remember the last selected plugin protocol */
1434                                 priv->last_plugin_protocol_selected = proto_type;
1435
1436                                 /* Get tabs */
1437                                 tabs = modest_account_protocol_get_easysetupwizard_tabs (MODEST_ACCOUNT_PROTOCOL (protocol));
1438                                 tmp = (GSList *) tabs;
1439                                 while (tmp) {
1440                                         ModestPair *pair = (ModestPair *) tmp->data;
1441                                         modest_easysetup_wizard_dialog_append_page (notebook,
1442                                                                                     GTK_WIDGET (pair->second),
1443                                                                                     (const gchar *) pair->first);
1444
1445                                         /* Connect signals */
1446                                         priv->missing_data_signals = 
1447                                                 modest_signal_mgr_connect (priv->missing_data_signals, 
1448                                                                            G_OBJECT (pair->second), 
1449                                                                            "missing-mandatory-data",
1450                                                                            G_CALLBACK (on_missing_mandatory_data), 
1451                                                                            self);
1452
1453                                         g_free (pair->first);
1454                                         tmp = g_slist_next (tmp);
1455                                         /* Critical: if you don't show the page then the dialog will ignore it */
1456 /*                                      gtk_widget_show (GTK_WIDGET (pair->second)); */
1457                                 }
1458                                 modest_pair_list_free (tabs);
1459                         }
1460                         g_free (proto_name);
1461                 } else {
1462                         if (priv->last_plugin_protocol_selected != 
1463                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1464                                 remove_non_common_tabs (notebook, TRUE);
1465                                 init_user_page (priv);
1466                                 priv->page_complete_easysetup = NULL;
1467                                 priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1468                                 modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1469                                 priv->missing_data_signals = NULL;
1470                         }
1471                         if (!priv->page_user_details) {
1472                                 priv->page_user_details = create_page_user_details (self);
1473                                 modest_easysetup_wizard_dialog_append_page (notebook, 
1474                                                                             priv->page_user_details,
1475                                                                             _("mcen_ti_emailsetup_userdetails"));
1476                         }
1477                 }
1478                 
1479                 /* Create the easysetup pages: */
1480                 create_subsequent_easysetup_pages (self);
1481         }
1482 }
1483
1484
1485 static gchar*
1486 util_get_default_servername_from_email_address (const gchar* email_address, ModestProtocolType protocol_type)
1487 {
1488         const gchar* hostname = NULL;
1489         gchar* at;
1490         gchar* domain;
1491         ModestProtocolRegistry *protocol_registry;
1492         ModestProtocol *protocol;
1493
1494         if (!email_address)
1495                 return NULL;
1496         
1497         at = g_utf8_strchr (email_address, -1, '@');
1498         if (!at || (g_utf8_strlen (at, -1) < 2))
1499                 return NULL;
1500                 
1501         domain = g_utf8_next_char (at);
1502         if(!domain)
1503                 return NULL;
1504
1505         protocol_registry = modest_runtime_get_protocol_registry ();
1506         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
1507                 
1508         if (modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS) ||
1509             modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_TRANSPORT_PROTOCOLS)) {
1510                 hostname = modest_protocol_get_name (protocol);
1511         }
1512         
1513         if (!hostname)
1514                 return NULL;
1515                 
1516         return g_strdup_printf ("%s.%s", hostname, domain);
1517 }
1518
1519 static void 
1520 set_default_custom_servernames (ModestEasysetupWizardDialog *self)
1521 {
1522         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1523
1524         if (!priv->entry_incomingserver)
1525                 return;
1526                 
1527         /* Set a default domain for the server, based on the email address,
1528          * if no server name was already specified.
1529          */
1530         if (priv->entry_user_email
1531             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED) == 0)) {
1532                 const ModestProtocolType protocol_type = modest_servertype_picker_get_active_servertype (
1533                         MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));
1534
1535                 /* This could happen when the combo box has still no active iter */
1536                 if (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1537                         const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY(priv->entry_user_email));      
1538                         gchar* servername = util_get_default_servername_from_email_address (email_address, 
1539                                                                                             protocol_type);
1540
1541                         /* Do not set the INCOMING_CHANGED flag because of this edit */
1542                         g_signal_handlers_block_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1543                         hildon_entry_set_text (HILDON_ENTRY (priv->entry_incomingserver), servername);
1544                         g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1545                         
1546                         g_free (servername);
1547                 }
1548         }
1549         
1550         /* Set a default domain for the server, based on the email address,
1551          * if no server name was already specified.
1552          */
1553         if (!priv->entry_outgoingserver)
1554                 return;
1555                 
1556         if (priv->entry_user_email
1557             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED) == 0)) {
1558                 const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY(priv->entry_user_email));
1559                 
1560                 gchar* servername = util_get_default_servername_from_email_address (email_address, MODEST_PROTOCOLS_TRANSPORT_SMTP);
1561
1562                 /* Do not set the OUTGOING_CHANGED flag because of this edit */
1563                 g_signal_handlers_block_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1564                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_outgoingserver), servername);
1565                 g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1566
1567                 g_free (servername);
1568         }
1569 }
1570
1571 static gchar*
1572 get_entered_account_title (ModestEasysetupWizardDialog *self)
1573 {
1574         ModestEasysetupWizardDialogPrivate *priv;
1575         const gchar* account_title;
1576
1577         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1578         account_title = hildon_entry_get_text (HILDON_ENTRY (priv->entry_account_title));
1579
1580         if (!account_title || (g_utf8_strlen (account_title, -1) == 0)) {
1581                 return NULL;
1582         } else {
1583                 /* Strip it of whitespace at the start and end: */
1584                 gchar *result = g_strdup (account_title);
1585                 result = g_strstrip (result);
1586                 
1587                 if (!result)
1588                         return NULL;
1589                         
1590                 if (g_utf8_strlen (result, -1) == 0) {
1591                         g_free (result);
1592                         return NULL;    
1593                 }
1594                 
1595                 return result;
1596         }
1597 }
1598
1599 static gboolean
1600 on_before_next (ModestWizardDialog *dialog, GtkWidget *current_page, GtkWidget *next_page)
1601 {
1602         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1603         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1604         ModestProtocolRegistry *protocol_registry;
1605
1606         protocol_registry = modest_runtime_get_protocol_registry ();
1607
1608         /* if are browsing pages previous to the last one, then we have pending settings in
1609          * this wizard */
1610         if (next_page != NULL)
1611                 priv->pending_load_settings = TRUE;
1612         
1613         /* Do extra validation that couldn't be done for every key press,
1614          * either because it was too slow,
1615          * or because it requires interaction:
1616          */
1617         if (current_page == priv->page_account_details) {       
1618                 /* Check that the title is not already in use: */
1619                 gchar* account_title = get_entered_account_title (self);
1620                 if (!account_title)
1621                         return FALSE;
1622                         
1623                 /* Aavoid a clash with an existing display name: */
1624                 const gboolean name_in_use = modest_account_mgr_account_with_display_name_exists (
1625                         priv->account_manager, account_title);
1626                 g_free (account_title);
1627
1628                 if (name_in_use) {
1629                         /* Warn the user via a dialog: */
1630                         hildon_banner_show_information(NULL, NULL, _("mail_ib_account_name_already_existing"));
1631             
1632                         return FALSE;
1633                 }
1634
1635                 /* Make sure that the subsequent pages are appropriate for the provider choice. */
1636                 create_subsequent_pages (self);
1637
1638         } else if (current_page == priv->page_user_details) {
1639                 /* Check that the email address is valud: */
1640                 const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_email));
1641                 if ((!email_address) || (g_utf8_strlen (email_address, -1) == 0))
1642                         return FALSE;
1643                         
1644                 if (!modest_text_utils_validate_email_address (email_address, NULL)) {
1645                         /* Warn the user via a dialog: */
1646                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_email"));
1647                                              
1648                         /* Return focus to the email address entry: */
1649                         gtk_widget_grab_focus (priv->entry_user_email);
1650                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_user_email), 0, -1);
1651
1652                         return FALSE;
1653                 }
1654         }
1655           
1656         if (next_page == priv->page_custom_incoming) {
1657                 set_default_custom_servernames (self);
1658         } else if (next_page == priv->page_custom_outgoing) {
1659                 set_default_custom_servernames (self);
1660
1661                 /* Check if the server supports secure authentication */
1662 /*              if (modest_security_options_view_auth_check (security_options)) */
1663 /*                      if (!check_has_supported_auth_methods (self)) */
1664 /*                              return FALSE; */
1665                 gtk_widget_show (priv->outgoing_security);
1666         }
1667         
1668         /* If this is the last page, and this is a click on Finish, 
1669          * then attempt to create the dialog.
1670          */
1671         if(!next_page && 
1672            current_page != priv->page_account_details) /* This is NULL when this is a click on Finish. */
1673         {
1674                 if (priv->pending_load_settings) {
1675                         save_to_settings (self);
1676                 }
1677
1678                 /* We check if there's already another account with the same configuration */
1679                 if (modest_account_mgr_check_already_configured_account (priv->account_manager, priv->settings)) {
1680                         modest_platform_information_banner (NULL, NULL, _("mail_ib_setting_failed"));
1681                         return FALSE;
1682                 }
1683
1684                 modest_account_mgr_add_account_from_settings (priv->account_manager, priv->settings);
1685         }
1686         
1687         
1688         return TRUE;
1689 }
1690
1691 static gboolean entry_is_empty (GtkWidget *entry)
1692 {
1693         if (!entry)
1694                 return FALSE;
1695                 
1696         const gchar* text = hildon_entry_get_text (HILDON_ENTRY (entry));
1697         if ((!text) || (g_utf8_strlen (text, -1) == 0))
1698                 return TRUE;
1699         else {
1700                 /* Strip it of whitespace at the start and end: */
1701                 gchar *stripped = g_strdup (text);
1702                 stripped = g_strstrip (stripped);
1703                 
1704                 if (!stripped)
1705                         return TRUE;
1706                         
1707                 const gboolean result = (g_utf8_strlen (stripped, -1) == 0);
1708                 
1709                 g_free (stripped);
1710                 return result;
1711         }
1712 }
1713
1714 static void
1715 real_enable_buttons (ModestWizardDialog *dialog, gboolean enable_next)
1716 {               
1717         GtkNotebook *notebook = NULL;
1718         gboolean is_finish_tab;
1719         GtkWidget *current;
1720         ModestEasysetupWizardDialogPrivate *priv;
1721
1722         /* Get data */
1723         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (dialog);
1724         g_object_get (dialog, "wizard-notebook", &notebook, NULL);
1725         
1726         /* Disable the Finish button until we are on the last page,
1727          * because HildonWizardDialog enables this for all but the
1728          * first page */
1729         current = gtk_notebook_get_nth_page (notebook, gtk_notebook_get_current_page (notebook));
1730         is_finish_tab = ((current == priv->page_complete_easysetup) ||
1731                          (current == priv->page_complete_customsetup));
1732
1733         if (is_finish_tab) {
1734                 /* Disable Next on the last page no matter what the
1735                    argument say */
1736                 enable_next = FALSE;
1737         } else {
1738                 /* Not the last one */
1739                 gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1740                                                    MODEST_WIZARD_DIALOG_FINISH,
1741                                                    FALSE);
1742         }
1743         
1744         gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1745                                            MODEST_WIZARD_DIALOG_NEXT,
1746                                            enable_next);
1747 }
1748
1749 static void
1750 on_enable_buttons (ModestWizardDialog *dialog, GtkWidget *current_page)
1751 {
1752         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1753         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1754         
1755         gboolean enable_next = TRUE;
1756         if (current_page == priv->page_welcome) {
1757                 enable_next = TRUE;
1758         } else if (current_page == priv->page_account_details) {
1759                 /* The account details title is mandatory: */
1760                 if (entry_is_empty(priv->entry_account_title))
1761                         enable_next = FALSE;
1762         } else if (current_page == priv->page_user_details) {   
1763                 /* The user details username is mandatory: */
1764                 if (entry_is_empty(priv->entry_user_username))
1765                         enable_next = FALSE;
1766                         
1767                 /* The user details email address is mandatory: */
1768                 if (enable_next && entry_is_empty (priv->entry_user_email))
1769                         enable_next = FALSE;
1770         } else if (current_page == priv->page_custom_incoming) {
1771                 /* The custom incoming server is mandatory: */
1772                 if (entry_is_empty(priv->entry_incomingserver))
1773                         enable_next = FALSE;
1774         } else if (MODEST_IS_EASYSETUP_WIZARD_PAGE (current_page)) {
1775                 enable_next = !modest_easysetup_wizard_page_validate (
1776                        MODEST_EASYSETUP_WIZARD_PAGE (current_page));
1777         }
1778                         
1779         /* Enable/disable buttons */ 
1780         real_enable_buttons (dialog, enable_next);
1781 }
1782
1783 static void
1784 modest_easysetup_wizard_dialog_class_init (ModestEasysetupWizardDialogClass *klass)
1785 {
1786         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1787         g_type_class_add_private (klass, sizeof (ModestEasysetupWizardDialogPrivate));
1788
1789
1790         object_class->dispose = modest_easysetup_wizard_dialog_dispose;
1791         object_class->finalize = modest_easysetup_wizard_dialog_finalize;
1792         
1793         /* Provide a vfunc implementation so we can decide 
1794          * when to enable/disable the prev/next buttons.
1795          */
1796         ModestWizardDialogClass *base_klass = (ModestWizardDialogClass*)(klass);
1797         base_klass->before_next = on_before_next;
1798         base_klass->enable_buttons = on_enable_buttons;
1799 }
1800
1801 /**
1802  * save_to_settings:
1803  * @self: a #ModestEasysetupWizardDialog
1804  *
1805  * takes information from all the wizard and stores it in settings
1806  */
1807 static void
1808 save_to_settings (ModestEasysetupWizardDialog *self)
1809 {
1810         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1811         guint special_port;
1812         gchar *provider_id = NULL;
1813         gchar* display_name;
1814         const gchar *username, *password;
1815         gchar *store_hostname, *transport_hostname;
1816         guint store_port, transport_port;
1817         ModestProtocolRegistry *protocol_registry;
1818         ModestProtocolType store_protocol, transport_protocol;
1819         ModestProtocolType store_security, transport_security;
1820         ModestProtocolType store_auth_protocol, transport_auth_protocol;
1821         ModestServerAccountSettings *store_settings, *transport_settings;
1822         const gchar *fullname, *email_address;
1823         ModestProviderPicker *picker;
1824         ModestProviderPickerIdType id_type;
1825
1826         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1827         picker = MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker);
1828         protocol_registry = modest_runtime_get_protocol_registry ();
1829
1830         /* Get details from the specified presets: */
1831         id_type = modest_provider_picker_get_active_id_type (picker);
1832         provider_id = modest_provider_picker_get_active_provider_id (picker);
1833                 
1834         /* Let the plugin save the settings. We do a return in order
1835            to save an indentation level */
1836         if (id_type == MODEST_PROVIDER_PICKER_ID_PLUGIN_PROTOCOL) {
1837                 ModestProtocol *protocol;
1838
1839                 protocol = modest_protocol_registry_get_protocol_by_name (
1840                        modest_runtime_get_protocol_registry (),
1841                        MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1842                        provider_id);
1843
1844                 if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
1845                         gint n_pages, i = 0;
1846                         GtkNotebook *notebook;
1847                         GList *wizard_pages = NULL;
1848
1849                         g_object_get (self, "wizard-notebook", &notebook, NULL);
1850                         n_pages = gtk_notebook_get_n_pages (notebook);
1851                         for (i = 0; i < n_pages; i++) {
1852                                 GtkWidget *page = gtk_notebook_get_nth_page (notebook, i);
1853                                 if (MODEST_IS_EASYSETUP_WIZARD_PAGE (page))
1854                                         wizard_pages  = g_list_append (wizard_pages, page);
1855                         }
1856                         modest_account_protocol_save_wizard_settings (MODEST_ACCOUNT_PROTOCOL (protocol),
1857                                                                       wizard_pages,
1858                                                                       priv->settings);
1859                         g_list_free (wizard_pages);
1860                 } else {
1861                         g_warning ("The selected protocol is a plugin protocol "//
1862                                    "but it's not a ModestAccountProtocol");
1863                 }
1864
1865                 g_free (provider_id);
1866                 return;
1867         }
1868
1869         /* username and password (for both incoming and outgoing): */
1870         username = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_username));
1871         password = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_password));
1872
1873         store_settings = modest_account_settings_get_store_settings (priv->settings);
1874         transport_settings = modest_account_settings_get_transport_settings (priv->settings);
1875
1876         /* Incoming server: */
1877         /* Note: We need something as default for the transport store protocol values, 
1878          * or modest_account_mgr_add_server_account will fail. */
1879         store_port = 0;
1880         store_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1881         store_security = MODEST_PROTOCOLS_CONNECTION_NONE;
1882         store_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1883
1884         if (provider_id) {
1885                 ModestProtocolType store_provider_server_type;
1886                 gboolean store_provider_use_alternate_port;
1887                 /* Use presets: */
1888                 store_hostname = modest_presets_get_server (priv->presets, provider_id, 
1889                                                             TRUE /* store */);
1890                 
1891                 store_provider_server_type = modest_presets_get_info_server_type (priv->presets,
1892                                                                          provider_id, 
1893                                                                          TRUE /* store */);
1894                 store_security  = modest_presets_get_info_server_security (priv->presets,
1895                                                                                     provider_id, 
1896                                                                                     TRUE /* store */);
1897                 store_auth_protocol  = modest_presets_get_info_server_auth (priv->presets,
1898                                                                                      provider_id, 
1899                                                                                      TRUE /* store */);
1900                 store_provider_use_alternate_port  = modest_presets_get_info_server_use_alternate_port (priv->presets,
1901                                                                                                         provider_id, 
1902                                                                                                         TRUE /* store */);
1903
1904                 /* We don't check for SMTP here as that is impossible for an incoming server. */
1905                 if (store_provider_server_type == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID)
1906                         store_protocol = MODEST_PROTOCOLS_STORE_POP;
1907                 else
1908                         store_protocol = store_provider_server_type;
1909
1910                 /* we check if there is a *special* port */
1911                 special_port = modest_presets_get_port (priv->presets, provider_id, TRUE /* incoming */);
1912                 if (special_port != 0) {
1913                         store_port = special_port;
1914                 } else {
1915                         gboolean use_alternate_port = FALSE;
1916                         if (modest_protocol_registry_protocol_type_is_secure (modest_runtime_get_protocol_registry (),
1917                                                                               store_security))
1918                                 use_alternate_port = TRUE;
1919                         store_port = get_port_from_protocol(store_provider_server_type, use_alternate_port);
1920                 }
1921
1922                 modest_server_account_settings_set_security_protocol (store_settings, 
1923                                                                       store_security);
1924                 modest_server_account_settings_set_auth_protocol (store_settings, 
1925                                                                   store_auth_protocol);
1926                 if (store_port != 0)
1927                         modest_server_account_settings_set_port (store_settings, store_port);
1928         } else {
1929                 /* Use custom pages because no preset was specified: */
1930                 store_hostname = g_strdup (hildon_entry_get_text (HILDON_ENTRY (priv->entry_incomingserver) ));         
1931                 store_protocol = modest_servertype_picker_get_active_servertype (
1932                         MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));           
1933
1934                 modest_security_options_view_save_settings (
1935                                     MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security),
1936                                     priv->settings);
1937         }
1938
1939         /* now we store the common store account settings */
1940         modest_server_account_settings_set_hostname (store_settings, store_hostname);
1941         modest_server_account_settings_set_username (store_settings, username);
1942         modest_server_account_settings_set_password (store_settings, password);
1943         modest_server_account_settings_set_protocol (store_settings, store_protocol);
1944
1945         g_object_unref (store_settings);
1946         g_free (store_hostname);
1947         
1948         /* Outgoing server: */
1949         transport_hostname = NULL;
1950         transport_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1951         transport_security = MODEST_PROTOCOLS_CONNECTION_NONE;
1952         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1953         transport_port = 0;
1954         
1955         if (provider_id) {
1956                 ModestProtocolType transport_provider_server_type;
1957                 ModestProtocolType transport_provider_security;
1958
1959                 /* Use presets */
1960                 transport_hostname = modest_presets_get_server (priv->presets, provider_id, 
1961                                                                 FALSE /* transport */);
1962                         
1963                 transport_provider_server_type = modest_presets_get_info_server_type (priv->presets,
1964                                                                                       provider_id, 
1965                                                                                       FALSE /* transport */);           
1966                 transport_provider_security = modest_presets_get_info_server_security (priv->presets, 
1967                                                                                        provider_id, 
1968                                                                                        FALSE /* transport */);
1969
1970                 /* Note: We need something as default, or modest_account_mgr_add_server_account will fail. */
1971                 transport_protocol = transport_provider_server_type;
1972                 transport_security = transport_provider_security;
1973                 if (transport_security == MODEST_PROTOCOLS_CONNECTION_SSL) {
1974                         /* printf("DEBUG: %s: using secure SMTP\n", __FUNCTION__); */
1975                         /* we check if there is a *special* port */
1976                         special_port = modest_presets_get_port (priv->presets, provider_id,
1977                                                                 FALSE /* transport */);
1978                         if (special_port != 0)
1979                                 transport_port = special_port;
1980                         else 
1981                                 transport_port = 465;
1982                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_PASSWORD;
1983                 } else {
1984                         /* printf("DEBUG: %s: using non-secure SMTP\n", __FUNCTION__); */
1985                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1986                 }
1987
1988                 modest_server_account_settings_set_security_protocol (transport_settings, 
1989                                                                       transport_security);
1990                 modest_server_account_settings_set_auth_protocol (transport_settings, 
1991                                                                   transport_auth_protocol);
1992                 if (transport_port != 0)
1993                         modest_server_account_settings_set_port (transport_settings, 
1994                                                                  transport_port);
1995         } else {
1996                 ModestProtocolRegistry *registry;
1997                 ModestProtocol *store_proto;
1998
1999                 registry = modest_runtime_get_protocol_registry ();
2000                 /* Use custom pages because no preset was specified: */
2001                 transport_hostname = g_strdup (hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver) ));
2002
2003                 store_proto = modest_protocol_registry_get_protocol_by_type (registry, 
2004                                                                              store_protocol);
2005
2006                 if (transport_protocol == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
2007                         /* fallback to SMTP if none was specified */
2008                         g_warning ("No transport protocol was specified for store %d (%s)",
2009                                    modest_protocol_get_type_id (store_proto),
2010                                    modest_protocol_get_display_name (store_proto));
2011                         transport_protocol = MODEST_PROTOCOLS_TRANSPORT_SMTP;
2012                 }
2013
2014                 modest_security_options_view_save_settings (
2015                                     MODEST_SECURITY_OPTIONS_VIEW (priv->outgoing_security),
2016                                     priv->settings);
2017         }
2018
2019         /* now we store the common transport account settings */
2020         modest_server_account_settings_set_hostname (transport_settings, transport_hostname);
2021         modest_server_account_settings_set_username (transport_settings, username);
2022         modest_server_account_settings_set_password (transport_settings, password);
2023         modest_server_account_settings_set_protocol (transport_settings, transport_protocol);
2024
2025         g_object_unref (transport_settings);
2026         g_free (transport_hostname);
2027         
2028         fullname = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_name));
2029         email_address = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_email));
2030         modest_account_settings_set_fullname (priv->settings, fullname);
2031         modest_account_settings_set_email_address (priv->settings, email_address);
2032         /* we don't set retrieve type to preserve advanced settings if
2033            any. By default account settings are set to headers only */
2034         
2035         /* Save the connection-specific SMTP server accounts. */
2036         modest_account_settings_set_use_connection_specific_smtp 
2037                 (priv->settings, 
2038                  hildon_check_button_get_active(HILDON_CHECK_BUTTON(priv->checkbox_outgoing_smtp_specific)));
2039
2040         display_name = get_entered_account_title (self);
2041         modest_account_settings_set_display_name (priv->settings, display_name);
2042         g_free (display_name);
2043         g_free (provider_id);
2044 }
2045