0ef4d777bfa939af305723938324fad3a82996de
[modest] / src / hildon2 / modest-maemo-utils.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 #ifndef DBUS_API_SUBJECT_TO_CHANGE
31 #define DBUS_API_SUBJECT_TO_CHANGE
32 #endif /*DBUS_API_SUBJECT_TO_CHANGE*/
33
34 #include <sys/utsname.h>
35 #include <dbus/dbus.h>
36 #include <dbus/dbus-glib-lowlevel.h>
37 #include <glib.h>
38 #include <glib/gstdio.h>
39 #include <errno.h>
40 #include <string.h> /* for strlen */
41 #include <modest-runtime.h>
42 #include <libgnomevfs/gnome-vfs.h>
43 #include <tny-fs-stream.h>
44 #include <tny-camel-account.h>
45 #include <tny-status.h>
46 #include <tny-camel-transport-account.h>
47 #include <tny-camel-imap-store-account.h>
48 #include <tny-camel-pop-store-account.h>
49 #include "modest-hildon-includes.h"
50
51 #include <modest-defs.h>
52 #include "modest-maemo-utils.h"
53 #include "modest-text-utils.h"
54 #include "modest-platform.h"
55 #include "modest-ui-constants.h"
56 #include <hildon/hildon-picker-dialog.h>
57
58 /*
59  * For getting and tracking the Bluetooth name
60  */
61 #define BTNAME_SERVICE                  "org.bluez"
62 #define BTNAME_REQUEST_IF               "org.bluez.Adapter"
63 #define BTNAME_SIGNAL_IF                "org.bluez.Adapter"
64 #define BTNAME_REQUEST_PATH             "/org/bluez/hci0"
65 #define BTNAME_SIGNAL_PATH              "/org/bluez/hci0"
66
67 #define BTNAME_REQ_GET                  "GetName"
68 #define BTNAME_SIG_CHANGED              "NameChanged"
69
70 #define BTNAME_MATCH_RULE "type='signal',interface='" BTNAME_SIGNAL_IF \
71                           "',member='" BTNAME_SIG_CHANGED "'"
72
73 /* Label child of a captioned */
74 #define CAPTIONED_LABEL_CHILD "captioned-label"
75
76
77 static osso_context_t *__osso_context = NULL; /* urgh global */
78
79 osso_context_t *
80 modest_maemo_utils_get_osso_context (void)
81 {
82         if (!__osso_context) 
83                 g_warning ("%s: __osso_context == NULL", __FUNCTION__);
84
85         return __osso_context;
86 }
87
88 void
89 modest_maemo_utils_set_osso_context (osso_context_t *osso_context)
90 {
91         g_return_if_fail (osso_context);
92         __osso_context = osso_context;
93 }
94
95 void
96 modest_maemo_utils_get_device_name (void)
97 {
98         struct utsname name;
99
100         if (uname (&name) == 0) {
101                 modest_conf_set_string (modest_runtime_get_conf(),
102                                         MODEST_CONF_DEVICE_NAME, name.nodename,
103                                         NULL);
104         }
105 }
106
107 void
108 modest_maemo_utils_setup_images_filechooser (GtkFileChooser *chooser)
109 {
110         gchar *images_folder;
111         GtkFileFilter *file_filter;
112         GList *image_mimetypes_list;
113         GList *node;
114
115         g_return_if_fail (GTK_IS_FILE_CHOOSER (chooser));
116
117         /* Set the default folder to images folder */
118         images_folder = g_build_filename (g_getenv (MODEST_MAEMO_UTILS_MYDOCS_ENV),
119                                           MODEST_MAEMO_UTILS_DEFAULT_IMAGE_FOLDER, NULL);
120         gtk_file_chooser_set_current_folder (chooser, images_folder);
121         g_free (images_folder);
122
123         /* Set the images mime filter */
124         file_filter = gtk_file_filter_new ();
125 #ifdef MODEST_HAVE_HILDON0_WIDGETS
126         image_mimetypes_list = osso_mime_get_mime_types_for_category (OSSO_MIME_CATEGORY_IMAGES);
127 #else
128         image_mimetypes_list = hildon_mime_get_mime_types_for_category (HILDON_MIME_CATEGORY_IMAGES);
129 #endif
130         for (node = image_mimetypes_list; node != NULL; node = g_list_next (node)) {
131                 gtk_file_filter_add_mime_type (file_filter, node->data);
132         }
133         gtk_file_chooser_set_filter (chooser, file_filter);
134 #ifdef MODEST_HAVE_HILDON0_WIDGETS
135         osso_mime_types_list_free (image_mimetypes_list);
136 #else
137         hildon_mime_types_list_free (image_mimetypes_list);
138 #endif
139
140 }
141
142 void
143 modest_maemo_set_thumbable_scrollbar (GtkScrolledWindow *win, 
144                                       gboolean thumbable)
145 {
146         g_return_if_fail (GTK_IS_SCROLLED_WINDOW(win));
147 #ifdef MODEST_HAVE_HILDON1_WIDGETS              
148         hildon_helper_set_thumb_scrollbar (win, thumbable);
149 #endif /* MODEST_HAVE_HILDON1_WIDGETS */
150 }
151
152 FILE*
153 modest_maemo_open_mcc_mapping_file (gboolean *translated)
154 {
155         FILE* result = NULL;
156         const gchar* path;
157         gchar *path1 = g_strdup_printf ("%s.%s", MODEST_OPERATOR_WIZARD_MCC_MAPPING, getenv("LANG"));
158         const gchar* path2 = MODEST_MCC_MAPPING;
159
160         if (translated)
161                 *translated = TRUE;
162
163         if (access (path1, R_OK) == 0) {
164                 path = path1;
165         } else if (access (MODEST_OPERATOR_WIZARD_MCC_MAPPING, R_OK) == 0) {
166                 path = MODEST_OPERATOR_WIZARD_MCC_MAPPING;
167                 if (translated)
168                         *translated = FALSE;
169         } else if (access (path2, R_OK) == 0) {
170                 path = path2;
171         } else {
172                 g_warning ("%s: neither '%s' nor '%s' is a readable mapping file",
173                            __FUNCTION__, path1, path2);
174                 goto end;
175         }
176
177         result = fopen (path, "r");
178         if (!result) {
179                 g_warning ("%s: error opening mapping file '%s': %s",
180                            __FUNCTION__, path, strerror(errno));
181                 goto end;
182         }
183  end:
184         g_free (path1);
185         return result;
186 }
187
188 GtkWidget *
189 modest_maemo_utils_get_manager_menubar_as_menu (GtkUIManager *manager,
190                                                 const gchar *item_name)
191 {
192         GtkWidget *new_menu;
193         GtkWidget *menubar;
194         GList *children, *iter;
195
196         menubar = gtk_ui_manager_get_widget (manager, item_name);
197         new_menu = gtk_menu_new ();
198
199         children = gtk_container_get_children (GTK_CONTAINER (menubar));
200         for (iter = children; iter != NULL; iter = g_list_next (iter)) {
201                 GtkWidget *menu;
202
203                 menu = GTK_WIDGET (iter->data);
204                 gtk_widget_reparent (menu, new_menu);
205         }
206         
207         g_list_free (children);
208
209         return new_menu;
210 }
211
212 /**
213  * modest_maemo_utils_create_captioned:
214  * @title_size_group: a #GtkSizeGroup
215  * @value_size_group: a #GtkSizeGroup
216  * @title: a string
217  * @control: a #GtkWidget
218  *
219  * this creates a widget (a #GtkHBox) with a control, and a label
220  * (@string) captioning it. It also uses the proper size groups for title
221  * and control.
222  *
223  * Returns: a widget containing the control and a proper label.
224  */
225 GtkWidget *
226 modest_maemo_utils_create_captioned    (GtkSizeGroup *title_size_group,
227                                         GtkSizeGroup *value_size_group,
228                                         const gchar *title,
229                                         gboolean use_markup,
230                                         GtkWidget *control)
231 {
232         return modest_maemo_utils_create_captioned_with_size_type (title_size_group,
233                                                                    value_size_group,
234                                                                    title,
235                                                                    use_markup,
236                                                                    control,
237                                                                    HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
238 }
239
240 /**
241  * modest_maemo_utils_create_captioned_with_size_type:
242  * @title_size_group: a #GtkSizeGroup
243  * @value_size_group: a #GtkSizeGroup
244  * @title: a string
245  * @control: a #GtkWidget
246  * @size_type: a #HildonSizeType
247  *
248  * this creates a widget (a #GtkHBox) with a control, and a label
249  * (@string) captioning it. It also uses the proper size groups for title
250  * and control.
251  *
252  * Returns: a widget containing the control and a proper label.
253  */
254 GtkWidget *
255 modest_maemo_utils_create_captioned_with_size_type    (GtkSizeGroup *title_size_group,
256                                                        GtkSizeGroup *value_size_group,
257                                                        const gchar *title,
258                                                        gboolean use_markup,
259                                                        GtkWidget *control,
260                                                        HildonSizeType size_type)
261 {
262         GtkWidget *label;
263         GtkWidget *align;
264         GtkWidget *box;
265   
266         if (use_markup) {
267                 label = gtk_label_new (NULL);
268                 gtk_label_set_markup (GTK_LABEL (label), title);
269         } else {
270                 label = gtk_label_new (title);
271         }
272         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
273         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DOUBLE, MODEST_MARGIN_TRIPLE);
274
275         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
276         hildon_gtk_widget_set_theme_size (label, HILDON_SIZE_FINGER_HEIGHT);
277         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
278         gtk_widget_show (label);
279         gtk_widget_show (align);
280         box = gtk_hbox_new (FALSE, 0);
281         gtk_container_add (GTK_CONTAINER (align), label);
282         gtk_box_pack_start (GTK_BOX (box), align, FALSE, FALSE, 0);
283         gtk_box_pack_start (GTK_BOX (box), control, TRUE, TRUE, 0);
284         if (title_size_group)
285                 gtk_size_group_add_widget (title_size_group, label);
286         if (value_size_group)
287                 gtk_size_group_add_widget (value_size_group, control);
288
289         hildon_gtk_widget_set_theme_size (control, size_type);
290
291         g_object_set_data (G_OBJECT (box), CAPTIONED_LABEL_CHILD, label);
292
293         return box;
294 }
295
296 /**
297  * modest_maemo_utils_captioned_set_label:
298  * @captioned: a #GtkWidget built as captioned
299  * @new_label: a string
300  * @use_markup: a #gboolean
301  *
302  * set a new label for the captioned
303  */
304 void
305 modest_maemo_utils_captioned_set_label (GtkWidget *captioned,
306                                         const gchar *new_label,
307                                         gboolean use_markup)
308 {
309         GtkWidget *label;
310
311         g_return_if_fail (GTK_IS_WIDGET (captioned));
312
313         label = g_object_get_data (G_OBJECT (captioned), CAPTIONED_LABEL_CHILD);
314         g_return_if_fail (GTK_IS_LABEL (label));
315
316         if (use_markup) {
317                 gtk_label_set_markup (GTK_LABEL (label), new_label);
318         } else {
319                 gtk_label_set_text (GTK_LABEL (label), new_label);
320         }
321 }
322
323 /**
324  * modest_maemo_utils_set_hbutton_layout:
325  * @title_sizegroup: a #GtkSizeGroup, or %NULL
326  * @value_sizegroup: a #GtkSizeGroup, or %NULL
327  * @title: a string
328  * @button: a #HildonButton
329  *
330  * Configures the alignment and layout of @button. If @title_sizegroup is provided,
331  * the title will be aligned to the left using it. If @value_sizegroup is provided,
332  * the value will be aligned to the left using it. It also sets the title
333  * of the button.
334  *
335  * The alignment is left for the title and for the value.
336  */
337 void
338 modest_maemo_utils_set_hbutton_layout (GtkSizeGroup *title_sizegroup, 
339                                        GtkSizeGroup *value_sizegroup,
340                                        const gchar *title, 
341                                        GtkWidget *button)
342 {
343         hildon_button_set_title (HILDON_BUTTON (button), title);
344         if (title_sizegroup)
345                 hildon_button_add_title_size_group (HILDON_BUTTON (button), title_sizegroup);
346         if (value_sizegroup)
347                 hildon_button_add_value_size_group (HILDON_BUTTON (button), value_sizegroup);
348         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
349         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
350         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
351 }
352
353 void
354 modest_maemo_utils_set_vbutton_layout (GtkSizeGroup *sizegroup, 
355                                        const gchar *title, 
356                                        GtkWidget *button)
357 {
358         hildon_button_set_title (HILDON_BUTTON (button), title);
359         if (sizegroup) {
360                 hildon_button_add_title_size_group (HILDON_BUTTON (button), sizegroup);
361                 hildon_button_add_value_size_group (HILDON_BUTTON (button), sizegroup);
362         }
363         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
364         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
365         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
366 }
367
368 GtkWidget *
369 modest_maemo_utils_create_group_box (const gchar *label_text, GtkWidget *contents)
370 {
371         GtkWidget *label;
372         GtkWidget *box;
373
374         label = gtk_label_new (label_text);
375         gtk_widget_show (label);
376
377         box = gtk_vbox_new (FALSE, MODEST_MARGIN_HALF);
378         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
379         gtk_box_pack_start (GTK_BOX (box), contents, TRUE, TRUE, 0);
380         gtk_widget_show (box);
381
382         return box;
383 }
384
385 static gboolean match_all (TnyList *list, GObject *item, gpointer match_data)
386 {
387         return TRUE;
388 }
389
390 gboolean
391 modest_maemo_utils_select_attachments (GtkWindow *window, TnyList *att_list, gboolean include_msgs)
392 {
393         GtkTreeModel *model;
394         TnyIterator *iterator;
395         GtkWidget *selector;
396         GtkCellRenderer *renderer;
397         GtkWidget *dialog;
398         gint response;
399         gboolean result = TRUE;
400
401         model = GTK_TREE_MODEL (gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_OBJECT));
402         for (iterator = tny_list_create_iterator (att_list);
403              !tny_iterator_is_done (iterator);
404              tny_iterator_next (iterator)) {
405                 GtkTreeIter iter;
406                 TnyMimePart *part;
407                 gchar *label;
408                 gchar *filename = NULL;
409
410                 part = (TnyMimePart *) tny_iterator_get_current (iterator);
411
412                 /* Ignore purged attachments and messages if ignore is
413                    set to TRUE */
414                 if (!(tny_mime_part_is_purged (part) ||
415                       (TNY_IS_MSG (part) && !include_msgs))) {
416
417                         if (TNY_IS_MSG (part)) {
418                                 TnyHeader *header = tny_msg_get_header (TNY_MSG (part));
419                                 filename = tny_header_dup_subject (header);
420                                 g_object_unref (header);
421                         } else {
422                                 filename = g_strdup (tny_mime_part_get_filename (part));
423                         }
424                         label = g_strconcat (filename, NULL);
425                         gtk_list_store_append (GTK_LIST_STORE (model), &iter);
426                         gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, label, 1, part, -1);
427                         g_free (label);
428                         g_object_unref (part);
429                 }
430         }
431
432         selector = GTK_WIDGET (hildon_touch_selector_new ());
433         renderer = gtk_cell_renderer_text_new ();
434         hildon_touch_selector_append_column (HILDON_TOUCH_SELECTOR (selector), model, renderer,
435                                              "text", 0, NULL);
436         hildon_touch_selector_set_column_selection_mode (HILDON_TOUCH_SELECTOR (selector), 
437                                                          HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE);
438
439         dialog = hildon_picker_dialog_new (window);
440         gtk_window_set_title (GTK_WINDOW (dialog), _("mcen_ti_select_attachment_title"));
441         hildon_picker_dialog_set_selector (HILDON_PICKER_DIALOG (dialog), HILDON_TOUCH_SELECTOR (selector));
442         hildon_picker_dialog_set_done_label (HILDON_PICKER_DIALOG (dialog), _HL("wdgt_bd_done"));
443
444         response = gtk_dialog_run (GTK_DIALOG (dialog));
445
446         if (response == GTK_RESPONSE_OK) {
447                 GList *selected_rows, *node;
448
449                 tny_list_remove_matches (att_list, match_all, NULL);
450                 selected_rows = hildon_touch_selector_get_selected_rows (HILDON_TOUCH_SELECTOR (selector), 0);
451                 for (node = selected_rows; node != NULL; node = g_list_next (node)) {
452                         GtkTreePath *path;
453                         GObject *selected;
454                         GtkTreeIter iter;
455
456                         path = (GtkTreePath *) node->data;
457                         gtk_tree_model_get_iter (model, &iter, path);
458                         gtk_tree_model_get (model, &iter, 1, &selected, -1);
459                         tny_list_append (att_list, selected);
460                 }
461                 if (tny_list_get_length (att_list) == 0)
462                         result = FALSE;
463         } else {
464                 result = FALSE;
465         }
466
467         gtk_widget_destroy (dialog);
468
469         g_object_unref (model);
470
471         return result;
472 }