2007-04-18 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 <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 = CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
96         
97         
98         const gint port_number = 
99                 easysetup_serversecurity_combo_box_get_active_serversecurity_port (
100                         EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security));
101
102         if(port_number != 0) {
103                 gchar* str = g_strdup_printf ("%d", port_number);
104                 gtk_entry_set_text (GTK_ENTRY (priv->entry_port), str);
105                 g_free (str);   
106         }               
107 }
108
109 static void
110 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
111 {
112         ModestConnectionSpecificSmtpEditWindowPrivate *priv = CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
113         
114         GtkWidget *box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, 2); */
115         
116         /* Create a size group to be used by all captions.
117          * Note that HildonCaption does not create a default size group if we do not specify one.
118          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
119         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
120          
121         /* The outgoing server widgets: */
122         if (!priv->entry_outgoingserver)
123                 priv->entry_outgoingserver = gtk_entry_new ();
124         GtkWidget *caption = hildon_caption_new (sizegroup, 
125                 _("mcen_li_emailsetup_smtp"), priv->entry_outgoingserver, NULL, HILDON_CAPTION_OPTIONAL);
126         gtk_widget_show (priv->entry_outgoingserver);
127         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
128         gtk_widget_show (caption);
129         
130         /* Show a default port number when the security method changes, as per the UI spec: */
131         g_signal_connect (G_OBJECT (priv->combo_outgoing_security), "changed", (GCallback)on_combo_security_changed, self);
132         
133         
134         /* The secure authentication widgets: */
135         if (!priv->combo_outgoing_auth)
136                 priv->combo_outgoing_auth = GTK_WIDGET (easysetup_secureauth_combo_box_new ());
137         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_authentication"), 
138                 priv->combo_outgoing_auth, NULL, HILDON_CAPTION_OPTIONAL);
139         gtk_widget_show (priv->combo_outgoing_auth);
140         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
141         gtk_widget_show (caption);
142         
143         /* The username widgets: */     
144         priv->entry_user_username = GTK_WIDGET (easysetup_validating_entry_new ());
145         caption = hildon_caption_new (sizegroup, _("mail_fi_username"), 
146                 priv->entry_user_username, NULL, HILDON_CAPTION_MANDATORY);
147         gtk_widget_show (priv->entry_user_username);
148         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
149         gtk_widget_show (caption);
150         
151         /* Prevent the use of some characters in the username, 
152          * as required by our UI specification: */
153         easysetup_validating_entry_set_unallowed_characters_whitespace (
154                 EASYSETUP_VALIDATING_ENTRY (priv->entry_user_username));
155         
156         /* Set max length as in the UI spec:
157          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
158         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
159         
160         /* The password widgets: */     
161         priv->entry_user_password = gtk_entry_new ();
162         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
163         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
164         caption = hildon_caption_new (sizegroup, 
165                 _("mail_fi_password"), priv->entry_user_password, NULL, HILDON_CAPTION_OPTIONAL);
166         gtk_widget_show (priv->entry_user_password);
167         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
168         gtk_widget_show (caption);
169         
170         /* The secure connection widgets: */    
171         if (!priv->combo_outgoing_security)
172                 priv->combo_outgoing_security = GTK_WIDGET (easysetup_serversecurity_combo_box_new ());
173         easysetup_serversecurity_combo_box_fill (
174                 EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_TRANSPORT_SMTP);
175         easysetup_serversecurity_combo_box_set_active_serversecurity (
176                 EASYSETUP_SERVERSECURITY_COMBO_BOX (priv->combo_outgoing_security), MODEST_PROTOCOL_SECURITY_NONE);
177         caption = hildon_caption_new (sizegroup, _("mcen_li_emailsetup_secure_connection"), 
178                 priv->combo_outgoing_security, NULL, HILDON_CAPTION_OPTIONAL);
179         gtk_widget_show (priv->combo_outgoing_security);
180         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
181         gtk_widget_show (caption);
182         
183         /* The port number widgets: */
184         if (!priv->entry_port)
185                 priv->entry_port = gtk_entry_new ();
186         caption = hildon_caption_new (sizegroup, 
187                 _("mcen_li_emailsetup_smtp"), priv->entry_port, NULL, HILDON_CAPTION_OPTIONAL);
188         gtk_widget_show (priv->entry_port);
189         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, 2);
190         gtk_widget_show (caption);
191         
192         /* Add the buttons: */
193         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_OK, GTK_RESPONSE_OK);
194         gtk_dialog_add_button (GTK_DIALOG (self), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
195         
196         
197         gtk_widget_show (box);
198 }
199
200 ModestConnectionSpecificSmtpEditWindow*
201 modest_connection_specific_smtp_edit_window_new (void)
202 {
203         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
204 }
205
206 void
207 modest_connection_specific_smtp_edit_window_set_connection (
208         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name)
209 {
210         /* This causes a warning because of the %s in the translation, but not in the original string: */
211         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
212         
213         gtk_window_set_title (GTK_WINDOW (window), title);
214         g_free (title);
215 }
216