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