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