* src/maemo/modest-platform.c:
[modest] / src / maemo / modest-platform.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 #include <config.h>
31 #include <glib/gi18n.h>
32 #include <modest-platform.h>
33 #include <modest-runtime.h>
34 #include <modest-main-window.h>
35 #include <modest-header-view.h>
36 #include "maemo/modest-maemo-global-settings-dialog.h"
37 #include "modest-widget-memory.h"
38 #include <modest-hildon-includes.h>
39 #include <osso-helplib.h>
40 #include <dbus_api/modest-dbus-callbacks.h>
41 #include <libosso-abook/osso-abook.h>
42 #include <maemo/modest-osso-autosave-callbacks.h>
43 #include <libosso.h>
44 #include <alarmd/alarm_event.h> /* For alarm_event_add(), etc. */
45 #include <tny-maemo-conic-device.h>
46 #include <tny-folder.h>
47 #include <tny-camel-imap-store-account.h>
48 #include <tny-camel-pop-store-account.h>
49 #include <gtk/gtkicontheme.h>
50 #include <gtk/gtkmenuitem.h>
51 #include <gtk/gtkmain.h>
52 #include <modest-text-utils.h>
53 #include <string.h>
54
55
56 #define HILDON_OSSO_URI_ACTION "uri-action"
57 #define URI_ACTION_COPY "copy:"
58
59 static osso_context_t *osso_context = NULL;
60
61 static void  folder_name_insensitive_press (GtkWidget *widget, ModestWindow *window);
62         
63 static void     
64 on_modest_conf_update_interval_changed (ModestConf* self, const gchar *key, 
65         ModestConfEvent event, gpointer user_data)
66 {
67         if (strcmp (key, MODEST_CONF_UPDATE_INTERVAL) == 0) {
68                 const guint update_interval_minutes = 
69                         modest_conf_get_int (self, MODEST_CONF_UPDATE_INTERVAL, NULL);
70                 modest_platform_set_update_interval (update_interval_minutes);
71         }
72 }
73
74 gboolean
75 modest_platform_init (int argc, char *argv[])
76 {
77         osso_hw_state_t hw_state = { 0 };
78         DBusConnection *con;    
79
80         osso_context =
81                 osso_initialize(PACKAGE,PACKAGE_VERSION,
82                                 FALSE, NULL);   
83         if (!osso_context) {
84                 g_printerr ("modest: failed to acquire osso context\n");
85                 return FALSE;
86         }
87
88         if ((con = osso_get_dbus_connection (osso_context)) == NULL) {
89                 g_printerr ("modest: could not get dbus connection\n");
90                 return FALSE;
91
92         }
93         
94         /* Add a D-Bus handler to be used when the main osso-rpc 
95          * D-Bus handler has not handled something.
96          * We use this for D-Bus methods that need to use more complex types 
97          * than osso-rpc supports. 
98          */
99         if (!dbus_connection_add_filter (con,
100                                          modest_dbus_req_filter,
101                                          NULL,
102                                          NULL)) {
103
104                 g_printerr ("modest: Could not add D-Bus filter\n");
105                 return FALSE;
106         }
107
108         /* Register our simple D-Bus callbacks, via the osso API: */
109         osso_return_t result = osso_rpc_set_cb_f(osso_context, 
110                                MODEST_DBUS_SERVICE, 
111                                MODEST_DBUS_OBJECT, 
112                                MODEST_DBUS_IFACE,
113                                modest_dbus_req_handler, NULL /* user_data */);
114         if (result != OSSO_OK) {
115                 g_printerr ("modest: Error setting D-BUS callback (%d)\n", result);
116                 return FALSE;
117         }
118
119         /* Add handler for Exit D-BUS messages.
120          * Not used because osso_application_set_exit_cb() is deprecated and obsolete:
121         result = osso_application_set_exit_cb(osso_context,
122                                           modest_dbus_exit_event_handler,
123                                           (gpointer) NULL);
124         if (result != OSSO_OK) {
125                 g_print("Error setting exit callback (%d)\n", result);
126                 return OSSO_ERROR;
127         }
128         */
129
130         /* Register hardware event dbus callback: */
131         hw_state.shutdown_ind = TRUE;
132         osso_hw_set_event_cb(osso_context, NULL,/*&hw_state*/ modest_osso_cb_hw_state_handler, NULL);
133
134         /* Register osso auto-save callbacks: */
135         result = osso_application_set_autosave_cb (osso_context, 
136                 modest_on_osso_application_autosave, NULL /* user_data */);
137         if (result != OSSO_OK) {
138                 g_printerr ("modest: osso_application_set_autosave_cb() failed.\n");
139                 return FALSE;
140         }
141         
142
143         /* Make sure that the update interval is changed whenever its gconf key 
144          * is changed: */
145         ModestConf *conf = modest_runtime_get_conf ();
146         g_signal_connect (G_OBJECT(conf),
147                           "key_changed",
148                           G_CALLBACK (on_modest_conf_update_interval_changed), 
149                           NULL);
150                           
151         /* Get the initial update interval from gconf: */
152         on_modest_conf_update_interval_changed(conf, MODEST_CONF_UPDATE_INTERVAL,
153                 MODEST_CONF_EVENT_KEY_CHANGED, NULL);
154
155         /* initialize the addressbook */
156         if (!osso_abook_init (&argc, &argv, osso_context)) {
157                 g_printerr ("modest: failed to initialized addressbook\n");
158                 return FALSE;
159         }
160                 
161         return TRUE;
162 }
163
164 TnyDevice*
165 modest_platform_get_new_device (void)
166 {
167         return TNY_DEVICE (tny_maemo_conic_device_new ());
168 }
169
170
171 const gchar*
172 guess_mime_type_from_name (const gchar* name)
173 {
174         int i;
175         const gchar* ext;
176         const static gchar* octet_stream= "application/octet-stream";
177         const static gchar* mime_map[][2] = {
178                 { "pdf",  "application/pdf"},
179                 { "doc",  "application/msword"},
180                 { "xls",  "application/excel"},
181                 { "png",  "image/png" },
182                 { "gif",  "image/gif" },
183                 { "jpg",  "image/jpeg"},
184                 { "jpeg", "image/jpeg"},
185                 { "mp3",  "audio/mp3" }
186         };
187
188         if (!name)
189                 return octet_stream;
190         
191         ext = g_strrstr (name, ".");
192         if (!ext)
193                 return octet_stream;
194         
195         for (i = 0; i != G_N_ELEMENTS(mime_map); ++i) {
196                 if (!g_ascii_strcasecmp (mime_map[i][0], ext + 1)) /* +1: ignore '.'*/
197                         return mime_map[i][1];
198         }
199         return octet_stream;
200 }
201
202
203 gchar*
204 modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
205                                           gchar **effective_mime_type)
206 {
207         GString *mime_str = NULL;
208         gchar *icon_name  = NULL;
209         gchar **icons, **cursor;
210         
211         
212         g_return_val_if_fail (name || mime_type, NULL);
213
214         if (!mime_type || !g_ascii_strcasecmp (mime_type, "application/octet-stream")) 
215                 mime_str = g_string_new (guess_mime_type_from_name(name));
216         else {
217                 mime_str = g_string_new (mime_type);
218                 g_string_ascii_down (mime_str);
219         }
220
221 #ifdef MODEST_HAVE_OSSO_MIME
222         icons = osso_mime_get_icon_names (mime_str->str, NULL);
223 #else
224         icons = hildon_mime_get_icon_names (mime_str->str, NULL);
225 #endif /*MODEST_HAVE_OSSO_MIME*/
226         for (cursor = icons; cursor; ++cursor) {
227                 if (!g_ascii_strcasecmp (*cursor, "gnome-mime-message") ||
228                     !g_ascii_strcasecmp (*cursor, "gnome-mime-message-rfc822")) {
229                         icon_name = g_strdup ("qgn_list_messagin");
230                         break;
231                 } else if (gtk_icon_theme_has_icon (gtk_icon_theme_get_default(), *cursor)) {
232                         icon_name = g_strdup (*cursor);
233                         break;
234                 }
235         }
236         g_strfreev (icons);
237
238         if (effective_mime_type)
239                 *effective_mime_type = g_string_free (mime_str, FALSE);
240         else
241                 g_string_free (mime_str, TRUE);
242
243         return icon_name;
244 }
245
246
247
248
249 #ifdef MODEST_HAVE_OSSO_MIME
250 gboolean 
251 modest_platform_activate_uri (const gchar *uri)
252 {
253         OssoURIAction *action;
254         gboolean result = FALSE;
255         GSList *actions, *iter = NULL;
256         const gchar *scheme;
257         
258         g_return_val_if_fail (uri, FALSE);
259         if (!uri)
260                 return FALSE;
261
262         /* the default action should be email */
263         scheme = osso_uri_get_scheme_from_uri (uri, NULL);
264         actions = osso_uri_get_actions (scheme, NULL);
265         
266         for (iter = actions; iter; iter = g_slist_next (iter)) {
267                 action = (OssoURIAction*) iter->data;
268                 if (action && strcmp (osso_uri_action_get_name (action), "uri_link_compose_email") == 0) {
269                         GError *err = NULL;
270                         result = osso_uri_open (uri, action, &err);
271                         if (!result && err) {
272                                 g_printerr ("modest: modest_platform_activate_uri : %s",
273                                             err->message ? err->message : "unknown error");
274                                 g_error_free (err);
275                         }
276                         break;
277                 }
278         }
279
280         /* if we could open it with email, try something else */
281         if (!result)
282                 result = osso_uri_open (uri, NULL, NULL);       
283         
284                         
285         if (!result)
286                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
287         return result;
288 }
289
290 #else /* !MODEST_HAVE_OSSO_MIME*/
291
292 gboolean 
293 modest_platform_activate_uri (const gchar *uri)
294 {
295         HildonURIAction *action;
296         gboolean result = FALSE;
297         GSList *actions, *iter = NULL;
298         const gchar *scheme;
299         
300         g_return_val_if_fail (uri, FALSE);
301         if (!uri)
302                 return FALSE;
303
304         scheme = hildon_uri_get_scheme_from_uri (uri, NULL);
305         actions = hildon_uri_get_actions (scheme, NULL);
306         
307         for (iter = actions; iter; iter = g_slist_next (iter)) {
308                 action = (HildonURIAction*) iter->data;
309                 if (action && strcmp (hildon_uri_action_get_service (action), "com.nokia.modest") == 0) {
310                         GError *err = NULL;
311                         result = hildon_uri_open (uri, action, &err);
312                         if (!result && err) {
313                                 g_printerr ("modest: modest_platform_activate_uri : %s",
314                                             err->message ? err->message : "unknown error");
315                                 g_error_free (err);
316                         }
317                         break;
318                 }
319         }
320         
321         /* if we could open it with email, try something else */
322         if (!result)
323                 result = hildon_uri_open (uri, NULL, NULL);     
324                 
325         if (!result)
326                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
327         
328         return result;
329 }
330
331
332 #endif /* MODEST_HAVE_OSSO_MIME*/
333
334 gboolean 
335 modest_platform_activate_file (const gchar *path, const gchar *mime_type)
336 {
337         gint result;
338         DBusConnection *con;
339         gchar *uri_path = NULL;
340         GString *mime_str = NULL;
341
342         if (!mime_type || !g_ascii_strcasecmp (mime_type, "application/octet-stream")) 
343                 mime_str = g_string_new (guess_mime_type_from_name(path));
344         else {
345                 mime_str = g_string_new (mime_type);
346                 g_string_ascii_down (mime_str);
347         }
348
349         uri_path = g_strconcat ("file://", path, NULL);
350         
351         con = osso_get_dbus_connection (osso_context);
352 #ifdef MODEST_HAVE_OSSO_MIME
353         result = osso_mime_open_file_with_mime_type (con, uri_path, mime_str->str);
354 #else
355         result = hildon_mime_open_file_with_mime_type (con, uri_path, mime_str->str);
356 #endif /*MODEST_HAVE_OSSO_MIME*/
357         g_string_free (mime_str, TRUE);
358
359         if (result != 1)
360                 modest_platform_run_information_dialog (NULL, _("mcen_ni_noregistered_viewer"));
361         return result != 1;
362 }
363
364 typedef struct  {
365         GSList *actions;
366         gchar  *uri;
367 } ModestPlatformPopupInfo;
368
369 static gboolean
370 delete_uri_popup (GtkWidget *menu,
371                   GdkEvent *event,
372                   gpointer userdata)
373 {
374         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
375
376         g_free (popup_info->uri);
377 #ifdef MODEST_HAVE_OSSO_MIME
378         osso_uri_free_actions (popup_info->actions);
379 #else
380         hildon_uri_free_actions (popup_info->actions);
381 #endif /*MODEST_HAVE_OSSO_MIME*/
382         return FALSE;
383 }
384
385 static void
386 activate_uri_popup_item (GtkMenuItem *menu_item,
387                          gpointer userdata)
388 {
389         GSList *node;
390         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
391         const gchar* action_name;
392
393         action_name = g_object_get_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION);
394         if (!action_name) {
395                 g_printerr ("modest: no action name defined\n");
396                 return;
397         }
398
399         /* special handling for the copy menu item -- copy the uri to the clipboard */
400         /* if it's a copy thingy, the uri will look like 'copy:http://slashdot.org' */
401         if (g_str_has_prefix (action_name, URI_ACTION_COPY)) {
402                 GtkClipboard *clipboard = gtk_clipboard_get (GDK_NONE);
403                 action_name += strlen(URI_ACTION_COPY); /* jump past the prefix */
404
405                 if (g_str_has_prefix (action_name, "mailto:")) /* ignore mailto: prefixes */
406                         action_name += strlen ("mailto:");
407                 
408                 gtk_clipboard_set_text (clipboard, action_name, strlen (action_name));
409                 return; /* we're done */
410         }
411         
412         /* now, the real uri-actions... */
413         for (node = popup_info->actions; node != NULL; node = g_slist_next (node)) {
414 #ifdef MODEST_HAVE_OSSO_MIME
415                 OssoURIAction *action = (OssoURIAction *) node->data;
416                 if (strcmp (action_name, osso_uri_action_get_name (action))==0) {
417                         osso_uri_open (popup_info->uri, action, NULL);
418                         break;
419                 }
420 #else
421                 HildonURIAction *action = (HildonURIAction *) node->data;
422                 if (strcmp (action_name, hildon_uri_action_get_name (action))==0) {
423                         hildon_uri_open (popup_info->uri, action, NULL);
424                         break;
425                 }
426 #endif /*MODEST_HAVE_OSSO_MIME*/
427         }
428 }
429
430 gboolean 
431 modest_platform_show_uri_popup (const gchar *uri)
432 {
433         gchar *scheme;
434         GSList *actions_list;
435
436         if (uri == NULL)
437                 return FALSE;
438         
439 #ifdef MODEST_HAVE_OSSO_MIME
440         scheme = osso_uri_get_scheme_from_uri (uri, NULL);
441         actions_list = osso_uri_get_actions (scheme, NULL);
442 #else
443         scheme = hildon_uri_get_scheme_from_uri (uri, NULL);
444         actions_list = hildon_uri_get_actions (scheme, NULL);
445 #endif /* MODEST_HAVE_OSSO_MIME */
446         if (actions_list != NULL) {
447                 GSList *node;
448                 GtkWidget *menu = gtk_menu_new ();
449                 ModestPlatformPopupInfo *popup_info = g_new0 (ModestPlatformPopupInfo, 1);
450
451                 popup_info->actions = actions_list;
452                 popup_info->uri = g_strdup (uri);
453               
454                 for (node = actions_list; node != NULL; node = g_slist_next (node)) {
455                         GtkWidget *menu_item;
456                         const gchar *action_name;
457                         const gchar *translation_domain;
458 #ifdef MODEST_HAVE_OSSO_MIME
459                         OssoURIAction *action = (OssoURIAction *) node->data;
460                         action_name = osso_uri_action_get_name (action);
461                         translation_domain = osso_uri_action_get_translation_domain (action);
462                         menu_item = gtk_menu_item_new_with_label (dgettext(translation_domain,action_name));
463                         g_object_set_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION, (gpointer)action_name);
464                         /* hack, we add it as a gobject property*/
465                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),
466                                           popup_info);
467                         
468                         if (osso_uri_is_default_action (action, NULL)) {
469                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
470                         } else {
471                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
472                         }
473 #else
474                         HildonURIAction *action = (HildonURIAction *) node->data;
475                         action_name = hildon_uri_action_get_name (action);
476                         translation_domain = hildon_uri_action_get_translation_domain (action);
477                         menu_item = gtk_menu_item_new_with_label (dgettext(translation_domain, action_name));
478                         g_object_set_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION, (gpointer)action_name);  /* hack */
479                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),
480                                           popup_info);
481                                                                   
482                         if (hildon_uri_is_default_action (action, NULL)) {
483                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
484                         } else {
485                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
486                         }
487 #endif /*MODEST_HAVE_OSSO_MIME*/
488                         gtk_widget_show (menu_item);
489                 }
490
491                 /* always add the copy item */
492                 GtkWidget* menu_item = gtk_menu_item_new_with_label (dgettext("osso-uri", "uri_link_copy_link_location"));
493                 g_object_set_data_full (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION,
494                                         g_strconcat (URI_ACTION_COPY, uri, NULL),
495                                         g_free);
496                 g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),NULL);
497                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
498                 gtk_widget_show (menu_item);
499
500                 
501                 /* and what to do when the link is deleted */
502                 g_signal_connect (G_OBJECT (menu), "delete-event", G_CALLBACK (delete_uri_popup), popup_info);
503                 gtk_menu_popup (GTK_MENU(menu), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time ());
504                                                   
505         } else {
506                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
507         }
508         
509         g_free (scheme);
510         return TRUE;
511 }
512
513
514 GdkPixbuf*
515 modest_platform_get_icon (const gchar *name)
516 {
517         GError *err = NULL;
518         GdkPixbuf* pixbuf = NULL;
519         GtkIconTheme *current_theme = NULL;
520
521         g_return_val_if_fail (name, NULL);
522         
523         if (g_str_has_suffix (name, ".png")) { /*FIXME: hack*/
524                 pixbuf = gdk_pixbuf_new_from_file (name, &err);
525                 if (!pixbuf) {
526                         g_printerr ("modest: error loading icon '%s': %s\n",
527                                     name, err->message);
528                         g_error_free (err);
529                         return NULL;
530                 }
531                 return pixbuf;
532         }
533
534         current_theme = gtk_icon_theme_get_default ();
535         pixbuf = gtk_icon_theme_load_icon (current_theme, name, 26,
536                                            GTK_ICON_LOOKUP_NO_SVG,
537                                            &err);
538         if (!pixbuf) {
539                 g_printerr ("modest: error loading theme icon '%s': %s\n",
540                             name, err->message);
541                 g_error_free (err);
542         } 
543         return pixbuf;
544 }
545
546 const gchar*
547 modest_platform_get_app_name (void)
548 {
549         return _("mcen_ap_name");
550 }
551
552 static void 
553 entry_insert_text (GtkEditable *editable,
554                    const gchar *text,
555                    gint         length,
556                    gint        *position,
557                    gpointer     data)
558 {
559         gchar *chars;
560         gint chars_length;
561
562         chars = gtk_editable_get_chars (editable, 0, -1);
563         chars_length = g_utf8_strlen (chars, -1);
564
565         /* Show WID-INF036 */
566         if (chars_length >= 20) {
567                 hildon_banner_show_information  (gtk_widget_get_parent (GTK_WIDGET (data)), NULL,
568                                                  _CS("ckdg_ib_maximum_characters_reached"));
569         } else {
570                 if (chars_length == 0) {
571                         /* A blank space is not valid as first character */
572                         if (strcmp (text, " ")) {
573                                 GtkWidget *ok_button;
574                                 GList *buttons;
575
576                                 /* Show OK button */
577                                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (data)->action_area));
578                                 ok_button = GTK_WIDGET (buttons->next->data);
579                                 gtk_widget_set_sensitive (ok_button, TRUE);
580                                 g_list_free (buttons);
581                         }
582                 }
583
584                 /* Write the text in the entry */
585                 g_signal_handlers_block_by_func (editable,
586                                                  (gpointer) entry_insert_text, data);
587                 gtk_editable_insert_text (editable, text, length, position);
588                 g_signal_handlers_unblock_by_func (editable,
589                                                    (gpointer) entry_insert_text, data);
590         }
591         /* Do not allow further processing */
592         g_signal_stop_emission_by_name (editable, "insert_text");
593 }
594
595 static void
596 entry_changed (GtkEditable *editable,
597                gpointer     user_data)
598 {
599         gchar *chars;
600
601         chars = gtk_editable_get_chars (editable, 0, -1);
602         g_return_if_fail (chars != NULL);
603
604         /* Dimm OK button. Do not allow also the "/" */
605         if (strlen (chars) == 0 || strchr (chars, '/')) {
606                 GtkWidget *ok_button;
607                 GList *buttons;
608
609                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (user_data)->action_area));
610                 ok_button = GTK_WIDGET (buttons->next->data);
611                 gtk_widget_set_sensitive (ok_button, FALSE);
612
613                 g_list_free (buttons);
614         } else if (g_utf8_strlen (chars,-1) >= 21)
615                 hildon_banner_show_information  (gtk_widget_get_parent (GTK_WIDGET (user_data)), NULL,
616                                                  _CS("ckdg_ib_maximum_characters_reached"));            
617         /* Free */
618         g_free (chars);
619 }
620
621 static void
622 launch_sort_headers_dialog (GtkWindow *parent_window,
623                             HildonSortDialog *dialog)
624 {
625         ModestHeaderView *header_view = NULL;
626         GList *cols = NULL;
627         GtkSortType sort_type;
628         gint sort_key;
629         gint default_key = 0;
630         gint result;
631         gboolean outgoing = FALSE;
632         gint current_sort_colid = -1;
633         GtkSortType current_sort_type;
634         gint attachments_sort_id;
635         gint priority_sort_id;
636         GtkTreeSortable *sortable;
637         
638         /* Get header window */
639         if (MODEST_IS_MAIN_WINDOW (parent_window)) {
640                 header_view = MODEST_HEADER_VIEW(modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(parent_window),
641                                                                                       MODEST_WIDGET_TYPE_HEADER_VIEW));
642         }
643         if (!header_view) return;
644
645         /* Add sorting keys */
646         cols = modest_header_view_get_columns (header_view);
647         if (cols == NULL) return;
648         int sort_model_ids[6];
649         int sort_ids[6];
650
651
652         outgoing = (GPOINTER_TO_INT (g_object_get_data(G_OBJECT(cols->data), MODEST_HEADER_VIEW_COLUMN))==
653                     MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT);
654
655         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_sender_recipient"));
656         if (outgoing) {
657                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_TO_COLUMN;
658                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT;
659         } else {
660                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FROM_COLUMN;
661                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN;
662         }
663
664         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_date"));
665         if (outgoing) {
666                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_SENT_TIME_T_COLUMN;
667                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE;
668         } else {
669                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_RECEIVED_TIME_T_COLUMN;
670                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE;
671         }
672         default_key = sort_key;
673
674         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_subject"));
675         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_SUBJECT_COLUMN;
676         if (outgoing)
677                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT;
678         else
679                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN;
680
681         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_attachment"));
682         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN;
683         sort_ids[sort_key] = TNY_HEADER_FLAG_ATTACHMENTS;
684         attachments_sort_id = sort_key;
685
686         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_size"));
687         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_MESSAGE_SIZE_COLUMN;
688         sort_ids[sort_key] = 0;
689
690         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_priority"));
691         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN;
692         sort_ids[sort_key] = TNY_HEADER_FLAG_PRIORITY;
693         priority_sort_id = sort_key;
694
695         sortable = GTK_TREE_SORTABLE (gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)))));
696         /* Launch dialogs */
697         if (!gtk_tree_sortable_get_sort_column_id (sortable,
698                                                    &current_sort_colid, &current_sort_type)) {
699                 hildon_sort_dialog_set_sort_key (dialog, default_key);
700                 hildon_sort_dialog_set_sort_order (dialog, GTK_SORT_DESCENDING);
701         } else {
702                 hildon_sort_dialog_set_sort_order (dialog, current_sort_type);
703                 if (current_sort_colid == TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN) {
704                         gpointer flags_sort_type_pointer;
705                         flags_sort_type_pointer = g_object_get_data (G_OBJECT (cols->data), MODEST_HEADER_VIEW_FLAG_SORT);
706                         if (GPOINTER_TO_INT (flags_sort_type_pointer) == TNY_HEADER_FLAG_PRIORITY)
707                                 hildon_sort_dialog_set_sort_key (dialog, priority_sort_id);
708                         else
709                                 hildon_sort_dialog_set_sort_key (dialog, attachments_sort_id);
710                 } else {
711                         gint current_sort_keyid = 0;
712                         while (current_sort_keyid < 6) {
713                                 if (sort_model_ids[current_sort_keyid] == current_sort_colid)
714                                         break;
715                                 else 
716                                         current_sort_keyid++;
717                         }
718                         hildon_sort_dialog_set_sort_key (dialog, current_sort_keyid);
719                 }
720         }
721
722         result = gtk_dialog_run (GTK_DIALOG (dialog));
723         if (result == GTK_RESPONSE_OK) {
724                 sort_key = hildon_sort_dialog_get_sort_key (dialog);
725                 sort_type = hildon_sort_dialog_get_sort_order (dialog);
726                 if (sort_model_ids[sort_key] == TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN) {
727                         g_object_set_data (G_OBJECT(cols->data), MODEST_HEADER_VIEW_FLAG_SORT,
728                                            GINT_TO_POINTER (sort_ids[sort_key]));
729                         /* This is a hack to make it resort rows always when flag fields are
730                          * selected. If we do not do this, changing sort field from priority to
731                          * attachments does not work */
732                         modest_header_view_sort_by_column_id (header_view, 0, sort_type);
733                 } else {
734                         gtk_tree_view_column_set_sort_column_id (GTK_TREE_VIEW_COLUMN (cols->data), 
735                                                                  sort_model_ids[sort_key]);
736                 }
737
738                 modest_header_view_sort_by_column_id (header_view, sort_model_ids[sort_key], sort_type);
739                 gtk_tree_sortable_sort_column_changed (sortable);
740         }
741
742         modest_widget_memory_save (modest_runtime_get_conf (),
743                                    G_OBJECT (header_view), MODEST_CONF_HEADER_VIEW_KEY);
744         
745         while (gtk_events_pending ())
746                 gtk_main_iteration ();
747
748         /* free */
749         g_list_free(cols);      
750 }
751
752 static gint
753 modest_platform_run_folder_name_dialog (GtkWindow *parent_window,
754                                         const gchar *dialog_title,
755                                         const gchar *label_text,
756                                         const gchar *suggested_name,
757                                         gchar **folder_name)
758 {
759         GtkWidget *accept_btn = NULL; 
760         GtkWidget *dialog, *entry, *label, *hbox;
761         GList *buttons = NULL;
762         gint result;
763
764         /* Ask the user for the folder name */
765         dialog = gtk_dialog_new_with_buttons (dialog_title,
766                                               parent_window,
767                                               GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR | GTK_DIALOG_DESTROY_WITH_PARENT,
768                                               GTK_STOCK_OK,
769                                               GTK_RESPONSE_ACCEPT,
770                                               GTK_STOCK_CANCEL,
771                                               GTK_RESPONSE_REJECT,
772                                               NULL);
773
774         /* Add accept button (with unsensitive handler) */
775         buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (dialog)->action_area));
776         accept_btn = GTK_WIDGET (buttons->next->data);
777         g_signal_connect (G_OBJECT (accept_btn), "insensitive-press", G_CALLBACK (folder_name_insensitive_press), parent_window);
778
779         /* Create label and entry */
780         label = gtk_label_new (label_text);
781         /* TODO: check that the suggested name does not exist */
782         /* We set 21 as maximum because we want to show WID-INF036
783            when the user inputs more that 20 */
784         entry = gtk_entry_new_with_max_length (21);
785         if (suggested_name)
786                 gtk_entry_set_text (GTK_ENTRY (entry), suggested_name);
787         else
788                 gtk_entry_set_text (GTK_ENTRY (entry), _("mcen_ia_default_folder_name"));
789         gtk_entry_select_region (GTK_ENTRY (entry), 0, -1);
790
791         /* Track entry changes */
792         g_signal_connect (entry,
793                           "insert-text",
794                           G_CALLBACK (entry_insert_text),
795                           dialog);
796         g_signal_connect (entry,
797                           "changed",
798                           G_CALLBACK (entry_changed),
799                           dialog);
800
801         /* Create the hbox */
802         hbox = gtk_hbox_new (FALSE, 12);
803         gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, FALSE, 0);
804         gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, FALSE, 0);
805
806         /* Add hbox to dialog */
807         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
808                             hbox, FALSE, FALSE, 0);
809         
810         gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
811         
812         gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);
813         result = gtk_dialog_run (GTK_DIALOG(dialog));
814         if (result == GTK_RESPONSE_ACCEPT)
815                 *folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
816
817         gtk_widget_destroy (dialog);
818
819         while (gtk_events_pending ())
820                 gtk_main_iteration ();
821
822         return result;
823 }
824
825 static void  
826 folder_name_insensitive_press (GtkWidget *widget, ModestWindow *window)
827 {
828         hildon_banner_show_information (NULL, NULL, _("(empty)"));
829 }
830
831 gint
832 modest_platform_run_new_folder_dialog (GtkWindow *parent_window,
833                                        TnyFolderStore *parent_folder,
834                                        gchar *suggested_name,
835                                        gchar **folder_name)
836 {
837         return modest_platform_run_folder_name_dialog (parent_window, 
838                                                        _("mcen_ti_new_folder"),
839                                                        _("mcen_fi_new_folder_name"),
840                                                        suggested_name,
841                                                        folder_name);
842 }
843
844 gint
845 modest_platform_run_rename_folder_dialog (GtkWindow *parent_window,
846                                           TnyFolderStore *parent_folder,
847                                           const gchar *suggested_name,
848                                           gchar **folder_name)
849 {
850         return modest_platform_run_folder_name_dialog (parent_window, 
851                                                        _("New folder name"),
852                                                        _("Enter new folder name:"),
853                                                        suggested_name,
854                                                        folder_name);
855 }
856
857 gint
858 modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
859                                          const gchar *message)
860 {
861         GtkWidget *dialog;
862         gint response;
863
864         dialog = hildon_note_new_confirmation (parent_window, message);
865         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
866
867         response = gtk_dialog_run (GTK_DIALOG (dialog));
868
869         gtk_widget_destroy (GTK_WIDGET (dialog));
870
871         while (gtk_events_pending ())
872                 gtk_main_iteration ();
873
874         return response;
875 }
876
877 gint
878 modest_platform_run_yes_no_dialog (GtkWindow *parent_window,
879                                    const gchar *message)
880 {
881         GtkWidget *dialog;
882         gint response;
883
884         dialog = hildon_note_new_confirmation_add_buttons (parent_window, message,
885                                                            _("mcen_bd_yes"), GTK_RESPONSE_YES,
886                                                            _("mcen_bd_no"), GTK_RESPONSE_NO,
887                                                            NULL);
888         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
889
890         response = gtk_dialog_run (GTK_DIALOG (dialog));
891
892         gtk_widget_destroy (GTK_WIDGET (dialog));
893
894         while (gtk_events_pending ())
895                 gtk_main_iteration ();
896
897         return response;
898 }
899
900 void
901 modest_platform_run_information_dialog (GtkWindow *parent_window,
902                                         const gchar *message)
903 {
904         GtkWidget *dialog;
905
906         dialog = hildon_note_new_information (parent_window, message);
907
908         g_signal_connect_swapped (dialog,
909                                   "response", 
910                                   G_CALLBACK (gtk_widget_destroy),
911                                   dialog);
912
913         gtk_widget_show_all (dialog);
914 }
915
916
917
918 typedef struct
919 {
920         GMainLoop* loop;
921 } UtilIdleData;
922
923 static gboolean 
924 on_idle_connect_and_wait(gpointer user_data)
925 {
926         printf ("DEBUG: %s:\n", __FUNCTION__);
927         TnyDevice *device = modest_runtime_get_device();
928         if (!tny_device_is_online (device)) {
929                 gdk_threads_enter();
930                 tny_maemo_conic_device_connect (TNY_MAEMO_CONIC_DEVICE (device), NULL);
931                 gdk_threads_leave();
932         }
933         
934         /* Allow the function that requested this idle callback to continue: */
935         UtilIdleData *data = (UtilIdleData*)user_data;
936         if (data->loop)
937                 g_main_loop_quit (data->loop);
938         
939         return FALSE; /* Don't call this again. */
940 }
941
942 static gboolean connect_request_in_progress = FALSE;
943
944 /* This callback is used when connect_and_wait() is already queued as an idle callback.
945  * This can happen because the gtk_dialog_run() for the connection dialog 
946  * (at least in the fake scratchbox version) allows idle handlers to keep running.
947  */
948 static gboolean 
949 on_idle_wait_for_previous_connect_to_finish(gpointer user_data)
950 {
951         gboolean result = FALSE;
952         TnyDevice *device = modest_runtime_get_device();
953         if (tny_device_is_online (device))
954                 result = FALSE; /* Stop trying. */
955         else {
956                 /* Keep trying until connect_request_in_progress is FALSE. */
957                 if (connect_request_in_progress)
958                         result = TRUE; /* Keep trying */
959                 else {
960                         printf ("DEBUG: %s: other idle has finished.\n", __FUNCTION__);
961                                                 
962                         result = FALSE; /* Stop trying, now that a result should be available. */
963                 }
964         }
965         
966         if (result == FALSE) {
967                 /* Allow the function that requested this idle callback to continue: */
968                 UtilIdleData *data = (UtilIdleData*)user_data;
969                 if (data->loop)
970                         g_main_loop_quit (data->loop);  
971         }
972                 
973         return result;
974 }
975
976
977 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window)
978 {
979         if (connect_request_in_progress)
980                 return FALSE;
981                 
982         printf ("DEBUG: %s:\n", __FUNCTION__);
983         TnyDevice *device = modest_runtime_get_device();
984         
985         if (tny_device_is_online (device)) {
986                 printf ("DEBUG: %s: Already online.\n", __FUNCTION__);
987                 return TRUE;
988         } else
989         {
990                 printf ("DEBUG: %s: tny_device_is_online() returned FALSE\n", __FUNCTION__);
991         }
992                 
993         /* This blocks on the result: */
994         UtilIdleData *data = g_slice_new0 (UtilIdleData);
995         
996         GMainContext *context = NULL; /* g_main_context_new (); */
997         data->loop = g_main_loop_new (context, FALSE /* not running */);
998         
999         /* Cause the function to be run in an idle-handler, which is always 
1000          * in the main thread:
1001          */
1002         if (!connect_request_in_progress) {
1003                 printf ("DEBUG: %s: First request\n", __FUNCTION__);
1004                 connect_request_in_progress = TRUE;
1005                 g_idle_add (&on_idle_connect_and_wait, data);
1006         }
1007         else {
1008                 printf ("DEBUG: %s: nth request\n", __FUNCTION__);
1009                 g_idle_add_full (G_PRIORITY_LOW, &on_idle_wait_for_previous_connect_to_finish, data, NULL);
1010         }
1011
1012         /* This main loop will run until the idle handler has stopped it: */
1013         printf ("DEBUG: %s: before g_main_loop_run()\n", __FUNCTION__);
1014         GDK_THREADS_LEAVE();
1015         g_main_loop_run (data->loop);
1016         GDK_THREADS_ENTER();
1017         printf ("DEBUG: %s: after g_main_loop_run()\n", __FUNCTION__);
1018         connect_request_in_progress = FALSE;
1019         printf ("DEBUG: %s: Finished\n", __FUNCTION__);
1020         g_main_loop_unref (data->loop);
1021         /* g_main_context_unref (context); */
1022
1023         g_slice_free (UtilIdleData, data);
1024         
1025         return tny_device_is_online (device);
1026 }
1027
1028 gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_window, TnyAccount *account)
1029 {
1030         if (tny_account_get_account_type (account) == TNY_ACCOUNT_TYPE_STORE) {
1031                 if (!TNY_IS_CAMEL_POP_STORE_ACCOUNT (account) &&
1032                     !TNY_IS_CAMEL_IMAP_STORE_ACCOUNT (account)) {
1033                         /* This must be a maildir account, which does not require a connection: */
1034                         return TRUE;
1035                 }
1036         }
1037
1038         return modest_platform_connect_and_wait (parent_window);
1039 }
1040
1041 gboolean modest_platform_connect_and_wait_if_network_folderstore (GtkWindow *parent_window, TnyFolderStore *folder_store)
1042 {
1043         if (!folder_store)
1044                 return TRUE; /* Maybe it is something local. */
1045                 
1046         gboolean result = TRUE;
1047         if (TNY_IS_FOLDER (folder_store)) {
1048                 /* Get the folder's parent account: */
1049                 TnyAccount *account = tny_folder_get_account(TNY_FOLDER (folder_store));
1050                 if (account != NULL) {
1051                         result = modest_platform_connect_and_wait_if_network_account (NULL, account);
1052                         g_object_unref (account);
1053                 }
1054         } else if (TNY_IS_ACCOUNT (folder_store)) {
1055                 /* Use the folder store as an account: */
1056                 result = modest_platform_connect_and_wait_if_network_account (NULL, TNY_ACCOUNT (folder_store));
1057         }
1058
1059         return result;
1060 }
1061
1062 void
1063 modest_platform_run_sort_dialog (GtkWindow *parent_window,
1064                                  ModestSortDialogType type)
1065 {
1066         GtkWidget *dialog = NULL;
1067
1068         /* Build dialog */
1069         dialog = hildon_sort_dialog_new (parent_window);
1070         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
1071         
1072         /* Fill sort keys */
1073         switch (type) {
1074         case MODEST_SORT_HEADERS:
1075                 launch_sort_headers_dialog (parent_window, 
1076                                             HILDON_SORT_DIALOG(dialog));
1077                 break;
1078         }
1079         
1080         /* Free */
1081         gtk_widget_destroy (GTK_WIDGET (dialog));
1082 }
1083
1084
1085 gboolean modest_platform_set_update_interval (guint minutes)
1086 {
1087         ModestConf *conf = modest_runtime_get_conf ();
1088         if (!conf)
1089                 return FALSE;
1090                 
1091         cookie_t alarm_cookie = modest_conf_get_int (conf, MODEST_CONF_ALARM_ID, NULL);
1092
1093         /* Delete any existing alarm,
1094          * because we will replace it: */
1095         if (alarm_cookie) {
1096                 /* TODO: What does the alarm_event_del() return value mean? */
1097                 alarm_event_del(alarm_cookie);
1098                 alarm_cookie = 0;
1099                 modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, 0, NULL);
1100         }
1101         
1102         /* 0 means no updates: */
1103         if (minutes == 0)
1104                 return TRUE;
1105                 
1106      
1107         /* Register alarm: */
1108         
1109         /* Get current time: */
1110         time_t time_now;
1111         time (&time_now);
1112         struct tm *st_time = localtime (&time_now);
1113         
1114         /* Add minutes to tm_min field: */
1115         st_time->tm_min += minutes;
1116         
1117         /* Set the time in alarm_event_t structure: */
1118         alarm_event_t *event = g_new0(alarm_event_t, 1);
1119         event->alarm_time = mktime (st_time);
1120
1121         /* Specify what should happen when the alarm happens:
1122          * It should call this D-Bus method: */
1123          
1124         /* Note: I am surpised that alarmd can't just use the modest.service file
1125          * for this. murrayc. */
1126         event->dbus_path = g_strdup(PREFIX "/bin/modest");
1127         
1128         event->dbus_interface = g_strdup (MODEST_DBUS_IFACE);
1129         event->dbus_service = g_strdup (MODEST_DBUS_SERVICE);
1130         event->dbus_name = g_strdup (MODEST_DBUS_METHOD_SEND_RECEIVE);
1131
1132         /* Otherwise, a dialog will be shown if exect_name or dbus_path is NULL,
1133         even though we have specified no dialog text: */
1134         event->flags = ALARM_EVENT_NO_DIALOG;
1135         
1136         alarm_cookie = alarm_event_add (event);
1137
1138         /* now, free it */
1139         alarm_event_free (event);
1140         
1141         /* Store the alarm ID in GConf, so we can remove it later:
1142          * This is apparently valid between application instances. */
1143         modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, alarm_cookie, NULL);
1144         
1145         if (!alarm_cookie) {
1146             /* Error */
1147             const alarm_error_t alarm_error = alarmd_get_error ();
1148             printf ("Error setting alarm event. Error code: '%d'\n", alarm_error);
1149             
1150             /* Give people some clue: */
1151             /* The alarm API should have a function for this: */
1152             if (alarm_error == ALARMD_ERROR_DBUS) {
1153                 printf ("  ALARMD_ERROR_DBUS: An error with D-Bus occurred, probably coudn't get a D-Bus connection.\n");
1154             } else if (alarm_error == ALARMD_ERROR_CONNECTION) {
1155                 printf ("  ALARMD_ERROR_CONNECTION: Could not contact alarmd via D-Bus.\n");
1156             } else if (alarm_error == ALARMD_ERROR_INTERNAL) {
1157                 printf ("  ALARMD_ERROR_INTERNAL: Some alarmd or libalarm internal error, possibly a version mismatch.\n");
1158             } else if (alarm_error == ALARMD_ERROR_MEMORY) {
1159                 printf ("  ALARMD_ERROR_MEMORY: A memory allocation failed.\n");
1160             } else if (alarm_error == ALARMD_ERROR_ARGUMENT) {
1161                 printf ("  ALARMD_ERROR_ARGUMENT: An argument given by caller was invalid.\n");
1162             }
1163             
1164             return FALSE;
1165         }
1166         
1167         return TRUE;
1168 }
1169
1170 GtkWidget * 
1171 modest_platform_get_global_settings_dialog ()
1172 {
1173         return modest_maemo_global_settings_dialog_new ();
1174 }
1175
1176 void 
1177 modest_platform_on_new_msg (void)
1178 {
1179 #ifdef MODEST_HAVE_HILDON_NOTIFY
1180         HildonNotification *not;
1181
1182         /* Create a new notification. FIXME put the right values, need
1183            some more specs */
1184         not = hildon_notification_new ("TODO: (new email) Summary",
1185                                        "TODO: (new email) Description",
1186                                        "qgn_contact_group_chat_invitation",
1187                                        "system.note.dialog");
1188
1189         /* Play sound SR-SND-18. TODO: play the right file */
1190         /* TODO: Where is this declared? hildon_notification_set_sound (not, "/usr/share/sounds/ui-new_email.wav"); */
1191
1192         /* Set the led pattern */
1193         notify_notification_set_hint_int32 (NOTIFY_NOTIFICATION (not), "led-pattern", 3);
1194
1195         /* Notify. We need to do this in an idle because this function
1196            could be called from a thread */
1197         if (!notify_notification_show (NOTIFY_NOTIFICATION (not), NULL))
1198                 g_error ("Failed to send notification");
1199                 
1200         g_object_unref (not);
1201 #endif /*MODEST_HAVE_HILDON_NOTIFY*/
1202 }
1203
1204
1205 void
1206 modest_platform_show_help (GtkWindow *parent_window, 
1207                            const gchar *help_id)
1208 {
1209         osso_return_t result;
1210
1211         g_return_if_fail (help_id);
1212         g_return_if_fail (osso_context);
1213
1214         /* Show help */
1215 #ifdef MODEST_HAVE_OSSO_HELP
1216         result = ossohelp_show (osso_context, help_id, OSSO_HELP_SHOW_DIALOG);
1217 #else
1218         result = hildon_help_show (osso_context, help_id, OSSO_HELP_SHOW_DIALOG);
1219 #endif
1220
1221         if (result != OSSO_OK) {
1222                 gchar *error_msg;
1223                 error_msg = g_strdup_printf ("FIXME The help topic %s could not be found", help_id); 
1224                 hildon_banner_show_information (GTK_WIDGET (parent_window),
1225                                                 NULL,
1226                                                 error_msg);
1227                 g_free (error_msg);
1228         }
1229 }
1230
1231 void 
1232 modest_platform_show_search_messages (GtkWindow *parent_window)
1233 {
1234         osso_return_t result = OSSO_ERROR;
1235         
1236         result = osso_rpc_run_with_defaults (osso_context, "osso_global_search", "search_email", NULL, DBUS_TYPE_INVALID);
1237
1238         if (result != OSSO_OK) {
1239                 g_warning ("%s: osso_rpc_run_with_defaults() failed.\n", __FUNCTION__);
1240         }
1241 }
1242
1243 void 
1244 modest_platform_show_addressbook (GtkWindow *parent_window)
1245 {
1246         osso_return_t result = OSSO_ERROR;
1247         
1248         result = osso_rpc_run_with_defaults (osso_context, "osso_addressbook", "top_application", NULL, DBUS_TYPE_INVALID);
1249
1250         if (result != OSSO_OK) {
1251                 g_warning ("%s: osso_rpc_run_with_defaults() failed.\n", __FUNCTION__);
1252         }
1253 }
1254
1255 GtkWidget *
1256 modest_platform_create_folder_view (TnyFolderStoreQuery *query)
1257 {
1258         GtkWidget *widget = modest_folder_view_new (query);
1259
1260         /* Show all accounts by default */
1261         modest_folder_view_set_style (MODEST_FOLDER_VIEW (widget),
1262                                       MODEST_FOLDER_VIEW_STYLE_SHOW_ONE);
1263
1264         /* Restore settings */
1265         modest_widget_memory_restore (modest_runtime_get_conf(), 
1266                                       G_OBJECT (widget),
1267                                       MODEST_CONF_FOLDER_VIEW_KEY);
1268
1269         return widget;
1270 }
1271
1272 void 
1273 modest_platform_information_banner (GtkWidget *parent,
1274                                     const gchar *icon_name,
1275                                     const gchar *text)
1276 {
1277         hildon_banner_show_information (parent, icon_name, text);
1278 }
1279
1280 GtkWidget *
1281 modest_platform_animation_banner (GtkWidget *parent,
1282                                   const gchar *animation_name,
1283                                   const gchar *text)
1284 {
1285         GtkWidget *inf_note = NULL;
1286
1287         g_return_val_if_fail (text != NULL, NULL);
1288
1289         inf_note = hildon_banner_show_animation (parent, animation_name, text);
1290
1291         return inf_note;
1292 }