Properly set focus in test plugin settings (fixes NB#101213).
[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 *scrolled_window;
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         scrolled_window = gtk_scrolled_window_new (NULL, NULL);
757
758         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
759                                         GTK_POLICY_NEVER,
760                                         GTK_POLICY_AUTOMATIC);
761
762         /* Show note that account type cannot be changed in future: */
763         label = gtk_label_new (_("mcen_ia_emailsetup_account_type"));
764         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
765         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
766         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
767         gtk_widget_show (label);
768         
769         /* Create a size group to be used by all captions.
770          * Note that HildonCaption does not create a default size group if we do not specify one.
771          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
772         title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
773         value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
774          
775         /* The incoming server widgets: */
776         priv->incoming_servertype_picker = GTK_WIDGET (modest_servertype_picker_new (MODEST_EDITABLE_SIZE,
777                                                                                      HILDON_BUTTON_ARRANGEMENT_HORIZONTAL,
778                                                                                      TRUE));
779         hildon_button_set_title (HILDON_BUTTON (priv->incoming_servertype_picker), _("mcen_li_emailsetup_type"));
780         g_signal_connect (G_OBJECT (priv->incoming_servertype_picker), "value-changed",
781                           G_CALLBACK (on_picker_button_value_changed), self);
782         gtk_box_pack_start (GTK_BOX (box), priv->incoming_servertype_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
783         gtk_widget_show (priv->incoming_servertype_picker);
784         
785         priv->entry_incomingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
786         g_signal_connect(G_OBJECT(priv->entry_incomingserver), "changed", G_CALLBACK(on_easysetup_changed), self);
787         /* Auto-capitalization is the default, so let's turn it off: */
788         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_incomingserver), HILDON_GTK_INPUT_MODE_FULL);
789         set_default_custom_servernames (self);
790
791         /* The caption title will be updated in update_incoming_server_title().
792          * so this default text will never be seen: */
793         priv->caption_incoming = create_captioned (self, title_sizegroup, value_sizegroup,
794                                                    "This will be removed", 
795                                                    FALSE, priv->entry_incomingserver);
796         update_incoming_server_title (self);
797         gtk_widget_show (priv->entry_incomingserver);
798         gtk_box_pack_start (GTK_BOX (box), priv->caption_incoming, FALSE, FALSE, MODEST_MARGIN_HALF);
799         gtk_widget_show (priv->caption_incoming);
800         
801         /* Change the caption title when the servertype changes, 
802          * as in the UI spec: */
803         g_signal_connect (G_OBJECT (hildon_picker_button_get_selector (HILDON_PICKER_BUTTON (priv->incoming_servertype_picker))), 
804                           "changed",
805                           G_CALLBACK (on_servertype_selector_changed), self);
806
807         /* Remember when the servername was changed manually: */
808         g_signal_connect (G_OBJECT (priv->entry_incomingserver), "changed",
809                           G_CALLBACK (on_entry_incoming_servername_changed), self);
810
811         /* The secure connection widgets. These are only valid for
812            protocols with security */   
813         priv->incoming_security = 
814                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_INCOMING,
815                                                         FALSE, title_sizegroup, value_sizegroup);
816         gtk_box_pack_start (GTK_BOX (box), priv->incoming_security, 
817                             FALSE, FALSE, MODEST_MARGIN_HALF);
818         gtk_widget_show_all (priv->incoming_security);
819
820         /* Set default selection */
821         modest_servertype_picker_set_active_servertype (
822                 MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker), 
823                 MODEST_PROTOCOLS_STORE_POP);
824
825         gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolled_window), box);
826         gtk_container_set_focus_vadjustment (GTK_CONTAINER (box),
827                                              gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (scrolled_window)));
828         gtk_widget_show (GTK_WIDGET (box));
829         gtk_widget_show (scrolled_window);
830
831         g_object_unref (title_sizegroup);
832         g_object_unref (value_sizegroup);
833
834         return GTK_WIDGET (scrolled_window);
835 }
836
837 static void
838 on_check_button_changed (HildonCheckButton *button, gpointer user_data)
839 {
840         GtkWidget *widget = GTK_WIDGET (user_data);
841         
842         /* Enable the widget only if the check button is active: */
843         const gboolean enable = hildon_check_button_get_active (button);
844         gtk_widget_set_sensitive (widget, enable);
845 }
846
847 /* Make the sensitivity of a widget depend on a check button.
848  */
849 static void
850 enable_widget_for_checkbutton (GtkWidget *widget, HildonCheckButton* button)
851 {
852         g_signal_connect (G_OBJECT (button), "toggled",
853                           G_CALLBACK (on_check_button_changed), widget);
854         
855         /* Set the starting sensitivity: */
856         on_check_button_changed (button, widget);
857 }
858
859 static void
860 on_button_outgoing_smtp_servers (GtkButton *button, gpointer user_data)
861 {
862         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
863         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
864         GtkWidget *specific_window;
865         
866         /* We set dirty here because setting it depending on the connection specific dialog
867         seems overkill */
868         priv->dirty = TRUE;
869         
870         /* Create the window, if necessary: */
871         specific_window = (GtkWidget *) modest_connection_specific_smtp_window_new ();
872         modest_connection_specific_smtp_window_fill_with_connections (MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window), priv->account_manager);
873
874         /* Show the window */
875         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (specific_window), GTK_WINDOW (self));
876         gtk_widget_show (specific_window);
877 }
878
879 static void 
880 on_entry_outgoing_servername_changed (GtkEntry *entry, gpointer user_data)
881 {
882         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
883         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
884         priv->server_changes |= MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED;
885 }
886
887 static GtkWidget* 
888 create_page_custom_outgoing (ModestEasysetupWizardDialog *self)
889 {
890         ModestEasysetupWizardDialogPrivate *priv;
891         gchar *smtp_caption_label;
892         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
893         
894         /* Create a size group to be used by all captions.
895          * Note that HildonCaption does not create a default size group if we do not specify one.
896          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
897         GtkSizeGroup *title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
898         GtkSizeGroup *value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
899          
900         /* The outgoing server widgets: */
901         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
902         priv->entry_outgoingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
903         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
904                   G_CALLBACK (on_easysetup_changed), self);
905         /* Auto-capitalization is the default, so let's turn it off: */
906         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
907         smtp_caption_label = g_strconcat (_("mcen_li_emailsetup_smtp"), "\n<small>(SMTP)</small>", NULL);
908         GtkWidget *caption = create_captioned (self, title_sizegroup, value_sizegroup,
909                                                smtp_caption_label, TRUE, priv->entry_outgoingserver);
910         g_free (smtp_caption_label);
911         gtk_widget_show (priv->entry_outgoingserver);
912         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
913         gtk_widget_show (caption);
914         set_default_custom_servernames (self);
915
916         /* The secure connection widgets. These are only valid for
917            protocols with security */   
918         priv->outgoing_security = 
919                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_OUTGOING,
920                                                         FALSE, title_sizegroup, value_sizegroup);
921         gtk_box_pack_start (GTK_BOX (box), priv->outgoing_security, 
922                             FALSE, FALSE, MODEST_MARGIN_HALF);
923         gtk_widget_show (priv->outgoing_security);
924
925         GtkWidget *separator = gtk_hseparator_new ();
926         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
927         gtk_widget_show (separator);
928
929         /* connection-specific checkbox: */
930         priv->checkbox_outgoing_smtp_specific = hildon_check_button_new (HILDON_SIZE_FINGER_HEIGHT);
931         hildon_check_button_set_active (HILDON_CHECK_BUTTON (priv->checkbox_outgoing_smtp_specific), 
932                                         FALSE);
933         gtk_button_set_label (GTK_BUTTON (priv->checkbox_outgoing_smtp_specific),
934                               _("mcen_fi_advsetup_connection_smtp"));
935         gtk_button_set_alignment (GTK_BUTTON (priv->checkbox_outgoing_smtp_specific),
936                                   0.0, 0.5);
937         g_signal_connect (G_OBJECT (priv->checkbox_outgoing_smtp_specific), "toggled",
938                   G_CALLBACK (on_easysetup_changed), self);
939
940         gtk_widget_show (priv->checkbox_outgoing_smtp_specific);
941         gtk_box_pack_start (GTK_BOX (box), priv->checkbox_outgoing_smtp_specific,
942                             FALSE, FALSE, MODEST_MARGIN_HALF);
943
944         /* Connection-specific SMTP-Severs Edit button: */
945         priv->button_outgoing_smtp_servers = gtk_button_new_with_label (_("mcen_bd_advsetup_optional_smtp"));
946         hildon_gtk_widget_set_theme_size (priv->button_outgoing_smtp_servers, 
947                                           HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);  
948         gtk_widget_show (priv->button_outgoing_smtp_servers);
949         gtk_box_pack_start (GTK_BOX (box), priv->button_outgoing_smtp_servers, 
950                             FALSE, FALSE, MODEST_MARGIN_HALF);
951
952         /* Only enable the button when the checkbox is checked: */
953         enable_widget_for_checkbutton (priv->button_outgoing_smtp_servers, 
954                                        HILDON_CHECK_BUTTON (priv->checkbox_outgoing_smtp_specific));
955
956         g_signal_connect (G_OBJECT (priv->button_outgoing_smtp_servers), "clicked",
957                           G_CALLBACK (on_button_outgoing_smtp_servers), self);
958
959         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
960                           G_CALLBACK (on_entry_outgoing_servername_changed), self);
961         gtk_widget_show (GTK_WIDGET (box));
962
963         g_object_unref (title_sizegroup);
964         g_object_unref (value_sizegroup);
965         
966         return GTK_WIDGET (box);
967 }
968
969 static gboolean
970 show_advanced_edit(gpointer user_data)
971 {
972         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
973         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
974         gint response;
975         
976         /* Show the Account Settings window: */
977         ModestAccountSettingsDialog *dialog = modest_default_account_settings_dialog_new ();
978         if (priv->pending_load_settings) {
979                 save_to_settings (self);
980                 priv->pending_load_settings = FALSE;
981         }
982         modest_account_settings_dialog_load_settings (dialog, priv->settings);
983         
984         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (dialog), GTK_WINDOW (self));
985         
986         response = gtk_dialog_run (GTK_DIALOG (dialog));
987
988         gtk_widget_destroy (GTK_WIDGET (dialog));
989         
990         return FALSE; /* Do not call this timeout callback again. */
991 }
992
993 static void
994 on_button_edit_advanced_settings (GtkButton *button, gpointer user_data)
995 {
996         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
997         
998         /* Show the Account Settings window: */
999         show_advanced_edit(self);
1000 }
1001 static GtkWidget* 
1002 create_page_complete_custom (ModestEasysetupWizardDialog *self)
1003 {
1004         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
1005         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_setup_complete"));
1006         GtkWidget *button_edit = gtk_button_new_with_label (_("mcen_fi_advanced_settings"));
1007         hildon_gtk_widget_set_theme_size (button_edit, HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
1008         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1009         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
1010         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1011         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
1012         gtk_widget_show (label);
1013         
1014         label = gtk_label_new (_("mcen_ia_customsetup_complete"));
1015         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0);
1016         gtk_widget_set_size_request (label, LABELS_WIDTH, -1);
1017         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1018         gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
1019         gtk_widget_show (label);
1020         
1021         gtk_widget_show (button_edit);
1022         gtk_box_pack_start (GTK_BOX (box), button_edit, FALSE, FALSE, MODEST_MARGIN_HALF);
1023         
1024         g_signal_connect (G_OBJECT (button_edit), "clicked", 
1025                           G_CALLBACK (on_button_edit_advanced_settings), self);
1026         
1027         gtk_widget_show (GTK_WIDGET (box));
1028         return GTK_WIDGET (box);
1029 }
1030
1031
1032 /*
1033  */
1034 static void 
1035 on_response (ModestWizardDialog *wizard_dialog,
1036              gint response_id,
1037              gpointer user_data)
1038 {
1039         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1040
1041         invoke_enable_buttons_vfunc (self);
1042 }
1043
1044 static void 
1045 on_response_before (ModestWizardDialog *wizard_dialog,
1046                     gint response_id,
1047                     gpointer user_data)
1048 {
1049         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1050         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(wizard_dialog);
1051         if (response_id == GTK_RESPONSE_CANCEL) {
1052                 /* This is mostly copied from
1053                  * src/maemo/modest-account-settings-dialog.c */
1054                 if (priv->dirty) {
1055                         GtkDialog *dialog = GTK_DIALOG (hildon_note_new_confirmation (GTK_WINDOW (self), 
1056                                 _("imum_nc_wizard_confirm_lose_changes")));
1057                         /* TODO: These button names will be ambiguous, and not
1058                          * specified in the UI specification. */
1059
1060                         const gint dialog_response = gtk_dialog_run (dialog);
1061                         gtk_widget_destroy (GTK_WIDGET (dialog));
1062
1063                         if (dialog_response != GTK_RESPONSE_OK) {
1064                                 /* Don't let the dialog close */
1065                                 g_signal_stop_emission_by_name (wizard_dialog, "response");
1066                         }
1067                 }
1068         }
1069 }
1070
1071 typedef struct IdleData {
1072         ModestEasysetupWizardDialog *dialog;
1073         ModestPresets *presets;
1074 } IdleData;
1075
1076 static gboolean
1077 presets_idle (gpointer userdata)
1078 {
1079         IdleData *idle_data = (IdleData *) userdata;
1080         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (idle_data->dialog);
1081         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1082
1083         g_assert (idle_data->presets);
1084
1085         gdk_threads_enter ();
1086
1087         priv->presets = idle_data->presets;
1088
1089         if (MODEST_IS_COUNTRY_PICKER (priv->account_country_picker)) {
1090 /*              gint mcc = get_default_country_code(); */
1091                 gint mcc;
1092                 /* Fill the combo in an idle call, as it takes a lot of time */
1093                 modest_country_picker_load_data(
1094                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1095                 /* connect to country picker's changed signal, so we can fill the provider picker: */
1096                 g_signal_connect (G_OBJECT (hildon_picker_button_get_selector 
1097                                             (HILDON_PICKER_BUTTON (priv->account_country_picker))),
1098                                   "changed",
1099                                   G_CALLBACK (on_account_country_selector_changed), self);
1100             
1101                 modest_country_picker_set_active_country_locale (
1102                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1103                 mcc = modest_country_picker_get_active_country_mcc (
1104                         MODEST_COUNTRY_PICKER (priv->account_country_picker));
1105                 modest_provider_picker_fill (
1106                         MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker),
1107                         priv->presets, mcc);
1108                 /* connect to providers picker's changed signal, so we can fill the email address: */
1109                 g_signal_connect (G_OBJECT (hildon_picker_button_get_selector 
1110                                             (HILDON_PICKER_BUTTON (priv->account_serviceprovider_picker))),
1111                                   "changed",
1112                                   G_CALLBACK (on_account_serviceprovider_selector_changed), self);
1113                 
1114                 modest_provider_picker_set_others_provider (MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker));
1115         }
1116
1117         priv->dirty = FALSE;
1118
1119         g_object_unref (idle_data->dialog);
1120         g_free (idle_data);
1121
1122         gdk_threads_leave ();
1123
1124         return FALSE;
1125 }
1126
1127 static gpointer
1128 presets_loader (gpointer userdata)
1129 {
1130         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (userdata);
1131         ModestPresets *presets = NULL;
1132         IdleData *idle_data;
1133
1134         const gchar* path  = NULL;
1135         const gchar* path1 = MODEST_PROVIDER_DATA_FILE;
1136         const gchar* path2 = MODEST_MAEMO_PROVIDER_DATA_FILE;
1137         
1138         if (access(path1, R_OK) == 0) 
1139                 path = path1;
1140         else if (access(path2, R_OK) == 0)
1141                 path = path2;
1142         else {
1143                 g_warning ("%s: neither '%s' nor '%s' is a readable provider data file",
1144                            __FUNCTION__, path1, path2);
1145                 return NULL;
1146         }
1147
1148         presets = modest_presets_new (path);
1149         if (!presets) {
1150                 g_warning ("%s: failed to parse '%s'", __FUNCTION__, path);
1151                 return NULL;
1152         }
1153         
1154         idle_data = g_new0 (IdleData, 1);
1155         idle_data->dialog = self;
1156         idle_data->presets = presets;
1157         
1158         g_idle_add (presets_idle, idle_data);   
1159
1160         return NULL;
1161 }
1162
1163 static void
1164 modest_easysetup_wizard_dialog_append_page (GtkNotebook *notebook,
1165                                             GtkWidget *page,
1166                                             const gchar *label)
1167 {
1168         gint index;
1169         /* Append page and set attributes */
1170         index = gtk_notebook_append_page (notebook, page, gtk_label_new (label));
1171         gtk_container_child_set (GTK_CONTAINER (notebook), page,
1172                                  "tab-expand", TRUE, "tab-fill", TRUE,
1173                                  NULL);
1174         gtk_widget_show (page);
1175 }
1176
1177 static void
1178 init_user_page (ModestEasysetupWizardDialogPrivate *priv)
1179 {
1180         priv->page_user_details = NULL;
1181         priv->entry_user_name = NULL;
1182         priv->entry_user_username = NULL;
1183         priv->entry_user_password = NULL;
1184         priv->entry_user_email = NULL;
1185 }
1186
1187 static void
1188 init_incoming_page (ModestEasysetupWizardDialogPrivate *priv)
1189 {
1190         priv->page_custom_incoming = NULL;
1191         priv->incoming_servertype_picker = NULL;
1192         priv->caption_incoming = NULL;
1193         priv->entry_incomingserver = NULL;
1194         priv->entry_user_email = NULL;
1195         priv->incoming_security = NULL;
1196 }
1197
1198 static void
1199 init_outgoing_page (ModestEasysetupWizardDialogPrivate *priv)
1200 {
1201         priv->page_custom_outgoing = NULL;
1202         priv->entry_outgoingserver = NULL;
1203         priv->checkbox_outgoing_smtp_specific = NULL;
1204         priv->button_outgoing_smtp_servers = NULL;
1205         priv->outgoing_security = NULL;
1206 }
1207
1208 static void
1209 modest_easysetup_wizard_dialog_init (ModestEasysetupWizardDialog *self)
1210 {
1211         gtk_container_set_border_width (GTK_CONTAINER (self), MODEST_MARGIN_HALF);
1212         
1213         /* Create the notebook to be used by the ModestWizardDialog base class:
1214          * Each page of the notebook will be a page of the wizard: */
1215         GtkNotebook *notebook = GTK_NOTEBOOK (gtk_notebook_new());
1216         gtk_widget_set_size_request (GTK_WIDGET (notebook), DIALOG_WIDTH, -1);
1217         
1218         /* Set the notebook used by the ModestWizardDialog base class: */
1219         g_object_set (G_OBJECT(self), "wizard-notebook", notebook, NULL);
1220     
1221         /* Set the wizard title:
1222          * The actual window title will be a combination of this and the page's tab label title. */
1223         g_object_set (G_OBJECT(self), "wizard-name", _("mcen_ti_emailsetup"), NULL);
1224
1225         /* Read in the information about known service providers: */
1226         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1227         
1228         /* The server fields did not have been manually changed yet */
1229         priv->server_changes = 0;
1230         priv->pending_load_settings = TRUE;
1231
1232         /* Get the account manager object, 
1233          * so we can check for existing accounts,
1234          * and create new accounts: */
1235         priv->account_manager = modest_runtime_get_account_mgr ();
1236         g_object_ref (priv->account_manager);
1237         
1238         /* Initialize fields */
1239         priv->page_welcome = create_page_welcome (self);
1240         priv->page_account_details = create_page_account_details (self);
1241
1242         init_user_page (priv);
1243         init_incoming_page (priv);
1244         init_outgoing_page (priv);
1245
1246         priv->page_complete_easysetup = NULL;       
1247         priv->page_complete_customsetup = NULL;
1248         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1249         priv->missing_data_signals = NULL;
1250
1251         /* Add the common pages */
1252         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_welcome, 
1253                                                     _("mcen_ti_emailsetup_welcome"));
1254         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_account_details, 
1255                                                     _("mcen_ti_accountdetails"));
1256                 
1257         /* Connect to the dialog's response signal so we can enable/disable buttons 
1258          * for the newly-selected page, because the prev/next buttons cause response to be emitted.
1259          * Note that we use g_signal_connect_after() instead of g_signal_connect()
1260          * so that we can be enable/disable after ModestWizardDialog has done its own 
1261          * enabling/disabling of buttons.
1262          * 
1263          * HOWEVER, this doesn't work because ModestWizardDialog's response signal handler 
1264          * does g_signal_stop_emission_by_name(), stopping our signal handler from running.
1265          * 
1266          * It's not enough to connect to the notebook's switch-page signal, because 
1267          * ModestWizardDialog's "response" signal handler enables the buttons itself, 
1268          * _after_ switching the page (understandably).
1269          * (Note that if we had, if we used g_signal_connect() instead of g_signal_connect_after()
1270          * then gtk_notebook_get_current_page() would return an incorrect value.)
1271          */
1272         g_signal_connect_after (G_OBJECT (self), "response",
1273                                 G_CALLBACK (on_response), self);
1274
1275         /* This is to show a confirmation dialog when the user hits cancel */
1276         g_signal_connect (G_OBJECT (self), "response",
1277                           G_CALLBACK (on_response_before), self);
1278
1279         g_signal_connect (G_OBJECT (self), "delete-event",
1280                           G_CALLBACK (on_delete_event), self);
1281
1282         /* Reset dirty, because there was no user input until now */
1283         priv->dirty = FALSE;
1284         
1285         /* When this window is shown, hibernation should not be possible, 
1286          * because there is no sensible way to save the state: */
1287         modest_window_mgr_prevent_hibernation_while_window_is_shown (
1288                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
1289
1290         /* Load provider presets */
1291         g_object_ref (self);
1292         g_thread_create (presets_loader, self, FALSE, NULL);
1293
1294         priv->settings = modest_account_settings_new ();
1295 }
1296
1297 ModestEasysetupWizardDialog*
1298 modest_easysetup_wizard_dialog_new (void)
1299 {       
1300         
1301         return g_object_new (MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, NULL);
1302 }
1303
1304 static void 
1305 create_subsequent_customsetup_pages (ModestEasysetupWizardDialog *self)
1306 {
1307         ModestEasysetupWizardDialogPrivate *priv;
1308         GtkNotebook *notebook = NULL;
1309
1310         g_object_get (self, "wizard-notebook", &notebook, NULL);
1311         g_assert(notebook);
1312
1313         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1314
1315         if (!priv->page_user_details) {
1316                 priv->page_user_details = create_page_user_details (self);
1317         }                       
1318
1319         /* Create the custom pages: */
1320         if(!(priv->page_custom_incoming)) {
1321                 priv->page_custom_incoming = create_page_custom_incoming (self);
1322         }
1323                 
1324         /* TODO: only if needed */
1325         if(!(priv->page_custom_outgoing)) {
1326                 priv->page_custom_outgoing = create_page_custom_outgoing (self);
1327         }
1328         
1329         if(!(priv->page_complete_customsetup)) {
1330                 priv->page_complete_customsetup = create_page_complete_custom (self);
1331         }
1332
1333         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_user_details)))
1334                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_user_details,
1335                                                             _("mcen_ti_emailsetup_userdetails"));
1336
1337         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_incoming)))
1338                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_incoming, 
1339                                                             _("mcen_ti_emailsetup_incomingdetails"));
1340         
1341         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_outgoing)))           
1342                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_outgoing, 
1343                                                             _("mcen_ti_emailsetup_outgoingdetails"));
1344                 
1345         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_customsetup)))
1346                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_customsetup, 
1347                                                             _("mcen_ti_emailsetup_complete"));
1348                         
1349         /* This is unnecessary with GTK+ 2.10: */
1350         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1351 }
1352         
1353 static void 
1354 create_subsequent_easysetup_pages (ModestEasysetupWizardDialog *self)
1355 {
1356         ModestEasysetupWizardDialogPrivate *priv;
1357         GtkNotebook *notebook = NULL;
1358
1359         g_object_get (self, "wizard-notebook", &notebook, NULL);
1360         g_assert(notebook);
1361         
1362         /* Create the easysetup-specific pages: */
1363         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1364         if(!priv->page_complete_easysetup)
1365                 priv->page_complete_easysetup = create_page_complete_easysetup (self);
1366
1367         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_easysetup)))
1368                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_easysetup, 
1369                                                             _("mcen_ti_emailsetup_complete"));
1370                         
1371         /* This is unnecessary with GTK+ 2.10: */
1372         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1373 }
1374
1375 /* */
1376 static void
1377 remove_non_common_tabs (GtkNotebook *notebook, 
1378                         gboolean remove_user_details) 
1379 {
1380         gint starting_tab;
1381         /* The first 2 tabs are the common ones (welcome tab and the
1382            providers tab), so we always remove starting from the
1383            end */
1384
1385         starting_tab = (remove_user_details) ? 2 : 3;
1386         while (gtk_notebook_get_n_pages (notebook) > starting_tab) 
1387                 gtk_notebook_remove_page (notebook, -1); 
1388 }
1389
1390 static void
1391 on_missing_mandatory_data (ModestAccountProtocol *protocol,
1392                            gboolean missing,
1393                            gpointer user_data)
1394 {
1395         real_enable_buttons (MODEST_WIZARD_DIALOG (user_data), !missing);
1396 }
1397
1398 /* After the user details page,
1399  * the following pages depend on whether "Other" was chosen 
1400  * in the provider combobox on the account page
1401  */
1402 static void 
1403 create_subsequent_pages (ModestEasysetupWizardDialog *self)
1404 {
1405         ModestEasysetupWizardDialogPrivate *priv;
1406         ModestProviderPicker *picker;
1407         ModestProviderPickerIdType id_type;
1408         GtkNotebook *notebook;
1409
1410         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1411         picker = MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker);
1412         id_type = modest_provider_picker_get_active_id_type (picker);
1413         g_object_get (self, "wizard-notebook", &notebook, NULL);
1414
1415         if (id_type == MODEST_PROVIDER_PICKER_ID_OTHER) {
1416                 /* "Other..." was selected: */
1417
1418                 /* If we come from a rollbacked easysetup */
1419                 if (priv->page_complete_easysetup) {
1420                         remove_non_common_tabs (notebook, FALSE);
1421                         priv->page_complete_easysetup = NULL;
1422                 } 
1423                 
1424                 /* If we come from a rollbacked plugin protocol setup */
1425                 if (priv->last_plugin_protocol_selected != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1426                         remove_non_common_tabs (notebook, TRUE);
1427                         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1428                         modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1429                         priv->missing_data_signals = NULL;
1430                 }
1431
1432                 create_subsequent_customsetup_pages (self);
1433         } else {
1434                 /* If we come from a rollbacked custom setup */
1435                 if (priv->page_custom_incoming) {
1436                         remove_non_common_tabs (notebook, TRUE);
1437                         init_user_page (priv);
1438                         init_incoming_page (priv);
1439                         init_outgoing_page (priv);
1440                         init_user_page (priv);
1441                         priv->page_complete_customsetup = NULL;
1442                 }
1443
1444                 /* It's a pluggable protocol and not a provider with presets */
1445                 if (id_type == MODEST_PROVIDER_PICKER_ID_PLUGIN_PROTOCOL) {
1446                         ModestProtocol *protocol;
1447                         gchar *proto_name;
1448                         ModestProtocolType proto_type;
1449
1450                         
1451                         /* If we come from a rollbacked easy setup */
1452                         if (priv->last_plugin_protocol_selected == 
1453                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID &&
1454                             priv->page_complete_easysetup) {
1455                                 remove_non_common_tabs (notebook, TRUE);
1456                                 init_user_page (priv);
1457                                 priv->page_complete_easysetup = NULL;
1458                         }
1459                         
1460                         proto_name = modest_provider_picker_get_active_provider_id (picker);
1461                         protocol = modest_protocol_registry_get_protocol_by_name (modest_runtime_get_protocol_registry (),
1462                                                                                   MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1463                                                                                   proto_name);
1464                         proto_type = modest_protocol_get_type_id (protocol);
1465
1466                         if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol) &&
1467                             proto_type != priv->last_plugin_protocol_selected) {
1468                                 ModestPairList *tabs;
1469                                 GSList *tmp;
1470                                 gboolean first_page = TRUE;
1471
1472                                 /* Remember the last selected plugin protocol */
1473                                 priv->last_plugin_protocol_selected = proto_type;
1474
1475                                 /* Get tabs */
1476                                 tabs = modest_account_protocol_get_easysetupwizard_tabs (MODEST_ACCOUNT_PROTOCOL (protocol));
1477                                 tmp = (GSList *) tabs;
1478                                 while (tmp) {
1479                                         ModestPair *pair = (ModestPair *) tmp->data;
1480                                         modest_easysetup_wizard_dialog_append_page (notebook,
1481                                                                                     GTK_WIDGET (pair->second),
1482                                                                                     (const gchar *) pair->first);
1483                                         if (first_page) {
1484                                                 gtk_container_set_focus_child (GTK_CONTAINER (notebook),
1485                                                                                GTK_WIDGET (pair->second));
1486                                                 first_page = FALSE;
1487                                         }
1488
1489                                         /* Connect signals */
1490                                         priv->missing_data_signals = 
1491                                                 modest_signal_mgr_connect (priv->missing_data_signals, 
1492                                                                            G_OBJECT (pair->second), 
1493                                                                            "missing-mandatory-data",
1494                                                                            G_CALLBACK (on_missing_mandatory_data), 
1495                                                                            self);
1496
1497                                         g_free (pair->first);
1498                                         tmp = g_slist_next (tmp);
1499                                         /* Critical: if you don't show the page then the dialog will ignore it */
1500 /*                                      gtk_widget_show (GTK_WIDGET (pair->second)); */
1501                                 }
1502                                 modest_pair_list_free (tabs);
1503                         }
1504                         g_free (proto_name);
1505                 } else {
1506                         if (priv->last_plugin_protocol_selected != 
1507                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1508                                 remove_non_common_tabs (notebook, TRUE);
1509                                 init_user_page (priv);
1510                                 priv->page_complete_easysetup = NULL;
1511                                 priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1512                                 modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1513                                 priv->missing_data_signals = NULL;
1514                         }
1515                         if (!priv->page_user_details) {
1516                                 priv->page_user_details = create_page_user_details (self);
1517                                 modest_easysetup_wizard_dialog_append_page (notebook, 
1518                                                                             priv->page_user_details,
1519                                                                             _("mcen_ti_emailsetup_userdetails"));
1520                         }
1521                 }
1522                 
1523                 /* Create the easysetup pages: */
1524                 create_subsequent_easysetup_pages (self);
1525         }
1526 }
1527
1528
1529 static gchar*
1530 util_get_default_servername_from_email_address (const gchar* email_address, ModestProtocolType protocol_type)
1531 {
1532         const gchar* hostname = NULL;
1533         gchar* at;
1534         gchar* domain;
1535         ModestProtocolRegistry *protocol_registry;
1536         ModestProtocol *protocol;
1537
1538         if (!email_address)
1539                 return NULL;
1540         
1541         at = g_utf8_strchr (email_address, -1, '@');
1542         if (!at || (g_utf8_strlen (at, -1) < 2))
1543                 return NULL;
1544                 
1545         domain = g_utf8_next_char (at);
1546         if(!domain)
1547                 return NULL;
1548
1549         protocol_registry = modest_runtime_get_protocol_registry ();
1550         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
1551                 
1552         if (modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS) ||
1553             modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_TRANSPORT_PROTOCOLS)) {
1554                 hostname = modest_protocol_get_name (protocol);
1555         }
1556         
1557         if (!hostname)
1558                 return NULL;
1559                 
1560         return g_strdup_printf ("%s.%s", hostname, domain);
1561 }
1562
1563 static void 
1564 set_default_custom_servernames (ModestEasysetupWizardDialog *self)
1565 {
1566         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1567
1568         if (!priv->entry_incomingserver)
1569                 return;
1570                 
1571         /* Set a default domain for the server, based on the email address,
1572          * if no server name was already specified.
1573          */
1574         if (priv->entry_user_email
1575             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED) == 0)) {
1576                 const ModestProtocolType protocol_type = modest_servertype_picker_get_active_servertype (
1577                         MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));
1578
1579                 /* This could happen when the combo box has still no active iter */
1580                 if (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1581                         const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY(priv->entry_user_email));      
1582                         gchar* servername = util_get_default_servername_from_email_address (email_address, 
1583                                                                                             protocol_type);
1584
1585                         /* Do not set the INCOMING_CHANGED flag because of this edit */
1586                         g_signal_handlers_block_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1587                         hildon_entry_set_text (HILDON_ENTRY (priv->entry_incomingserver), servername);
1588                         g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1589                         
1590                         g_free (servername);
1591                 }
1592         }
1593         
1594         /* Set a default domain for the server, based on the email address,
1595          * if no server name was already specified.
1596          */
1597         if (!priv->entry_outgoingserver)
1598                 return;
1599                 
1600         if (priv->entry_user_email
1601             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED) == 0)) {
1602                 const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY(priv->entry_user_email));
1603                 
1604                 gchar* servername = util_get_default_servername_from_email_address (email_address, MODEST_PROTOCOLS_TRANSPORT_SMTP);
1605
1606                 /* Do not set the OUTGOING_CHANGED flag because of this edit */
1607                 g_signal_handlers_block_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1608                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_outgoingserver), servername);
1609                 g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1610
1611                 g_free (servername);
1612         }
1613 }
1614
1615 static gchar*
1616 get_entered_account_title (ModestEasysetupWizardDialog *self)
1617 {
1618         ModestEasysetupWizardDialogPrivate *priv;
1619         const gchar* account_title;
1620
1621         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1622         account_title = hildon_entry_get_text (HILDON_ENTRY (priv->entry_account_title));
1623
1624         if (!account_title || (g_utf8_strlen (account_title, -1) == 0)) {
1625                 return NULL;
1626         } else {
1627                 /* Strip it of whitespace at the start and end: */
1628                 gchar *result = g_strdup (account_title);
1629                 result = g_strstrip (result);
1630                 
1631                 if (!result)
1632                         return NULL;
1633                         
1634                 if (g_utf8_strlen (result, -1) == 0) {
1635                         g_free (result);
1636                         return NULL;    
1637                 }
1638                 
1639                 return result;
1640         }
1641 }
1642
1643 static gboolean
1644 on_before_next (ModestWizardDialog *dialog, GtkWidget *current_page, GtkWidget *next_page)
1645 {
1646         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1647         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1648         ModestProtocolRegistry *protocol_registry;
1649
1650         protocol_registry = modest_runtime_get_protocol_registry ();
1651
1652         /* if are browsing pages previous to the last one, then we have pending settings in
1653          * this wizard */
1654         if (next_page != NULL)
1655                 priv->pending_load_settings = TRUE;
1656         
1657         /* Do extra validation that couldn't be done for every key press,
1658          * either because it was too slow,
1659          * or because it requires interaction:
1660          */
1661         if (current_page == priv->page_account_details) {       
1662                 /* Check that the title is not already in use: */
1663                 gchar* account_title = get_entered_account_title (self);
1664                 if (!account_title)
1665                         return FALSE;
1666                         
1667                 /* Aavoid a clash with an existing display name: */
1668                 const gboolean name_in_use = modest_account_mgr_account_with_display_name_exists (
1669                         priv->account_manager, account_title);
1670                 g_free (account_title);
1671
1672                 if (name_in_use) {
1673                         /* Warn the user via a dialog: */
1674                         hildon_banner_show_information(NULL, NULL, _("mail_ib_account_name_already_existing"));
1675             
1676                         return FALSE;
1677                 }
1678
1679                 /* Make sure that the subsequent pages are appropriate for the provider choice. */
1680                 create_subsequent_pages (self);
1681
1682         } else if (current_page == priv->page_user_details) {
1683                 /* Check that the email address is valud: */
1684                 const gchar* email_address = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_email));
1685                 if ((!email_address) || (g_utf8_strlen (email_address, -1) == 0))
1686                         return FALSE;
1687                         
1688                 if (!modest_text_utils_validate_email_address (email_address, NULL)) {
1689                         /* Warn the user via a dialog: */
1690                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_email"));
1691                                              
1692                         /* Return focus to the email address entry: */
1693                         gtk_widget_grab_focus (priv->entry_user_email);
1694                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_user_email), 0, -1);
1695
1696                         return FALSE;
1697                 }
1698         }
1699           
1700         if (next_page == priv->page_custom_incoming) {
1701                 set_default_custom_servernames (self);
1702         } else if (next_page == priv->page_custom_outgoing) {
1703                 set_default_custom_servernames (self);
1704
1705                 /* Check if the server supports secure authentication */
1706                 if (modest_security_options_view_auth_check (MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security)))
1707                         if (!check_has_supported_auth_methods (self))
1708                                 return FALSE;
1709                 gtk_widget_show (priv->outgoing_security);
1710         }
1711         
1712         /* If this is the last page, and this is a click on Finish, 
1713          * then attempt to create the dialog.
1714          */
1715         if(!next_page && 
1716            current_page != priv->page_account_details) /* This is NULL when this is a click on Finish. */
1717         {
1718                 if (priv->pending_load_settings) {
1719                         save_to_settings (self);
1720                 }
1721
1722                 /* We check if there's already another account with the same configuration */
1723                 if (modest_account_mgr_check_already_configured_account (priv->account_manager, priv->settings)) {
1724                         modest_platform_information_banner (NULL, NULL, _("mail_ib_setting_failed"));
1725                         return FALSE;
1726                 }
1727
1728                 modest_account_mgr_add_account_from_settings (priv->account_manager, priv->settings);
1729         }
1730         
1731         
1732         return TRUE;
1733 }
1734
1735 static gboolean entry_is_empty (GtkWidget *entry)
1736 {
1737         if (!entry)
1738                 return FALSE;
1739                 
1740         const gchar* text = hildon_entry_get_text (HILDON_ENTRY (entry));
1741         if ((!text) || (g_utf8_strlen (text, -1) == 0))
1742                 return TRUE;
1743         else {
1744                 /* Strip it of whitespace at the start and end: */
1745                 gchar *stripped = g_strdup (text);
1746                 stripped = g_strstrip (stripped);
1747                 
1748                 if (!stripped)
1749                         return TRUE;
1750                         
1751                 const gboolean result = (g_utf8_strlen (stripped, -1) == 0);
1752                 
1753                 g_free (stripped);
1754                 return result;
1755         }
1756 }
1757
1758 static void
1759 real_enable_buttons (ModestWizardDialog *dialog, gboolean enable_next)
1760 {               
1761         GtkNotebook *notebook = NULL;
1762         gboolean is_finish_tab;
1763         GtkWidget *current;
1764         ModestEasysetupWizardDialogPrivate *priv;
1765
1766         /* Get data */
1767         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (dialog);
1768         g_object_get (dialog, "wizard-notebook", &notebook, NULL);
1769         
1770         /* Disable the Finish button until we are on the last page,
1771          * because HildonWizardDialog enables this for all but the
1772          * first page */
1773         current = gtk_notebook_get_nth_page (notebook, gtk_notebook_get_current_page (notebook));
1774         is_finish_tab = ((current == priv->page_complete_easysetup) ||
1775                          (current == priv->page_complete_customsetup));
1776
1777         if (is_finish_tab) {
1778                 /* Disable Next on the last page no matter what the
1779                    argument say */
1780                 enable_next = FALSE;
1781         } else {
1782                 /* Not the last one */
1783                 gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1784                                                    MODEST_WIZARD_DIALOG_FINISH,
1785                                                    FALSE);
1786         }
1787         
1788         gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1789                                            MODEST_WIZARD_DIALOG_NEXT,
1790                                            enable_next);
1791 }
1792
1793 static void
1794 on_enable_buttons (ModestWizardDialog *dialog, GtkWidget *current_page)
1795 {
1796         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1797         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1798         
1799         gboolean enable_next = TRUE;
1800         if (current_page == priv->page_welcome) {
1801                 enable_next = TRUE;
1802         } else if (current_page == priv->page_account_details) {
1803                 /* The account details title is mandatory: */
1804                 if (entry_is_empty(priv->entry_account_title))
1805                         enable_next = FALSE;
1806         } else if (current_page == priv->page_user_details) {   
1807                 /* The user details username is mandatory: */
1808                 if (entry_is_empty(priv->entry_user_username))
1809                         enable_next = FALSE;
1810                         
1811                 /* The user details email address is mandatory: */
1812                 if (enable_next && entry_is_empty (priv->entry_user_email))
1813                         enable_next = FALSE;
1814         } else if (current_page == priv->page_custom_incoming) {
1815                 /* The custom incoming server is mandatory: */
1816                 if (entry_is_empty(priv->entry_incomingserver))
1817                         enable_next = FALSE;
1818         } else if (MODEST_IS_EASYSETUP_WIZARD_PAGE (current_page)) {
1819                 enable_next = !modest_easysetup_wizard_page_validate (
1820                        MODEST_EASYSETUP_WIZARD_PAGE (current_page));
1821         }
1822                         
1823         /* Enable/disable buttons */ 
1824         real_enable_buttons (dialog, enable_next);
1825 }
1826
1827 static void
1828 modest_easysetup_wizard_dialog_class_init (ModestEasysetupWizardDialogClass *klass)
1829 {
1830         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1831         g_type_class_add_private (klass, sizeof (ModestEasysetupWizardDialogPrivate));
1832
1833
1834         object_class->dispose = modest_easysetup_wizard_dialog_dispose;
1835         object_class->finalize = modest_easysetup_wizard_dialog_finalize;
1836         
1837         /* Provide a vfunc implementation so we can decide 
1838          * when to enable/disable the prev/next buttons.
1839          */
1840         ModestWizardDialogClass *base_klass = (ModestWizardDialogClass*)(klass);
1841         base_klass->before_next = on_before_next;
1842         base_klass->enable_buttons = on_enable_buttons;
1843 }
1844
1845 /**
1846  * save_to_settings:
1847  * @self: a #ModestEasysetupWizardDialog
1848  *
1849  * takes information from all the wizard and stores it in settings
1850  */
1851 static void
1852 save_to_settings (ModestEasysetupWizardDialog *self)
1853 {
1854         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1855         guint special_port;
1856         gchar *provider_id = NULL;
1857         gchar* display_name;
1858         const gchar *username, *password;
1859         gchar *store_hostname, *transport_hostname;
1860         guint store_port, transport_port;
1861         ModestProtocolRegistry *protocol_registry;
1862         ModestProtocolType store_protocol, transport_protocol;
1863         ModestProtocolType store_security, transport_security;
1864         ModestProtocolType store_auth_protocol, transport_auth_protocol;
1865         ModestServerAccountSettings *store_settings, *transport_settings;
1866         const gchar *fullname, *email_address;
1867         ModestProviderPicker *picker;
1868         ModestProviderPickerIdType id_type;
1869
1870         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1871         picker = MODEST_PROVIDER_PICKER (priv->account_serviceprovider_picker);
1872         protocol_registry = modest_runtime_get_protocol_registry ();
1873
1874         /* Get details from the specified presets: */
1875         id_type = modest_provider_picker_get_active_id_type (picker);
1876         provider_id = modest_provider_picker_get_active_provider_id (picker);
1877                 
1878         /* Let the plugin save the settings. We do a return in order
1879            to save an indentation level */
1880         if (id_type == MODEST_PROVIDER_PICKER_ID_PLUGIN_PROTOCOL) {
1881                 ModestProtocol *protocol;
1882
1883                 protocol = modest_protocol_registry_get_protocol_by_name (
1884                        modest_runtime_get_protocol_registry (),
1885                        MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1886                        provider_id);
1887
1888                 if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
1889                         gint n_pages, i = 0;
1890                         GtkNotebook *notebook;
1891                         GList *wizard_pages = NULL;
1892
1893                         g_object_get (self, "wizard-notebook", &notebook, NULL);
1894                         n_pages = gtk_notebook_get_n_pages (notebook);
1895                         for (i = 0; i < n_pages; i++) {
1896                                 GtkWidget *page = gtk_notebook_get_nth_page (notebook, i);
1897                                 if (MODEST_IS_EASYSETUP_WIZARD_PAGE (page))
1898                                         wizard_pages  = g_list_append (wizard_pages, page);
1899                         }
1900                         modest_account_protocol_save_wizard_settings (MODEST_ACCOUNT_PROTOCOL (protocol),
1901                                                                       wizard_pages,
1902                                                                       priv->settings);
1903                         g_list_free (wizard_pages);
1904                 } else {
1905                         g_warning ("The selected protocol is a plugin protocol "//
1906                                    "but it's not a ModestAccountProtocol");
1907                 }
1908
1909                 g_free (provider_id);
1910                 return;
1911         }
1912
1913         /* username and password (for both incoming and outgoing): */
1914         username = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_username));
1915         password = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_password));
1916
1917         store_settings = modest_account_settings_get_store_settings (priv->settings);
1918         transport_settings = modest_account_settings_get_transport_settings (priv->settings);
1919
1920         /* Incoming server: */
1921         /* Note: We need something as default for the transport store protocol values, 
1922          * or modest_account_mgr_add_server_account will fail. */
1923         store_port = 0;
1924         store_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1925         store_security = MODEST_PROTOCOLS_CONNECTION_NONE;
1926         store_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1927
1928         if (provider_id) {
1929                 ModestProtocolType store_provider_server_type;
1930                 gboolean store_provider_use_alternate_port;
1931                 /* Use presets: */
1932                 store_hostname = modest_presets_get_server (priv->presets, provider_id, 
1933                                                             TRUE /* store */);
1934                 
1935                 store_provider_server_type = modest_presets_get_info_server_type (priv->presets,
1936                                                                          provider_id, 
1937                                                                          TRUE /* store */);
1938                 store_security  = modest_presets_get_info_server_security (priv->presets,
1939                                                                                     provider_id, 
1940                                                                                     TRUE /* store */);
1941                 store_auth_protocol  = modest_presets_get_info_server_auth (priv->presets,
1942                                                                                      provider_id, 
1943                                                                                      TRUE /* store */);
1944                 store_provider_use_alternate_port  = modest_presets_get_info_server_use_alternate_port (priv->presets,
1945                                                                                                         provider_id, 
1946                                                                                                         TRUE /* store */);
1947
1948                 /* We don't check for SMTP here as that is impossible for an incoming server. */
1949                 if (store_provider_server_type == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID)
1950                         store_protocol = MODEST_PROTOCOLS_STORE_POP;
1951                 else
1952                         store_protocol = store_provider_server_type;
1953
1954                 /* we check if there is a *special* port */
1955                 special_port = modest_presets_get_port (priv->presets, provider_id, TRUE /* incoming */);
1956                 if (special_port != 0) {
1957                         store_port = special_port;
1958                 } else {
1959                         gboolean use_alternate_port = FALSE;
1960                         if (modest_protocol_registry_protocol_type_is_secure (modest_runtime_get_protocol_registry (),
1961                                                                               store_security))
1962                                 use_alternate_port = TRUE;
1963                         store_port = get_port_from_protocol(store_provider_server_type, use_alternate_port);
1964                 }
1965
1966                 modest_server_account_settings_set_security_protocol (store_settings, 
1967                                                                       store_security);
1968                 modest_server_account_settings_set_auth_protocol (store_settings, 
1969                                                                   store_auth_protocol);
1970                 if (store_port != 0)
1971                         modest_server_account_settings_set_port (store_settings, store_port);
1972         } else {
1973                 /* Use custom pages because no preset was specified: */
1974                 store_hostname = g_strdup (hildon_entry_get_text (HILDON_ENTRY (priv->entry_incomingserver) ));         
1975                 store_protocol = modest_servertype_picker_get_active_servertype (
1976                         MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));           
1977
1978                 modest_security_options_view_save_settings (
1979                                     MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security),
1980                                     priv->settings);
1981         }
1982
1983         /* now we store the common store account settings */
1984         modest_server_account_settings_set_hostname (store_settings, store_hostname);
1985         modest_server_account_settings_set_username (store_settings, username);
1986         modest_server_account_settings_set_password (store_settings, password);
1987         modest_server_account_settings_set_protocol (store_settings, store_protocol);
1988
1989         g_object_unref (store_settings);
1990         g_free (store_hostname);
1991         
1992         /* Outgoing server: */
1993         transport_hostname = NULL;
1994         transport_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1995         transport_security = MODEST_PROTOCOLS_CONNECTION_NONE;
1996         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1997         transport_port = 0;
1998         
1999         if (provider_id) {
2000                 ModestProtocolType transport_provider_server_type;
2001                 ModestProtocolType transport_provider_security;
2002
2003                 /* Use presets */
2004                 transport_hostname = modest_presets_get_server (priv->presets, provider_id, 
2005                                                                 FALSE /* transport */);
2006                         
2007                 transport_provider_server_type = modest_presets_get_info_server_type (priv->presets,
2008                                                                                       provider_id, 
2009                                                                                       FALSE /* transport */);           
2010                 transport_provider_security = modest_presets_get_info_server_security (priv->presets, 
2011                                                                                        provider_id, 
2012                                                                                        FALSE /* transport */);
2013
2014                 /* Note: We need something as default, or modest_account_mgr_add_server_account will fail. */
2015                 transport_protocol = transport_provider_server_type;
2016                 transport_security = transport_provider_security;
2017                 if (transport_security == MODEST_PROTOCOLS_CONNECTION_SSL) {
2018                         /* printf("DEBUG: %s: using secure SMTP\n", __FUNCTION__); */
2019                         /* we check if there is a *special* port */
2020                         special_port = modest_presets_get_port (priv->presets, provider_id,
2021                                                                 FALSE /* transport */);
2022                         if (special_port != 0)
2023                                 transport_port = special_port;
2024                         else 
2025                                 transport_port = 465;
2026                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_PASSWORD;
2027                 } else {
2028                         /* printf("DEBUG: %s: using non-secure SMTP\n", __FUNCTION__); */
2029                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
2030                 }
2031
2032                 modest_server_account_settings_set_security_protocol (transport_settings, 
2033                                                                       transport_security);
2034                 modest_server_account_settings_set_auth_protocol (transport_settings, 
2035                                                                   transport_auth_protocol);
2036                 if (transport_port != 0)
2037                         modest_server_account_settings_set_port (transport_settings, 
2038                                                                  transport_port);
2039         } else {
2040                 ModestProtocolRegistry *registry;
2041                 ModestProtocol *store_proto;
2042
2043                 registry = modest_runtime_get_protocol_registry ();
2044                 /* Use custom pages because no preset was specified: */
2045                 transport_hostname = g_strdup (hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver) ));
2046
2047                 store_proto = modest_protocol_registry_get_protocol_by_type (registry, 
2048                                                                              store_protocol);
2049
2050                 if (transport_protocol == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
2051                         /* fallback to SMTP if none was specified */
2052                         g_warning ("No transport protocol was specified for store %d (%s)",
2053                                    modest_protocol_get_type_id (store_proto),
2054                                    modest_protocol_get_display_name (store_proto));
2055                         transport_protocol = MODEST_PROTOCOLS_TRANSPORT_SMTP;
2056                 }
2057
2058                 modest_security_options_view_save_settings (
2059                                     MODEST_SECURITY_OPTIONS_VIEW (priv->outgoing_security),
2060                                     priv->settings);
2061         }
2062
2063         /* now we store the common transport account settings */
2064         modest_server_account_settings_set_hostname (transport_settings, transport_hostname);
2065         modest_server_account_settings_set_username (transport_settings, username);
2066         modest_server_account_settings_set_password (transport_settings, password);
2067         modest_server_account_settings_set_protocol (transport_settings, transport_protocol);
2068
2069         g_object_unref (transport_settings);
2070         g_free (transport_hostname);
2071         
2072         fullname = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_name));
2073         email_address = hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_email));
2074         modest_account_settings_set_fullname (priv->settings, fullname);
2075         modest_account_settings_set_email_address (priv->settings, email_address);
2076         /* we don't set retrieve type to preserve advanced settings if
2077            any. By default account settings are set to headers only */
2078         
2079         /* Save the connection-specific SMTP server accounts. */
2080         modest_account_settings_set_use_connection_specific_smtp 
2081                 (priv->settings, 
2082                  hildon_check_button_get_active(HILDON_CHECK_BUTTON(priv->checkbox_outgoing_smtp_specific)));
2083
2084         display_name = get_entered_account_title (self);
2085         modest_account_settings_set_display_name (priv->settings, display_name);
2086         g_free (display_name);
2087         g_free (provider_id);
2088 }
2089
2090 static GList*
2091 check_for_supported_auth_methods (ModestEasysetupWizardDialog* self)
2092 {
2093         GError *error = NULL;
2094         ModestProtocolType protocol_type;
2095         const gchar* hostname;
2096         const gchar* username;
2097         ModestProtocolType security_protocol_incoming_type;
2098         ModestProtocolRegistry *registry;
2099         int port_num;
2100         GList *list_auth_methods;
2101         ModestEasysetupWizardDialogPrivate *priv;
2102         
2103         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
2104         registry = modest_runtime_get_protocol_registry ();
2105         protocol_type = modest_servertype_picker_get_active_servertype (
2106                 MODEST_SERVERTYPE_PICKER (priv->incoming_servertype_picker));
2107         hostname = gtk_entry_get_text(GTK_ENTRY(priv->entry_incomingserver));
2108         username = gtk_entry_get_text(GTK_ENTRY(priv->entry_user_username));
2109         security_protocol_incoming_type = modest_security_options_view_get_connection_protocol
2110                 (MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security));
2111         port_num = get_port_from_protocol(protocol_type, FALSE);
2112         list_auth_methods = modest_utils_get_supported_secure_authentication_methods (protocol_type, hostname, port_num,
2113                                                                                       username, GTK_WINDOW (self), &error);
2114
2115         if (list_auth_methods) {
2116                 /* TODO: Select the correct method */
2117                 GList* list = NULL;
2118                 GList* method;
2119                 for (method = list_auth_methods; method != NULL; method = g_list_next(method)) {
2120                         ModestProtocolType auth_protocol_type = (ModestProtocolType) (GPOINTER_TO_INT(method->data));
2121                         if (modest_protocol_registry_protocol_type_has_tag (registry, auth_protocol_type,
2122                                                                             MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS)) {
2123                                 list = g_list_append(list, GINT_TO_POINTER(auth_protocol_type));
2124                         }
2125                 }
2126
2127                 g_list_free(list_auth_methods);
2128
2129                 if (list)
2130                         return list;
2131         }
2132
2133         if(error == NULL || error->domain != modest_utils_get_supported_secure_authentication_error_quark() ||
2134                         error->code != MODEST_UTILS_GET_SUPPORTED_SECURE_AUTHENTICATION_ERROR_CANCELED)
2135         {
2136                 modest_platform_information_banner (GTK_WIDGET(self), NULL,
2137                                                     _("mcen_ib_unableto_discover_auth_methods"));
2138         }
2139
2140         if(error != NULL)
2141                 g_error_free(error);
2142
2143         return NULL;
2144 }
2145
2146 static gboolean 
2147 check_has_supported_auth_methods(ModestEasysetupWizardDialog* self)
2148 {
2149         GList* methods = check_for_supported_auth_methods(self);
2150         if (!methods)
2151         {
2152                 return FALSE;
2153         }
2154
2155         g_list_free(methods);
2156         return TRUE;
2157 }
2158