* changes to use either maemo-provider-data.keyfile or modest-provider-data.keyfile
[modest] / src / maemo / 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 <dbus/dbus.h>
35 #include <dbus/dbus-glib-lowlevel.h>
36 #include <glib.h>
37 #include <glib/gstdio.h>
38 #include <errno.h>
39 #include <string.h> /* for strlen */
40 #include <modest-runtime.h>
41 #include <libgnomevfs/gnome-vfs.h>
42 #include <tny-fs-stream.h>
43 #include <tny-camel-account.h>
44 #include <tny-status.h>
45 #include <tny-camel-transport-account.h>
46 #include <tny-camel-imap-store-account.h>
47 #include <tny-camel-pop-store-account.h>
48 #include "modest-hildon-includes.h"
49
50 #include <modest-defs.h>
51 #include "modest-maemo-utils.h"
52 #include "modest-platform.h"
53
54 /*
55  * For getting and tracking the Bluetooth name
56  */
57 #define BTNAME_SERVICE                  "org.bluez"
58 #define BTNAME_REQUEST_IF               "org.bluez.Adapter"
59 #define BTNAME_SIGNAL_IF                "org.bluez.Adapter"
60 #define BTNAME_REQUEST_PATH             "/org/bluez/hci0"
61 #define BTNAME_SIGNAL_PATH              "/org/bluez/hci0"
62
63 #define BTNAME_REQ_GET                  "GetName"
64 #define BTNAME_SIG_CHANGED              "NameChanged"
65
66 #define BTNAME_MATCH_RULE "type='signal',interface='" BTNAME_SIGNAL_IF \
67                           "',member='" BTNAME_SIG_CHANGED "'"
68
69
70 static osso_context_t *__osso_context = NULL; /* urgh global */
71
72 osso_context_t *
73 modest_maemo_utils_get_osso_context (void)
74 {
75         if (!__osso_context) 
76                 g_warning ("%s: __osso_context == NULL", __FUNCTION__);
77         
78         return __osso_context;
79 }
80
81 void
82 modest_maemo_utils_set_osso_context (osso_context_t *osso_context)
83 {
84         g_return_if_fail (osso_context);
85         __osso_context = osso_context;
86 }
87
88
89 GQuark
90 modest_maemo_utils_get_supported_secure_authentication_error_quark (void)
91 {
92         return g_quark_from_static_string("modest-maemo-utils-get-supported-secure-authentication-error-quark");
93 }
94
95 GtkWidget*
96 modest_maemo_utils_menubar_to_menu (GtkUIManager *ui_manager)
97 {
98         GtkWidget *main_menu;
99         GtkWidget *menubar;
100         GList *children, *iter;
101
102         g_return_val_if_fail (ui_manager, NULL);
103         
104         /* Create new main menu */
105         main_menu = gtk_menu_new();
106
107         /* Get the menubar from the UI manager */
108         menubar = gtk_ui_manager_get_widget (ui_manager, "/MenuBar");
109
110         iter = children = gtk_container_get_children (GTK_CONTAINER (menubar));
111         while (iter) {
112                 GtkWidget *menu;
113
114                 menu = GTK_WIDGET (iter->data);
115                 gtk_widget_reparent(menu, main_menu);
116
117                 iter = g_list_next (iter);
118         }
119         g_list_free (children);
120         return main_menu;
121 }
122
123
124 static void
125 update_device_name_from_msg (DBusMessage *message)
126 {
127         DBusError error;
128         DBusMessageIter iter;
129
130         dbus_error_init (&error);
131
132         if (dbus_set_error_from_message (&error, message)) {
133                 g_printerr ("modest: failed to get bluetooth name: %s\n", error.message);
134                 dbus_error_free (&error);
135         } else {
136                 const gchar *device_name;
137                 if (!dbus_message_iter_init (message, &iter)) {
138                         g_printerr ("modest: message did not have argument\n");
139                         return;
140                 }
141                 dbus_message_iter_get_basic (&iter, &device_name);
142                 modest_conf_set_string (modest_runtime_get_conf(),
143                                         MODEST_CONF_DEVICE_NAME, device_name,
144                                         NULL);
145         }
146 }
147
148
149 static void
150 on_device_name_received (DBusPendingCall *call, void *user_data)
151 {
152         DBusMessage *message;
153         
154         g_return_if_fail (dbus_pending_call_get_completed (call));
155         
156         message = dbus_pending_call_steal_reply (call);
157         if (!message) {
158                 g_printerr ("modest: no reply on device name query\n");
159                 return;
160         }
161
162         update_device_name_from_msg (message);
163         dbus_message_unref (message);
164 }
165
166
167 static DBusHandlerResult
168 handle_dbus_signal (DBusConnection *conn, DBusMessage *msg, gpointer data)
169 {
170         if (dbus_message_is_signal(msg, BTNAME_SIGNAL_IF, BTNAME_SIG_CHANGED))
171                 update_device_name_from_msg (msg);
172
173         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
174 }
175
176
177 static void
178 get_device_name_from_dbus ()
179 {
180         static DBusConnection *conn = NULL;
181         DBusMessage *request;
182         DBusError error;
183         DBusPendingCall *call = NULL;
184         
185         dbus_error_init (&error);
186         if (!conn) {
187                 conn = dbus_bus_get (DBUS_BUS_SYSTEM, &error);
188                 if (!conn) {
189                         g_printerr ("modest: cannot get on the dbus: %s: %s\n",
190                                     error.name, error.message);
191                         dbus_error_free (&error);
192                         return;
193                 }
194         }
195         
196         request = dbus_message_new_method_call (BTNAME_SERVICE, BTNAME_REQUEST_PATH,
197                                                 BTNAME_REQUEST_IF, BTNAME_REQ_GET);
198         if (!request) {
199                 /* should we free the connection? */
200                 g_printerr ("modest: dbus_message_new_method_call failed\n");
201                 return;
202         }
203         dbus_message_set_auto_start (request, TRUE);
204         if (dbus_connection_send_with_reply (conn, request, &call, -1)) {
205                 dbus_pending_call_set_notify (call, on_device_name_received,
206                                               NULL, NULL);
207                 dbus_pending_call_unref (call);
208         }
209         dbus_message_unref (request);
210         
211         dbus_connection_setup_with_g_main (conn, NULL);
212         dbus_bus_add_match (conn, BTNAME_MATCH_RULE, &error);
213         if (dbus_error_is_set(&error)) {
214                 g_printerr ("modest: dbus_bus_add_match failed: %s\n", error.message);
215                 dbus_error_free (&error);
216         }
217
218         if (!dbus_connection_add_filter(conn, handle_dbus_signal, NULL, NULL))
219                 g_printerr ("modest: dbus_connection_add_filter failed\n");
220 }
221
222
223 void
224 modest_maemo_utils_get_device_name (void)
225 {
226         get_device_name_from_dbus ();
227 }
228
229 gboolean 
230 modest_maemo_utils_folder_writable (const gchar *filename)
231 {
232         g_return_val_if_fail (filename, FALSE);
233
234         if (!filename)
235                 return FALSE;
236         
237         if (g_strncasecmp (filename, "obex", 4) != 0) {
238                 GnomeVFSFileInfo folder_info;
239                 gchar *folder;
240                 folder = g_path_get_dirname (filename);
241                 gnome_vfs_get_file_info (folder, &folder_info,
242                                          GNOME_VFS_FILE_INFO_GET_ACCESS_RIGHTS);
243                 g_free (folder);
244                 if (!((folder_info.permissions & GNOME_VFS_PERM_ACCESS_WRITABLE) ||
245                       (folder_info.permissions & GNOME_VFS_PERM_USER_WRITE))) {
246                         return FALSE;
247                 }
248         }
249         return TRUE;
250 }
251
252 gboolean 
253 modest_maemo_utils_file_exists (const gchar *filename)
254 {
255         GnomeVFSURI *uri = NULL;
256         gboolean result = FALSE;
257
258         uri = gnome_vfs_uri_new (filename);
259         if (uri) {
260                 result = gnome_vfs_uri_exists (uri);
261                 gnome_vfs_uri_unref (uri);
262         }
263         return result;
264 }
265
266 TnyFsStream *
267 modest_maemo_utils_create_temp_stream (const gchar *orig_name, const gchar *hash_base, gchar **path)
268 {
269         gint fd;
270         gchar *filepath = NULL;
271         gchar *tmpdir;
272         guint hash_number;
273
274         /* hmmm... maybe we need a modest_text_utils_validate_file_name? */
275         g_return_val_if_fail (orig_name || strlen(orig_name) == 0, NULL);
276         if (strlen(orig_name) > 200) {
277                 g_warning ("%s: filename too long ('%s')",
278                            __FUNCTION__, orig_name);
279                 return NULL;
280         }
281         
282         if (g_strstr_len (orig_name, strlen(orig_name), "/") != NULL) {
283                 g_warning ("%s: filename contains '/' character(s) (%s)",
284                            __FUNCTION__, orig_name);
285                 return NULL;
286         }
287                 
288         /* make a random subdir under /tmp or /var/tmp */
289         if (hash_base != NULL) {
290                 hash_number = g_str_hash (hash_base);
291         } else {
292                 hash_number = (guint) random ();
293         }
294         tmpdir = g_strdup_printf ("%s/%u", g_get_tmp_dir (), hash_number);
295         if ((g_access (tmpdir, R_OK) == -1) && (g_mkdir (tmpdir, 0755) == -1)) {
296                 g_warning ("%s: failed to create dir '%s': %s",
297                            __FUNCTION__, tmpdir, g_strerror(errno));
298                 g_free (tmpdir);
299                 return NULL;
300         }
301
302         /* try to write the file there */
303         filepath = g_strconcat (tmpdir, "/", orig_name, NULL);
304         fd = g_open (filepath, O_CREAT|O_WRONLY|O_TRUNC, 0644);
305         if (fd == -1) {
306                 g_warning ("%s: failed to create '%s': %s",
307                            __FUNCTION__, filepath, g_strerror(errno));
308                 g_free (tmpdir);
309                 g_free (filepath);
310                 return NULL;
311         }
312
313         g_free (tmpdir);
314
315         if (path)
316                 *path = filepath;
317
318         return TNY_FS_STREAM (tny_fs_stream_new (fd));
319 }
320
321 typedef struct 
322 {
323         gboolean cancel;
324         GList *result;
325         GtkWidget* dialog;
326         GtkWidget* progress;
327         GError* error;
328 } ModestGetSupportedAuthInfo;
329
330 static void on_camel_account_get_supported_secure_authentication_status (
331         GObject *self, TnyStatus *status, gpointer user_data)
332 {
333         /*ModestGetSupportedAuthInfo* info = (ModestGetSupportedAuthInfo*) user_data;*/
334 }
335
336 static gboolean
337 on_idle_secure_auth_finished (gpointer user_data)
338 {
339         ModestGetSupportedAuthInfo *info = (ModestGetSupportedAuthInfo*)user_data;
340         /* Operation has finished, close the dialog. Control continues after
341          * gtk_dialog_run in modest_maemo_utils_get_supported_secure_authentication_methods() */
342
343         /* This is a GDK lock because we are an idle callback and
344          * the code below is or does Gtk+ code */
345
346         gdk_threads_enter(); /* CHECKED */
347         gtk_dialog_response (GTK_DIALOG (info->dialog), GTK_RESPONSE_ACCEPT);
348         gdk_threads_leave(); /* CHECKED */
349
350         return FALSE;
351 }
352
353 static void
354 on_camel_account_get_supported_secure_authentication (
355   TnyCamelAccount *self, gboolean cancelled,
356   TnyList *auth_types, GError *err, 
357   gpointer user_data)
358 {
359         ModestGetSupportedAuthInfo *info = (ModestGetSupportedAuthInfo*)user_data;
360         g_return_if_fail (info);
361         
362
363         /* Free everything if the actual action was canceled */
364         if (info->cancel)
365         {
366                 /* The operation was canceled and the ownership of the info given to us
367                  * so that we could still check the cancel flag. */
368                 g_slice_free (ModestGetSupportedAuthInfo, info);
369                 info = NULL;
370         }
371         else
372         {
373                 if (err)
374                 {
375                         if (info->error) {
376                                 g_error_free (info->error);
377                                 info->error = NULL;
378                         }
379                         
380                         info->error = g_error_copy (err);
381                 }
382
383                 if (!auth_types) {
384                         g_warning ("DEBUG: %s: auth_types is NULL.\n", __FUNCTION__);
385                 }
386                 else if (tny_list_get_length(auth_types) == 0) {
387                         g_warning ("DEBUG: %s: auth_types is an empty TnyList.\n", __FUNCTION__);
388                 } else
389                 {
390                         ModestPairList* pairs = modest_protocol_info_get_auth_protocol_pair_list ();
391   
392                         /* Get the enum value for the strings: */
393                         GList *result = NULL;
394                         TnyIterator* iter = tny_list_create_iterator(auth_types);
395                         while (!tny_iterator_is_done(iter)) {
396                                 TnyPair *pair = TNY_PAIR(tny_iterator_get_current(iter));
397                                 const gchar *auth_name = NULL;
398                                 if (pair) {
399                                         auth_name = tny_pair_get_name(pair);
400                                         g_object_unref (pair);
401                                         pair = NULL;
402                                 }
403
404                                 printf("DEBUG: %s: auth_name=%s\n", __FUNCTION__, auth_name);
405
406                                 ModestAuthProtocol proto = modest_protocol_info_get_auth_protocol (auth_name);
407                                 if(proto != MODEST_PROTOCOL_AUTH_NONE)
408                                                 result = g_list_prepend(result, GINT_TO_POINTER(proto));
409
410                                 tny_iterator_next(iter);
411                         }
412                         g_object_unref (iter);
413
414                         modest_pair_list_free (pairs);
415         
416                         info->result = result;
417                 }
418
419                 printf("DEBUG: finished\n");
420                                 
421                 /* Close the dialog in a main thread */
422                 g_idle_add(on_idle_secure_auth_finished, info);
423         }
424 }
425
426 static void
427 on_secure_auth_cancel(GtkWidget* dialog, int response, gpointer user_data)
428 {
429         if(response == GTK_RESPONSE_REJECT || response == GTK_RESPONSE_DELETE_EVENT)
430         {
431                 ModestGetSupportedAuthInfo *info = (ModestGetSupportedAuthInfo*)user_data;
432                 g_return_if_fail(info);
433                 /* This gives the ownership of the info to the worker thread. */
434                 info->result = NULL;
435                 info->cancel = TRUE;
436         }
437 }
438
439 GList*
440 modest_maemo_utils_get_supported_secure_authentication_methods (ModestTransportStoreProtocol proto, 
441         const gchar* hostname, gint port, const gchar* username, GtkWindow *parent_window, GError** error)
442 {
443         g_return_val_if_fail (proto != MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN, NULL);
444         
445         /* We need a connection to get the capabilities; */
446         if (!modest_platform_connect_and_wait (GTK_WINDOW (parent_window), NULL))
447                 return NULL;
448          
449         /*
450         result = g_list_append (result, GINT_TO_POINTER (MODEST_PROTOCOL_AUTH_CRAMMD5));
451         */
452         
453         /* Create a TnyCamelAccount so we can use 
454          * tny_camel_account_get_supported_secure_authentication(): */
455         TnyAccount * tny_account = NULL;
456         switch (proto) {
457         case MODEST_PROTOCOL_TRANSPORT_SENDMAIL:
458         case MODEST_PROTOCOL_TRANSPORT_SMTP:
459                 tny_account = TNY_ACCOUNT(tny_camel_transport_account_new ()); break;
460         case MODEST_PROTOCOL_STORE_POP:
461                 tny_account = TNY_ACCOUNT(tny_camel_pop_store_account_new ()); break;
462         case MODEST_PROTOCOL_STORE_IMAP:
463                 tny_account = TNY_ACCOUNT(tny_camel_imap_store_account_new ()); break;
464         case MODEST_PROTOCOL_STORE_MAILDIR:
465         case MODEST_PROTOCOL_STORE_MBOX:
466                 tny_account = TNY_ACCOUNT(tny_camel_store_account_new()); break;
467         default:
468                 tny_account = NULL;
469         }
470
471         
472         if (!tny_account) {
473                 g_printerr ("%s could not create tny account.", __FUNCTION__);
474                 return NULL;
475         }
476         
477         /* Set proto, so that the prepare_func() vfunc will work when we call 
478          * set_session(): */
479          /* TODO: Why isn't this done in account_new()? */
480         tny_account_set_proto (tny_account,
481                                modest_protocol_info_get_transport_store_protocol_name(proto));
482
483         tny_account_set_hostname (tny_account, hostname);
484         /* Required for POP, at least */
485         tny_account_set_user (tny_account, username);
486                                
487         if(port > 0)
488                 tny_account_set_port (tny_account, port);
489                 
490         /* Set the session for the account, so we can use it: */
491         ModestTnyAccountStore *account_store = modest_runtime_get_account_store ();
492         TnySessionCamel *session = 
493                 modest_tny_account_store_get_session (TNY_ACCOUNT_STORE (account_store));
494         g_return_val_if_fail (session, NULL);
495         tny_camel_account_set_session (TNY_CAMEL_ACCOUNT(tny_account), session);
496         
497         
498         /* Ask camel to ask the server, asynchronously: */
499         ModestGetSupportedAuthInfo *info = g_slice_new (ModestGetSupportedAuthInfo);
500         info->result = NULL;
501         info->cancel = FALSE;
502         info->error = NULL;
503         info->progress = gtk_progress_bar_new();
504         /* TODO: Need logical_ID for the title: */
505         info->dialog = gtk_dialog_new_with_buttons(_("Authentication"),
506                                                    parent_window, GTK_DIALOG_MODAL,
507                                                    _("mcen_bd_dialog_cancel"),
508                                                    GTK_RESPONSE_REJECT,
509                                                    NULL);
510         //gtk_window_set_default_size(GTK_WINDOW(info->dialog), 300, 100);
511         
512         g_signal_connect(G_OBJECT(info->dialog), "response", G_CALLBACK(on_secure_auth_cancel), info);
513         
514         gtk_container_add(GTK_CONTAINER(GTK_DIALOG(info->dialog)->vbox),
515                           gtk_label_new("Checking for supported authentication types..."));
516         gtk_container_add(GTK_CONTAINER(GTK_DIALOG(info->dialog)->vbox), info->progress);
517         gtk_widget_show_all(info->dialog);
518         gtk_progress_bar_pulse(GTK_PROGRESS_BAR(info->progress));
519         
520         printf ("DEBUG: %s: STARTING.\n", __FUNCTION__);
521         tny_camel_account_get_supported_secure_authentication (
522                 TNY_CAMEL_ACCOUNT (tny_account),
523                 on_camel_account_get_supported_secure_authentication,
524                 on_camel_account_get_supported_secure_authentication_status,
525                 info);
526
527         gtk_dialog_run (GTK_DIALOG (info->dialog));
528         
529         gtk_widget_destroy(info->dialog);
530                         
531         GList *result = info->result;
532         if (!info->cancel)
533         {
534                 if (info->error) {
535                         gchar * debug_url_string = tny_account_get_url_string  (tny_account);
536                         g_warning ("DEBUG: %s:\n  error: %s\n  account url: %s", __FUNCTION__, info->error->message, 
537                                 debug_url_string);
538                         g_free (debug_url_string);
539                         
540                         g_propagate_error(error, info->error);
541                         info->error = NULL;
542                 }
543
544                 g_slice_free (ModestGetSupportedAuthInfo, info);
545                 info = NULL;
546         }
547         else
548         {
549                 // Tell the caller that the operation was canceled so it can
550                 // make a difference
551                 g_set_error(error,
552                             modest_maemo_utils_get_supported_secure_authentication_error_quark(),
553                             MODEST_MAEMO_UTILS_GET_SUPPORTED_SECURE_AUTHENTICATION_ERROR_CANCELED,
554                             "User has canceled query");
555         }
556
557         return result;
558 }
559
560 void
561 modest_maemo_utils_setup_images_filechooser (GtkFileChooser *chooser)
562 {
563         gchar *images_folder;
564         GtkFileFilter *file_filter;
565         GList *image_mimetypes_list;
566         GList *node;
567
568         g_return_if_fail (GTK_IS_FILE_CHOOSER (chooser));
569
570         /* Set the default folder to images folder */
571         images_folder = g_build_filename (g_get_home_dir (), 
572                                           MODEST_MAEMO_UTILS_MYDOCS_FOLDER,
573                                           MODEST_MAEMO_UTILS_DEFAULT_IMAGE_FOLDER, NULL);
574         gtk_file_chooser_set_current_folder (chooser, images_folder);
575         g_free (images_folder);
576
577         /* Set the images mime filter */
578         file_filter = gtk_file_filter_new ();
579 #ifdef MODEST_HAVE_HILDON0_WIDGETS
580         image_mimetypes_list = osso_mime_get_mime_types_for_category (OSSO_MIME_CATEGORY_IMAGES);
581 #else
582         image_mimetypes_list = hildon_mime_get_mime_types_for_category (HILDON_MIME_CATEGORY_IMAGES);
583 #endif
584         for (node = image_mimetypes_list; node != NULL; node = g_list_next (node)) {
585                 gtk_file_filter_add_mime_type (file_filter, node->data);
586         }
587         gtk_file_chooser_set_filter (chooser, file_filter);
588 #ifdef MODEST_HAVE_HILDON0_WIDGETS
589         osso_mime_types_list_free (image_mimetypes_list);
590 #else
591         hildon_mime_types_list_free (image_mimetypes_list);
592 #endif
593
594 }
595
596 #if 0
597 static void
598 on_hide (GtkDialog *dialog, gpointer user_data)
599 {
600         /* Just destroy the dialog: */
601         gtk_widget_destroy (GTK_WIDGET (dialog));
602 }
603 #endif
604
605 #if 0 /* Not used now. */
606 /* user_data for the idle callback: */
607 typedef struct 
608 {
609         GtkWindow *parent_window;
610         gchar *message;
611 } ModestIdleNoteInfo;
612
613 static gboolean
614 on_idle_show_information(gpointer user_data)
615 {
616         ModestIdleNoteInfo *info = (ModestIdleNoteInfo*)user_data;
617         
618         modest_maemo_show_information_note_and_forget (info->parent_window, info->message);
619         
620         g_free (info->message);
621         g_slice_free (ModestIdleNoteInfo, info);
622         
623         return FALSE; /* Don't call this again. */
624 }
625
626 void 
627 modest_maemo_show_information_note_in_main_context_and_forget (GtkWindow *parent_window, 
628                                                                const gchar* message)
629 {
630         ModestIdleNoteInfo *info = g_slice_new (ModestIdleNoteInfo);
631         info->parent_window = parent_window;
632         info->message = g_strdup (message);
633         
634         g_idle_add (on_idle_show_information, info);
635 }
636 #endif
637
638 void 
639 modest_maemo_show_dialog_and_forget (GtkWindow *parent_window, 
640                                      GtkDialog *dialog)
641 {
642         gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);
643         
644         /* Destroy the dialog when it is closed: */
645         g_signal_connect_swapped (dialog, 
646                                   "response", 
647                                   G_CALLBACK (gtk_widget_destroy), 
648                                   dialog);
649
650         gtk_widget_show (GTK_WIDGET (dialog));
651 }
652
653
654
655 void
656 modest_maemo_set_thumbable_scrollbar (GtkScrolledWindow *win, 
657                                       gboolean thumbable)
658 {
659         g_return_if_fail (GTK_IS_SCROLLED_WINDOW(win));
660 #ifdef MODEST_HAVE_HILDON1_WIDGETS              
661         hildon_helper_set_thumb_scrollbar (win, thumbable);
662 #endif /* MODEST_HAVE_HILDON1_WIDGETS */
663 }
664
665 void
666 modest_maemo_toggle_action_set_active_block_notify (GtkToggleAction *action, gboolean value)
667 {
668         GSList *proxies = NULL;
669
670         g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
671
672         for (proxies = gtk_action_get_proxies (GTK_ACTION (action));
673              proxies != NULL; proxies = g_slist_next (proxies)) {
674                 GtkWidget *widget = (GtkWidget *) proxies->data;
675                 gtk_action_block_activate_from (GTK_ACTION (action), widget);
676         }
677
678         gtk_toggle_action_set_active (action, value);
679
680         for (proxies = gtk_action_get_proxies (GTK_ACTION (action));
681              proxies != NULL; proxies = g_slist_next (proxies)) {
682                 GtkWidget *widget = (GtkWidget *) proxies->data;
683                 gtk_action_unblock_activate_from (GTK_ACTION (action), widget);
684         }
685
686 }
687
688
689 FILE*
690 modest_maemo_open_mcc_mapping_file (void)
691 {
692         FILE* result;
693         
694         const gchar* path;
695         const gchar* path1 = MODEST_OPERATOR_WIZARD_MCC_MAPPING;
696         const gchar* path2 = MODEST_MCC_MAPPING;
697         
698         if (access(path1, R_OK) == 0) 
699                 path = path1;
700         else if (access(path2, R_OK) == 0)
701                 path = path2;
702         else {
703                 g_warning ("%s: neither '%s' nor '%s' is a readable mapping file",
704                            __FUNCTION__, path1, path2);
705                 return NULL;
706         }
707         
708         result = fopen (path, "r");
709         if (!result) {
710                 g_warning ("%s: error opening mapping file '%s': %s",
711                            __FUNCTION__, path, strerror(errno));
712                 return NULL;
713         }
714         return result;
715 }
716