7549b08b7d41ea1c77758a2563bf3936a8369e00
[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         ModestPairList *list;
205
206         vbox = gtk_vbox_new (FALSE, MODEST_MARGIN_DEFAULT);
207         table_update = gtk_table_new (3, 2, FALSE);
208         table_limit = gtk_table_new (2, 2, FALSE);
209         /* FIXME: set proper values (HIG) */
210         gtk_table_set_row_spacings (GTK_TABLE (table_update), 6);
211         gtk_table_set_col_spacings (GTK_TABLE (table_update), 12);
212         gtk_table_set_row_spacings (GTK_TABLE (table_limit), 6);
213         gtk_table_set_col_spacings (GTK_TABLE (table_limit), 12);
214
215         /* Autoupdate */
216         label = create_label (_("mcen_fi_options_autoupdate"));
217         check = gtk_check_button_new ();
218         add_to_table (GTK_TABLE (table_update), label, check);
219
220         /* Connected via */
221         label = create_label (_("mcen_fi_options_connectiontype"));
222         list = _modest_global_settings_dialog_get_connected_via ();
223         combo = modest_combo_box_new (list, g_int_equal);
224         modest_pair_list_free (list);
225         add_to_table (GTK_TABLE (table_update), label, combo);
226
227         /* Update interval */
228         label = create_label (_("mcen_fi_options_updateinterval"));
229         list = _modest_global_settings_dialog_get_update_interval ();
230         combo = modest_combo_box_new (list, g_int_equal);
231         modest_pair_list_free (list);
232         add_to_table (GTK_TABLE (table_update), label, combo);
233
234         /* Add to vbox */
235         gtk_box_pack_start (GTK_BOX (vbox), table_update, FALSE, FALSE, MODEST_MARGIN_HALF);
236
237         /* Separator */
238         gtk_box_pack_start (GTK_BOX (vbox), gtk_hseparator_new (), FALSE, FALSE, MODEST_MARGIN_HALF);
239
240         /* Limits */
241         label = create_label (_("mcen_fi_advsetup_sizelimit"));
242         spin = gtk_spin_button_new (GTK_ADJUSTMENT (gtk_adjustment_new (1000, 1, 5000, 1, 1, 16)), 
243                                     1, 0);
244         add_to_table (GTK_TABLE (table_limit), label, spin);
245
246         label = create_label (_("mcen_fi_options_playsound"));
247         check = gtk_check_button_new ();
248         add_to_table (GTK_TABLE (table_limit), label, check);
249
250         /* Add to vbox */
251         gtk_box_pack_start (GTK_BOX (vbox), table_limit, FALSE, FALSE, MODEST_MARGIN_HALF);
252
253         return vbox;
254 }
255
256 /*
257  * Creates the composing page
258  */
259 static GtkWidget* 
260 create_composing_page (ModestGnomeGlobalSettingsDialog *self)
261 {
262         GtkWidget *vbox, *table;
263         GtkWidget *label, *check, *combo;
264         ModestPairList *list;
265
266         vbox = gtk_vbox_new (FALSE, MODEST_MARGIN_DEFAULT);
267         table = gtk_table_new (2, 2, FALSE);
268         /* FIXME: set proper values */
269         gtk_table_set_row_spacings (GTK_TABLE (table), 6);
270         gtk_table_set_col_spacings (GTK_TABLE (table), 12);
271
272         /* Update interval */
273         label = create_label (_("mcen_fi_options_messageformat"));
274         list = _modest_global_settings_dialog_get_msg_formats ();
275         combo = modest_combo_box_new (list, g_int_equal);
276         modest_pair_list_free (list);
277         add_to_table (GTK_TABLE (table), label, combo);
278
279         label = create_label (_("mcen_va_options_include_original_inreply"));
280         check = gtk_check_button_new ();
281         add_to_table (GTK_TABLE (table), label, check);
282
283         /* Add to vbox */
284         gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, MODEST_MARGIN_HALF);
285
286         return vbox;
287 }
288
289 static ModestConnectedVia 
290 current_connection (void)
291 {
292         return MODEST_CONNECTED_VIA_ANY;
293 }