ce260a2f9ea05fab80e09919cbebe8206ace904e
[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         g_string_free (mime_str, TRUE);
355
356         if (result != 1)
357                 hildon_banner_show_information (NULL, NULL, _("mcen_ni_noregistered_viewer"));
358         return result != 1;
359 #else
360         result = hildon_mime_open_file_with_mime_type (con, uri_path, mime_str->str);
361         g_string_free (mime_str, TRUE);
362
363         if (result != 1)
364                 hildon_banner_show_information (NULL, NULL, _("mcen_ni_noregistered_viewer"));
365         return result != 1;
366 #endif /*MODEST_HAVE_OSSO_MIME*/
367
368 }
369
370 typedef struct  {
371         GSList *actions;
372         gchar  *uri;
373 } ModestPlatformPopupInfo;
374
375 static gboolean
376 delete_uri_popup (GtkWidget *menu,
377                   GdkEvent *event,
378                   gpointer userdata)
379 {
380         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
381
382         g_free (popup_info->uri);
383 #ifdef MODEST_HAVE_OSSO_MIME
384         osso_uri_free_actions (popup_info->actions);
385 #else
386         hildon_uri_free_actions (popup_info->actions);
387 #endif /*MODEST_HAVE_OSSO_MIME*/
388         return FALSE;
389 }
390
391 static void
392 activate_uri_popup_item (GtkMenuItem *menu_item,
393                          gpointer userdata)
394 {
395         GSList *node;
396         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
397         const gchar* action_name;
398
399         action_name = g_object_get_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION);
400         if (!action_name) {
401                 g_printerr ("modest: no action name defined\n");
402                 return;
403         }
404
405         /* special handling for the copy menu item -- copy the uri to the clipboard */
406         /* if it's a copy thingy, the uri will look like 'copy:http://slashdot.org' */
407         if (g_str_has_prefix (action_name, URI_ACTION_COPY)) {
408                 GtkClipboard *clipboard = gtk_clipboard_get (GDK_NONE);
409                 action_name += strlen(URI_ACTION_COPY); /* jump past the prefix */
410
411                 if (g_str_has_prefix (action_name, "mailto:")) /* ignore mailto: prefixes */
412                         action_name += strlen ("mailto:");
413                 
414                 gtk_clipboard_set_text (clipboard, action_name, strlen (action_name));
415                 return; /* we're done */
416         }
417         
418         /* now, the real uri-actions... */
419         for (node = popup_info->actions; node != NULL; node = g_slist_next (node)) {
420 #ifdef MODEST_HAVE_OSSO_MIME
421                 OssoURIAction *action = (OssoURIAction *) node->data;
422                 if (strcmp (action_name, osso_uri_action_get_name (action))==0) {
423                         osso_uri_open (popup_info->uri, action, NULL);
424                         break;
425                 }
426 #else
427                 HildonURIAction *action = (HildonURIAction *) node->data;
428                 if (strcmp (action_name, hildon_uri_action_get_name (action))==0) {
429                         hildon_uri_open (popup_info->uri, action, NULL);
430                         break;
431                 }
432 #endif /*MODEST_HAVE_OSSO_MIME*/
433         }
434 }
435
436 gboolean 
437 modest_platform_show_uri_popup (const gchar *uri)
438 {
439         gchar *scheme;
440         GSList *actions_list;
441
442         if (uri == NULL)
443                 return FALSE;
444         
445 #ifdef MODEST_HAVE_OSSO_MIME
446         scheme = osso_uri_get_scheme_from_uri (uri, NULL);
447         actions_list = osso_uri_get_actions (scheme, NULL);
448 #else
449         scheme = hildon_uri_get_scheme_from_uri (uri, NULL);
450         actions_list = hildon_uri_get_actions (scheme, NULL);
451 #endif /* MODEST_HAVE_OSSO_MIME */
452         if (actions_list != NULL) {
453                 GSList *node;
454                 GtkWidget *menu = gtk_menu_new ();
455                 ModestPlatformPopupInfo *popup_info = g_new0 (ModestPlatformPopupInfo, 1);
456
457                 popup_info->actions = actions_list;
458                 popup_info->uri = g_strdup (uri);
459               
460                 for (node = actions_list; node != NULL; node = g_slist_next (node)) {
461                         GtkWidget *menu_item;
462                         const gchar *action_name;
463                         const gchar *translation_domain;
464 #ifdef MODEST_HAVE_OSSO_MIME
465                         OssoURIAction *action = (OssoURIAction *) node->data;
466                         action_name = osso_uri_action_get_name (action);
467                         translation_domain = osso_uri_action_get_translation_domain (action);
468                         menu_item = gtk_menu_item_new_with_label (dgettext(translation_domain,action_name));
469                         g_object_set_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION, (gpointer)action_name);
470                         /* hack, we add it as a gobject property*/
471                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),
472                                           popup_info);
473                         
474                         if (osso_uri_is_default_action (action, NULL)) {
475                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
476                         } else {
477                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
478                         }
479 #else
480                         HildonURIAction *action = (HildonURIAction *) node->data;
481                         action_name = hildon_uri_action_get_name (action);
482                         translation_domain = hildon_uri_action_get_translation_domain (action);
483                         menu_item = gtk_menu_item_new_with_label (dgettext(translation_domain, action_name));
484                         g_object_set_data (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION, (gpointer)action_name);  /* hack */
485                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),
486                                           popup_info);
487                                                                   
488                         if (hildon_uri_is_default_action (action, NULL)) {
489                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
490                         } else {
491                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
492                         }
493 #endif /*MODEST_HAVE_OSSO_MIME*/
494                         gtk_widget_show (menu_item);
495                 }
496
497                 /* always add the copy item */
498                 GtkWidget* menu_item = gtk_menu_item_new_with_label (dgettext("osso-uri", "uri_link_copy_link_location"));
499                 g_object_set_data_full (G_OBJECT(menu_item), HILDON_OSSO_URI_ACTION,
500                                         g_strconcat (URI_ACTION_COPY, uri, NULL),
501                                         g_free);
502                 g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item),NULL);
503                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
504                 gtk_widget_show (menu_item);
505
506                 
507                 /* and what to do when the link is deleted */
508                 g_signal_connect (G_OBJECT (menu), "delete-event", G_CALLBACK (delete_uri_popup), popup_info);
509                 gtk_menu_popup (GTK_MENU(menu), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time ());
510                                                   
511         } else {
512                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
513         }
514         
515         g_free (scheme);
516         return TRUE;
517 }
518
519
520 GdkPixbuf*
521 modest_platform_get_icon (const gchar *name)
522 {
523         GError *err = NULL;
524         GdkPixbuf* pixbuf = NULL;
525         GtkIconTheme *current_theme = NULL;
526
527         g_return_val_if_fail (name, NULL);
528         
529         if (g_str_has_suffix (name, ".png")) { /*FIXME: hack*/
530                 pixbuf = gdk_pixbuf_new_from_file (name, &err);
531                 if (!pixbuf) {
532                         g_printerr ("modest: error loading icon '%s': %s\n",
533                                     name, err->message);
534                         g_error_free (err);
535                         return NULL;
536                 }
537                 return pixbuf;
538         }
539
540         current_theme = gtk_icon_theme_get_default ();
541         pixbuf = gtk_icon_theme_load_icon (current_theme, name, 26,
542                                            GTK_ICON_LOOKUP_NO_SVG,
543                                            &err);
544         if (!pixbuf) {
545                 g_printerr ("modest: error loading theme icon '%s': %s\n",
546                             name, err->message);
547                 g_error_free (err);
548         } 
549         return pixbuf;
550 }
551
552 const gchar*
553 modest_platform_get_app_name (void)
554 {
555         return _("mcen_ap_name");
556 }
557
558 static void 
559 entry_insert_text (GtkEditable *editable,
560                    const gchar *text,
561                    gint         length,
562                    gint        *position,
563                    gpointer     data)
564 {
565         gchar *chars;
566         gint chars_length;
567
568         chars = gtk_editable_get_chars (editable, 0, -1);
569         chars_length = g_utf8_strlen (chars, -1);
570
571         /* Show WID-INF036 */
572         if (chars_length >= 20) {
573                 hildon_banner_show_information  (gtk_widget_get_parent (GTK_WIDGET (data)), NULL,
574                                                  _CS("ckdg_ib_maximum_characters_reached"));
575         } else {
576                 if (chars_length == 0) {
577                         /* A blank space is not valid as first character */
578                         if (strcmp (text, " ")) {
579                                 GtkWidget *ok_button;
580                                 GList *buttons;
581
582                                 /* Show OK button */
583                                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (data)->action_area));
584                                 ok_button = GTK_WIDGET (buttons->next->data);
585                                 gtk_widget_set_sensitive (ok_button, TRUE);
586                                 g_list_free (buttons);
587                         }
588                 }
589
590                 /* Write the text in the entry */
591                 g_signal_handlers_block_by_func (editable,
592                                                  (gpointer) entry_insert_text, data);
593                 gtk_editable_insert_text (editable, text, length, position);
594                 g_signal_handlers_unblock_by_func (editable,
595                                                    (gpointer) entry_insert_text, data);
596         }
597         /* Do not allow further processing */
598         g_signal_stop_emission_by_name (editable, "insert_text");
599 }
600
601 static void
602 entry_changed (GtkEditable *editable,
603                gpointer     user_data)
604 {
605         gchar *chars;
606
607         chars = gtk_editable_get_chars (editable, 0, -1);
608         g_return_if_fail (chars != NULL);
609
610         /* Dimm OK button. Do not allow also the "/" */
611         if (strlen (chars) == 0 || strchr (chars, '/')) {
612                 GtkWidget *ok_button;
613                 GList *buttons;
614
615                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (user_data)->action_area));
616                 ok_button = GTK_WIDGET (buttons->next->data);
617                 gtk_widget_set_sensitive (ok_button, FALSE);
618
619                 g_list_free (buttons);
620         } else if (g_utf8_strlen (chars,-1) >= 21)
621                 hildon_banner_show_information  (gtk_widget_get_parent (GTK_WIDGET (user_data)), NULL,
622                                                  _CS("ckdg_ib_maximum_characters_reached"));            
623         /* Free */
624         g_free (chars);
625 }
626
627 static void
628 launch_sort_headers_dialog (GtkWindow *parent_window,
629                             HildonSortDialog *dialog)
630 {
631         ModestHeaderView *header_view = NULL;
632         GList *cols = NULL;
633         GtkSortType sort_type;
634         gint sort_key;
635         gint default_key = 0;
636         gint result;
637         gboolean outgoing = FALSE;
638         gint current_sort_colid = -1;
639         GtkSortType current_sort_type;
640         gint attachments_sort_id;
641         gint priority_sort_id;
642         GtkTreeSortable *sortable;
643         
644         /* Get header window */
645         if (MODEST_IS_MAIN_WINDOW (parent_window)) {
646                 header_view = MODEST_HEADER_VIEW(modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(parent_window),
647                                                                                       MODEST_WIDGET_TYPE_HEADER_VIEW));
648         }
649         if (!header_view) return;
650
651         /* Add sorting keys */
652         cols = modest_header_view_get_columns (header_view);
653         if (cols == NULL) return;
654         int sort_model_ids[6];
655         int sort_ids[6];
656
657
658         outgoing = (GPOINTER_TO_INT (g_object_get_data(G_OBJECT(cols->data), MODEST_HEADER_VIEW_COLUMN))==
659                     MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT);
660
661         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_sender_recipient"));
662         if (outgoing) {
663                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_TO_COLUMN;
664                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT;
665         } else {
666                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FROM_COLUMN;
667                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN;
668         }
669
670         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_date"));
671         if (outgoing) {
672                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_SENT_TIME_T_COLUMN;
673                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE;
674         } else {
675                 sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_RECEIVED_TIME_T_COLUMN;
676                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE;
677         }
678         default_key = sort_key;
679
680         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_subject"));
681         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_SUBJECT_COLUMN;
682         if (outgoing)
683                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT;
684         else
685                 sort_ids[sort_key] = MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN;
686
687         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_attachment"));
688         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN;
689         sort_ids[sort_key] = TNY_HEADER_FLAG_ATTACHMENTS;
690         attachments_sort_id = sort_key;
691
692         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_size"));
693         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_MESSAGE_SIZE_COLUMN;
694         sort_ids[sort_key] = 0;
695
696         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_priority"));
697         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN;
698         sort_ids[sort_key] = TNY_HEADER_FLAG_PRIORITY;
699         priority_sort_id = sort_key;
700
701         sortable = GTK_TREE_SORTABLE (gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)))));
702         /* Launch dialogs */
703         if (!gtk_tree_sortable_get_sort_column_id (sortable,
704                                                    &current_sort_colid, &current_sort_type)) {
705                 hildon_sort_dialog_set_sort_key (dialog, default_key);
706                 hildon_sort_dialog_set_sort_order (dialog, GTK_SORT_DESCENDING);
707         } else {
708                 hildon_sort_dialog_set_sort_order (dialog, current_sort_type);
709                 if (current_sort_colid == TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN) {
710                         gpointer flags_sort_type_pointer;
711                         flags_sort_type_pointer = g_object_get_data (G_OBJECT (cols->data), MODEST_HEADER_VIEW_FLAG_SORT);
712                         if (GPOINTER_TO_INT (flags_sort_type_pointer) == TNY_HEADER_FLAG_PRIORITY)
713                                 hildon_sort_dialog_set_sort_key (dialog, priority_sort_id);
714                         else
715                                 hildon_sort_dialog_set_sort_key (dialog, attachments_sort_id);
716                 } else {
717                         gint current_sort_keyid = 0;
718                         while (current_sort_keyid < 6) {
719                                 if (sort_model_ids[current_sort_keyid] == current_sort_colid)
720                                         break;
721                                 else 
722                                         current_sort_keyid++;
723                         }
724                         hildon_sort_dialog_set_sort_key (dialog, current_sort_keyid);
725                 }
726         }
727
728         result = gtk_dialog_run (GTK_DIALOG (dialog));
729         if (result == GTK_RESPONSE_OK) {
730                 sort_key = hildon_sort_dialog_get_sort_key (dialog);
731                 sort_type = hildon_sort_dialog_get_sort_order (dialog);
732                 if (sort_model_ids[sort_key] == TNY_GTK_HEADER_LIST_MODEL_FLAGS_COLUMN) {
733                         g_object_set_data (G_OBJECT(cols->data), MODEST_HEADER_VIEW_FLAG_SORT,
734                                            GINT_TO_POINTER (sort_ids[sort_key]));
735                         /* This is a hack to make it resort rows always when flag fields are
736                          * selected. If we do not do this, changing sort field from priority to
737                          * attachments does not work */
738                         modest_header_view_sort_by_column_id (header_view, 0, sort_type);
739                 } else {
740                         gtk_tree_view_column_set_sort_column_id (GTK_TREE_VIEW_COLUMN (cols->data), 
741                                                                  sort_model_ids[sort_key]);
742                 }
743
744                 modest_header_view_sort_by_column_id (header_view, sort_model_ids[sort_key], sort_type);
745                 gtk_tree_sortable_sort_column_changed (sortable);
746         }
747
748         modest_widget_memory_save (modest_runtime_get_conf (),
749                                    G_OBJECT (header_view), MODEST_CONF_HEADER_VIEW_KEY);
750         
751         while (gtk_events_pending ())
752                 gtk_main_iteration ();
753
754         /* free */
755         g_list_free(cols);      
756 }
757
758 static gint
759 modest_platform_run_folder_name_dialog (GtkWindow *parent_window,
760                                         const gchar *dialog_title,
761                                         const gchar *label_text,
762                                         const gchar *suggested_name,
763                                         gchar **folder_name)
764 {
765         GtkWidget *accept_btn = NULL; 
766         GtkWidget *dialog, *entry, *label, *hbox;
767         GList *buttons = NULL;
768         gint result;
769
770         /* Ask the user for the folder name */
771         dialog = gtk_dialog_new_with_buttons (dialog_title,
772                                               parent_window,
773                                               GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR | GTK_DIALOG_DESTROY_WITH_PARENT,
774                                               GTK_STOCK_OK,
775                                               GTK_RESPONSE_ACCEPT,
776                                               GTK_STOCK_CANCEL,
777                                               GTK_RESPONSE_REJECT,
778                                               NULL);
779
780         /* Add accept button (with unsensitive handler) */
781         buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (dialog)->action_area));
782         accept_btn = GTK_WIDGET (buttons->next->data);
783         g_signal_connect (G_OBJECT (accept_btn), "insensitive-press", G_CALLBACK (folder_name_insensitive_press), parent_window);
784
785         /* Create label and entry */
786         label = gtk_label_new (label_text);
787         /* TODO: check that the suggested name does not exist */
788         /* We set 21 as maximum because we want to show WID-INF036
789            when the user inputs more that 20 */
790         entry = gtk_entry_new_with_max_length (21);
791         if (suggested_name)
792                 gtk_entry_set_text (GTK_ENTRY (entry), suggested_name);
793         else
794                 gtk_entry_set_text (GTK_ENTRY (entry), _("mcen_ia_default_folder_name"));
795         gtk_entry_select_region (GTK_ENTRY (entry), 0, -1);
796
797         /* Track entry changes */
798         g_signal_connect (entry,
799                           "insert-text",
800                           G_CALLBACK (entry_insert_text),
801                           dialog);
802         g_signal_connect (entry,
803                           "changed",
804                           G_CALLBACK (entry_changed),
805                           dialog);
806
807         /* Create the hbox */
808         hbox = gtk_hbox_new (FALSE, 12);
809         gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, FALSE, 0);
810         gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, FALSE, 0);
811
812         /* Add hbox to dialog */
813         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
814                             hbox, FALSE, FALSE, 0);
815         
816         gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
817         
818         gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);
819         result = gtk_dialog_run (GTK_DIALOG(dialog));
820         if (result == GTK_RESPONSE_ACCEPT)
821                 *folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
822
823         gtk_widget_destroy (dialog);
824
825         while (gtk_events_pending ())
826                 gtk_main_iteration ();
827
828         return result;
829 }
830
831 static void  
832 folder_name_insensitive_press (GtkWidget *widget, ModestWindow *window)
833 {
834         hildon_banner_show_information (NULL, NULL, _("(empty)"));
835 }
836
837 gint
838 modest_platform_run_new_folder_dialog (GtkWindow *parent_window,
839                                        TnyFolderStore *parent_folder,
840                                        gchar *suggested_name,
841                                        gchar **folder_name)
842 {
843         return modest_platform_run_folder_name_dialog (parent_window, 
844                                                        _("mcen_ti_new_folder"),
845                                                        _("mcen_fi_new_folder_name"),
846                                                        suggested_name,
847                                                        folder_name);
848 }
849
850 gint
851 modest_platform_run_rename_folder_dialog (GtkWindow *parent_window,
852                                           TnyFolderStore *parent_folder,
853                                           const gchar *suggested_name,
854                                           gchar **folder_name)
855 {
856         return modest_platform_run_folder_name_dialog (parent_window, 
857                                                        _("New folder name"),
858                                                        _("Enter new folder name:"),
859                                                        suggested_name,
860                                                        folder_name);
861 }
862
863 gint
864 modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
865                                          const gchar *message)
866 {
867         GtkWidget *dialog;
868         gint response;
869
870         dialog = hildon_note_new_confirmation (parent_window, message);
871         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
872
873         response = gtk_dialog_run (GTK_DIALOG (dialog));
874
875         gtk_widget_destroy (GTK_WIDGET (dialog));
876
877         while (gtk_events_pending ())
878                 gtk_main_iteration ();
879
880         return response;
881 }
882
883 gint
884 modest_platform_run_yes_no_dialog (GtkWindow *parent_window,
885                                    const gchar *message)
886 {
887         GtkWidget *dialog;
888         gint response;
889
890         dialog = hildon_note_new_confirmation_add_buttons (parent_window, message,
891                                                            _("mcen_bd_yes"), GTK_RESPONSE_YES,
892                                                            _("mcen_bd_no"), GTK_RESPONSE_NO,
893                                                            NULL);
894         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
895
896         response = gtk_dialog_run (GTK_DIALOG (dialog));
897
898         gtk_widget_destroy (GTK_WIDGET (dialog));
899
900         while (gtk_events_pending ())
901                 gtk_main_iteration ();
902
903         return response;
904 }
905
906 void
907 modest_platform_run_information_dialog (GtkWindow *parent_window,
908                                         const gchar *message)
909 {
910         GtkWidget *dialog;
911
912         dialog = hildon_note_new_information (parent_window, message);
913
914         g_signal_connect_swapped (dialog,
915                                   "response", 
916                                   G_CALLBACK (gtk_widget_destroy),
917                                   dialog);
918
919         gtk_widget_show_all (dialog);
920 }
921
922
923
924 typedef struct
925 {
926         GMainLoop* loop;
927 } UtilIdleData;
928
929 static gboolean 
930 on_idle_connect_and_wait(gpointer user_data)
931 {
932         printf ("DEBUG: %s:\n", __FUNCTION__);
933         TnyDevice *device = modest_runtime_get_device();
934         if (!tny_device_is_online (device)) {
935                 gdk_threads_enter();
936                 tny_maemo_conic_device_connect (TNY_MAEMO_CONIC_DEVICE (device), NULL);
937                 gdk_threads_leave();
938         }
939         
940         /* Allow the function that requested this idle callback to continue: */
941         UtilIdleData *data = (UtilIdleData*)user_data;
942         if (data->loop)
943                 g_main_loop_quit (data->loop);
944         
945         return FALSE; /* Don't call this again. */
946 }
947
948 static gboolean connect_request_in_progress = FALSE;
949
950 /* This callback is used when connect_and_wait() is already queued as an idle callback.
951  * This can happen because the gtk_dialog_run() for the connection dialog 
952  * (at least in the fake scratchbox version) allows idle handlers to keep running.
953  */
954 static gboolean 
955 on_idle_wait_for_previous_connect_to_finish(gpointer user_data)
956 {
957         gboolean result = FALSE;
958         TnyDevice *device = modest_runtime_get_device();
959         if (tny_device_is_online (device))
960                 result = FALSE; /* Stop trying. */
961         else {
962                 /* Keep trying until connect_request_in_progress is FALSE. */
963                 if (connect_request_in_progress)
964                         result = TRUE; /* Keep trying */
965                 else {
966                         printf ("DEBUG: %s: other idle has finished.\n", __FUNCTION__);
967                                                 
968                         result = FALSE; /* Stop trying, now that a result should be available. */
969                 }
970         }
971         
972         if (result == FALSE) {
973                 /* Allow the function that requested this idle callback to continue: */
974                 UtilIdleData *data = (UtilIdleData*)user_data;
975                 if (data->loop)
976                         g_main_loop_quit (data->loop);  
977         }
978                 
979         return result;
980 }
981
982
983 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window)
984 {
985         if (connect_request_in_progress)
986                 return FALSE;
987                 
988         printf ("DEBUG: %s:\n", __FUNCTION__);
989         TnyDevice *device = modest_runtime_get_device();
990         
991         if (tny_device_is_online (device)) {
992                 printf ("DEBUG: %s: Already online.\n", __FUNCTION__);
993                 return TRUE;
994         } else
995         {
996                 printf ("DEBUG: %s: tny_device_is_online() returned FALSE\n", __FUNCTION__);
997         }
998                 
999         /* This blocks on the result: */
1000         UtilIdleData *data = g_slice_new0 (UtilIdleData);
1001         
1002         GMainContext *context = NULL; /* g_main_context_new (); */
1003         data->loop = g_main_loop_new (context, FALSE /* not running */);
1004         
1005         /* Cause the function to be run in an idle-handler, which is always 
1006          * in the main thread:
1007          */
1008         if (!connect_request_in_progress) {
1009                 printf ("DEBUG: %s: First request\n", __FUNCTION__);
1010                 connect_request_in_progress = TRUE;
1011                 g_idle_add (&on_idle_connect_and_wait, data);
1012         }
1013         else {
1014                 printf ("DEBUG: %s: nth request\n", __FUNCTION__);
1015                 g_idle_add_full (G_PRIORITY_LOW, &on_idle_wait_for_previous_connect_to_finish, data, NULL);
1016         }
1017
1018         /* This main loop will run until the idle handler has stopped it: */
1019         printf ("DEBUG: %s: before g_main_loop_run()\n", __FUNCTION__);
1020         GDK_THREADS_LEAVE();
1021         g_main_loop_run (data->loop);
1022         GDK_THREADS_ENTER();
1023         printf ("DEBUG: %s: after g_main_loop_run()\n", __FUNCTION__);
1024         connect_request_in_progress = FALSE;
1025         printf ("DEBUG: %s: Finished\n", __FUNCTION__);
1026         g_main_loop_unref (data->loop);
1027         /* g_main_context_unref (context); */
1028
1029         g_slice_free (UtilIdleData, data);
1030         
1031         return tny_device_is_online (device);
1032 }
1033
1034 gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_window, TnyAccount *account)
1035 {
1036         if (tny_account_get_account_type (account) == TNY_ACCOUNT_TYPE_STORE) {
1037                 if (!TNY_IS_CAMEL_POP_STORE_ACCOUNT (account) &&
1038                     !TNY_IS_CAMEL_IMAP_STORE_ACCOUNT (account)) {
1039                         /* This must be a maildir account, which does not require a connection: */
1040                         return TRUE;
1041                 }
1042         }
1043
1044         return modest_platform_connect_and_wait (parent_window);
1045 }
1046
1047 gboolean modest_platform_connect_and_wait_if_network_folderstore (GtkWindow *parent_window, TnyFolderStore *folder_store)
1048 {
1049         if (!folder_store)
1050                 return TRUE; /* Maybe it is something local. */
1051                 
1052         gboolean result = TRUE;
1053         if (TNY_IS_FOLDER (folder_store)) {
1054                 /* Get the folder's parent account: */
1055                 TnyAccount *account = tny_folder_get_account(TNY_FOLDER (folder_store));
1056                 result = modest_platform_connect_and_wait_if_network_account (NULL, account);
1057                 g_object_unref (account);
1058         } else if (TNY_IS_ACCOUNT (folder_store)) {
1059                 /* Use the folder store as an account: */
1060                 result = modest_platform_connect_and_wait_if_network_account (NULL, TNY_ACCOUNT (folder_store));
1061         }
1062
1063         return result;
1064 }
1065
1066 void
1067 modest_platform_run_sort_dialog (GtkWindow *parent_window,
1068                                  ModestSortDialogType type)
1069 {
1070         GtkWidget *dialog = NULL;
1071
1072         /* Build dialog */
1073         dialog = hildon_sort_dialog_new (parent_window);
1074         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
1075         
1076         /* Fill sort keys */
1077         switch (type) {
1078         case MODEST_SORT_HEADERS:
1079                 launch_sort_headers_dialog (parent_window, 
1080                                             HILDON_SORT_DIALOG(dialog));
1081                 break;
1082         }
1083         
1084         /* Free */
1085         gtk_widget_destroy (GTK_WIDGET (dialog));
1086 }
1087
1088
1089 gboolean modest_platform_set_update_interval (guint minutes)
1090 {
1091         ModestConf *conf = modest_runtime_get_conf ();
1092         if (!conf)
1093                 return FALSE;
1094                 
1095         cookie_t alarm_cookie = modest_conf_get_int (conf, MODEST_CONF_ALARM_ID, NULL);
1096
1097         /* Delete any existing alarm,
1098          * because we will replace it: */
1099         if (alarm_cookie) {
1100                 /* TODO: What does the alarm_event_del() return value mean? */
1101                 alarm_event_del(alarm_cookie);
1102                 alarm_cookie = 0;
1103                 modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, 0, NULL);
1104         }
1105         
1106         /* 0 means no updates: */
1107         if (minutes == 0)
1108                 return TRUE;
1109                 
1110      
1111         /* Register alarm: */
1112         
1113         /* Get current time: */
1114         time_t time_now;
1115         time (&time_now);
1116         struct tm *st_time = localtime (&time_now);
1117         
1118         /* Add minutes to tm_min field: */
1119         st_time->tm_min += minutes;
1120         
1121         /* Set the time in alarm_event_t structure: */
1122         alarm_event_t *event = g_new0(alarm_event_t, 1);
1123         event->alarm_time = mktime (st_time);
1124
1125         /* Specify what should happen when the alarm happens:
1126          * It should call this D-Bus method: */
1127          
1128         /* Note: I am surpised that alarmd can't just use the modest.service file
1129          * for this. murrayc. */
1130         event->dbus_path = g_strdup(PREFIX "/bin/modest");
1131         
1132         event->dbus_interface = g_strdup (MODEST_DBUS_IFACE);
1133         event->dbus_service = g_strdup (MODEST_DBUS_SERVICE);
1134         event->dbus_name = g_strdup (MODEST_DBUS_METHOD_SEND_RECEIVE);
1135
1136         /* Otherwise, a dialog will be shown if exect_name or dbus_path is NULL,
1137         even though we have specified no dialog text: */
1138         event->flags = ALARM_EVENT_NO_DIALOG;
1139         
1140         alarm_cookie = alarm_event_add (event);
1141
1142         /* now, free it */
1143         alarm_event_free (event);
1144         
1145         /* Store the alarm ID in GConf, so we can remove it later:
1146          * This is apparently valid between application instances. */
1147         modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, alarm_cookie, NULL);
1148         
1149         if (!alarm_cookie) {
1150             /* Error */
1151             const alarm_error_t alarm_error = alarmd_get_error ();
1152             printf ("Error setting alarm event. Error code: '%d'\n", alarm_error);
1153             
1154             /* Give people some clue: */
1155             /* The alarm API should have a function for this: */
1156             if (alarm_error == ALARMD_ERROR_DBUS) {
1157                 printf ("  ALARMD_ERROR_DBUS: An error with D-Bus occurred, probably coudn't get a D-Bus connection.\n");
1158             } else if (alarm_error == ALARMD_ERROR_CONNECTION) {
1159                 printf ("  ALARMD_ERROR_CONNECTION: Could not contact alarmd via D-Bus.\n");
1160             } else if (alarm_error == ALARMD_ERROR_INTERNAL) {
1161                 printf ("  ALARMD_ERROR_INTERNAL: Some alarmd or libalarm internal error, possibly a version mismatch.\n");
1162             } else if (alarm_error == ALARMD_ERROR_MEMORY) {
1163                 printf ("  ALARMD_ERROR_MEMORY: A memory allocation failed.\n");
1164             } else if (alarm_error == ALARMD_ERROR_ARGUMENT) {
1165                 printf ("  ALARMD_ERROR_ARGUMENT: An argument given by caller was invalid.\n");
1166             }
1167             
1168             return FALSE;
1169         }
1170         
1171         return TRUE;
1172 }
1173
1174 GtkWidget * 
1175 modest_platform_get_global_settings_dialog ()
1176 {
1177         return modest_maemo_global_settings_dialog_new ();
1178 }
1179
1180 void 
1181 modest_platform_on_new_msg (void)
1182 {
1183 #ifdef MODEST_HAVE_HILDON_NOTIFY
1184         HildonNotification *not;
1185
1186         /* Create a new notification. FIXME put the right values, need
1187            some more specs */
1188         not = hildon_notification_new ("TODO: (new email) Summary",
1189                                        "TODO: (new email) Description",
1190                                        "qgn_contact_group_chat_invitation",
1191                                        "system.note.dialog");
1192
1193         /* Play sound SR-SND-18. TODO: play the right file */
1194         /* TODO: Where is this declared? hildon_notification_set_sound (not, "/usr/share/sounds/ui-new_email.wav"); */
1195
1196         /* Set the led pattern */
1197         notify_notification_set_hint_int32 (NOTIFY_NOTIFICATION (not), "led-pattern", 3);
1198
1199         /* Notify. We need to do this in an idle because this function
1200            could be called from a thread */
1201         if (!notify_notification_show (NOTIFY_NOTIFICATION (not), NULL))
1202                 g_error ("Failed to send notification");
1203                 
1204         g_object_unref (not);
1205 #endif /*MODEST_HAVE_HILDON_NOTIFY*/
1206 }
1207
1208
1209 void
1210 modest_platform_show_help (GtkWindow *parent_window, 
1211                            const gchar *help_id)
1212 {
1213         osso_return_t result;
1214
1215         g_return_if_fail (help_id);
1216         g_return_if_fail (osso_context);
1217
1218         /* Show help */
1219 #ifdef MODEST_HAVE_OSSO_HELP
1220         result = ossohelp_show (osso_context, help_id, OSSO_HELP_SHOW_DIALOG);
1221 #else
1222         result = hildon_help_show (osso_context, help_id, OSSO_HELP_SHOW_DIALOG);
1223 #endif
1224
1225         if (result != OSSO_OK) {
1226                 gchar *error_msg;
1227                 error_msg = g_strdup_printf ("FIXME The help topic %s could not be found", help_id); 
1228                 hildon_banner_show_information (GTK_WIDGET (parent_window),
1229                                                 NULL,
1230                                                 error_msg);
1231                 g_free (error_msg);
1232         }
1233 }
1234
1235 void 
1236 modest_platform_show_search_messages (GtkWindow *parent_window)
1237 {
1238         osso_return_t result = OSSO_ERROR;
1239         
1240         result = osso_rpc_run_with_defaults (osso_context, "osso_global_search", "search_email", NULL, DBUS_TYPE_INVALID);
1241
1242         if (result != OSSO_OK) {
1243                 g_warning ("%s: osso_rpc_run_with_defaults() failed.\n", __FUNCTION__);
1244         }
1245 }
1246
1247 void 
1248 modest_platform_show_addressbook (GtkWindow *parent_window)
1249 {
1250         osso_return_t result = OSSO_ERROR;
1251         
1252         result = osso_rpc_run_with_defaults (osso_context, "osso_addressbook", "top_application", NULL, DBUS_TYPE_INVALID);
1253
1254         if (result != OSSO_OK) {
1255                 g_warning ("%s: osso_rpc_run_with_defaults() failed.\n", __FUNCTION__);
1256         }
1257 }
1258
1259 GtkWidget *
1260 modest_platform_create_folder_view (TnyFolderStoreQuery *query)
1261 {
1262         GtkWidget *widget = modest_folder_view_new (query);
1263
1264         /* Show all accounts by default */
1265         modest_folder_view_set_style (MODEST_FOLDER_VIEW (widget),
1266                                       MODEST_FOLDER_VIEW_STYLE_SHOW_ONE);
1267
1268         /* Restore settings */
1269         modest_widget_memory_restore (modest_runtime_get_conf(), 
1270                                       G_OBJECT (widget),
1271                                       MODEST_CONF_FOLDER_VIEW_KEY);
1272
1273         return widget;
1274 }
1275
1276 void 
1277 modest_platform_information_banner (GtkWidget *parent,
1278                                     const gchar *icon_name,
1279                                     const gchar *text)
1280 {
1281         hildon_banner_show_information (parent, icon_name, text);
1282 }
1283
1284 GtkWidget *
1285 modest_platform_animation_banner (GtkWidget *parent,
1286                                   const gchar *animation_name,
1287                                   const gchar *text)
1288 {
1289         GtkWidget *inf_note = NULL;
1290
1291         g_return_val_if_fail (text != NULL, NULL);
1292
1293         inf_note = hildon_banner_show_animation (parent, animation_name, text);
1294
1295         return inf_note;
1296 }