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