2007-04-19 Murray Cumming <murrayc@murrayc.com>
[modest] / src / maemo / modest-connection-specific-smtp-edit-window.c
1 /* connection-specific-smtp-window.c */
2
3 #include "modest-connection-specific-smtp-edit-window.h"
4 #include <hildon-widgets/hildon-caption.h>
5 #include "maemo/easysetup/modest-easysetup-country-combo-box.h"
6 #include "maemo/easysetup/modest-easysetup-provider-combo-box.h"
7 #include "maemo/easysetup/modest-easysetup-servertype-combo-box.h"
8 #include "maemo/easysetup/modest-easysetup-serversecurity-combo-box.h"
9 #include "maemo/easysetup/modest-easysetup-secureauth-combo-box.h"
10 #include "maemo/easysetup/modest-validating-entry.h"
11 #include <modest-account-mgr-helpers.h>
12 #include <gtk/gtkbutton.h>
13 #include <gtk/gtkhbox.h>
14 #include <gtk/gtkvbox.h>
15 #include <gtk/gtkstock.h>
16
17 #include <glib/gi18n.h>
18
19 G_DEFINE_TYPE (ModestConnectionSpecificSmtpEditWindow, modest_connection_specific_smtp_edit_window, GTK_TYPE_DIALOG);
20
21 #define CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE(o) \
22         (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, ModestConnectionSpecificSmtpEditWindowPrivate))
23
24 typedef struct _ModestConnectionSpecificSmtpEditWindowPrivate ModestConnectionSpecificSmtpEditWindowPrivate;
25
26 struct _ModestConnectionSpecificSmtpEditWindowPrivate
27 {
28         GtkWidget *entry_outgoingserver;
29         GtkWidget *combo_outgoing_auth;
30         GtkWidget *entry_user_username;
31         GtkWidget *entry_user_password;
32         GtkWidget *combo_outgoing_security;
33         GtkWidget *entry_port;
34         
35         GtkWidget *button_ok;
36         GtkWidget *button_cancel;
37 };
38
39 static void
40 modest_connection_specific_smtp_edit_window_get_property (GObject *object, guint property_id,
41                                                                                                                         GValue *value, GParamSpec *pspec)
42 {
43         switch (property_id) {
44         default:
45                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
46         }
47 }
48
49 static void
50 modest_connection_specific_smtp_edit_window_set_property (GObject *object, guint property_id,
51                                                                                                                         const GValue *value, GParamSpec *pspec)
52 {
53         switch (property_id) {
54         default:
55                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
56         }
57 }
58
59 static void
60 modest_connection_specific_smtp_edit_window_dispose (GObject *object)
61 {
62         if (G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose)
63                 G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose (object);
64 }
65
66 static void
67 modest_connection_specific_smtp_edit_window_finalize (GObject *object)
68 {
69         G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->finalize (object);
70 }
71
72 static void
73 modest_connection_specific_smtp_edit_window_class_init (ModestConnectionSpecificSmtpEditWindowClass *klass)
74 {
75         GObjectClass *object_class = G_OBJECT_CLASS (klass);
76
77         g_type_class_add_private (klass, sizeof (ModestConnectionSpecificSmtpEditWindowPrivate));
78
79         object_class->get_property = modest_connection_specific_smtp_edit_window_get_property;
80         object_class->set_property = modest_connection_specific_smtp_edit_window_set_property;
81         object_class->dispose = modest_connection_specific_smtp_edit_window_dispose;
82         object_class->finalize = modest_connection_specific_smtp_edit_window_finalize;
83 }
84
85 enum MODEL_COLS {
86         MODEL_COL_NAME = 0,
87         MODEL_COL_SERVER_NAME = 1,
88         MODEL_COL_ID = 2
89 };
90
91 static void
92 on_combo_security_changed (GtkComboBox *widget, gpointer user_data)
93 {
94         ModestConnectionSpecificSmtpEditWindow *self = 
95                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
96         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
97                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
98         
99         const gint port_number = 
100                 easysetup_serversecurity_combo_box_get_active_serversecurity_port (
101                         EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
102
103         if(port_number != 0) {
104                 gchar* str = g_strdup_printf ("%d", port_number);
105                 gtk_entry_set_text (GTK_ENTRY (priv->entry_port), str);
106                 g_free (str);   
107         }               
108 }
109
110 static void
111 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
112 {
113         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
114                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
115         
116         GtkWidget *box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, 2); */
117         
118         /* Create a size group to be used by all captions.
119          * Note that HildonCaption does not create a default size group if we do not specify one.
120          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
121         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
122          
123         /* The outgoing server widgets: */
124         if (!priv->entry_outgoingserver)
125                 priv->entry_outgoingserver = gtk_entry_new ();
126         GtkWidget *caption = hildon_caption_new (sizegroup, 
127                 _("mcen_li_emailsetup_smtp"), priv->entry_outgoingserver, NULL, HILDON_CAPTION_OPTIONAL);
128         gtk_widget_show (priv->entry_outgoingserver);
129         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
130         gtk_widget_show (caption);
131         
132         /* Show a default port number when the security method changes, as per the UI spec: */
133         g_signal_connect (G_OBJECT (priv->combo_outgoing_security), "changed", (GCallback)on_combo_security_changed, self);
134         
135         
136         /* The secure authentication widgets: */
137         if (!priv->combo_outgoing_auth)
138                 priv->combo_outgoing_auth = GTK_WIDGET (easysetup_secureauth_combo_box_new ());
139         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_authentication"), 
140                 priv->combo_outgoing_auth, NULL, HILDON_CAPTION_OPTIONAL);
141         gtk_widget_show (priv->combo_outgoing_auth);
142         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
143         gtk_widget_show (caption);
144         
145         /* The username widgets: */     
146         priv->entry_user_username = GTK_WIDGET (easysetup_validating_entry_new ());
147         caption = hildon_caption_new (sizegroup, _("mail_fi_username"), 
148                 priv->entry_user_username, NULL, HILDON_CAPTION_MANDATORY);
149         gtk_widget_show (priv->entry_user_username);
150         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
151         gtk_widget_show (caption);
152         
153         /* Prevent the use of some characters in the username, 
154          * as required by our UI specification: */
155         easysetup_validating_entry_set_unallowed_characters_whitespace (
156                 EASYSETUP_VALIDATING_ENTRY (priv->entry_user_username));
157         
158         /* Set max length as in the UI spec:
159          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
160         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
161         
162         /* The password widgets: */     
163         priv->entry_user_password = gtk_entry_new ();
164         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
165         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
166         caption = hildon_caption_new (sizegroup, 
167                 _("mail_fi_password"), priv->entry_user_password, NULL, HILDON_CAPTION_OPTIONAL);
168         gtk_widget_show (priv->entry_user_password);
169         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
170         gtk_widget_show (caption);
171         
172         /* The secure connection widgets: */    
173         if (!priv->combo_outgoing_security)
174                 priv->combo_outgoing_security = GTK_WIDGET (easysetup_serversecurity_combo_box_new ());
175         easysetup_serversecurity_combo_box_fill (
176                 EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_TRANSPORT_SMTP);
177         easysetup_serversecurity_combo_box_set_active_serversecurity (
178                 EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_SECURITY_NONE);
179         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_connection"), 
180                 priv->combo_outgoing_security, NULL, HILDON_CAPTION_OPTIONAL);
181         gtk_widget_show (priv->combo_outgoing_security);
182         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
183         gtk_widget_show (caption);
184         
185         /* The port number widgets: */
186         if (!priv->entry_port)
187                 priv->entry_port = gtk_entry_new ();
188         caption = hildon_caption_new (sizegroup, 
189                 _("mcen_li_emailsetup_smtp"), priv->entry_port, NULL, HILDON_CAPTION_OPTIONAL);
190         gtk_widget_show (priv->entry_port);
191         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
192         gtk_widget_show (caption);
193         
194         /* Add the buttons: */
195         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_OK, GTK_RESPONSE_OK);
196         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
197         
198         
199         gtk_widget_show (box);
200 }
201
202 ModestConnectionSpecificSmtpEditWindow*
203 modest_connection_specific_smtp_edit_window_new (void)
204 {
205         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
206 }
207
208 void
209 modest_connection_specific_smtp_edit_window_set_connection (
210         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name)
211 {
212         /* This causes a warning because of the %s in the translation, but not in the original string: */
213         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
214         
215         gtk_window_set_title (GTK_WINDOW (window), title);
216         g_free (title);
217 }
218
219 gboolean
220 modest_connection_specific_smtp_edit_window_save_settings (
221         ModestConnectionSpecificSmtpEditWindow *window, 
222         ModestAccountMgr *account_manager, const gchar* server_account_name)
223 {
224         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
225                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
226         
227         g_assert (server_account_name);
228         
229         const gchar* hostname = gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver));
230         gboolean test = modest_account_mgr_set_string (account_manager, server_account_name,
231                 MODEST_ACCOUNT_HOSTNAME, hostname, TRUE /* server account */);
232         if (!test)
233                 return FALSE;
234                 
235         const gchar* username = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username));
236         test = modest_account_mgr_set_string (account_manager, server_account_name,
237                 MODEST_ACCOUNT_USERNAME, username, TRUE /* server account */);
238         if (!test)
239                 return FALSE;
240                 
241         const gchar* password = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_password));
242         test = modest_account_mgr_set_string (account_manager, server_account_name,
243                 MODEST_ACCOUNT_PASSWORD, password, TRUE /*  server account */);
244         if (!test)
245                 return FALSE;
246         
247         const ModestProtocol protocol_security_outgoing = easysetup_serversecurity_combo_box_get_active_serversecurity (
248                 EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
249         modest_server_account_set_security (account_manager, server_account_name, protocol_security_outgoing);
250         
251         const ModestProtocol protocol_authentication_outgoing = easysetup_secureauth_combo_box_get_active_secureauth (
252                 EASYSETUP_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth));
253         modest_server_account_set_secure_auth (account_manager, server_account_name, protocol_authentication_outgoing); 
254                 
255         /* port: */
256         const gchar * port_str = gtk_entry_get_text (GTK_ENTRY (priv->entry_port));
257         gint port_num = 0;
258         if (port_str)
259                 port_num = atoi (port_str);
260         modest_account_mgr_set_int (account_manager, server_account_name,
261                         MODEST_ACCOUNT_PORT, port_num, TRUE /* server account */);
262                         
263         return TRUE;
264 }