2007-05-10 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 "widgets/modest-ui-constants.h"
5 #include "modest-hildon-includes.h"
6 #include "modest-runtime.h"
7
8 #include "widgets/modest-serversecurity-combo-box.h"
9 #include "widgets/modest-secureauth-combo-box.h"
10 #include "widgets/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                 modest_serversecurity_combo_box_get_active_serversecurity_port (
101                         MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
102
103         if(port_number != 0) {
104                 hildon_number_editor_set_value (
105                         HILDON_NUMBER_EDITOR (priv->entry_port), port_number);
106         }               
107 }
108
109 static void
110 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
111 {
112         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
113                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
114         
115         GtkWidget *box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, MODEST_MARGIN_HALF); */
116         gtk_box_set_spacing (GTK_BOX (box), MODEST_MARGIN_NONE);
117         gtk_container_set_border_width (GTK_CONTAINER (box), MODEST_MARGIN_HALF);
118         
119         /* Create a size group to be used by all captions.
120          * Note that HildonCaption does not create a default size group if we do not specify one.
121          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
122         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
123          
124         /* The outgoing server widgets: */
125         if (!priv->entry_outgoingserver)
126                 priv->entry_outgoingserver = gtk_entry_new ();
127         /* Auto-capitalization is the default, so let's turn it off: */
128         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
129         GtkWidget *caption = hildon_caption_new (sizegroup, 
130                 _("mcen_li_emailsetup_smtp"), priv->entry_outgoingserver, NULL, HILDON_CAPTION_OPTIONAL);
131         gtk_widget_show (priv->entry_outgoingserver);
132         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
133         gtk_widget_show (caption);
134         
135         /* Show a default port number when the security method changes, as per the UI spec: */
136         g_signal_connect (G_OBJECT (priv->combo_outgoing_security), "changed", (GCallback)on_combo_security_changed, self);
137         
138         
139         /* The secure authentication widgets: */
140         if (!priv->combo_outgoing_auth)
141                 priv->combo_outgoing_auth = GTK_WIDGET (modest_secureauth_combo_box_new ());
142         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_authentication"), 
143                 priv->combo_outgoing_auth, NULL, HILDON_CAPTION_OPTIONAL);
144         gtk_widget_show (priv->combo_outgoing_auth);
145         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
146         gtk_widget_show (caption);
147         
148         /* The username widgets: */     
149         priv->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
150         /* Auto-capitalization is the default, so let's turn it off: */
151         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_username), HILDON_GTK_INPUT_MODE_FULL);
152         caption = hildon_caption_new (sizegroup, _("mail_fi_username"), 
153                 priv->entry_user_username, NULL, HILDON_CAPTION_MANDATORY);
154         gtk_widget_show (priv->entry_user_username);
155         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
156         gtk_widget_show (caption);
157         
158         /* Prevent the use of some characters in the username, 
159          * as required by our UI specification: */
160         modest_validating_entry_set_unallowed_characters_whitespace (
161                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
162         
163         /* Set max length as in the UI spec:
164          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
165         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
166         
167         /* The password widgets: */     
168         priv->entry_user_password = gtk_entry_new ();
169         /* Auto-capitalization is the default, so let's turn it off: */
170         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
171                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
172         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
173         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
174         caption = hildon_caption_new (sizegroup, 
175                 _("mail_fi_password"), priv->entry_user_password, NULL, HILDON_CAPTION_OPTIONAL);
176         gtk_widget_show (priv->entry_user_password);
177         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
178         gtk_widget_show (caption);
179         
180         /* The secure connection widgets: */    
181         if (!priv->combo_outgoing_security)
182                 priv->combo_outgoing_security = GTK_WIDGET (modest_serversecurity_combo_box_new ());
183         modest_serversecurity_combo_box_fill (
184                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_TRANSPORT_SMTP);
185         modest_serversecurity_combo_box_set_active_serversecurity (
186                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_SECURITY_NONE);
187         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_connection"), 
188                 priv->combo_outgoing_security, NULL, HILDON_CAPTION_OPTIONAL);
189         gtk_widget_show (priv->combo_outgoing_security);
190         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
191         gtk_widget_show (caption);
192         
193         /* The port number widgets: */
194         if (!priv->entry_port)
195                 priv->entry_port = GTK_WIDGET (hildon_number_editor_new (0, 65535));
196         caption = hildon_caption_new (sizegroup, 
197                 _("mcen_li_emailsetup_smtp"), priv->entry_port, NULL, HILDON_CAPTION_OPTIONAL);
198         gtk_widget_show (priv->entry_port);
199         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
200         gtk_widget_show (caption);
201         
202         /* Add the buttons: */
203         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_OK, GTK_RESPONSE_OK);
204         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
205         
206         
207         gtk_widget_show (box);
208         
209         
210         /* When this window is shown, hibernation should not be possible, 
211          * because there is no sensible way to save the state: */
212     modest_window_mgr_prevent_hibernation_while_window_is_shown (
213         modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
214 }
215
216 ModestConnectionSpecificSmtpEditWindow*
217 modest_connection_specific_smtp_edit_window_new (void)
218 {
219         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
220 }
221
222 void
223 modest_connection_specific_smtp_edit_window_set_connection (
224         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name,
225         const ModestServerAccountData *data)
226 {
227         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
228                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
229
230         /* This causes a warning because of the %s in the translation, but not in the original string: */
231         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
232         gtk_window_set_title (GTK_WINDOW (window), title);
233         g_free (title);
234         
235         if (data) 
236         {
237                 gtk_entry_set_text (GTK_ENTRY (priv->entry_outgoingserver), data->hostname);
238                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_username), data->username);     
239                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_password), data->password);
240         
241                 modest_serversecurity_combo_box_set_active_serversecurity (
242                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), data->security);
243         
244                 modest_secureauth_combo_box_set_active_secureauth (
245                 MODEST_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth), data->secure_auth);
246                 
247                 /* port: */
248                 hildon_number_editor_set_value (
249                         HILDON_NUMBER_EDITOR (priv->entry_port), data->port);
250         }
251 }
252
253 /*
254  * The result must be freed with modest_account_mgr_free_server_account_data(). */
255 ModestServerAccountData*
256 modest_connection_specific_smtp_edit_window_get_settings (
257         ModestConnectionSpecificSmtpEditWindow *window, 
258         ModestAccountMgr *account_manager, const gchar* server_account_name)
259 {
260         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
261                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
262         
263         g_assert (server_account_name);
264         
265         /* Use g_slice_new0(), because that's what modest_account_mgr_free_server_account_data() 
266          * expects us to use. */
267         ModestServerAccountData *result = g_slice_new0 (ModestServerAccountData);
268         
269         result->hostname = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver)));
270         result->username = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username)));       
271         result->password = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_user_password)));
272         
273         result->security = modest_serversecurity_combo_box_get_active_serversecurity (
274                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
275         
276         result->secure_auth = modest_secureauth_combo_box_get_active_secureauth (
277                 MODEST_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth));
278                 
279         /* port: */
280         result->port = hildon_number_editor_get_value (
281                         HILDON_NUMBER_EDITOR (priv->entry_port));
282                         
283         return result;
284 }