fd4ed071cedb10522175e7dbf7e403fb06aa9b68
[modest] / src / maemo / modest-account-settings-dialog.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30
31 #include "modest-account-settings-dialog.h"
32 #include <glib/gi18n.h>
33 #include <gtk/gtknotebook.h>
34 #include <gtk/gtkvbox.h>
35 #include <gtk/gtklabel.h>
36 #include <gtk/gtkcombobox.h>
37 #include <gtk/gtkentry.h>
38 #include <gtk/gtkbutton.h>
39 #include <gtk/gtkcheckbutton.h>
40 #include <gtk/gtkmessagedialog.h>
41 #include <gtk/gtkstock.h>
42 #include "modest-hildon-includes.h"
43
44 #include "widgets/modest-serversecurity-combo-box.h"
45 #include "widgets/modest-secureauth-combo-box.h"
46 #include "widgets/modest-validating-entry.h"
47 #include "widgets/modest-retrieve-combo-box.h"
48 #include "widgets/modest-limit-retrieve-combo-box.h"
49 #include "modest-text-utils.h"
50 #include "modest-account-mgr.h"
51 #include "modest-account-mgr-helpers.h" /* For modest_account_mgr_get_account_data(). */
52 #include "modest-runtime.h" /* For modest_runtime_get_account_mgr(). */
53 #include "modest-protocol-info.h"
54 #include "maemo/modest-connection-specific-smtp-window.h"
55 #include "maemo/modest-signature-editor-dialog.h"
56 #include "maemo/modest-maemo-utils.h"
57 #include "widgets/modest-ui-constants.h"
58
59 #include <tny-camel-transport-account.h>
60 #include <tny-camel-imap-store-account.h>
61 #include <tny-camel-pop-store-account.h>
62 #include <tny-status.h>
63
64 #include <gconf/gconf-client.h>
65 #include <string.h> /* For strlen(). */
66
67 /* Include config.h so that _() works: */
68 #ifdef HAVE_CONFIG_H
69 #include <config.h>
70 #endif
71
72 #define EXAMPLE_EMAIL_ADDRESS "first.last@provider.com"
73
74 G_DEFINE_TYPE (ModestAccountSettingsDialog, modest_account_settings_dialog, GTK_TYPE_DIALOG);
75
76 #define ACCOUNT_SETTINGS_DIALOG_GET_PRIVATE(o) \
77         (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_ACCOUNT_SETTINGS_DIALOG, ModestAccountSettingsDialogPrivate))
78
79 typedef struct _ModestAccountSettingsDialogPrivate ModestAccountSettingsDialogPrivate;
80
81 struct _ModestAccountSettingsDialogPrivate
82 {
83 };
84
85 static void
86 enable_buttons (ModestAccountSettingsDialog *self);
87
88 static gboolean
89 save_configuration (ModestAccountSettingsDialog *dialog);
90
91 static void
92 modest_account_settings_dialog_get_property (GObject *object, guint property_id,
93                                                                                                                         GValue *value, GParamSpec *pspec)
94 {
95         switch (property_id) {
96         default:
97                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
98         }
99 }
100
101 static void
102 modest_account_settings_dialog_set_property (GObject *object, guint property_id,
103                                                                                                                         const GValue *value, GParamSpec *pspec)
104 {
105         switch (property_id) {
106         default:
107                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
108         }
109 }
110
111 static void
112 modest_account_settings_dialog_dispose (GObject *object)
113 {
114         if (G_OBJECT_CLASS (modest_account_settings_dialog_parent_class)->dispose)
115                 G_OBJECT_CLASS (modest_account_settings_dialog_parent_class)->dispose (object);
116 }
117
118 static void
119 modest_account_settings_dialog_finalize (GObject *object)
120 {
121         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (object);
122         
123         if (self->account_name)
124                 g_free (self->account_name);
125                 
126         if (self->original_account_title)
127                 g_free (self->original_account_title);
128                 
129         if (self->account_manager)
130                 g_object_unref (G_OBJECT (self->account_manager));
131                 
132         if (self->specific_window)
133                 gtk_widget_destroy (self->specific_window);
134                 
135         if (self->signature_dialog)
136                 gtk_widget_destroy (self->signature_dialog);
137         
138         G_OBJECT_CLASS (modest_account_settings_dialog_parent_class)->finalize (object);
139 }
140
141 static void
142 show_error (GtkWindow *parent_window, const gchar* text);
143
144 static void
145 show_ok (GtkWindow *parent_window, const gchar* text);
146
147 static void
148 on_combo_incoming_security_changed (GtkComboBox *widget, gpointer user_data);
149
150 static void
151 on_combo_outgoing_security_changed (GtkComboBox *widget, gpointer user_data);
152
153 static void
154 on_modified_combobox_changed (GtkComboBox *widget, gpointer user_data)
155 {
156         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
157         self->modified = TRUE;
158 }
159
160 static void
161 on_modified_entry_changed (GtkEditable *editable, gpointer user_data)
162 {
163         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
164         self->modified = TRUE;
165 }
166
167 static void
168 on_modified_checkbox_toggled (GtkToggleButton *togglebutton, gpointer user_data)
169 {
170         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
171         self->modified = TRUE;
172 }
173
174 /* Set a modified boolean whenever the widget is changed, 
175  * so we can check for it later.
176  */
177 static void
178 connect_for_modified (ModestAccountSettingsDialog *self, GtkWidget *widget)
179 {
180         if (GTK_IS_ENTRY (widget)) {
181           g_signal_connect (G_OBJECT (widget), "changed",
182                 G_CALLBACK (on_modified_entry_changed), self);  
183         } else if (GTK_IS_COMBO_BOX (widget)) {
184                 g_signal_connect (G_OBJECT (widget), "changed",
185                 G_CALLBACK (on_modified_combobox_changed), self);       
186         } else if (GTK_IS_TOGGLE_BUTTON (widget)) {
187                 g_signal_connect (G_OBJECT (widget), "toggled",
188                 G_CALLBACK (on_modified_checkbox_toggled), self);
189         }
190 }
191
192 static void
193 on_caption_entry_changed (GtkEditable *editable, gpointer user_data)
194 {
195         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
196         g_assert(self);
197         enable_buttons(self);
198 }
199
200 static void
201 on_caption_combobox_changed (GtkComboBox *widget, gpointer user_data)
202 {
203         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
204         g_assert(self);
205         enable_buttons(self);
206 }
207
208 /** This is a convenience function to create a caption containing a mandatory widget.
209  * When the widget is edited, the enable_buttons() vfunc will be called.
210  */
211 static GtkWidget* create_caption_new_with_asterisk(ModestAccountSettingsDialog *self,
212         GtkSizeGroup *group,
213         const gchar *value,
214         GtkWidget *control,
215         GtkWidget *icon,
216         HildonCaptionStatus flag)
217 {
218         GtkWidget *caption = NULL;
219   
220         /* Note: Previously, the translated strings already contained the "*",
221          * Comment out this code if they do again.
222          */
223         /* Add a * character to indicate mandatory fields,
224          * as specified in our "Email UI Specification": */
225         if (flag == HILDON_CAPTION_MANDATORY) {
226                 gchar* title = g_strdup_printf("%s*", value);
227                 caption = hildon_caption_new (group, title, control, icon, flag);       
228                 g_free(title);
229         }       
230         else
231                 caption = hildon_caption_new (group, value, control, icon, flag);
232
233         /* Connect to the appropriate changed signal for the widget, 
234          * so we can ask for the prev/next buttons to be enabled/disabled appropriately:
235          */
236         if (GTK_IS_ENTRY (control)) {
237                 g_signal_connect (G_OBJECT (control), "changed",
238                 G_CALLBACK (on_caption_entry_changed), self);
239                 
240         }
241         else if (GTK_IS_COMBO_BOX (control)) {
242                 g_signal_connect (G_OBJECT (control), "changed",
243                 G_CALLBACK (on_caption_combobox_changed), self);
244         }
245          
246         return caption;
247 }
248
249
250 static void
251 on_entry_max (ModestValidatingEntry *self, gpointer user_data)
252 {
253         ModestAccountSettingsDialog *dialog = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
254         show_error (GTK_WINDOW (dialog), _("ckdg_ib_maximum_characters_reached"));
255 }
256
257 static GtkWidget*
258 create_page_account_details (ModestAccountSettingsDialog *self)
259 {
260         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
261         GtkWidget *label = gtk_label_new(_("mcen_ia_accountdetails"));
262         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, MODEST_MARGIN_HALF);
263         gtk_widget_show (label);
264         
265         /* Create a size group to be used by all captions.
266          * Note that HildonCaption does not create a default size group if we do not specify one.
267          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
268         GtkSizeGroup* sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
269            
270         /* The description widgets: */  
271         self->entry_account_title = GTK_WIDGET (modest_validating_entry_new ());
272         /* Do use auto-capitalization: */
273         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_account_title), 
274                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_AUTOCAP);
275         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_account_title"), 
276                 self->entry_account_title, NULL, HILDON_CAPTION_MANDATORY);
277         gtk_widget_show (self->entry_account_title);
278         connect_for_modified (self, self->entry_account_title);
279         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
280         gtk_widget_show (caption);
281         
282         /* Prevent the use of some characters in the account title, 
283          * as required by our UI specification: */
284         GList *list_prevent = NULL;
285         list_prevent = g_list_append (list_prevent, "\\");
286         list_prevent = g_list_append (list_prevent, "/");
287         list_prevent = g_list_append (list_prevent, ":");
288         list_prevent = g_list_append (list_prevent, "*");
289         list_prevent = g_list_append (list_prevent, "?");
290         list_prevent = g_list_append (list_prevent, "\""); /* The UI spec mentions â€œ, but maybe means ", maybe both. */
291         list_prevent = g_list_append (list_prevent, "“");
292         list_prevent = g_list_append (list_prevent, "<"); 
293         list_prevent = g_list_append (list_prevent, ">"); 
294         list_prevent = g_list_append (list_prevent, "|");
295         list_prevent = g_list_append (list_prevent, "^");       
296         modest_validating_entry_set_unallowed_characters (
297                 MODEST_VALIDATING_ENTRY (self->entry_account_title), list_prevent);
298         g_list_free (list_prevent);
299         
300         /* Set max length as in the UI spec:
301          * The UI spec seems to want us to show a dialog if we hit the maximum. */
302         gtk_entry_set_max_length (GTK_ENTRY (self->entry_account_title), 64);
303         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (self->entry_account_title), 
304                 on_entry_max, self);
305         
306         /* The retrieve combobox: */
307         self->combo_retrieve = GTK_WIDGET (modest_retrieve_combo_box_new ());
308         caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_advsetup_retrievetype"), 
309                 self->combo_retrieve, NULL, HILDON_CAPTION_MANDATORY);
310         gtk_widget_show (self->combo_retrieve);
311         connect_for_modified (self, self->combo_retrieve);
312         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
313         gtk_widget_show (caption);
314         
315         /* The limit-retrieve combobox: */
316         self->combo_limit_retrieve = GTK_WIDGET (modest_limit_retrieve_combo_box_new ());
317         caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_advsetup_limit_retrieve"), 
318                 self->combo_limit_retrieve, NULL, HILDON_CAPTION_MANDATORY);
319         gtk_widget_show (self->combo_limit_retrieve);
320         connect_for_modified (self, self->combo_limit_retrieve);
321         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
322         gtk_widget_show (caption);
323
324         /* The leave-messages widgets: */
325         if(!self->checkbox_leave_messages)
326                 self->checkbox_leave_messages = gtk_check_button_new ();
327         if (!self->caption_leave_messages) {
328                 self->caption_leave_messages = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_advsetup_leave_on_server"), 
329                         self->checkbox_leave_messages, NULL, HILDON_CAPTION_MANDATORY);
330         }
331                         
332         gtk_widget_show (self->checkbox_leave_messages);
333         connect_for_modified (self, self->checkbox_leave_messages);
334         gtk_box_pack_start (GTK_BOX (box), self->caption_leave_messages, FALSE, FALSE, MODEST_MARGIN_HALF);
335         gtk_widget_show (self->caption_leave_messages);
336         
337         gtk_widget_show (GTK_WIDGET (box));
338         
339         return GTK_WIDGET (box);
340 }
341
342 static void
343 on_button_signature (GtkButton *button, gpointer user_data)
344 {
345         ModestAccountSettingsDialog * self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
346         
347         /* Create the window, if necessary: */
348         if (!(self->signature_dialog)) {
349                 self->signature_dialog = GTK_WIDGET (modest_signature_editor_dialog_new ());
350         
351                 gboolean use_signature = FALSE;
352                 gchar *signature = modest_account_mgr_get_signature(self->account_manager, self->account_name, 
353                         &use_signature);
354                 const gchar* account_title = gtk_entry_get_text (GTK_ENTRY (self->entry_account_title));
355                 modest_signature_editor_dialog_set_settings (
356                         MODEST_SIGNATURE_EDITOR_DIALOG (self->signature_dialog), 
357                         use_signature, signature, account_title);
358                 g_free (signature);
359                 signature = NULL;
360         }
361
362         /* Show the window: */  
363         gtk_window_set_transient_for (GTK_WINDOW (self->signature_dialog), GTK_WINDOW (self));
364         gtk_window_set_modal (GTK_WINDOW (self->signature_dialog), TRUE);
365     const gint response = gtk_dialog_run (GTK_DIALOG (self->signature_dialog));
366     gtk_widget_hide (self->signature_dialog);
367     if (response != GTK_RESPONSE_OK) {
368         /* Destroy the widget now, and its data: */
369         gtk_widget_destroy (self->signature_dialog);
370         self->signature_dialog = NULL;
371     }
372     else {
373         /* Mark modified, so we use the dialog's data later: */
374         self->modified = TRUE;  
375     }
376 }
377
378 static GtkWidget*
379 create_page_user_details (ModestAccountSettingsDialog *self)
380 {
381         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
382         
383         /* Create a size group to be used by all captions.
384          * Note that HildonCaption does not create a default size group if we do not specify one.
385          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
386         GtkSizeGroup* sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
387          
388         /* The name widgets: */
389         self->entry_user_name = GTK_WIDGET (modest_validating_entry_new ());
390         /* Auto-capitalization is the default, so let's turn it off: */
391         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_user_name), HILDON_GTK_INPUT_MODE_FULL);
392         /* Set max length as in the UI spec:
393          * The UI spec seems to want us to show a dialog if we hit the maximum. */
394         gtk_entry_set_max_length (GTK_ENTRY (self->entry_user_name), 64);
395         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (self->entry_user_name), 
396                 on_entry_max, self);
397         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, 
398                 _("mcen_li_emailsetup_name"), self->entry_user_name, NULL, HILDON_CAPTION_OPTIONAL);
399         gtk_widget_show (self->entry_user_name);
400         connect_for_modified (self, self->entry_user_name);
401         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
402         gtk_widget_show (caption);
403         
404         /* Prevent the use of some characters in the name, 
405          * as required by our UI specification: */
406         GList *list_prevent = NULL;
407         list_prevent = g_list_append (list_prevent, "<");
408         list_prevent = g_list_append (list_prevent, ">");
409         modest_validating_entry_set_unallowed_characters (
410                 MODEST_VALIDATING_ENTRY (self->entry_user_name), list_prevent);
411         g_list_free (list_prevent);
412         
413         /* The username widgets: */     
414         self->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
415         /* Auto-capitalization is the default, so let's turn it off: */
416         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_user_username), HILDON_GTK_INPUT_MODE_FULL);
417         caption = create_caption_new_with_asterisk (self, sizegroup, _("mail_fi_username"), 
418                 self->entry_user_username, NULL, HILDON_CAPTION_MANDATORY);
419         gtk_widget_show (self->entry_user_username);
420         connect_for_modified (self, self->entry_user_username);
421         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
422         gtk_widget_show (caption);
423         
424         /* Prevent the use of some characters in the username, 
425          * as required by our UI specification: */
426         modest_validating_entry_set_unallowed_characters_whitespace (
427                 MODEST_VALIDATING_ENTRY (self->entry_user_username));
428         
429         /* Set max length as in the UI spec:
430          * The UI spec seems to want us to show a dialog if we hit the maximum. */
431         gtk_entry_set_max_length (GTK_ENTRY (self->entry_user_username), 64);
432         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (self->entry_user_username), 
433                 on_entry_max, self);
434         
435         /* The password widgets: */     
436         self->entry_user_password = gtk_entry_new ();
437         /* Auto-capitalization is the default, so let's turn it off: */
438         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_user_password), 
439                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
440         gtk_entry_set_visibility (GTK_ENTRY (self->entry_user_password), FALSE);
441         /* gtk_entry_set_invisible_char (GTK_ENTRY (self->entry_user_password), '*'); */
442         caption = create_caption_new_with_asterisk (self, sizegroup, 
443                 _("mail_fi_password"), self->entry_user_password, NULL, HILDON_CAPTION_OPTIONAL);
444         gtk_widget_show (self->entry_user_password);
445         connect_for_modified (self, self->entry_user_password);
446         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
447         gtk_widget_show (caption);
448         
449         /* The email address widgets: */        
450         self->entry_user_email = GTK_WIDGET (modest_validating_entry_new ());
451         /* Auto-capitalization is the default, so let's turn it off: */
452         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_user_email), HILDON_GTK_INPUT_MODE_FULL);
453         caption = create_caption_new_with_asterisk (self, sizegroup, 
454                 _("mcen_li_emailsetup_email_address"), self->entry_user_email, NULL, HILDON_CAPTION_MANDATORY);
455         gtk_entry_set_text (GTK_ENTRY (self->entry_user_email), EXAMPLE_EMAIL_ADDRESS); /* Default text. */
456         gtk_widget_show (self->entry_user_email);
457         connect_for_modified (self, self->entry_user_email);
458         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
459         gtk_widget_show (caption);
460         
461         /* Set max length as in the UI spec:
462          * The UI spec seems to want us to show a dialog if we hit the maximum. */
463         gtk_entry_set_max_length (GTK_ENTRY (self->entry_user_email), 64);
464         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (self->entry_user_email), 
465                 on_entry_max, self);
466         
467         /* Signature button: */
468         if (!self->button_signature)
469                 self->button_signature = gtk_button_new_with_label (_("mcen_bd_edit"));
470         caption = hildon_caption_new (sizegroup, _("mcen_fi_email_signature"), 
471                 self->button_signature, NULL, HILDON_CAPTION_OPTIONAL);
472         hildon_caption_set_child_expand (HILDON_CAPTION (caption), FALSE);
473         gtk_widget_show (self->button_signature);
474         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
475         gtk_widget_show (caption);
476                 
477         g_signal_connect (G_OBJECT (self->button_signature), "clicked",
478                 G_CALLBACK (on_button_signature), self);
479                 
480         gtk_widget_show (GTK_WIDGET (box));
481         
482         return GTK_WIDGET (box);
483 }
484
485 /** Change the caption title for the incoming server, 
486  * as specified in the UI spec:
487  */
488 static void update_incoming_server_title (ModestAccountSettingsDialog *self, ModestTransportStoreProtocol protocol)
489 {
490         const gchar* type = 
491                 (protocol == MODEST_PROTOCOL_STORE_POP ? 
492                         _("mail_fi_emailtype_pop3") : 
493                         _("mail_fi_emailtype_imap") );
494                         
495                 
496         /* Note that this produces a compiler warning, 
497          * because the compiler does not know that the translated string will have a %s in it.
498          * I do not see a way to avoid the warning while still using these Logical IDs. murrayc. */
499         gchar* incomingserver_title = g_strdup_printf(_("mcen_li_emailsetup_servertype"), type);
500         
501         /* This is a mandatory field, so add a *. This is usually done by 
502          * create_caption_new_with_asterisk() but we can't use that here. */
503         gchar *with_asterisk = g_strconcat (incomingserver_title, "*", NULL);
504         g_free (incomingserver_title);
505         
506         g_object_set (G_OBJECT (self->caption_incoming), "label", with_asterisk, NULL);
507         g_free(with_asterisk);
508 }
509
510 /** Change the caption title for the incoming server, 
511  * as specified in the UI spec:
512  */
513 static void update_incoming_server_security_choices (ModestAccountSettingsDialog *self, ModestTransportStoreProtocol protocol)
514 {
515         /* Fill the combo with appropriately titled choices for POP or IMAP. */
516         /* The choices are the same, but the titles are different, as in the UI spec. */
517         modest_serversecurity_combo_box_fill (
518                 MODEST_SERVERSECURITY_COMBO_BOX (self->combo_incoming_security), protocol);
519 }
520            
521 static GtkWidget* create_page_incoming (ModestAccountSettingsDialog *self)
522 {
523         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
524         
525         /* Create a size group to be used by all captions.
526          * Note that HildonCaption does not create a default size group if we do not specify one.
527          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
528         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
529          
530         /* The incoming server widgets: */
531         if(!self->entry_incomingserver)
532                 self->entry_incomingserver = gtk_entry_new ();
533         /* Auto-capitalization is the default, so let's turn it off: */
534         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_incomingserver), HILDON_GTK_INPUT_MODE_FULL);
535
536         if (self->caption_incoming)
537           gtk_widget_destroy (self->caption_incoming);
538            
539         /* The caption title will be updated in update_incoming_server_title().
540          * so this default text will never be seen: */
541         /* (Note: Changing the title seems pointless. murrayc) */
542         self->caption_incoming = create_caption_new_with_asterisk (self, sizegroup, 
543                 "Incoming Server", self->entry_incomingserver, NULL, HILDON_CAPTION_MANDATORY);
544         gtk_widget_show (self->entry_incomingserver);
545         connect_for_modified (self, self->entry_incomingserver);
546         gtk_box_pack_start (GTK_BOX (box), self->caption_incoming, FALSE, FALSE, MODEST_MARGIN_HALF);
547         gtk_widget_show (self->caption_incoming);
548         
549         /* The secure connection widgets: */
550         /* This will be filled by update_incoming_server_security_choices(). */
551         if (!self->combo_incoming_security)
552                 self->combo_incoming_security = GTK_WIDGET (modest_serversecurity_combo_box_new ());
553         GtkWidget *caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_connection"), 
554                 self->combo_incoming_security, NULL, HILDON_CAPTION_OPTIONAL);
555         gtk_widget_show (self->combo_incoming_security);
556         connect_for_modified (self, self->combo_incoming_security);
557         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
558         gtk_widget_show (caption);
559         
560         /* Show a default port number when the security method changes, as per the UI spec: */
561         g_signal_connect (G_OBJECT (self->combo_incoming_security), "changed", (GCallback)on_combo_incoming_security_changed, self);
562         
563         
564         /* The port widgets: */
565         /* TODO: There are various rules about this in the UI spec. */
566         if (!self->entry_incoming_port)
567                 self->entry_incoming_port = GTK_WIDGET (hildon_number_editor_new (0, 65535));
568         caption = hildon_caption_new (sizegroup, _("mcen_fi_emailsetup_port"), 
569                 self->entry_incoming_port, NULL, HILDON_CAPTION_OPTIONAL);
570         gtk_widget_show (self->entry_incoming_port);
571         connect_for_modified (self, self->entry_incoming_port);
572         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
573         gtk_widget_show (caption);
574         
575         /* The secure authentication widgets: */
576         if(!self->checkbox_incoming_auth)
577                 self->checkbox_incoming_auth = gtk_check_button_new ();
578         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_authentication"), 
579                 self->checkbox_incoming_auth, NULL, HILDON_CAPTION_OPTIONAL);
580         gtk_widget_show (self->checkbox_incoming_auth);
581         connect_for_modified (self, self->checkbox_incoming_auth);
582         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
583         gtk_widget_show (caption);
584         
585         gtk_widget_show (GTK_WIDGET (box));
586         
587         return GTK_WIDGET (box);
588 }
589
590 static void
591 on_toggle_button_changed (GtkToggleButton *togglebutton, gpointer user_data)
592 {
593         GtkWidget *widget = GTK_WIDGET (user_data);
594         
595         /* Enable the widget only if the toggle button is active: */
596         const gboolean enable = gtk_toggle_button_get_active (togglebutton);
597         gtk_widget_set_sensitive (widget, enable);
598 }
599
600 /* Make the sensitivity of a widget depend on a toggle button.
601  */
602 static void
603 enable_widget_for_togglebutton (GtkWidget *widget, GtkToggleButton* button)
604 {
605         g_signal_connect (G_OBJECT (button), "toggled",
606                 G_CALLBACK (on_toggle_button_changed), widget);
607         
608         /* Set the starting sensitivity: */
609         on_toggle_button_changed (button, widget);
610 }
611
612 static void
613 on_button_outgoing_smtp_servers (GtkButton *button, gpointer user_data)
614 {
615         ModestAccountSettingsDialog * self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
616         
617         /* Create the window if necessary: */
618         if (!(self->specific_window)) {
619                 self->specific_window = GTK_WIDGET (modest_connection_specific_smtp_window_new ());
620                 modest_connection_specific_smtp_window_fill_with_connections (
621                         MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (self->specific_window), self->account_manager, 
622                         self->account_name);
623         }
624
625         /* Show the window: */  
626         gtk_window_set_transient_for (GTK_WINDOW (self->specific_window), GTK_WINDOW (self));
627         gtk_window_set_modal (GTK_WINDOW (self->specific_window), TRUE);
628     gtk_widget_show (self->specific_window);
629 }
630
631 static void
632 on_combo_outgoing_auth_changed (GtkComboBox *widget, gpointer user_data)
633 {
634         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
635         
636         ModestAuthProtocol protocol_security = 
637                 modest_secureauth_combo_box_get_active_secureauth (
638                         MODEST_SECUREAUTH_COMBO_BOX (self->combo_outgoing_auth));
639         const gboolean secureauth_used = protocol_security != MODEST_PROTOCOL_AUTH_NONE;
640         
641         gtk_widget_set_sensitive (self->caption_outgoing_username, secureauth_used);
642         gtk_widget_set_sensitive (self->caption_outgoing_password, secureauth_used);
643 }
644
645 static void
646 on_combo_outgoing_security_changed (GtkComboBox *widget, gpointer user_data)
647 {
648         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
649         
650         const gint port_number = 
651                 modest_serversecurity_combo_box_get_active_serversecurity_port (
652                         MODEST_SERVERSECURITY_COMBO_BOX (self->combo_outgoing_security));
653
654         if(port_number != 0) {
655                 hildon_number_editor_set_value (
656                         HILDON_NUMBER_EDITOR (self->entry_outgoing_port), port_number);
657         }               
658 }
659
660 static void
661 on_combo_incoming_security_changed (GtkComboBox *widget, gpointer user_data)
662 {
663         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (user_data);
664         
665         const gint port_number = 
666                 modest_serversecurity_combo_box_get_active_serversecurity_port (
667                         MODEST_SERVERSECURITY_COMBO_BOX (self->combo_incoming_security));
668
669         if(port_number != 0) {
670                 hildon_number_editor_set_value (
671                         HILDON_NUMBER_EDITOR (self->entry_incoming_port), port_number);
672         }               
673 }
674
675
676 static GtkWidget* create_page_outgoing (ModestAccountSettingsDialog *self)
677 {
678         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
679         
680         /* Create a size group to be used by all captions.
681          * Note that HildonCaption does not create a default size group if we do not specify one.
682          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
683         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
684          
685         /* The outgoing server widgets: */
686         if (!self->entry_outgoingserver)
687                 self->entry_outgoingserver = gtk_entry_new ();
688         /* Auto-capitalization is the default, so let's turn it off: */
689         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
690         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, 
691                 _("mcen_li_emailsetup_smtp"), self->entry_outgoingserver, NULL, HILDON_CAPTION_OPTIONAL);
692         gtk_widget_show (self->entry_outgoingserver);
693         connect_for_modified (self, self->entry_outgoingserver);
694         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
695         gtk_widget_show (caption);
696         
697         /* The secure authentication widgets: */
698         if (!self->combo_outgoing_auth)
699                 self->combo_outgoing_auth = GTK_WIDGET (modest_secureauth_combo_box_new ());
700         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_authentication"), 
701                 self->combo_outgoing_auth, NULL, HILDON_CAPTION_OPTIONAL);
702         gtk_widget_show (self->combo_outgoing_auth);
703         connect_for_modified (self, self->combo_outgoing_auth);
704         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
705         gtk_widget_show (caption);
706         
707         /* Dim the outgoing username and password when no secure authentication is used, as per the UI spec: */
708         g_signal_connect (G_OBJECT (self->combo_outgoing_auth), "changed", (GCallback)on_combo_outgoing_auth_changed, self);
709         
710         /* The username widgets: */     
711         self->entry_outgoing_username = GTK_WIDGET (modest_validating_entry_new ());
712         /* Auto-capitalization is the default, so let's turn it off: */
713         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_outgoing_username), HILDON_GTK_INPUT_MODE_FULL);
714         self->caption_outgoing_username = create_caption_new_with_asterisk (self, sizegroup, _("mail_fi_username"), 
715                 self->entry_outgoing_username, NULL, HILDON_CAPTION_MANDATORY);
716         gtk_widget_show (self->entry_outgoing_username);
717         connect_for_modified (self, self->entry_outgoing_username);
718         gtk_box_pack_start (GTK_BOX (box), self->caption_outgoing_username, FALSE, FALSE, MODEST_MARGIN_HALF);
719         gtk_widget_show (self->caption_outgoing_username);
720         
721         /* Prevent the use of some characters in the username, 
722          * as required by our UI specification: */
723         modest_validating_entry_set_unallowed_characters_whitespace (
724                 MODEST_VALIDATING_ENTRY (self->entry_outgoing_username));
725         
726         /* Set max length as in the UI spec:
727          * The UI spec seems to want us to show a dialog if we hit the maximum. */
728         gtk_entry_set_max_length (GTK_ENTRY (self->entry_outgoing_username), 64);
729         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (self->entry_outgoing_username), 
730                 on_entry_max, self);
731                 
732         /* The password widgets: */     
733         self->entry_outgoing_password = gtk_entry_new ();
734         /* Auto-capitalization is the default, so let's turn it off: */
735         hildon_gtk_entry_set_input_mode (GTK_ENTRY (self->entry_outgoing_password), 
736                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
737         gtk_entry_set_visibility (GTK_ENTRY (self->entry_outgoing_password), FALSE);
738         /* gtk_entry_set_invisible_char (GTK_ENTRY (self->entry_outgoing_password), '*'); */
739         self->caption_outgoing_password = create_caption_new_with_asterisk (self, sizegroup, 
740                 _("mail_fi_password"), self->entry_outgoing_password, NULL, HILDON_CAPTION_OPTIONAL);
741         gtk_widget_show (self->entry_outgoing_password);
742         connect_for_modified (self, self->entry_outgoing_password);
743         gtk_box_pack_start (GTK_BOX (box), self->caption_outgoing_password, FALSE, FALSE, MODEST_MARGIN_HALF);
744         gtk_widget_show (self->caption_outgoing_password);
745         
746         /* The secure connection widgets: */
747         /* This will be filled and set with modest_serversecurity_combo_box_fill() 
748          * and modest_serversecurity_combo_box_set_active_serversecurity().
749          */
750         if (!self->combo_outgoing_security)
751                 self->combo_outgoing_security = GTK_WIDGET (modest_serversecurity_combo_box_new ());
752         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_connection"), 
753                 self->combo_outgoing_security, NULL, HILDON_CAPTION_OPTIONAL);
754         gtk_widget_show (self->combo_outgoing_security);
755         connect_for_modified (self, self->combo_outgoing_security);
756         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
757         gtk_widget_show (caption);
758         
759         /* Show a default port number when the security method changes, as per the UI spec: */
760         g_signal_connect (G_OBJECT (self->combo_outgoing_security), "changed", (GCallback)on_combo_outgoing_security_changed, self);
761         
762         /* The port widgets: */
763         if (!self->entry_outgoing_port)
764                 self->entry_outgoing_port = GTK_WIDGET (hildon_number_editor_new (0, 65535));
765         caption = hildon_caption_new (sizegroup, _("mcen_fi_emailsetup_port"), 
766                 self->entry_outgoing_port, NULL, HILDON_CAPTION_OPTIONAL);
767         gtk_widget_show (self->entry_outgoing_port);
768         connect_for_modified (self, self->entry_outgoing_port);
769         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
770         gtk_widget_show (caption);
771         
772         GtkWidget *separator = gtk_hseparator_new ();
773         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
774         gtk_widget_show (separator);
775         
776         /* connection-specific checkbox: */
777         if (!self->checkbox_outgoing_smtp_specific) {
778                 self->checkbox_outgoing_smtp_specific = gtk_check_button_new ();
779                 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (self->checkbox_outgoing_smtp_specific), 
780                         FALSE);
781         }
782         caption = hildon_caption_new (sizegroup, _("mcen_fi_advsetup_connection_smtp"), 
783                 self->checkbox_outgoing_smtp_specific, NULL, HILDON_CAPTION_OPTIONAL);
784         gtk_widget_show (self->checkbox_outgoing_smtp_specific);
785         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
786         gtk_widget_show (caption);
787         connect_for_modified (self, self->checkbox_outgoing_smtp_specific);
788         
789         /* Connection-specific SMTP-Severs Edit button: */
790         if (!self->button_outgoing_smtp_servers)
791                 self->button_outgoing_smtp_servers = gtk_button_new_with_label (_("mcen_bd_edit"));
792         caption = hildon_caption_new (sizegroup, _("mcen_fi_advsetup_optional_smtp"), 
793                 self->button_outgoing_smtp_servers, NULL, HILDON_CAPTION_OPTIONAL);
794         hildon_caption_set_child_expand (HILDON_CAPTION (caption), FALSE);
795         gtk_widget_show (self->button_outgoing_smtp_servers);
796         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
797         gtk_widget_show (caption);
798         
799         /* Only enable the button when the checkbox is checked: */
800         enable_widget_for_togglebutton (self->button_outgoing_smtp_servers, 
801                 GTK_TOGGLE_BUTTON (self->checkbox_outgoing_smtp_specific));
802                 
803         g_signal_connect (G_OBJECT (self->button_outgoing_smtp_servers), "clicked",
804                 G_CALLBACK (on_button_outgoing_smtp_servers), self);
805                 
806         gtk_widget_show (GTK_WIDGET (box));
807         
808         return GTK_WIDGET (box);
809 }
810
811 static gboolean
812 check_data (ModestAccountSettingsDialog *self)
813 {
814         /* Check that the title is not already in use: */
815         const gchar* account_title = gtk_entry_get_text (GTK_ENTRY (self->entry_account_title));
816         if ((!account_title) || (strlen(account_title) == 0))
817                 return FALSE; /* Should be prevented already anyway. */
818                 
819         if (strcmp(account_title, self->original_account_title) != 0) {
820                 /* Check the changed title: */
821                 const gboolean name_in_use  = modest_account_mgr_account_with_display_name_exists (self->account_manager,
822                         account_title);
823         
824                 if (name_in_use) {
825                         /* Warn the user via a dialog: */
826                         show_error (GTK_WINDOW (self), _("mail_ib_account_name_already_existing"));
827                 
828                         return FALSE;
829                 }
830         }
831
832         /* Check that the email address is valud: */
833         const gchar* email_address = gtk_entry_get_text (GTK_ENTRY (self->entry_user_email));
834         if ((!email_address) || (strlen(email_address) == 0))
835                 return FALSE;
836                         
837         if (!modest_text_utils_validate_email_address (email_address)) {
838                 /* Warn the user via a dialog: */
839                 show_error (GTK_WINDOW (self), _("mcen_ib_invalid_email"));
840                                          
841         /* Return focus to the email address entry: */
842         gtk_widget_grab_focus (self->entry_user_email);
843         
844                 return FALSE;
845         }
846         
847         /* TODO: The UI Spec wants us to check that the servernames are valid, 
848          * but does not specify how.
849          */
850          
851         return TRUE;
852 }
853 /*
854  */
855 static void 
856 on_response (GtkDialog *wizard_dialog,
857         gint response_id,
858         gpointer user_data)
859 {
860         ModestAccountSettingsDialog *self = MODEST_ACCOUNT_SETTINGS_DIALOG (wizard_dialog);
861         enable_buttons (self);
862         
863         gboolean prevent_response = FALSE;
864         
865         /* Warn about unsaved changes: */
866         if (response_id == GTK_RESPONSE_CANCEL && self->modified) {
867                 GtkDialog *dialog = GTK_DIALOG (hildon_note_new_confirmation (GTK_WINDOW (self), 
868                         _("imum_nc_wizard_confirm_lose_changes")));
869                 /* TODO: These button names will be ambiguous, and not specified in the UI specification. */
870                  
871                  const gint dialog_response = gtk_dialog_run (dialog);
872                  gtk_widget_destroy (GTK_WIDGET (dialog));
873                  
874                 if (dialog_response != GTK_RESPONSE_OK)
875                         prevent_response = TRUE;
876         }
877         /* Check for invalid input: */
878         else if (response_id != GTK_RESPONSE_CANCEL && !check_data (self)) {
879                 prevent_response = TRUE;
880         }
881                 
882         if (prevent_response) {
883                 /* This is a nasty hack. murrayc. */
884                 /* Don't let the dialog close */
885         g_signal_stop_emission_by_name (wizard_dialog, "response");
886                 return; 
887         }
888                 
889         if (response_id == GTK_RESPONSE_OK) {
890                 /* Try to save the changes if modified (NB #59251): */
891                 if (self->modified)
892                 {
893                         const gboolean saved = save_configuration (self);
894                         if (saved) {
895                         /* Do not show the account-saved dialog if we are just saving this 
896                          * temporarily, because from the user's point of view it will not 
897                          * really be saved (saved + enabled) until later.
898                          */
899                         const gboolean enabled = 
900                                 modest_account_mgr_get_enabled (self->account_manager, self->account_name);
901                         if (enabled)
902                                 show_ok (GTK_WINDOW (self), _("mcen_ib_advsetup_settings_saved"));
903                         }
904                         else
905                                 show_error (GTK_WINDOW (self), _("mail_ib_setting_failed"));
906                 }
907         }
908 }
909
910 static void
911 modest_account_settings_dialog_init (ModestAccountSettingsDialog *self)
912 {
913         /* Create the notebook to be used by the GtkDialog base class:
914          * Each page of the notebook will be a page of the wizard: */
915         GtkNotebook *notebook = GTK_NOTEBOOK (gtk_notebook_new());
916
917         /* Get the account manager object, 
918          * so we can check for existing accounts,
919          * and create new accounts: */
920         self->account_manager = modest_runtime_get_account_mgr ();
921         g_assert (self->account_manager);
922         g_object_ref (self->account_manager);
923         
924     /* Create the common pages, 
925      */
926         self->page_account_details = create_page_account_details (self);
927         self->page_user_details = create_page_user_details (self);
928         self->page_incoming = create_page_incoming (self);
929         self->page_outgoing = create_page_outgoing (self);
930         
931         /* Add the notebook pages: */
932         gtk_notebook_append_page (notebook, self->page_account_details, 
933                 gtk_label_new (_("mcen_ti_account_settings_account")));
934         gtk_notebook_append_page (notebook, self->page_user_details, 
935                 gtk_label_new (_("mcen_ti_account_settings_userinfo")));
936         gtk_notebook_append_page (notebook, self->page_incoming,
937                 gtk_label_new (_("mcen_ti_advsetup_retrieval")));
938         gtk_notebook_append_page (notebook, self->page_outgoing,
939                 gtk_label_new (_("mcen_ti_advsetup_sending")));
940                 
941         GtkDialog *dialog = GTK_DIALOG (self);
942         gtk_container_add (GTK_CONTAINER (dialog->vbox), GTK_WIDGET (notebook));
943         gtk_container_set_border_width (GTK_CONTAINER (dialog->vbox), MODEST_MARGIN_HALF);
944         gtk_widget_show (GTK_WIDGET (notebook));
945         
946     /* Add the buttons: */
947     gtk_dialog_add_button (GTK_DIALOG(self), GTK_STOCK_OK, GTK_RESPONSE_OK);
948     gtk_dialog_add_button (GTK_DIALOG(self), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
949     
950     /* Connect to the dialog's response signal: */
951     /* We use connect-before 
952      * so we can stop the signal emission, 
953      * to stop the default signal handler from closing the dialog.
954      */
955     g_signal_connect (G_OBJECT (self), "response",
956             G_CALLBACK (on_response), self); 
957             
958     self->modified = FALSE;
959     
960     /* When this window is shown, hibernation should not be possible, 
961          * because there is no sensible way to save the state: */
962     modest_window_mgr_prevent_hibernation_while_window_is_shown (
963         modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
964 }
965
966 ModestAccountSettingsDialog*
967 modest_account_settings_dialog_new (void)
968 {
969         return g_object_new (MODEST_TYPE_ACCOUNT_SETTINGS_DIALOG, NULL);
970 }
971
972 /** Update the UI with the stored account details, so they can be edited.
973  * @account_name: Name of the account, which should contain incoming and outgoing server accounts.
974  */
975 void modest_account_settings_dialog_set_account_name (ModestAccountSettingsDialog *dialog, const gchar* account_name)
976 {
977         if (!account_name)
978                 return;
979                 
980         /* Save the account name so we can refer to it later: */
981         if (dialog->account_name)
982                 g_free (dialog->account_name);
983         dialog->account_name = g_strdup (account_name);
984         
985                 
986         /* Get the account data for this account name: */
987         ModestAccountData *account_data = modest_account_mgr_get_account_data (dialog->account_manager, 
988                 account_name);
989         if (!account_data) {
990                 g_printerr ("modest: failed to get account data for %s\n", account_name);
991                 return;
992         }
993         
994         /* Save the account title so we can refer to it if the user changes it: */
995         if (dialog->original_account_title)
996                 g_free (dialog->original_account_title);
997         dialog->original_account_title = g_strdup (account_data->display_name);
998         
999
1000         if (!(account_data->store_account)) {
1001                 g_printerr ("modest: account has no stores: %s\n", account_name);
1002                 return;
1003         }
1004                 
1005         /* Show the account data in the widgets: */
1006         
1007         /* Note that we never show the non-display name in the UI.
1008          * (Though the display name defaults to the non-display name at the start.) */
1009         gtk_entry_set_text( GTK_ENTRY (dialog->entry_account_title),
1010                 account_data->display_name ? account_data->display_name : "");
1011                 
1012         gtk_entry_set_text( GTK_ENTRY (dialog->entry_user_name), 
1013                 account_data->fullname ? account_data->fullname : "");
1014         gtk_entry_set_text( GTK_ENTRY (dialog->entry_user_email), 
1015                 account_data->email ? account_data->email : "");
1016                 
1017         ModestServerAccountData *incoming_account = account_data->store_account;
1018                 
1019         if (incoming_account)
1020                 modest_retrieve_combo_box_fill (MODEST_RETRIEVE_COMBO_BOX (dialog->combo_retrieve), incoming_account->proto);
1021         gchar *retrieve = modest_account_mgr_get_string (dialog->account_manager, account_name,
1022                 MODEST_ACCOUNT_RETRIEVE, FALSE /* not server account */);
1023         if (!retrieve) {
1024                 /* Default to something, though no default is specified in the UI spec: */
1025                 retrieve = g_strdup (MODEST_ACCOUNT_RETRIEVE_VALUE_HEADERS_ONLY);
1026         }
1027         modest_retrieve_combo_box_set_active_retrieve_conf (MODEST_RETRIEVE_COMBO_BOX (dialog->combo_retrieve), retrieve);
1028         g_free (retrieve);
1029         
1030         const gint limit_retrieve = modest_account_mgr_get_int (dialog->account_manager, account_name,
1031                 MODEST_ACCOUNT_LIMIT_RETRIEVE, FALSE /* not server account */);
1032         modest_limit_retrieve_combo_box_set_active_limit_retrieve (MODEST_LIMIT_RETRIEVE_COMBO_BOX (dialog->combo_limit_retrieve), limit_retrieve);
1033         
1034         
1035         const gboolean leave_on_server = modest_account_mgr_get_bool (dialog->account_manager, account_name,
1036                 MODEST_ACCOUNT_LEAVE_ON_SERVER, FALSE /* not server account */);
1037         gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->checkbox_leave_messages), leave_on_server);    
1038         
1039         /* Only show the leave-on-server checkbox for POP, 
1040          * as per the UI spec: */
1041         if (incoming_account->proto != MODEST_PROTOCOL_STORE_POP) {
1042                 gtk_widget_hide (dialog->caption_leave_messages);
1043         } else {
1044                 gtk_widget_show (dialog->caption_leave_messages);
1045         }
1046                 
1047         if (incoming_account) {
1048                 /* Remember this for later: */
1049                 dialog->incoming_protocol = incoming_account->proto;
1050                 
1051                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_user_username),
1052                         incoming_account->username ? incoming_account->username : "");
1053                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_user_password), 
1054                         incoming_account->password ? incoming_account->password : "");
1055                         
1056                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_incomingserver), 
1057                         incoming_account->hostname ? incoming_account->hostname : "");
1058                         
1059                 /* The UI spec says:
1060                  * If secure authentication is unchecked, allow sending username and password also as plain text.
1061          * If secure authentication is checked, require one of the secure methods during connection: SSL, TLS, CRAM-MD5 etc. 
1062                  * TODO: Do we need to discover which of these (SSL, TLS, CRAM-MD5) is supported?
1063          */
1064                 const ModestAuthProtocol secure_auth = modest_server_account_get_secure_auth(
1065                         dialog->account_manager, incoming_account->account_name);
1066                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON (dialog->checkbox_incoming_auth), 
1067                         secure_auth != MODEST_PROTOCOL_AUTH_PASSWORD);
1068                 /* Note that MODEST_PROTOCOL_AUTH_PLAIN should probably never be used. */
1069                         
1070                 update_incoming_server_title (dialog, incoming_account->proto);
1071                 update_incoming_server_security_choices (dialog, incoming_account->proto);
1072                 
1073                 const ModestConnectionProtocol security = modest_server_account_get_security (
1074                         dialog->account_manager, incoming_account->account_name);
1075                 modest_serversecurity_combo_box_set_active_serversecurity (
1076                         MODEST_SERVERSECURITY_COMBO_BOX (dialog->combo_incoming_security), security);
1077                 
1078                 const gint port_num = modest_account_mgr_get_int (dialog->account_manager, incoming_account->account_name,
1079                         MODEST_ACCOUNT_PORT, TRUE /* server account */);
1080                         
1081                 if (port_num == 0) {
1082                         /* Show the appropriate port number: */
1083                         on_combo_incoming_security_changed (
1084                                 GTK_COMBO_BOX (dialog->combo_incoming_security), dialog);
1085                 } else {
1086                         /* Keep the user-entered port-number,
1087                          * or the already-appropriate automatic port number: */
1088                         hildon_number_editor_set_value (
1089                                 HILDON_NUMBER_EDITOR (dialog->entry_incoming_port), port_num);
1090                 }
1091         }
1092         
1093         ModestServerAccountData *outgoing_account = account_data->transport_account;
1094         if (outgoing_account) {
1095                 /* Remember this for later: */
1096                 dialog->outgoing_protocol = outgoing_account->proto;
1097                 
1098                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_outgoingserver), 
1099                         outgoing_account->hostname ? outgoing_account->hostname : "");
1100                 
1101                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_outgoing_username), 
1102                         outgoing_account->username ? outgoing_account->username : "");
1103                 gtk_entry_set_text( GTK_ENTRY (dialog->entry_outgoing_password), 
1104                         outgoing_account->password ? outgoing_account->password : "");
1105                 
1106                 /* Get the secure-auth setting: */
1107                 const ModestAuthProtocol secure_auth = modest_server_account_get_secure_auth(
1108                         dialog->account_manager, outgoing_account->account_name);
1109                 modest_secureauth_combo_box_set_active_secureauth (
1110                         MODEST_SECUREAUTH_COMBO_BOX (dialog->combo_outgoing_auth), secure_auth);
1111                 on_combo_outgoing_auth_changed (GTK_COMBO_BOX (dialog->combo_outgoing_auth), dialog);
1112                 
1113                 modest_serversecurity_combo_box_fill (
1114                         MODEST_SERVERSECURITY_COMBO_BOX (dialog->combo_outgoing_security), outgoing_account->proto);
1115                 
1116                 /* Get the security setting: */
1117                 const ModestConnectionProtocol security = modest_server_account_get_security (
1118                         dialog->account_manager, outgoing_account->account_name);
1119                 modest_serversecurity_combo_box_set_active_serversecurity (
1120                         MODEST_SERVERSECURITY_COMBO_BOX (dialog->combo_outgoing_security), security);
1121                 
1122                 const gint port_num = modest_account_mgr_get_int (dialog->account_manager, outgoing_account->account_name,
1123                         MODEST_ACCOUNT_PORT, TRUE /* server account */);
1124                 if (port_num == 0) {
1125                         /* Show the appropriate port number: */
1126                         on_combo_outgoing_security_changed (
1127                                 GTK_COMBO_BOX (dialog->combo_outgoing_security), dialog);
1128                 }
1129                 else {
1130                         /* Keep the user-entered port-number,
1131                          * or the already-appropriate automatic port number: */
1132                         hildon_number_editor_set_value (
1133                                 HILDON_NUMBER_EDITOR (dialog->entry_outgoing_port), port_num);
1134                 }
1135                 
1136                 const gboolean has_specific = 
1137                         modest_account_mgr_get_has_connection_specific_smtp (
1138                                 dialog->account_manager, 
1139                                 account_name);
1140                 gtk_toggle_button_set_active (
1141                         GTK_TOGGLE_BUTTON (dialog->checkbox_outgoing_smtp_specific), 
1142                         has_specific);
1143         }
1144
1145         /* Set window title according to account: */
1146         /* TODO: Is this the correct way to find a human-readable name for
1147          * the protocol used? */
1148         const gchar* proto_str = modest_protocol_info_get_transport_store_protocol_name (dialog->incoming_protocol);
1149         gchar *proto_name = g_utf8_strup(proto_str, -1);
1150         gchar *account_title = modest_account_mgr_get_display_name(dialog->account_manager, account_name);
1151
1152         gchar *title = g_strdup_printf(_("mcen_ti_account_settings"), proto_name, account_title);
1153         g_free (proto_name);
1154         g_free (account_title);
1155
1156         gtk_window_set_title (GTK_WINDOW (dialog), title);
1157         g_free (title);
1158
1159         /* account_data->is_enabled,  */
1160         /*account_data->is_default,  */
1161
1162         /* account_data->store_account->proto */
1163
1164         modest_account_mgr_free_account_data (dialog->account_manager, account_data);
1165         
1166         /* Unset the modified flag so we can detect changes later: */
1167         dialog->modified = FALSE;
1168 }
1169
1170 static gboolean
1171 save_configuration (ModestAccountSettingsDialog *dialog)
1172 {
1173         g_assert (dialog->account_name);
1174         
1175         const gchar* account_name = dialog->account_name;
1176                 
1177         /* Set the account data from the widgets: */
1178         const gchar* user_name = gtk_entry_get_text (GTK_ENTRY (dialog->entry_user_name));
1179         gboolean test = modest_account_mgr_set_string (dialog->account_manager, account_name,
1180                 MODEST_ACCOUNT_FULLNAME, user_name, FALSE /* not server account */);
1181         if (!test)
1182                 return FALSE;
1183                 
1184         const gchar* emailaddress = gtk_entry_get_text (GTK_ENTRY (dialog->entry_user_email));
1185         test = modest_account_mgr_set_string (dialog->account_manager, account_name,
1186                 MODEST_ACCOUNT_EMAIL, emailaddress, FALSE /* not server account */);
1187         if (!test)
1188                 return FALSE;
1189                 
1190         /* Signature: */
1191         if (dialog->signature_dialog) {
1192                 gboolean use_signature = FALSE;
1193         gchar *signature = modest_signature_editor_dialog_get_settings (
1194                 MODEST_SIGNATURE_EDITOR_DIALOG (dialog->signature_dialog),
1195                 &use_signature);
1196         
1197         modest_account_mgr_set_signature(dialog->account_manager, account_name, 
1198                 signature, use_signature);
1199         g_free (signature);
1200     }
1201         
1202         gchar *retrieve = modest_retrieve_combo_box_get_active_retrieve_conf (
1203                 MODEST_RETRIEVE_COMBO_BOX (dialog->combo_retrieve));
1204         modest_account_mgr_set_string (dialog->account_manager, account_name,
1205                 MODEST_ACCOUNT_RETRIEVE, retrieve, FALSE /* not server account */);
1206         g_free (retrieve);
1207         
1208         const gint limit_retrieve = modest_limit_retrieve_combo_box_get_active_limit_retrieve (
1209                 MODEST_LIMIT_RETRIEVE_COMBO_BOX (dialog->combo_limit_retrieve));
1210         modest_account_mgr_set_int (dialog->account_manager, account_name,
1211                 MODEST_ACCOUNT_LIMIT_RETRIEVE, limit_retrieve, FALSE /* not server account */);
1212         
1213         const gboolean leave_on_server = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->checkbox_leave_messages));
1214         test = modest_account_mgr_set_bool (dialog->account_manager, account_name,
1215                 MODEST_ACCOUNT_LEAVE_ON_SERVER, leave_on_server, FALSE /* not server account */);
1216         if (!test)
1217                 return FALSE;
1218                         
1219         /* Incoming: */
1220         gchar* incoming_account_name = modest_account_mgr_get_string (dialog->account_manager, account_name,
1221                 MODEST_ACCOUNT_STORE_ACCOUNT, FALSE /* not server account */);
1222         g_assert (incoming_account_name);
1223         
1224         const gchar* hostname = gtk_entry_get_text (GTK_ENTRY (dialog->entry_incomingserver));
1225         test = modest_account_mgr_set_string (dialog->account_manager, incoming_account_name,
1226                 MODEST_ACCOUNT_HOSTNAME, hostname, TRUE /* server account */);
1227         if (!test)
1228                 return FALSE;
1229                                 
1230         const gchar* username = gtk_entry_get_text (GTK_ENTRY (dialog->entry_user_username));
1231         modest_server_account_set_username (dialog->account_manager, incoming_account_name, username);
1232         
1233         const gchar* password = gtk_entry_get_text (GTK_ENTRY (dialog->entry_user_password));
1234         modest_server_account_set_password (dialog->account_manager, incoming_account_name, password);
1235                         
1236         /* port: */
1237         gint port_num = hildon_number_editor_get_value (
1238                         HILDON_NUMBER_EDITOR (dialog->entry_incoming_port));
1239         modest_account_mgr_set_int (dialog->account_manager, incoming_account_name,
1240                         MODEST_ACCOUNT_PORT, port_num, TRUE /* server account */);
1241                         
1242         /* The UI spec says:
1243          * If secure authentication is unchecked, allow sending username and password also as plain text.
1244          * If secure authentication is checked, require one of the secure methods during connection: SSL, TLS, CRAM-MD5 etc. 
1245          */
1246         ModestAuthProtocol protocol_authentication_incoming = 
1247                 MODEST_PROTOCOL_AUTH_PASSWORD;
1248         if (gtk_toggle_button_get_active (
1249                         GTK_TOGGLE_BUTTON (dialog->checkbox_incoming_auth))) {
1250                 GList *list_auth_methods = 
1251                         modest_maemo_utils_get_supported_secure_authentication_methods (dialog->incoming_protocol, 
1252                                 hostname, port_num, GTK_WINDOW (dialog));       
1253                 if (list_auth_methods) {
1254                         /* Use the first supported method.
1255                          * TODO: Should we prioritize them, to prefer a particular one? */
1256                         protocol_authentication_incoming = 
1257                                 (ModestAuthProtocol)(GPOINTER_TO_INT(list_auth_methods->data));
1258                         g_list_free (list_auth_methods);
1259                 }
1260                 else
1261           {
1262       GtkWidget* error_dialog = gtk_message_dialog_new(GTK_WINDOW(dialog),
1263                                                        GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR,
1264                                                        GTK_BUTTONS_OK, _("Server does not support secure authentication!"));
1265       gtk_dialog_run(GTK_DIALOG(error_dialog));
1266       gtk_widget_destroy(error_dialog);
1267                         /* This is a nasty hack. jschmid. */
1268                         /* Don't let the dialog close */
1269         g_signal_stop_emission_by_name (dialog, "response");
1270       return FALSE;
1271     }
1272                 
1273         }
1274         
1275         modest_server_account_set_secure_auth (dialog->account_manager, incoming_account_name, protocol_authentication_incoming);
1276         
1277         
1278         const ModestConnectionProtocol protocol_security_incoming = modest_serversecurity_combo_box_get_active_serversecurity (
1279                 MODEST_SERVERSECURITY_COMBO_BOX (dialog->combo_incoming_security));
1280         modest_server_account_set_security (dialog->account_manager, incoming_account_name, protocol_security_incoming);
1281         
1282         
1283                 
1284         g_free (incoming_account_name);
1285         
1286         /* Outgoing: */
1287         gchar* outgoing_account_name = modest_account_mgr_get_string (dialog->account_manager, account_name,
1288                 MODEST_ACCOUNT_TRANSPORT_ACCOUNT, FALSE /* not server account */);
1289         g_assert (outgoing_account_name);
1290         
1291         hostname = gtk_entry_get_text (GTK_ENTRY (dialog->entry_outgoingserver));
1292         test = modest_account_mgr_set_string (dialog->account_manager, outgoing_account_name,
1293                 MODEST_ACCOUNT_HOSTNAME, hostname, TRUE /* server account */);
1294         if (!test)
1295                 return FALSE;
1296                 
1297         username = gtk_entry_get_text (GTK_ENTRY (dialog->entry_outgoing_username));
1298         modest_server_account_set_username (dialog->account_manager, outgoing_account_name,
1299                 username);
1300                 
1301         password = gtk_entry_get_text (GTK_ENTRY (dialog->entry_outgoing_password));
1302         modest_server_account_set_password (dialog->account_manager, outgoing_account_name,
1303                 password);
1304         
1305         const ModestConnectionProtocol protocol_security_outgoing = modest_serversecurity_combo_box_get_active_serversecurity (
1306                 MODEST_SERVERSECURITY_COMBO_BOX (dialog->combo_outgoing_security));
1307         modest_server_account_set_security (dialog->account_manager, outgoing_account_name, protocol_security_outgoing);
1308         
1309         const ModestAuthProtocol protocol_authentication_outgoing = modest_secureauth_combo_box_get_active_secureauth (
1310                 MODEST_SECUREAUTH_COMBO_BOX (dialog->combo_outgoing_auth));
1311         modest_server_account_set_secure_auth (dialog->account_manager, outgoing_account_name, protocol_authentication_outgoing);       
1312         
1313         /* port: */
1314         port_num = hildon_number_editor_get_value (
1315                         HILDON_NUMBER_EDITOR (dialog->entry_outgoing_port));
1316         modest_account_mgr_set_int (dialog->account_manager, outgoing_account_name,
1317                         MODEST_ACCOUNT_PORT, port_num, TRUE /* server account */);
1318                         
1319         g_free (outgoing_account_name);
1320         
1321         
1322         /* Set the changed account title last, to simplify the previous code: */
1323         const gchar* account_title = gtk_entry_get_text (GTK_ENTRY (dialog->entry_account_title));
1324         if ((!account_title) || (strlen(account_title) == 0))
1325                 return FALSE; /* Should be prevented already anyway. */
1326                 
1327         if (strcmp(account_title, account_name) != 0) {
1328                 /* Change the title: */
1329                 gboolean test = modest_account_mgr_set_string (dialog->account_manager, account_name,
1330                 MODEST_ACCOUNT_DISPLAY_NAME, account_title, FALSE /* not server account */);
1331                 if (!test)
1332                         return FALSE;
1333         }
1334         
1335         /* Save connection-specific SMTP server accounts: */
1336         if (dialog->specific_window) {
1337                 return modest_connection_specific_smtp_window_save_server_accounts (
1338                         MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (dialog->specific_window), account_name);
1339         }
1340         else
1341                 return TRUE;
1342 }
1343
1344 static gboolean entry_is_empty (GtkWidget *entry)
1345 {
1346         if (!entry)
1347                 return FALSE;
1348                 
1349         const gchar* text = gtk_entry_get_text (GTK_ENTRY (entry));
1350         if ((!text) || (strlen(text) == 0))
1351                 return TRUE;
1352         else
1353                 return FALSE;
1354 }
1355
1356 static void
1357 enable_buttons (ModestAccountSettingsDialog *self)
1358 {
1359         gboolean enable_ok = TRUE;
1360         
1361         /* The account details title is mandatory: */
1362         if (entry_is_empty(self->entry_account_title))
1363                         enable_ok = FALSE;
1364
1365         /* The user details username is mandatory: */
1366         if (entry_is_empty(self->entry_user_username))
1367                 enable_ok = FALSE;
1368                 
1369         /* The user details email address is mandatory: */
1370         if (enable_ok && entry_is_empty (self->entry_user_email))
1371                 enable_ok = FALSE;
1372
1373         /* The custom incoming server is mandatory: */
1374         if (entry_is_empty(self->entry_incomingserver))
1375                 enable_ok = FALSE;
1376                         
1377         /* Enable the buttons, 
1378          * identifying them via their associated response codes:
1379          */
1380         GtkDialog *dialog_base = GTK_DIALOG (self);
1381     gtk_dialog_set_response_sensitive (dialog_base,
1382                                        GTK_RESPONSE_OK,
1383                                        enable_ok);
1384 }
1385
1386 static void
1387 modest_account_settings_dialog_class_init (ModestAccountSettingsDialogClass *klass)
1388 {
1389         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1390         g_type_class_add_private (klass, sizeof (ModestAccountSettingsDialogPrivate));
1391
1392
1393         object_class->get_property = modest_account_settings_dialog_get_property;
1394         object_class->set_property = modest_account_settings_dialog_set_property;
1395         object_class->dispose = modest_account_settings_dialog_dispose;
1396         object_class->finalize = modest_account_settings_dialog_finalize;
1397 }
1398  
1399 static void
1400 show_error (GtkWindow *parent_window, const gchar* text)
1401 {
1402         GtkDialog *dialog = GTK_DIALOG (hildon_note_new_information (parent_window, text));
1403         /*
1404         GtkDialog *dialog = GTK_DIALOG (gtk_message_dialog_new (parent_window,
1405                 (GtkDialogFlags)0,
1406                  GTK_MESSAGE_ERROR,
1407                  GTK_BUTTONS_OK,
1408                  text ));
1409         */       
1410         
1411         gtk_dialog_run (dialog);
1412         gtk_widget_destroy (GTK_WIDGET (dialog));
1413 }
1414
1415 static void
1416 show_ok (GtkWindow *parent_window, const gchar* text)
1417 {
1418         /* Don't show a dialog but Banner (NB #59248) */
1419         hildon_banner_show_information(GTK_WIDGET(
1420                                                                                                                                                                                 gtk_widget_get_parent_window(GTK_WIDGET(parent_window))), NULL, text);
1421 }
1422
1423
1424
1425