57cb86ceadab1a11c30766d5a31a9fcda976571e
[modest] / src / gnome / modest-gnome-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 #ifdef HAVE_CONFIG_H
31 #include <config.h>
32 #endif /*HAVE_CONFIG_H*/
33
34 #include <glib/gi18n.h>
35 #include <gtk/gtkbox.h>
36 #include <gtk/gtkvbox.h>
37 #include <gtk/gtknotebook.h>
38 #include <gtk/gtklabel.h>
39 #include <gtk/gtkcheckbutton.h>
40 #include <gtk/gtkhseparator.h>
41 #include <gtk/gtktable.h>
42 #include <gtk/gtkspinbutton.h>
43 #include "widgets/modest-global-settings-dialog-priv.h"
44 #include "widgets/modest-combo-box.h"
45 #include "gnome/modest-gnome-global-settings-dialog.h"
46 #include "widgets/modest-ui-constants.h"
47
48
49 /* include other impl specific header files */
50
51 /* 'private'/'protected' functions */
52 static void modest_gnome_global_settings_dialog_class_init (ModestGnomeGlobalSettingsDialogClass *klass);
53 static void modest_gnome_global_settings_dialog_init       (ModestGnomeGlobalSettingsDialog *obj);
54 static void modest_gnome_global_settings_dialog_finalize   (GObject *obj);
55
56 /* list my signals  */
57 enum {
58         /* MY_SIGNAL_1, */
59         /* MY_SIGNAL_2, */
60         LAST_SIGNAL
61 };
62
63 static GtkWidget* create_updating_page  (ModestGnomeGlobalSettingsDialog *self);
64 static GtkWidget* create_composing_page (ModestGnomeGlobalSettingsDialog *self);
65 static ModestConnectedVia current_connection (void);
66
67 typedef struct _ModestGnomeGlobalSettingsDialogPrivate ModestGnomeGlobalSettingsDialogPrivate;
68 struct _ModestGnomeGlobalSettingsDialogPrivate {
69 };
70 #define MODEST_GNOME_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
71                                                            MODEST_TYPE_GNOME_GLOBAL_SETTINGS_DIALOG, \
72                                                            ModestGnomeGlobalSettingsDialogPrivate))
73 /* globals */
74 static GtkDialogClass *parent_class = NULL;
75
76 /* uncomment the following if you have defined any signals */
77 /* static guint signals[LAST_SIGNAL] = {0}; */
78
79 GType
80 modest_gnome_global_settings_dialog_get_type (void)
81 {
82         static GType my_type = 0;
83         if (!my_type) {
84                 static const GTypeInfo my_info = {
85                         sizeof(ModestGnomeGlobalSettingsDialogClass),
86                         NULL,           /* base init */
87                         NULL,           /* base finalize */
88                         (GClassInitFunc) modest_gnome_global_settings_dialog_class_init,
89                         NULL,           /* class finalize */
90                         NULL,           /* class data */
91                         sizeof(ModestGnomeGlobalSettingsDialog),
92                         1,              /* n_preallocs */
93                         (GInstanceInitFunc) modest_gnome_global_settings_dialog_init,
94                         NULL
95                 };
96                 my_type = g_type_register_static (MODEST_TYPE_GLOBAL_SETTINGS_DIALOG,
97                                                   "ModestGnomeGlobalSettingsDialog",
98                                                   &my_info, 0);
99         }
100         return my_type;
101 }
102
103 static void
104 modest_gnome_global_settings_dialog_class_init (ModestGnomeGlobalSettingsDialogClass *klass)
105 {
106         GObjectClass *gobject_class;
107         gobject_class = (GObjectClass*) klass;
108
109         parent_class            = g_type_class_peek_parent (klass);
110         gobject_class->finalize = modest_gnome_global_settings_dialog_finalize;
111
112         g_type_class_add_private (gobject_class, sizeof(ModestGnomeGlobalSettingsDialogPrivate));
113
114         MODEST_GLOBAL_SETTINGS_DIALOG_CLASS (klass)->current_connection_func = current_connection;
115 }
116
117 static void
118 modest_gnome_global_settings_dialog_init (ModestGnomeGlobalSettingsDialog *self)
119 {
120         ModestGlobalSettingsDialogPrivate *ppriv;
121 /*      GdkGeometry *geometry; */
122
123         ppriv = MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
124
125         ppriv->updating_page = create_updating_page (self);
126         ppriv->composing_page = create_composing_page (self);
127     
128         /* Add the notebook pages: */
129         gtk_notebook_append_page (GTK_NOTEBOOK (ppriv->notebook), ppriv->updating_page, 
130                 gtk_label_new (_("mcen_ti_options_updating")));
131         gtk_notebook_append_page (GTK_NOTEBOOK (ppriv->notebook), ppriv->composing_page, 
132                 gtk_label_new (_("mcen_ti_options_composing")));
133                 
134         gtk_container_add (GTK_CONTAINER (GTK_DIALOG (self)->vbox), ppriv->notebook);
135         gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (self)->vbox), MODEST_MARGIN_HALF);
136         gtk_widget_show_all (ppriv->notebook);
137 }
138
139 static void
140 modest_gnome_global_settings_dialog_finalize (GObject *obj)
141 {
142 /*      free/unref instance resources here */
143         G_OBJECT_CLASS(parent_class)->finalize (obj);
144 }
145
146 GtkWidget*
147 modest_gnome_global_settings_dialog_new (void)
148 {
149         return GTK_WIDGET(g_object_new(MODEST_TYPE_GNOME_GLOBAL_SETTINGS_DIALOG, NULL));
150 }
151
152
153 /* 
154  * Adds the two widgets to a new row in the table
155  */
156 static void
157 add_to_table (GtkTable *table,
158               GtkWidget *left,
159               GtkWidget *right)
160 {
161         guint n_rows = 0;
162
163         g_object_get (G_OBJECT (table), "n-rows", &n_rows,NULL);
164
165         /* Attach label and value */
166         gtk_table_attach (table, 
167                           left, 0, 1, 
168                           n_rows, n_rows + 1, 
169                           GTK_SHRINK|GTK_FILL, 
170                           GTK_SHRINK|GTK_FILL, 
171                           0, 0);
172         gtk_table_attach (table, 
173                           right, 1, 2, 
174                           n_rows, n_rows + 1, 
175                           GTK_EXPAND|GTK_FILL, 
176                           GTK_SHRINK|GTK_FILL, 
177                           0, 0);
178 }
179
180 /* 
181  * We need this because the translations are comming without ":" 
182  */
183 static GtkWidget *
184 create_label (const gchar *text)
185 {
186         gchar *label_name;
187         GtkWidget *label;
188
189         label_name = g_strdup_printf ("%s:", text);
190         label = gtk_label_new (label_name);
191         g_free (label_name);
192
193         return label;
194 }
195
196 /*
197  * Creates the updating page
198  */
199 static GtkWidget*
200 create_updating_page (ModestGnomeGlobalSettingsDialog *self)
201 {
202         GtkWidget *vbox, *table_update, *table_limit;
203         GtkWidget *label, *check, *combo, *spin;
204
205         vbox = gtk_vbox_new (FALSE, MODEST_MARGIN_DEFAULT);
206         table_update = gtk_table_new (3, 2, FALSE);
207         table_limit = gtk_table_new (2, 2, FALSE);
208         /* FIXME: set proper values (HIG) */
209         gtk_table_set_row_spacings (GTK_TABLE (table_update), 6);
210         gtk_table_set_col_spacings (GTK_TABLE (table_update), 12);
211         gtk_table_set_row_spacings (GTK_TABLE (table_limit), 6);
212         gtk_table_set_col_spacings (GTK_TABLE (table_limit), 12);
213
214         /* Autoupdate */
215         label = create_label (_("mcen_fi_options_autoupdate"));
216         check = gtk_check_button_new ();
217         add_to_table (GTK_TABLE (table_update), label, check);
218
219         /* Connected via */
220         label = create_label (_("mcen_fi_options_connectiontype"));
221
222         ModestGlobalSettingsDialogPrivate *ppriv = 
223                 MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
224
225         /* Note: This ModestPairList* must exist for as long as the combo
226          * that uses it, because the ModestComboBox uses the ID opaquely, 
227          * so it can't know how to manage its memory. */
228         ppriv->connect_via_list = _modest_global_settings_dialog_get_connected_via ();
229         combo = modest_combo_box_new (ppriv->connect_via_list, g_int_equal);
230
231         add_to_table (GTK_TABLE (table_update), label, combo);
232
233         /* Update interval */
234         label = create_label (_("mcen_fi_options_updateinterval"));
235
236         /* Note: This ModestPairList* must exist for as long as the combo
237          * that uses it, because the ModestComboBox uses the ID opaquely, 
238          * so it can't know how to manage its memory. */
239         ppriv->update_interval_list = _modest_global_settings_dialog_get_update_interval ();
240         combo = modest_combo_box_new (ppriv->update_interval_list, g_int_equal);
241
242         add_to_table (GTK_TABLE (table_update), label, combo);
243
244         /* Add to vbox */
245         gtk_box_pack_start (GTK_BOX (vbox), table_update, FALSE, FALSE, MODEST_MARGIN_HALF);
246
247         /* Separator */
248         gtk_box_pack_start (GTK_BOX (vbox), gtk_hseparator_new (), FALSE, FALSE, MODEST_MARGIN_HALF);
249
250         /* Limits */
251         label = create_label (_("mcen_fi_advsetup_sizelimit"));
252         spin = gtk_spin_button_new (GTK_ADJUSTMENT (gtk_adjustment_new (1000, 1, 5000, 1, 1, 16)), 
253                                     1, 0);
254         add_to_table (GTK_TABLE (table_limit), label, spin);
255
256         label = create_label (_("mcen_fi_options_playsound"));
257         check = gtk_check_button_new ();
258         add_to_table (GTK_TABLE (table_limit), label, check);
259
260         /* Add to vbox */
261         gtk_box_pack_start (GTK_BOX (vbox), table_limit, FALSE, FALSE, MODEST_MARGIN_HALF);
262
263         return vbox;
264 }
265
266 /*
267  * Creates the composing page
268  */
269 static GtkWidget* 
270 create_composing_page (ModestGnomeGlobalSettingsDialog *self)
271 {
272         GtkWidget *vbox, *table;
273         GtkWidget *label, *check, *combo;
274
275         vbox = gtk_vbox_new (FALSE, MODEST_MARGIN_DEFAULT);
276         table = gtk_table_new (2, 2, FALSE);
277         /* FIXME: set proper values */
278         gtk_table_set_row_spacings (GTK_TABLE (table), 6);
279         gtk_table_set_col_spacings (GTK_TABLE (table), 12);
280
281         /* Update interval */
282         label = create_label (_("mcen_fi_options_messageformat"));
283
284         ModestGlobalSettingsDialogPrivate *ppriv = 
285                 MODEST_GLOBAL_SETTINGS_DIALOG_GET_PRIVATE (self);
286
287         /* Note: This ModestPairList* must exist for as long as the combo
288          * that uses it, because the ModestComboBox uses the ID opaquely, 
289          * so it can't know how to manage its memory. */
290         ppriv->msg_format_list = _modest_global_settings_dialog_get_msg_formats ();
291         combo = modest_combo_box_new (ppriv->msg_format_list, g_int_equal);
292
293         add_to_table (GTK_TABLE (table), label, combo);
294
295         label = create_label (_("mcen_va_options_include_original_inreply"));
296         check = gtk_check_button_new ();
297         add_to_table (GTK_TABLE (table), label, check);
298
299         /* Add to vbox */
300         gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, MODEST_MARGIN_HALF);
301
302         return vbox;
303 }
304
305 static ModestConnectedVia 
306 current_connection (void)
307 {
308         return MODEST_CONNECTED_VIA_ANY;
309 }