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