d2c0f4e852d16c7ac224092ab76482c315358c47
[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_value_changed(GtkWidget* widget, GValue* value, ModestConnectionSpecificSmtpEditWindow *self)
154 {
155         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
156                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
157
158         priv->range_error_occured = FALSE;
159         on_change(widget, self);
160 }
161
162 static gboolean
163 on_range_error (GtkWidget *widget, ModestNumberEditorErrorType type, gpointer user_data)
164 {
165         gchar *msg;
166         ModestConnectionSpecificSmtpEditWindow *self = user_data;
167         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
168                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
169
170         /* We want to prevent the closure of the dialog when a range error occured. The problem is that
171          * the hildon number editor already resets the value to the default value, so we have to
172          * remember that such an error occured. */
173         priv->range_error_occured = TRUE;
174
175         if (type == MODEST_NUMBER_EDITOR_ERROR_MAXIMUM_VALUE_EXCEED) {
176                 msg = g_strdup_printf (dgettext ("hildon-libs", "ckct_ib_maximum_value"), 65535);
177         } else if (type == MODEST_NUMBER_EDITOR_ERROR_MINIMUM_VALUE_EXCEED) {
178                 msg = g_strdup_printf (dgettext ("hildon-libs", "ckct_ib_minimum_value"), 1);
179         } else {
180                 msg = g_strdup_printf (_HL("ckct_ib_set_a_value_within_range"), PORT_RANGE_MIN, PORT_RANGE_MAX);
181         }
182         modest_platform_information_banner (widget, NULL, msg);
183         g_free (msg);
184
185         /* Show error message by not returning TRUE */
186         return TRUE;
187 }
188
189 static gboolean
190 on_delete_event (GtkWidget *widget,
191                  GdkEvent  *event,
192                  gpointer   user_data)
193 {
194         ModestConnectionSpecificSmtpEditWindow *self = user_data;
195         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
196                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
197
198         /* If it's dirty, them the response method already asked the
199            user, because it's always executed before (see GtkDialog
200            code). If it's not then simply close */
201         return priv->is_dirty;
202 }
203
204 static void
205 on_response (GtkDialog *dialog, int response_id, gpointer user_data)
206 {
207         const gchar *hostname;
208         ModestConnectionSpecificSmtpEditWindow *self = user_data;
209         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
210                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
211
212         hostname = hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver));
213
214         /* Don't close the dialog if a range error occured */
215         if(response_id == GTK_RESPONSE_OK && priv->range_error_occured)
216         {
217                 priv->range_error_occured = FALSE;
218                 g_signal_stop_emission_by_name (dialog, "response");
219                 gtk_widget_grab_focus (priv->entry_port);
220                 return;
221         }
222
223         /* Don't close the dialog if a range error occured */
224         if (response_id == GTK_RESPONSE_OK) {
225                 if (hostname && (hostname[0] != '\0') &&
226                     (!modest_text_utils_validate_domain_name (hostname))) { 
227                         g_signal_stop_emission_by_name (dialog, "response");
228                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_servername"));
229                         gtk_widget_grab_focus (priv->entry_outgoingserver);
230                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_outgoingserver), 0, -1);
231                         return;
232                 }
233         } else {
234                 /* Ask user if they want to discard changes */
235                 if (priv->is_dirty) {
236                         gint response;
237                         response = modest_platform_run_confirmation_dialog (GTK_WINDOW (user_data), 
238                                                                             _("imum_nc_wizard_confirm_lose_changes"));
239
240                         if (response != GTK_RESPONSE_OK)
241                                 g_signal_stop_emission_by_name (dialog, "response");
242                 }
243         }
244 }
245
246 static void 
247 on_set_focus_child (GtkContainer *container, GtkWidget *widget, gpointer user_data)
248 {
249         ModestConnectionSpecificSmtpEditWindow *self = user_data;
250         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
251                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
252
253         /* Another child gained focus. Since the number editor already reset a
254          * possible range error to the default value, we allow closure of the
255          * dialog */
256         priv->range_error_occured = FALSE;
257 }
258
259 static void
260 security_picker_set_port (ModestConnectionSpecificSmtpEditWindowPrivate *priv)
261 {
262         const gint port_number = 
263                 modest_serversecurity_picker_get_active_serversecurity_port (
264                         MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker));
265
266         if(port_number != 0) {
267                 modest_number_editor_set_value (
268                         MODEST_NUMBER_EDITOR (priv->entry_port), port_number);
269         }
270 }
271
272 static void
273 on_security_picker_changed (HildonPickerButton *widget, gpointer user_data)
274 {
275         ModestConnectionSpecificSmtpEditWindow *self = 
276                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
277         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
278                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
279
280         on_change(GTK_WIDGET(widget), self);
281
282         /* Enable/disable username and password fields */
283         security_picker_set_port (priv);
284 }
285
286 static void
287 auth_picker_set_sensitive (ModestConnectionSpecificSmtpEditWindowPrivate *priv)
288 {
289         ModestProtocolType auth_proto;
290
291         auth_proto =
292                 modest_secureauth_picker_get_active_secureauth (MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker));
293
294         if (auth_proto == modest_protocol_registry_get_none_auth_type_id ()) {
295                 gtk_widget_set_sensitive (priv->entry_user_username, FALSE);
296                 gtk_widget_set_sensitive (priv->entry_user_password, FALSE);
297         } else {
298                 gtk_widget_set_sensitive (priv->entry_user_username, TRUE);
299                 gtk_widget_set_sensitive (priv->entry_user_password, TRUE);
300         }
301
302 }
303
304 static void
305 on_auth_picker_changed (HildonPickerButton *widget, gpointer user_data)
306 {
307         ModestConnectionSpecificSmtpEditWindow *self =
308                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
309         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
310                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
311
312         on_change (GTK_WIDGET(widget), self);
313
314         /* Enable/disable username and password fields */
315         auth_picker_set_sensitive (priv);
316 }
317
318 static void
319 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
320 {
321         ModestConnectionSpecificSmtpEditWindowPrivate *priv; 
322         GtkWidget *dialog_box;
323         GtkWidget *pannable, *vbox;
324
325         /* The title of this dialog is quite long, so make the window wide enough */
326         gtk_widget_set_size_request (GTK_WIDGET (self), 600, 320);
327
328         priv = CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
329         dialog_box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, MODEST_MARGIN_HALF); */
330         gtk_box_set_spacing (GTK_BOX (dialog_box), MODEST_MARGIN_NONE);
331         gtk_container_set_border_width (GTK_CONTAINER (dialog_box), MODEST_MARGIN_HALF);
332
333         vbox = gtk_vbox_new (FALSE, 0);
334         
335         /* Create a size group to be used by all captions.
336          * Note that HildonCaption does not create a default size group if we do not specify one.
337          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
338         GtkSizeGroup *title_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
339         GtkSizeGroup *value_sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
340          
341         /* The outgoing server widgets: */
342         if (!priv->entry_outgoingserver)
343                 priv->entry_outgoingserver = hildon_entry_new (MODEST_EDITABLE_SIZE);
344         /* Auto-capitalization is the default, so let's turn it off: */
345         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
346         g_signal_connect(G_OBJECT(priv->entry_outgoingserver), "changed", G_CALLBACK(on_change), self);
347         
348         GtkWidget *captioned = 
349           modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
350                                                _("mcen_li_emailsetup_smtp"), 
351                                                priv->entry_outgoingserver);
352         gtk_widget_show (priv->entry_outgoingserver);
353         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
354         gtk_widget_show (captioned);
355         
356         /* The secure authentication widgets: */
357         if (!priv->outgoing_auth_picker) {
358                 priv->outgoing_auth_picker = 
359                         GTK_WIDGET (modest_secureauth_picker_new (MODEST_EDITABLE_SIZE,
360                                                                   HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
361         }
362         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup,
363                                                _("mcen_li_emailsetup_secure_authentication"),
364                                                priv->outgoing_auth_picker);
365         gtk_widget_show (priv->outgoing_auth_picker);
366         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_auth_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
367         
368         /* The username widgets: */     
369         priv->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
370         /* Auto-capitalization is the default, so let's turn it off: */
371         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_username), HILDON_GTK_INPUT_MODE_FULL);
372         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
373                                                          _("mail_fi_username"), 
374                                                          priv->entry_user_username);
375         g_signal_connect(G_OBJECT(priv->entry_user_username), "changed", G_CALLBACK(on_change), self);
376         gtk_widget_show (priv->entry_user_username);
377         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
378         gtk_widget_show (captioned);
379         
380         /* Prevent the use of some characters in the username, 
381          * as required by our UI specification: */
382         modest_validating_entry_set_unallowed_characters_whitespace (
383                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
384         
385         /* Set max length as in the UI spec:
386          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
387         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
388         
389         /* The password widgets: */     
390         priv->entry_user_password = hildon_entry_new (MODEST_EDITABLE_SIZE);
391         /* Auto-capitalization is the default, so let's turn it off: */
392         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
393                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
394         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
395         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
396         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
397                 _("mail_fi_password"), priv->entry_user_password);
398         g_signal_connect(G_OBJECT(priv->entry_user_password), "changed", G_CALLBACK(on_change), self);
399         gtk_widget_show (priv->entry_user_password);
400         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
401         gtk_widget_show (captioned);
402         
403         /* The secure connection widgets: */    
404         if (!priv->outgoing_security_picker)
405                 priv->outgoing_security_picker = 
406                         GTK_WIDGET (modest_serversecurity_picker_new (MODEST_EDITABLE_SIZE,
407                                                                       HILDON_BUTTON_ARRANGEMENT_HORIZONTAL));
408         modest_serversecurity_picker_fill (
409                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_TRANSPORT_SMTP);
410         modest_serversecurity_picker_set_active_serversecurity (
411                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_CONNECTION_NONE);
412         modest_maemo_utils_set_hbutton_layout (title_sizegroup, value_sizegroup,
413                                                _("mcen_li_emailsetup_secure_connection"), 
414                                                priv->outgoing_security_picker);
415         gtk_widget_show (priv->outgoing_security_picker);
416         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_security_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
417         
418         /* The port number widgets: */
419         if (!priv->entry_port)
420                 priv->entry_port = GTK_WIDGET (modest_number_editor_new (PORT_RANGE_MIN, PORT_RANGE_MAX));
421         captioned = modest_maemo_utils_create_captioned (title_sizegroup, value_sizegroup,
422                                                          _("mcen_fi_emailsetup_port"), priv->entry_port);
423         gtk_widget_add_events(GTK_WIDGET(priv->entry_port), GDK_FOCUS_CHANGE_MASK);
424         gtk_widget_show (priv->entry_port);
425         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
426         gtk_widget_show (captioned);
427
428         /* Add the buttons: */
429         gtk_dialog_add_button (GTK_DIALOG (self), _HL("wdgt_bd_save"), GTK_RESPONSE_OK);
430         
431         priv->is_dirty = FALSE;
432         priv->range_error_occured = FALSE;
433         g_signal_connect(G_OBJECT(self), "response", G_CALLBACK(on_response), self);
434         g_signal_connect(G_OBJECT(self), "delete-event", G_CALLBACK(on_delete_event), self);
435         g_signal_connect(G_OBJECT(vbox), "set-focus-child", G_CALLBACK(on_set_focus_child), self);
436
437         priv->account_name = NULL;
438
439         pannable = hildon_pannable_area_new ();
440         g_object_set (G_OBJECT (pannable), "initial-hint", TRUE, NULL);
441         hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA (pannable), vbox);
442         gtk_box_pack_start (GTK_BOX (dialog_box), pannable, TRUE, TRUE, 0);
443
444         gtk_widget_show_all (dialog_box);
445         gtk_window_set_default_size (GTK_WINDOW (self), -1, 220);
446
447         g_object_unref (title_sizegroup);
448         g_object_unref (value_sizegroup);
449
450         /* When this window is shown, hibernation should not be possible, 
451          * because there is no sensible way to save the state: */
452         modest_window_mgr_prevent_hibernation_while_window_is_shown (
453                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
454
455         hildon_help_dialog_help_enable (GTK_DIALOG(self),
456                                         "applications_email_connectionspecificsmtpconf",
457                                         modest_maemo_utils_get_osso_context());
458
459         /* Refresh view with current settings */
460         auth_picker_set_sensitive (priv);
461         security_picker_set_port (priv);
462
463         /* Connect signals to track changes */
464         g_signal_connect (G_OBJECT (priv->outgoing_security_picker),
465                           "value-changed",
466                           (GCallback) on_security_picker_changed,
467                           self);
468         g_signal_connect (G_OBJECT (priv->outgoing_auth_picker),
469                           "value-changed",
470                           (GCallback) on_auth_picker_changed,
471                           self);
472         g_signal_connect(G_OBJECT(priv->entry_port),
473                          "range-error",
474                          G_CALLBACK(on_range_error),
475                          self);
476         g_signal_connect(G_OBJECT(priv->entry_port),
477                          "notify::value",
478                          G_CALLBACK(on_value_changed),
479                          self);
480
481 }
482
483 ModestConnectionSpecificSmtpEditWindow*
484 modest_connection_specific_smtp_edit_window_new (void)
485 {
486         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
487 }
488
489 void
490 modest_connection_specific_smtp_edit_window_set_connection (
491         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name,
492         ModestServerAccountSettings *server_settings)
493 {
494         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
495                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
496
497         /* This causes a warning because of the %s in the translation, but not in the original string: */
498         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
499         gtk_window_set_title (GTK_WINDOW (window), title);
500         g_free (title);
501
502         if (server_settings) 
503         {
504                 /* Setting known values */
505                 if (priv->account_name)
506                         g_free (priv->account_name);
507                 priv->account_name = g_strdup (modest_server_account_settings_get_account_name (server_settings));
508                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_outgoingserver), 
509                                        modest_server_account_settings_get_hostname (server_settings));
510                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_user_username),
511                                        modest_server_account_settings_get_username (server_settings));  
512                 hildon_entry_set_text (HILDON_ENTRY (priv->entry_user_password), 
513                                        modest_server_account_settings_get_password (server_settings));
514         
515                 modest_serversecurity_picker_set_active_serversecurity (
516                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), 
517                 modest_server_account_settings_get_security_protocol (server_settings));
518         
519                 modest_secureauth_picker_set_active_secureauth (
520                 MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker), 
521                 modest_server_account_settings_get_auth_protocol (server_settings));
522                 
523                 /* port: */
524                 modest_number_editor_set_value (
525                         MODEST_NUMBER_EDITOR (priv->entry_port), 
526                         modest_server_account_settings_get_port (server_settings));
527                 
528                 
529                 /* This will cause changed signals so we set dirty back to FALSE */
530                 priv->is_dirty = FALSE;
531         }
532 }
533
534 ModestServerAccountSettings*
535 modest_connection_specific_smtp_edit_window_get_settings (ModestConnectionSpecificSmtpEditWindow *window)
536 {
537         ModestConnectionSpecificSmtpEditWindowPrivate *priv = NULL;
538         ModestServerAccountSettings *server_settings = NULL;
539         const gchar *outgoing_server = NULL;
540
541         priv =  CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
542         outgoing_server = hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver));
543
544         /* If the outgoing server is NULL, we are removing the connection specific
545          * settings */
546         if ((outgoing_server == NULL) || (outgoing_server[0] == '\0')) {
547                 return NULL;
548         }
549         
550         server_settings = modest_server_account_settings_new ();
551         
552         modest_server_account_settings_set_hostname (server_settings, 
553                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_outgoingserver)));
554         modest_server_account_settings_set_protocol (server_settings,
555                                                      MODEST_PROTOCOLS_TRANSPORT_SMTP);
556         modest_server_account_settings_set_username (server_settings,
557                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_username)));
558         modest_server_account_settings_set_password (server_settings,
559                                                      hildon_entry_get_text (HILDON_ENTRY (priv->entry_user_password)));
560         
561         modest_server_account_settings_set_security_protocol (server_settings, 
562                                                      modest_serversecurity_picker_get_active_serversecurity (
563                                                      MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker)));
564         modest_server_account_settings_set_auth_protocol (server_settings,
565                                                           modest_secureauth_picker_get_active_secureauth (
566                                                           MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker)));
567         modest_server_account_settings_set_account_name (server_settings,
568                                                          priv->account_name);
569         
570         /* port: */
571         modest_server_account_settings_set_port (server_settings,
572                                                  modest_number_editor_get_value (MODEST_NUMBER_EDITOR (priv->entry_port)));
573                         
574         return server_settings;
575 }
576
577 gboolean 
578 modest_connection_specific_smtp_edit_window_is_dirty(ModestConnectionSpecificSmtpEditWindow *window)
579 {
580         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
581                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
582         
583         return priv->is_dirty;
584 }