7f60078c75f9bb858dd8978e4ced3a6ad868d15d
[modest] / src / widgets / modest-global-settings-dialog.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <glib/gi18n.h>
31 #include <gtk/gtknotebook.h>
32 #include <gtk/gtkstock.h>
33 #include <gtk/gtklabel.h>
34 #include <gtk/gtktogglebutton.h>
35 #include <string.h>
36 #include "widgets/modest-global-settings-dialog.h"
37 #include "widgets/modest-global-settings-dialog-priv.h"
38 #include "modest-defs.h"
39 #include "modest-conf.h"
40 #include "modest-runtime.h"
41 #include "modest-ui-constants.h"
42 #include "modest-tny-msg.h"
43 #include "modest-platform.h"
44 #ifdef MODEST_TOOLKIT_HILDON2
45 #include "hildon2/modest-selector-picker.h"
46 #include "hildon/hildon-check-button.h"
47 #else
48 #include "widgets/modest-combo-box.h"
49 #endif
50 #ifndef MODEST_TOOLKIT_GTK
51 #if MODEST_HILDON_API == 0
52 #include <hildon-widgets/hildon-number-editor.h>
53 #else
54 #include <hildon/hildon-number-editor.h>
55 #endif /*MODEST_HILDON_API = 0*/
56 #endif
57 /* include other impl specific header files */
58
59 #define RETURN_FALSE_ON_ERROR(error) if (error) { g_clear_error (&error); return FALSE; }
60
61 /* 'private'/'protected' functions */
62 static void modest_global_settings_dialog_class_init (ModestGlobalSettingsDialogClass *klass);
63 static void modest_global_settings_dialog_init       (ModestGlobalSettingsDialog *obj);
64 static void modest_global_settings_dialog_finalize   (GObject *obj);
65
66 static void on_response (GtkDialog *dialog,
67                          gint arg1,
68                          gpointer user_data);
69 static void get_current_settings (ModestGlobalSettingsDialogPrivate *priv, 
70                                   ModestGlobalSettingsState *state);
71
72 static ModestConnectedVia current_connection_default (void);
73
74 /* list my signals  */
75 enum {
76         /* MY_SIGNAL_1, */
77         /* MY_SIGNAL_2, */
78         LAST_SIGNAL
79 };
80
81 /* globals */
82 static GtkDialogClass *parent_class = NULL;
83
84 /* uncomment the following if you have defined any signals */
85 /* static guint signals[LAST_SIGNAL] = {0}; */
86
87 GType
88 modest_global_settings_dialog_get_type (void)
89 {
90         static GType my_type = 0;
91         if (!my_type) {
92                 static const GTypeInfo my_info = {
93                         sizeof(ModestGlobalSettingsDialogClass),
94                         NULL,           /* base init */
95                         NULL,           /* base finalize */
96                         (GClassInitFunc) modest_global_settings_dialog_class_init,
97                         NULL,           /* class finalize */
98                         NULL,           /* class data */
99                         sizeof(ModestGlobalSettingsDialog),
100                         1,              /* n_preallocs */
101                         (GInstanceInitFunc) modest_global_settings_dialog_init,
102                         NULL
103                 };
104 #ifdef MODEST_TOOLKIT_HILDON2
105                 my_type = g_type_register_static (HILDON_TYPE_DIALOG,
106                                                   "ModestGlobalSettingsDialog",
107                                                   &my_info, 0);
108 #else
109                 my_type = g_type_register_static (GTK_TYPE_DIALOG,
110                                                   "ModestGlobalSettingsDialog",
111                                                   &my_info, 0);
112 #endif
113         }
114         return my_type;
115 }
116
117 static void
118 modest_global_settings_dialog_class_init (ModestGlobalSettingsDialogClass *klass)
119 {
120         GObjectClass *gobject_class;
121         gobject_class = (GObjectClass*) klass;
122
123         parent_class            = g_type_class_peek_parent (klass);
124         gobject_class->finalize = modest_global_settings_dialog_finalize;
125
126         g_type_class_add_private (gobject_class, sizeof(ModestGlobalSettingsDialogPrivate));
127
128         klass->current_connection_func = current_connection_default;
129 }
130
131 static void
132 modest_global_settings_dialog_init (ModestGlobalSettingsDialog *self)
133 {
134         ModestGlobalSettingsDialogPrivate *priv;
135
136         priv = MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
137
138         priv->notebook = gtk_notebook_new ();
139
140         /* Connect to the dialog's response signal: */
141         g_signal_connect (G_OBJECT (self), "response", G_CALLBACK (on_response), self);
142
143         /* Set title */
144         gtk_window_set_title (GTK_WINDOW (self), _("mcen_ti_options"));
145 }
146
147 static void
148 modest_global_settings_dialog_finalize (GObject *obj)
149 {
150         ModestGlobalSettingsDialogPrivate *priv = 
151                 MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (obj);
152
153         /* These had to stay alive as long as the comboboxes that used them: */
154         modest_pair_list_free (priv->connect_via_list);
155         modest_pair_list_free (priv->update_interval_list);
156         modest_pair_list_free (priv->msg_format_list);
157         
158         G_OBJECT_CLASS(parent_class)->finalize (obj);
159 }
160
161 /*
162  * Creates a pair list (number,string) and adds it to the given list
163  */
164 static void
165 add_to_modest_pair_list (const gint num, const gchar *str, GSList **list)
166 {
167         gint *number;
168         ModestPair *pair;
169
170         number = g_malloc0 (sizeof (gint));
171         *number = num;
172         pair = modest_pair_new (number, g_strdup (str), FALSE);
173         *list = g_slist_prepend (*list, pair);
174 }
175
176 ModestPairList *
177 _modest_global_settings_dialog_get_connected_via (void)
178 {
179         GSList *list = NULL;
180         const gchar *message;
181
182 #ifndef MODEST_TOOLKIT_GTK
183         const gchar *env_var = getenv ("OSSO_PRODUCT_HARDWARE");
184         /* Check if WIMAX is available */
185         if (env_var && !strncmp (env_var, "RX-48", 5))
186                 message = _("mcen_va_options_connectiontype_wlan_wimax");
187         else
188                 message = _("mcen_va_options_connectiontype_wlan");
189 #else
190         message = _("mcen_va_options_connectiontype_wlan");
191 #endif
192         add_to_modest_pair_list (MODEST_CONNECTED_VIA_WLAN_OR_WIMAX, message, &list);
193         add_to_modest_pair_list (MODEST_CONNECTED_VIA_ANY, 
194                                  _("mcen_va_options_connectiontype_all"), 
195                                  &list);
196
197         return (ModestPairList *) g_slist_reverse (list);
198 }
199
200 /*
201  * Gets a list of pairs of update intervals
202  */
203 ModestPairList *
204 _modest_global_settings_dialog_get_update_interval (void)
205 {
206         GSList *list = NULL;
207
208         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_5_MIN, 
209                                  _("mcen_va_options_updateinterval_5min"), 
210                                  &list);
211         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_10_MIN, 
212                                  _("mcen_va_options_updateinterval_10min"), 
213                                  &list);
214         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_15_MIN, 
215                                  _("mcen_va_options_updateinterval_15min"), 
216                                  &list);
217         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_30_MIN, 
218                                  _("mcen_va_options_updateinterval_30min"), 
219                                  &list);
220         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_1_HOUR, 
221                                  _("mcen_va_options_updateinterval_1h"), 
222                                  &list);
223         add_to_modest_pair_list (MODEST_UPDATE_INTERVAL_2_HOUR, 
224                                  _("mcen_va_options_updateinterval_2h"), 
225                                  &list);
226
227         return (ModestPairList *) g_slist_reverse (list);
228 }
229
230 /*
231  * Gets a list of pairs 
232  */
233 ModestPairList *
234 _modest_global_settings_dialog_get_msg_formats (void)
235 {
236         GSList *list = NULL;
237
238         add_to_modest_pair_list (MODEST_FILE_FORMAT_FORMATTED_TEXT, 
239                                  _("mcen_va_options_messageformat_html"), 
240                                  &list);
241         add_to_modest_pair_list (MODEST_FILE_FORMAT_PLAIN_TEXT, 
242                                  _("mcen_va_options_messageformat_plain"), 
243                                  &list);
244
245         return (ModestPairList *) g_slist_reverse (list);
246 }
247
248 void   
249 _modest_global_settings_dialog_load_conf (ModestGlobalSettingsDialog *self)
250 {
251         ModestConf *conf;
252         gboolean checked;
253         gint combo_id, value;
254         GError *error = NULL;
255         ModestGlobalSettingsDialogPrivate *priv;
256
257         priv = MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
258         conf = modest_runtime_get_conf ();
259
260         /* Autoupdate */
261         checked = modest_conf_get_bool (conf, MODEST_CONF_AUTO_UPDATE, &error);
262         if (error) {
263                 g_clear_error (&error);
264                 error = NULL;
265                 checked = FALSE;
266         }
267 #ifdef MODEST_TOOLKIT_HILDON2
268         hildon_check_button_set_active (GTK_BUTTON (priv->auto_update), checked);
269 #else
270         gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->auto_update), checked);
271 #endif
272         priv->initial_state.auto_update = checked;
273
274         /* Connected by */
275         combo_id = modest_conf_get_int (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, &error);
276         if (error) {
277                 g_error_free (error);
278                 error = NULL;
279                 combo_id = MODEST_CONNECTED_VIA_WLAN_OR_WIMAX;
280         }
281 #ifdef MODEST_TOOLKIT_HILDON2
282         modest_selector_picker_set_active_id (MODEST_SELECTOR_PICKER (priv->connect_via), 
283                                               (gpointer) &combo_id);
284 #else
285         modest_combo_box_set_active_id (MODEST_COMBO_BOX (priv->connect_via), 
286                                         (gpointer) &combo_id);
287 #endif
288         priv->initial_state.connect_via = combo_id;
289
290         /* Emit toggled to update the visibility of connect_by caption */
291 #ifdef MODEST_TOOLKIT_HILDON2
292         gtk_button_clicked (GTK_BUTTON (priv->auto_update));
293 #else
294         gtk_toggle_button_toggled (GTK_TOGGLE_BUTTON (priv->auto_update));
295 #endif
296
297         /* Update interval */
298         combo_id = modest_conf_get_int (conf, MODEST_CONF_UPDATE_INTERVAL, &error);
299         if (error) {
300                 g_error_free (error);
301                 error = NULL;
302                 combo_id = MODEST_UPDATE_INTERVAL_15_MIN;
303         }
304 #ifdef MODEST_TOOLKIT_HILDON2
305         modest_selector_picker_set_active_id (MODEST_SELECTOR_PICKER (priv->update_interval), 
306                                         (gpointer) &combo_id);
307 #else
308         modest_combo_box_set_active_id (MODEST_COMBO_BOX (priv->update_interval), 
309                                         (gpointer) &combo_id);
310 #endif
311         priv->initial_state.update_interval = combo_id;
312
313         /* Size limit */
314         value  = modest_conf_get_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, &error);
315         if (error) {
316                 g_error_free (error);
317                 error = NULL;
318                 value = 1000;
319         }
320         /* It's better to do this in the subclasses, but it's just one
321            line, so we'll leave it here for the moment */
322 #ifndef MODEST_TOOLKIT_GTK
323         hildon_number_editor_set_value (HILDON_NUMBER_EDITOR (priv->size_limit), value);
324 #else
325         gtk_spin_button_set_value (GTK_SPIN_BUTTON (priv->size_limit), value);
326 #endif
327         priv->initial_state.size_limit = value;
328
329         /* Play sound */
330         checked = modest_conf_get_bool (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, &error);
331         if (error) {
332                 g_error_free (error);
333                 error = NULL;
334                 checked = FALSE;
335         }
336 #ifndef MODEST_TOOLKIT_HILDON2
337         gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->play_sound), checked);
338 #endif
339         priv->initial_state.play_sound = checked;
340
341         /* Msg format */
342         checked = modest_conf_get_bool (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, &error);
343         if (error) {
344                 g_error_free (error);
345                 error = NULL;
346                 combo_id = MODEST_FILE_FORMAT_FORMATTED_TEXT;
347         }       
348         combo_id = (checked) ? MODEST_FILE_FORMAT_FORMATTED_TEXT : MODEST_FILE_FORMAT_PLAIN_TEXT;
349 #ifdef MODEST_TOOLKIT_HILDON2
350         modest_selector_picker_set_active_id (MODEST_SELECTOR_PICKER (priv->msg_format), 
351                                               (gpointer) &combo_id);
352 #else
353         modest_combo_box_set_active_id (MODEST_COMBO_BOX (priv->msg_format), 
354                                         (gpointer) &combo_id);
355 #endif
356         priv->initial_state.prefer_formatted_text = checked;
357 }
358
359 static void 
360 get_current_settings (ModestGlobalSettingsDialogPrivate *priv, 
361                       ModestGlobalSettingsState *state) 
362 {
363         gint *id;
364
365         /* Get values from UI */
366 #ifdef MODEST_TOOLKIT_HILDON2
367         id = modest_selector_picker_get_active_id (MODEST_SELECTOR_PICKER (priv->connect_via));
368         state->auto_update = hildon_check_button_get_active (GTK_BUTTON (priv->auto_update));
369 #else
370         id = modest_combo_box_get_active_id (MODEST_COMBO_BOX (priv->connect_via));
371         state->auto_update = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->auto_update));
372 #endif
373         state->connect_via = *id;
374 #ifndef MODEST_TOOLKIT_GTK
375         state->size_limit = hildon_number_editor_get_value (HILDON_NUMBER_EDITOR (priv->size_limit));
376 #else
377         state->size_limit = gtk_spin_button_get_value (GTK_SPIN_BUTTON (priv->size_limit));
378 #endif
379
380 #ifdef MODEST_TOOLKIT_HILDON2
381         id = modest_selector_picker_get_active_id (MODEST_SELECTOR_PICKER (priv->update_interval));
382 #else
383         id = modest_combo_box_get_active_id (MODEST_COMBO_BOX (priv->update_interval));
384 #endif
385         state->update_interval = *id;
386 #ifdef MODEST_TOOLKIT_HILDON2
387         id = modest_selector_picker_get_active_id (MODEST_SELECTOR_PICKER (priv->msg_format));
388 #else
389         state->play_sound = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->play_sound));
390         id = modest_combo_box_get_active_id (MODEST_COMBO_BOX (priv->msg_format));
391 #endif
392         state->prefer_formatted_text = (*id == MODEST_FILE_FORMAT_FORMATTED_TEXT) ? TRUE : FALSE;
393 }
394
395 gboolean
396 _modest_global_settings_dialog_save_conf (ModestGlobalSettingsDialog *self)
397 {
398         ModestConf *conf;
399         ModestGlobalSettingsState current_state;
400         GError *error = NULL;
401         ModestGlobalSettingsDialogPrivate *priv;
402
403         priv = MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
404
405         conf = modest_runtime_get_conf ();
406
407         get_current_settings (priv, &current_state);
408
409         /* Save configuration */
410         modest_conf_set_bool (conf, MODEST_CONF_AUTO_UPDATE, current_state.auto_update, &error);
411         RETURN_FALSE_ON_ERROR(error);
412         modest_conf_set_int (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, current_state.connect_via, NULL);
413         RETURN_FALSE_ON_ERROR(error);
414         modest_conf_set_int (conf, MODEST_CONF_UPDATE_INTERVAL, current_state.update_interval, NULL);
415         RETURN_FALSE_ON_ERROR(error);
416         modest_conf_set_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, current_state.size_limit, NULL);
417         RETURN_FALSE_ON_ERROR(error);
418         modest_conf_set_bool (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, current_state.play_sound, NULL);
419         RETURN_FALSE_ON_ERROR(error);
420         modest_conf_set_bool (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, current_state.prefer_formatted_text, NULL);
421         RETURN_FALSE_ON_ERROR(error);
422
423         /* Apply changes */
424         if (priv->initial_state.auto_update != current_state.auto_update || 
425             priv->initial_state.connect_via != current_state.connect_via ||
426             priv->initial_state.update_interval != current_state.update_interval) {
427
428                 TnyAccountStore *account_store;
429                 TnyDevice *device;
430
431                 if (!current_state.auto_update) {
432                         modest_platform_set_update_interval (0);
433                         /* To avoid a new indentation level */
434                         goto exit;
435                 }
436
437                 account_store = TNY_ACCOUNT_STORE (modest_runtime_get_account_store ());
438                 device = tny_account_store_get_device (account_store);
439
440                 if (tny_device_is_online (device)) {
441                         /* If connected via any then set update interval */
442                         if (current_state.connect_via == MODEST_CONNECTED_VIA_ANY) {
443                                 modest_platform_set_update_interval (current_state.update_interval);
444                         } else {
445                                 /* Set update interval only if we
446                                    selected the same connect_via
447                                    method than the one already used by
448                                    the device */
449                                 ModestConnectedVia connect_via = 
450                                         MODEST_GLOBAL_SETTINGS_DIALOG_GET_CLASS(self)->current_connection_func ();
451                                 
452                                 if (current_state.connect_via == connect_via)
453                                         modest_platform_set_update_interval (current_state.update_interval);
454                                 else
455                                         modest_platform_set_update_interval (0);
456                         }
457                 } else {
458                         /* Disable autoupdate in offline mode */
459                         modest_platform_set_update_interval (0);
460                 }
461                 g_object_unref (device);
462         }
463
464 exit:
465         return TRUE;
466 }
467
468 static gboolean
469 settings_changed (ModestGlobalSettingsState initial_state,
470                   ModestGlobalSettingsState current_state)
471 {
472         if (initial_state.auto_update != current_state.auto_update ||
473             initial_state.connect_via != current_state.connect_via ||
474             initial_state.update_interval != current_state.update_interval ||
475             initial_state.size_limit != current_state.size_limit ||
476             initial_state.play_sound != current_state.play_sound ||
477             initial_state.prefer_formatted_text != current_state.prefer_formatted_text)
478                 return TRUE;
479         else
480                 return FALSE;
481 }
482
483 static void
484 on_response (GtkDialog *dialog,
485              gint arg1,
486              gpointer user_data)
487 {
488         ModestGlobalSettingsDialogPrivate *priv;
489         ModestGlobalSettingsState current_state;
490         gboolean changed;
491
492         priv = MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (user_data);
493
494         get_current_settings (priv, &current_state);
495         changed = settings_changed (priv->initial_state, current_state);
496
497         if (arg1 == GTK_RESPONSE_OK) {
498                 if (changed) {
499                         gboolean saved;
500
501                         saved = _modest_global_settings_dialog_save_conf (MODEST_GLOBAL_SETTINGS_DIALOG (dialog));
502                         if (saved) {
503                                 modest_platform_information_banner (NULL, NULL,
504                                                                     _("mcen_ib_advsetup_settings_saved"));
505                         } else {
506                                 modest_platform_information_banner (NULL, NULL,
507                                                                     _("mail_ib_setting_failed"));
508                         }
509                 }
510         } else {
511                 if (changed) {
512                         gint response;
513                         response = modest_platform_run_confirmation_dialog (GTK_WINDOW (user_data), 
514                                                                             _("imum_nc_wizard_confirm_lose_changes"));
515                         /* Do not close if the user Cancels */
516                         if (response == GTK_RESPONSE_CANCEL)
517                                 g_signal_stop_emission_by_name (user_data, "response");
518                 }
519         }
520 }
521
522 static ModestConnectedVia 
523 current_connection_default (void)
524 {
525         g_warning ("You must implement %s", __FUNCTION__);
526         g_return_val_if_reached (MODEST_CONNECTED_VIA_ANY);
527 }