a0bad062653ad7ba9ed634ea96cf15f899fd00b1
[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         GtkFileFilter *file_filter;
111         GList *image_mimetypes_list;
112         GList *node;
113         gchar *conf_folder;
114
115         g_return_if_fail (GTK_IS_FILE_CHOOSER (chooser));
116
117         conf_folder = modest_conf_get_string (modest_runtime_get_conf (), MODEST_CONF_LATEST_INSERT_IMAGE_PATH, NULL);
118         if (conf_folder && conf_folder[0] != '\0') {
119                 gtk_file_chooser_set_current_folder_uri (chooser, conf_folder);
120         } else {
121                 gchar *images_folder;
122                 /* Set the default folder to images folder */
123                 images_folder = g_build_filename (g_getenv (MODEST_MAEMO_UTILS_MYDOCS_ENV),
124                                                   MODEST_MAEMO_UTILS_DEFAULT_IMAGE_FOLDER, NULL);
125                 gtk_file_chooser_set_current_folder (chooser, images_folder);
126                 g_free (images_folder);
127         }
128         g_free (conf_folder);
129
130         /* Set the images mime filter */
131         file_filter = gtk_file_filter_new ();
132 #ifdef MODEST_HAVE_HILDON0_WIDGETS
133         image_mimetypes_list = osso_mime_get_mime_types_for_category (OSSO_MIME_CATEGORY_IMAGES);
134 #else
135         image_mimetypes_list = hildon_mime_get_mime_types_for_category (HILDON_MIME_CATEGORY_IMAGES);
136 #endif
137         for (node = image_mimetypes_list; node != NULL; node = g_list_next (node)) {
138                 gtk_file_filter_add_mime_type (file_filter, node->data);
139         }
140         gtk_file_chooser_set_filter (chooser, file_filter);
141 #ifdef MODEST_HAVE_HILDON0_WIDGETS
142         osso_mime_types_list_free (image_mimetypes_list);
143 #else
144         hildon_mime_types_list_free (image_mimetypes_list);
145 #endif
146
147 }
148
149 void
150 modest_maemo_set_thumbable_scrollbar (GtkScrolledWindow *win, 
151                                       gboolean thumbable)
152 {
153         g_return_if_fail (GTK_IS_SCROLLED_WINDOW(win));
154 #ifdef MODEST_HAVE_HILDON1_WIDGETS              
155         hildon_helper_set_thumb_scrollbar (win, thumbable);
156 #endif /* MODEST_HAVE_HILDON1_WIDGETS */
157 }
158
159 FILE*
160 modest_maemo_open_mcc_mapping_file (gboolean *translated)
161 {
162         FILE* result = NULL;
163         const gchar* path;
164         gchar *path1 = g_strdup_printf ("%s.%s", MODEST_OPERATOR_WIZARD_MCC_MAPPING, getenv("LANG"));
165         const gchar* path2 = MODEST_MCC_MAPPING;
166
167         if (translated)
168                 *translated = TRUE;
169
170         if (access (path1, R_OK) == 0) {
171                 path = path1;
172         } else if (access (MODEST_OPERATOR_WIZARD_MCC_MAPPING, R_OK) == 0) {
173                 path = MODEST_OPERATOR_WIZARD_MCC_MAPPING;
174                 if (translated)
175                         *translated = FALSE;
176         } else if (access (path2, R_OK) == 0) {
177                 path = path2;
178         } else {
179                 g_warning ("%s: neither '%s' nor '%s' is a readable mapping file",
180                            __FUNCTION__, path1, path2);
181                 goto end;
182         }
183
184         result = fopen (path, "r");
185         if (!result) {
186                 g_warning ("%s: error opening mapping file '%s': %s",
187                            __FUNCTION__, path, strerror(errno));
188                 goto end;
189         }
190  end:
191         g_free (path1);
192         return result;
193 }
194
195 GtkWidget *
196 modest_maemo_utils_get_manager_menubar_as_menu (GtkUIManager *manager,
197                                                 const gchar *item_name)
198 {
199         GtkWidget *new_menu;
200         GtkWidget *menubar;
201         GList *children, *iter;
202
203         menubar = gtk_ui_manager_get_widget (manager, item_name);
204         new_menu = gtk_menu_new ();
205
206         children = gtk_container_get_children (GTK_CONTAINER (menubar));
207         for (iter = children; iter != NULL; iter = g_list_next (iter)) {
208                 GtkWidget *menu;
209
210                 menu = GTK_WIDGET (iter->data);
211                 gtk_widget_reparent (menu, new_menu);
212         }
213         
214         g_list_free (children);
215
216         return new_menu;
217 }
218
219 /**
220  * modest_maemo_utils_create_captioned:
221  * @title_size_group: a #GtkSizeGroup
222  * @value_size_group: a #GtkSizeGroup
223  * @title: a string
224  * @control: a #GtkWidget
225  *
226  * this creates a widget (a #GtkHBox) with a control, and a label
227  * (@string) captioning it. It also uses the proper size groups for title
228  * and control.
229  *
230  * Returns: a widget containing the control and a proper label.
231  */
232 GtkWidget *
233 modest_maemo_utils_create_captioned    (GtkSizeGroup *title_size_group,
234                                         GtkSizeGroup *value_size_group,
235                                         const gchar *title,
236                                         gboolean use_markup,
237                                         GtkWidget *control)
238 {
239         return modest_maemo_utils_create_captioned_with_size_type (title_size_group,
240                                                                    value_size_group,
241                                                                    title,
242                                                                    use_markup,
243                                                                    control,
244                                                                    HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
245 }
246
247 /**
248  * modest_maemo_utils_create_captioned_with_size_type:
249  * @title_size_group: a #GtkSizeGroup
250  * @value_size_group: a #GtkSizeGroup
251  * @title: a string
252  * @control: a #GtkWidget
253  * @size_type: a #HildonSizeType
254  *
255  * this creates a widget (a #GtkHBox) with a control, and a label
256  * (@string) captioning it. It also uses the proper size groups for title
257  * and control.
258  *
259  * Returns: a widget containing the control and a proper label.
260  */
261 GtkWidget *
262 modest_maemo_utils_create_captioned_with_size_type    (GtkSizeGroup *title_size_group,
263                                                        GtkSizeGroup *value_size_group,
264                                                        const gchar *title,
265                                                        gboolean use_markup,
266                                                        GtkWidget *control,
267                                                        HildonSizeType size_type)
268 {
269         GtkWidget *label;
270         GtkWidget *align;
271         GtkWidget *box;
272   
273         if (use_markup) {
274                 label = gtk_label_new (NULL);
275                 gtk_label_set_markup (GTK_LABEL (label), title);
276         } else {
277                 label = gtk_label_new (title);
278         }
279         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
280         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DOUBLE, MODEST_MARGIN_TRIPLE);
281
282         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
283         hildon_gtk_widget_set_theme_size (label, HILDON_SIZE_FINGER_HEIGHT);
284         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
285         gtk_widget_show (label);
286         gtk_widget_show (align);
287         box = gtk_hbox_new (FALSE, 0);
288         gtk_container_add (GTK_CONTAINER (align), label);
289         gtk_box_pack_start (GTK_BOX (box), align, FALSE, FALSE, 0);
290         gtk_box_pack_start (GTK_BOX (box), control, TRUE, TRUE, 0);
291         if (title_size_group)
292                 gtk_size_group_add_widget (title_size_group, label);
293         if (value_size_group)
294                 gtk_size_group_add_widget (value_size_group, control);
295
296         hildon_gtk_widget_set_theme_size (control, size_type);
297
298         g_object_set_data (G_OBJECT (box), CAPTIONED_LABEL_CHILD, label);
299
300         return box;
301 }
302
303 /**
304  * modest_maemo_utils_captioned_set_label:
305  * @captioned: a #GtkWidget built as captioned
306  * @new_label: a string
307  * @use_markup: a #gboolean
308  *
309  * set a new label for the captioned
310  */
311 void
312 modest_maemo_utils_captioned_set_label (GtkWidget *captioned,
313                                         const gchar *new_label,
314                                         gboolean use_markup)
315 {
316         GtkWidget *label;
317
318         g_return_if_fail (GTK_IS_WIDGET (captioned));
319
320         label = g_object_get_data (G_OBJECT (captioned), CAPTIONED_LABEL_CHILD);
321         g_return_if_fail (GTK_IS_LABEL (label));
322
323         if (use_markup) {
324                 gtk_label_set_markup (GTK_LABEL (label), new_label);
325         } else {
326                 gtk_label_set_text (GTK_LABEL (label), new_label);
327         }
328 }
329
330 /**
331  * modest_maemo_utils_set_hbutton_layout:
332  * @title_sizegroup: a #GtkSizeGroup, or %NULL
333  * @value_sizegroup: a #GtkSizeGroup, or %NULL
334  * @title: a string
335  * @button: a #HildonButton
336  *
337  * Configures the alignment and layout of @button. If @title_sizegroup is provided,
338  * the title will be aligned to the left using it. If @value_sizegroup is provided,
339  * the value will be aligned to the left using it. It also sets the title
340  * of the button.
341  *
342  * The alignment is left for the title and for the value.
343  */
344 void
345 modest_maemo_utils_set_hbutton_layout (GtkSizeGroup *title_sizegroup, 
346                                        GtkSizeGroup *value_sizegroup,
347                                        const gchar *title, 
348                                        GtkWidget *button)
349 {
350         hildon_button_set_title (HILDON_BUTTON (button), title);
351         if (title_sizegroup)
352                 hildon_button_add_title_size_group (HILDON_BUTTON (button), title_sizegroup);
353         if (value_sizegroup)
354                 hildon_button_add_value_size_group (HILDON_BUTTON (button), value_sizegroup);
355         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
356         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
357         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
358 }
359
360 void
361 modest_maemo_utils_set_vbutton_layout (GtkSizeGroup *sizegroup, 
362                                        const gchar *title, 
363                                        GtkWidget *button)
364 {
365         hildon_button_set_title (HILDON_BUTTON (button), title);
366         if (sizegroup) {
367                 hildon_button_add_title_size_group (HILDON_BUTTON (button), sizegroup);
368                 hildon_button_add_value_size_group (HILDON_BUTTON (button), sizegroup);
369         }
370         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
371         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
372         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
373 }
374
375 GtkWidget *
376 modest_maemo_utils_create_group_box (const gchar *label_text, GtkWidget *contents)
377 {
378         GtkWidget *label;
379         GtkWidget *box;
380
381         label = gtk_label_new (label_text);
382         gtk_widget_show (label);
383
384         box = gtk_vbox_new (FALSE, MODEST_MARGIN_HALF);
385         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
386         gtk_box_pack_start (GTK_BOX (box), contents, TRUE, TRUE, 0);
387         gtk_widget_show (box);
388
389         return box;
390 }
391
392 static gboolean match_all (TnyList *list, GObject *item, gpointer match_data)
393 {
394         return TRUE;
395 }
396
397 gboolean
398 modest_maemo_utils_select_attachments (GtkWindow *window, TnyList *att_list, gboolean include_msgs)
399 {
400         GtkTreeModel *model;
401         TnyIterator *iterator;
402         GtkWidget *selector;
403         GtkCellRenderer *renderer;
404         GtkWidget *dialog;
405         gint response;
406         gboolean result = TRUE;
407
408         model = GTK_TREE_MODEL (gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_OBJECT));
409         for (iterator = tny_list_create_iterator (att_list);
410              !tny_iterator_is_done (iterator);
411              tny_iterator_next (iterator)) {
412                 GtkTreeIter iter;
413                 TnyMimePart *part;
414                 gchar *label;
415                 gchar *filename = NULL;
416
417                 part = (TnyMimePart *) tny_iterator_get_current (iterator);
418
419                 /* Ignore purged attachments and messages if ignore is
420                    set to TRUE */
421                 if (!(tny_mime_part_is_purged (part) ||
422                       (TNY_IS_MSG (part) && !include_msgs))) {
423
424                         if (TNY_IS_MSG (part)) {
425                                 TnyHeader *header = tny_msg_get_header (TNY_MSG (part));
426                                 filename = tny_header_dup_subject (header);
427                                 g_object_unref (header);
428                         } else {
429                                 filename = g_strdup (tny_mime_part_get_filename (part));
430                         }
431                         label = g_strconcat (filename, NULL);
432                         gtk_list_store_append (GTK_LIST_STORE (model), &iter);
433                         gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, label, 1, part, -1);
434                         g_free (label);
435                         g_object_unref (part);
436                 }
437         }
438
439         selector = GTK_WIDGET (hildon_touch_selector_new ());
440         renderer = gtk_cell_renderer_text_new ();
441         hildon_touch_selector_append_column (HILDON_TOUCH_SELECTOR (selector), model, renderer,
442                                              "text", 0, NULL);
443         hildon_touch_selector_set_column_selection_mode (HILDON_TOUCH_SELECTOR (selector), 
444                                                          HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE);
445
446         dialog = hildon_picker_dialog_new (window);
447         gtk_window_set_title (GTK_WINDOW (dialog), _("mcen_ti_select_attachments_title"));
448         hildon_picker_dialog_set_selector (HILDON_PICKER_DIALOG (dialog), HILDON_TOUCH_SELECTOR (selector));
449         hildon_picker_dialog_set_done_label (HILDON_PICKER_DIALOG (dialog), _HL("wdgt_bd_done"));
450
451         response = gtk_dialog_run (GTK_DIALOG (dialog));
452
453         if (response == GTK_RESPONSE_OK) {
454                 GList *selected_rows, *node;
455
456                 tny_list_remove_matches (att_list, match_all, NULL);
457                 selected_rows = hildon_touch_selector_get_selected_rows (HILDON_TOUCH_SELECTOR (selector), 0);
458                 for (node = selected_rows; node != NULL; node = g_list_next (node)) {
459                         GtkTreePath *path;
460                         GObject *selected;
461                         GtkTreeIter iter;
462
463                         path = (GtkTreePath *) node->data;
464                         gtk_tree_model_get_iter (model, &iter, path);
465                         gtk_tree_model_get (model, &iter, 1, &selected, -1);
466                         tny_list_append (att_list, selected);
467                 }
468                 if (tny_list_get_length (att_list) == 0)
469                         result = FALSE;
470         } else {
471                 result = FALSE;
472         }
473
474         gtk_widget_destroy (dialog);
475
476         g_object_unref (model);
477
478         return result;
479 }