Connection specific smtp edit window margins
[modest] / src / hildon2 / modest-connection-specific-smtp-edit-window.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 #include "modest-connection-specific-smtp-edit-window.h"
31 #include "widgets/modest-ui-constants.h"
32 #include "modest-hildon-includes.h"
33 #include "modest-runtime.h"
34
35 #include "modest-serversecurity-picker.h"
36 #include "modest-secureauth-picker.h"
37 #include "widgets/modest-validating-entry.h"
38 #include <hildon/hildon-pannable-area.h>
39 #include <hildon/hildon-entry.h>
40 #include <modest-ui-constants.h>
41 #include <gtk/gtkbutton.h>
42 #include <gtk/gtkhbox.h>
43 #include <gtk/gtkvbox.h>
44 #include <gtk/gtkstock.h>
45 #include "modest-text-utils.h"
46 #include "modest-maemo-utils.h"
47
48 #include <glib/gi18n.h>
49
50 #define PORT_RANGE_MIN 1
51 #define PORT_RANGE_MAX 65535
52
53 G_DEFINE_TYPE (ModestConnectionSpecificSmtpEditWindow, modest_connection_specific_smtp_edit_window, GTK_TYPE_DIALOG);
54
55 #define CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE(o) \
56         (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, ModestConnectionSpecificSmtpEditWindowPrivate))
57
58 static void on_response (GtkDialog *dialog,
59                          gint arg1,
60                          gpointer user_data);
61
62 typedef struct _ModestConnectionSpecificSmtpEditWindowPrivate ModestConnectionSpecificSmtpEditWindowPrivate;
63
64 struct _ModestConnectionSpecificSmtpEditWindowPrivate
65 {
66         GtkWidget *entry_outgoingserver;
67         GtkWidget *outgoing_auth_picker;
68         GtkWidget *entry_user_username;
69         GtkWidget *entry_user_password;
70         GtkWidget *outgoing_security_picker;
71         GtkWidget *entry_port;
72         
73         GtkWidget *button_ok;
74         GtkWidget *button_cancel;
75
76         gchar     *account_name;
77         
78         gboolean is_dirty;
79         gboolean range_error_occured;
80 };
81
82 static void
83 modest_connection_specific_smtp_edit_window_get_property (GObject *object, guint property_id,
84                                                                                                                         GValue *value, GParamSpec *pspec)
85 {
86         switch (property_id) {
87         default:
88                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
89         }
90 }
91
92 static void
93 modest_connection_specific_smtp_edit_window_set_property (GObject *object, guint property_id,
94                                                                                                                         const GValue *value, GParamSpec *pspec)
95 {
96         switch (property_id) {
97         default:
98                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
99         }
100 }
101
102 static void
103 modest_connection_specific_smtp_edit_window_dispose (GObject *object)
104 {
105
106         
107         if (G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose)
108                 G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose (object);
109 }
110
111 static void
112 modest_connection_specific_smtp_edit_window_finalize (GObject *object)
113 {
114         ModestConnectionSpecificSmtpEditWindow *self = (ModestConnectionSpecificSmtpEditWindow *) object;
115         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
116                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
117
118         if (priv->account_name) {
119                 g_free (priv->account_name);
120                 priv->account_name = NULL;
121         }
122         G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->finalize (object);
123 }
124
125 static void
126 modest_connection_specific_smtp_edit_window_class_init (ModestConnectionSpecificSmtpEditWindowClass *klass)
127 {
128         GObjectClass *object_class = G_OBJECT_CLASS (klass);
129
130         g_type_class_add_private (klass, sizeof (ModestConnectionSpecificSmtpEditWindowPrivate));
131
132         object_class->get_property = modest_connection_specific_smtp_edit_window_get_property;
133         object_class->set_property = modest_connection_specific_smtp_edit_window_set_property;
134         object_class->dispose = modest_connection_specific_smtp_edit_window_dispose;
135         object_class->finalize = modest_connection_specific_smtp_edit_window_finalize;
136 }
137
138 enum MODEL_COLS {
139         MODEL_COL_NAME = 0,
140         MODEL_COL_SERVER_NAME = 1,
141         MODEL_COL_ID = 2
142 };
143
144 static void
145 on_change(GtkWidget* widget, ModestConnectionSpecificSmtpEditWindow *self)
146 {
147         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
148                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
149         priv->is_dirty = TRUE;
150 }
151
152 static void
153 on_outgoing_server_changed (GtkWidget* widget, ModestConnectionSpecificSmtpEditWindow *self)
154 {
155         const gchar *text;
156         gboolean sensitive = FALSE;
157
158         on_change (widget, self);
159         text = hildon_entry_get_text (HILDON_ENTRY (widget));
160         if (text && (strlen(text) > 0))
161                 sensitive = TRUE;
162
163         gtk_dialog_set_response_sensitive (GTK_DIALOG (self), GTK_RESPONSE_OK, sensitive);
164 }
165
166
167 static void
168 on_value_changed(GtkWidget* widget, GValue* value, ModestConnectionSpecificSmtpEditWindow *self)
169 {
170         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
171                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
172
173         priv->range_error_occured = FALSE;
174         on_change(widget, self);
175 }
176
177 static gboolean
178 on_range_error (GtkWidget *widget, ModestNumberEditorErrorType type, gpointer user_data)
179 {
180         gchar *msg;
181         ModestConnectionSpecificSmtpEditWindow *self = user_data;
182         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
183                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
184
185         /* We want to prevent the closure of the dialog when a range error occured. The problem is that
186          * the hildon number editor already resets the value to the default value, so we have to
187          * remember that such an error occured. */
188         priv->range_error_occured = TRUE;
189
190         if (type == MODEST_NUMBER_EDITOR_ERROR_MAXIMUM_VALUE_EXCEED) {
191                 msg = g_strdup_printf (dgettext ("hildon-libs", "ckct_ib_maximum_value"), 65535);
192         } else if (type == MODEST_NUMBER_EDITOR_ERROR_MINIMUM_VALUE_EXCEED) {
193                 msg = g_strdup_printf (dgettext ("hildon-libs", "ckct_ib_minimum_value"), 1);
194         } else {
195                 msg = g_strdup_printf (_HL("ckct_ib_set_a_value_within_range"), PORT_RANGE_MIN, PORT_RANGE_MAX);
196         }
197         modest_platform_information_banner (widget, NULL, msg);
198         g_free (msg);
199
200         /* Show error message by not returning TRUE */
201         return TRUE;
202 }
203
204 static gboolean
205 on_delete_event (GtkWidget *widget,
206                  GdkEvent  *event,
207                  gpointer   user_data)
208 {
209         ModestConnectionSpecificSmtpEditWindow *self = user_data;
210         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
211                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
212
213         /* If it's dirty, them the response method already asked the
214            user, because it's always executed before (see GtkDialog
215            code). If it's not then simply close */
216         return priv->is_dirty;
217 }
218
219 static void
220 on_response (GtkDialog *dialog, int response_id, gpointer user_data)
221 {
222         const gchar *hostname;
223         ModestConnectionSpecificSmtpEditWindow *self = user_data;
224         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
225                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
226
227         hostname = hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver));
228
229         /* Don't close the dialog if a range error occured */
230         if(response_id == GTK_RESPONSE_OK && priv->range_error_occured)
231         {
232                 priv->range_error_occured = FALSE;
233                 g_signal_stop_emission_by_name (dialog, "response");
234                 gtk_widget_grab_focus (priv->entry_port);
235                 return;
236         }
237
238         /* Don't close the dialog if a range error occured */
239         if (response_id == GTK_RESPONSE_OK) {
240                 if (hostname && (hostname[0] != '\0') &&
241                     (!modest_text_utils_validate_domain_name (hostname))) { 
242                         g_signal_stop_emission_by_name (dialog, "response");
243                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_servername"));
244                         gtk_widget_grab_focus (priv->entry_outgoingserver);
245                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_outgoingserver), 0, -1);
246                         return;
247                 }
248         } else {
249                 /* Ask user if they want to discard changes */
250                 if (priv->is_dirty) {
251                         gint response;
252                         response = modest_platform_run_confirmation_dialog (GTK_WINDOW (user_data), 
253                                                                             _("imum_nc_wizard_confirm_lose_changes"));
254
255                         if (response != GTK_RESPONSE_OK)
256                                 g_signal_stop_emission_by_name (dialog, "response");
257                 }
258         }
259 }
260
261 static void 
262 on_set_focus_child (GtkContainer *container, GtkWidget *widget, gpointer user_data)
263 {
264         ModestConnectionSpecificSmtpEditWindow *self = user_data;
265         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
266                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
267
268         /* Another child gained focus. Since the number editor already reset a
269          * possible range error to the default value, we allow closure of the
270          * dialog */
271         priv->range_error_occured = FALSE;
272 }
273
274 static void
275 security_picker_set_port (ModestConnectionSpecificSmtpEditWindowPrivate *priv)
276 {
277         const gint port_number = 
278                 modest_serversecurity_picker_get_active_serversecurity_port (
279                         MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker));
280
281         if(port_number != 0) {
282                 modest_number_editor_set_value (
283                         MODEST_NUMBER_EDITOR (priv->entry_port), port_number);
284         }
285 }
286
287 static void
288 on_security_picker_changed (HildonPickerButton *widget, gpointer user_data)
289 {
290         ModestConnectionSpecificSmtpEditWindow *self = 
291                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
292         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
293                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
294
295         on_change(GTK_WIDGET(widget), self);
296
297         /* Enable/disable username and password fields */
298         security_picker_set_port (priv);
299 }
300
301 static void
302 auth_picker_set_sensitive (ModestConnectionSpecificSmtpEditWindowPrivate *priv)
303 {
304         ModestProtocolType auth_proto;
305
306         auth_proto =
307                 modest_secureauth_picker_get_active_secureauth (MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker));
308
309         if (auth_proto == modest_protocol_registry_get_none_auth_type_id ()) {
310                 gtk_widget_set_sensitive (priv->entry_user_username, FALSE);
311                 gtk_widget_set_sensitive (priv->entry_user_password, FALSE);
312         } else {
313                 gtk_widget_set_sensitive (priv->entry_user_username, TRUE);
314                 gtk_widget_set_sensitive (priv->entry_user_password, TRUE);
315         }
316
317 }
318
319 static void
320 on_auth_picker_changed (HildonPickerButton *widget, gpointer user_data)
321 {
322         ModestConnectionSpecificSmtpEditWindow *self =
323                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
324         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
325                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
326
327         on_change (GTK_WIDGET(widget), self);
328
329         /* Enable/disable username and password fields */
330         auth_picker_set_sensitive (priv);
331 }
332
333 static void
334 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
335 {
336         ModestConnectionSpecificSmtpEditWindowPrivate *priv; 
337         GtkWidget *dialog_box;
338         GtkWidget *pannable, *vbox, *align;
339         gchar *server_label;
340
341         /* The title of this dialog is quite long, so make the window wide enough */
342         gtk_widget_set_size_request (GTK_WIDGET (self), 600, 320);
343
344         priv = CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
345         dialog_box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, MODEST_MARGIN_HALF); */
346         gtk_box_set_spacing (GTK_BOX (dialog_box), MODEST_MARGIN_NONE);
347
348         vbox = gtk_vbox_new (FALSE, 0);
349         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
350         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DOUBLE, 0);
351         
352         /* Create a size group to be used by all captions.
353          * Note that HildonCaption does not create a default size group if we do not specify one.
354          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
355         GtkSizeGroup *title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
356         GtkSizeGroup *value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
357          
358         /* The outgoing server widgets: */
359         if (!priv->entry_outgoingserver)
360                 priv->entry_outgoingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
361         /* Auto-capitalization is the default, so let's turn it off: */
362         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
363         g_signal_connect(G_OBJECT(priv->entry_outgoingserver), "changed", G_CALLBACK(on_outgoing_server_changed), self);
364
365         server_label = g_strconcat (_("mcen_li_emailsetup_smtp"), "\n<small>(SMTP)</small>", NULL);
366         
367         GtkWidget *captioned = 
368           modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
369                                                server_label, TRUE,
370                                                priv->entry_outgoingserver);
371         g_free (server_label);
372         gtk_widget_show (priv->entry_outgoingserver);
373         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, 0);
374         gtk_widget_show (captioned);
375         
376         /* The secure authentication widgets: */
377         if (!priv->outgoing_auth_picker) {
378                 priv->outgoing_auth_picker = 
379                         GTK_WIDGET (modest_secureauth_picker_new (MODEST_EDITABLE_SIZE,
380                                                                   HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
381         }
382         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup,
383                                                _("mcen_li_emailsetup_secure_authentication"),
384                                                priv->outgoing_auth_picker);
385         gtk_widget_show (priv->outgoing_auth_picker);
386         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_auth_picker, FALSE, FALSE, 0);
387         
388         /* The username widgets: */     
389         priv->entry_user_username = 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 (priv->entry_user_username), HILDON_GTK_INPUT_MODE_FULL);
392         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
393                                                          _("mail_fi_username"), FALSE,
394                                                          priv->entry_user_username);
395         g_signal_connect(G_OBJECT(priv->entry_user_username), "changed", G_CALLBACK(on_change), self);
396         gtk_widget_show (priv->entry_user_username);
397         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, 0);
398         gtk_widget_show (captioned);
399         
400         /* Prevent the use of some characters in the username, 
401          * as required by our UI specification: */
402         modest_validating_entry_set_unallowed_characters_whitespace (
403                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
404         
405         /* Set max length as in the UI spec:
406          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
407         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
408         
409         /* The password widgets: */     
410         priv->entry_user_password = hildon_entry_new (MODEST_EDITABLE_SIZE);
411         /* Auto-capitalization is the default, so let's turn it off: */
412         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
413                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
414         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
415         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
416         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
417                                                          _("mail_fi_password"), FALSE, priv->entry_user_password);
418         g_signal_connect(G_OBJECT(priv->entry_user_password), "changed", G_CALLBACK(on_change), self);
419         gtk_widget_show (priv->entry_user_password);
420         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, 0);
421         gtk_widget_show (captioned);
422         
423         /* The secure connection widgets: */    
424         if (!priv->outgoing_security_picker)
425                 priv->outgoing_security_picker = 
426                         GTK_WIDGET (modest_serversecurity_picker_new (MODEST_EDITABLE_SIZE,
427                                                                       HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
428         modest_serversecurity_picker_fill (
429                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_TRANSPORT_SMTP);
430         modest_serversecurity_picker_set_active_serversecurity (
431                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_CONNECTION_NONE);
432         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup,
433                                                _("mcen_li_emailsetup_secure_connection"), 
434                                                priv->outgoing_security_picker);
435         gtk_widget_show (priv->outgoing_security_picker);
436         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_security_picker, FALSE, FALSE, 0);
437         
438         /* The port number widgets: */
439         if (!priv->entry_port)
440                 priv->entry_port = GTK_WIDGET (modest_number_editor_new (PORT_RANGE_MIN, PORT_RANGE_MAX));
441         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
442                                                          _("mcen_fi_emailsetup_port"), FALSE, priv->entry_port);
443         gtk_widget_add_events(GTK_WIDGET(priv->entry_port), GDK_FOCUS_CHANGE_MASK);
444         gtk_widget_show (priv->entry_port);
445         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, 0);
446         gtk_widget_show (captioned);
447
448         /* Add the button. Disabled by default */
449         gtk_dialog_add_button (GTK_DIALOG (self), _HL("wdgt_bd_save"), GTK_RESPONSE_OK);
450         gtk_dialog_set_response_sensitive (GTK_DIALOG (self), GTK_RESPONSE_OK, FALSE);
451
452         priv->is_dirty = FALSE;
453         priv->range_error_occured = FALSE;
454         g_signal_connect(G_OBJECT(self), "response", G_CALLBACK(on_response), self);
455         g_signal_connect(G_OBJECT(self), "delete-event", G_CALLBACK(on_delete_event), self);
456         g_signal_connect(G_OBJECT(vbox), "set-focus-child", G_CALLBACK(on_set_focus_child), self);
457
458         priv->account_name = NULL;
459
460         pannable = hildon_pannable_area_new ();
461         g_object_set (G_OBJECT (pannable), "initial-hint", TRUE, NULL);
462         gtk_container_add (GTK_CONTAINER (align), vbox);
463         hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA (pannable), align);
464         gtk_box_pack_start (GTK_BOX (dialog_box), pannable, TRUE, TRUE, 0);
465
466         gtk_widget_show_all (dialog_box);
467         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
468
469         g_object_unref (title_sizegroup);
470         g_object_unref (value_sizegroup);
471
472         /* When this window is shown, hibernation should not be possible, 
473          * because there is no sensible way to save the state: */
474         modest_window_mgr_prevent_hibernation_while_window_is_shown (
475                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
476
477         hildon_help_dialog_help_enable (GTK_DIALOG(self),
478                                         "applications_email_connectionspecificsmtpconf",
479                                         modest_maemo_utils_get_osso_context());
480
481         /* Refresh view with current settings */
482         auth_picker_set_sensitive (priv);
483         security_picker_set_port (priv);
484
485         /* Connect signals to track changes */
486         g_signal_connect (G_OBJECT (priv->outgoing_security_picker),
487                           "value-changed",
488                           (GCallback) on_security_picker_changed,
489                           self);
490         g_signal_connect (G_OBJECT (priv->outgoing_auth_picker),
491                           "value-changed",
492                           (GCallback) on_auth_picker_changed,
493                           self);
494         g_signal_connect(G_OBJECT(priv->entry_port),
495                          "range-error",
496                          G_CALLBACK(on_range_error),
497                          self);
498         g_signal_connect(G_OBJECT(priv->entry_port),
499                          "notify::value",
500                          G_CALLBACK(on_value_changed),
501                          self);
502
503 }
504
505 ModestConnectionSpecificSmtpEditWindow*
506 modest_connection_specific_smtp_edit_window_new (void)
507 {
508         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
509 }
510
511 void
512 modest_connection_specific_smtp_edit_window_set_connection (
513         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name,
514         ModestServerAccountSettings *server_settings)
515 {
516         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
517                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
518
519         /* This causes a warning because of the %s in the translation, but not in the original string: */
520         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
521         gtk_window_set_title (GTK_WINDOW (window), title);
522         g_free (title);
523
524         if (server_settings) 
525         {
526                 /* Setting known values */
527                 if (priv->account_name)
528                         g_free (priv->account_name);
529                 priv->account_name = g_strdup (modest_server_account_settings_get_account_name (server_settings));
530                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_outgoingserver), 
531                                        modest_server_account_settings_get_hostname (server_settings));
532                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_user_username),
533                                        modest_server_account_settings_get_username (server_settings));  
534                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_user_password), 
535                                        modest_server_account_settings_get_password (server_settings));
536         
537                 modest_serversecurity_picker_set_active_serversecurity (
538                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), 
539                 modest_server_account_settings_get_security_protocol (server_settings));
540         
541                 modest_secureauth_picker_set_active_secureauth (
542                 MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker), 
543                 modest_server_account_settings_get_auth_protocol (server_settings));
544                 
545                 /* port: */
546                 modest_number_editor_set_value (
547                         MODEST_NUMBER_EDITOR (priv->entry_port), 
548                         modest_server_account_settings_get_port (server_settings));
549                 
550                 
551                 /* This will cause changed signals so we set dirty back to FALSE */
552                 priv->is_dirty = FALSE;
553         }
554 }
555
556 ModestServerAccountSettings*
557 modest_connection_specific_smtp_edit_window_get_settings (ModestConnectionSpecificSmtpEditWindow *window)
558 {
559         ModestConnectionSpecificSmtpEditWindowPrivate *priv = NULL;
560         ModestServerAccountSettings *server_settings = NULL;
561         const gchar *outgoing_server = NULL;
562
563         priv =  CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
564         outgoing_server = hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver));
565
566         /* If the outgoing server is NULL, we are removing the connection specific
567          * settings */
568         if ((outgoing_server == NULL) || (outgoing_server[0] == '\0')) {
569                 return NULL;
570         }
571         
572         server_settings = modest_server_account_settings_new ();
573         
574         modest_server_account_settings_set_hostname (server_settings, 
575                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver)));
576         modest_server_account_settings_set_protocol (server_settings,
577                                                      MODEST_PROTOCOLS_TRANSPORT_SMTP);
578         modest_server_account_settings_set_username (server_settings,
579                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_username)));
580         modest_server_account_settings_set_password (server_settings,
581                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_password)));
582         
583         modest_server_account_settings_set_security_protocol (server_settings, 
584                                                      modest_serversecurity_picker_get_active_serversecurity (
585                                                      MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker)));
586         modest_server_account_settings_set_auth_protocol (server_settings,
587                                                           modest_secureauth_picker_get_active_secureauth (
588                                                           MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker)));
589         modest_server_account_settings_set_account_name (server_settings,
590                                                          priv->account_name);
591         
592         /* port: */
593         modest_server_account_settings_set_port (server_settings,
594                                                  modest_number_editor_get_value (MODEST_NUMBER_EDITOR (priv->entry_port)));
595                         
596         return server_settings;
597 }
598
599 gboolean 
600 modest_connection_specific_smtp_edit_window_is_dirty(ModestConnectionSpecificSmtpEditWindow *window)
601 {
602         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
603                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
604         
605         return priv->is_dirty;
606 }