2007-04-20 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 "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                 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 (modest_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 (modest_serversecurity_combo_box_new ());
175         modest_serversecurity_combo_box_fill (
176                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_TRANSPORT_SMTP);
177         modest_serversecurity_combo_box_set_active_serversecurity (
178                 MODEST_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         const ModestServerAccountData *data)
212 {
213         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
214                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
215
216         /* This causes a warning because of the %s in the translation, but not in the original string: */
217         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
218         gtk_window_set_title (GTK_WINDOW (window), title);
219         g_free (title);
220         
221         if (data) 
222         {
223                 gtk_entry_set_text (GTK_ENTRY (priv->entry_outgoingserver), data->hostname);
224                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_username), data->username);     
225                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_password), data->password);
226         
227                 modest_serversecurity_combo_box_set_active_serversecurity (
228                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), data->security);
229         
230                 modest_secureauth_combo_box_set_active_secureauth (
231                 MODEST_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth), data->secure_auth);
232                 
233                 /* port: */
234                 gchar * port_str = g_strdup_printf ("%d", data->port);
235                 gtk_entry_set_text (GTK_ENTRY (priv->entry_port), port_str);
236                 g_free (port_str);
237         }
238 }
239
240 /*
241  * The result must be freed with modest_account_mgr_free_server_account_data(). */
242 ModestServerAccountData*
243 modest_connection_specific_smtp_edit_window_get_settings (
244         ModestConnectionSpecificSmtpEditWindow *window, 
245         ModestAccountMgr *account_manager, const gchar* server_account_name)
246 {
247         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
248                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
249         
250         g_assert (server_account_name);
251         
252         /* Use g_slice_new0(), because that's what modest_account_mgr_free_server_account_data() 
253          * expects us to use. */
254         ModestServerAccountData *result = g_slice_new0 (ModestServerAccountData);
255         
256         result->hostname = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver)));
257         result->username = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username)));       
258         result->password = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_user_password)));
259         
260         result->security = modest_serversecurity_combo_box_get_active_serversecurity (
261                 MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
262         
263         result->secure_auth = modest_secureauth_combo_box_get_active_secureauth (
264                 MODEST_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth));
265                 
266         /* port: */
267         const gchar * port_str = gtk_entry_get_text (GTK_ENTRY (priv->entry_port));
268         if (port_str)
269                 result->port = atoi (port_str);
270                         
271         return result;
272 }