2007-05-03 Murray Cumming <murrayc@murrayc.com>
[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
37 #include <modest-hildon-includes.h>
38
39 #include <dbus_api/modest-dbus-callbacks.h>
40 #include <libosso.h>
41 #include <alarmd/alarm_event.h> /* For alarm_event_add(), etc. */
42 #include <tny-maemo-conic-device.h>
43 #include <tny-folder.h>
44 #include <gtk/gtkicontheme.h>
45 #include <gtk/gtkmenuitem.h>
46 #include <gtk/gtkmain.h>
47 #include <string.h>
48
49 static cookie_t alarm_cookie = 0;
50
51 gboolean
52 modest_platform_init (void)
53 {       
54         osso_context_t *osso_context =
55                 osso_initialize(PACKAGE, PACKAGE_VERSION,
56                                 TRUE, NULL);    
57         if (!osso_context) {
58                 g_printerr ("modest: failed to acquire osso context\n");
59                 return FALSE;
60         }
61
62         /* Register our D-Bus callbacks, via the osso API: */
63         osso_return_t result = osso_rpc_set_cb_f(osso_context, 
64                                MODEST_DBUS_SERVICE, 
65                                MODEST_DBUS_OBJECT, 
66                                MODEST_DBUS_IFACE,
67                                modest_dbus_req_handler, NULL /* user_data */);
68         if (result != OSSO_OK) {
69                 g_print("Error setting D-BUS callback (%d)\n", result);
70                 return OSSO_ERROR;
71         }
72
73         /* Add handler for Exit D-BUS messages.
74          * Not used because osso_application_set_exit_cb() is deprecated and obsolete:
75         result = osso_application_set_exit_cb(osso_context,
76                                           modest_dbus_exit_event_handler,
77                                           (gpointer) NULL);
78         if (result != OSSO_OK) {
79                 g_print("Error setting exit callback (%d)\n", result);
80                 return OSSO_ERROR;
81         }
82         */
83
84         /* Register hardware event dbus callback: */
85     osso_hw_set_event_cb(osso_context, NULL, modest_osso_cb_hw_state_handler, NULL);
86
87         /* TODO: Get the actual update interval from gconf, 
88          * when that preferences dialog has been implemented.
89          * And make sure that this is called again whenever that is changed. */
90         const guint update_interval_minutes = 15;
91         modest_platform_set_update_interval (update_interval_minutes);
92         
93         return TRUE;
94 }
95
96 TnyDevice*
97 modest_platform_get_new_device (void)
98 {
99         return TNY_DEVICE (tny_maemo_conic_device_new ());
100 }
101
102
103 const gchar*
104 guess_mime_type_from_name (const gchar* name)
105 {
106         int i;
107         const gchar* ext;
108         const static gchar* octet_stream= "application/octet-stream";
109         const static gchar* mime_map[][2] = {
110                 { "pdf",  "application/pdf"},
111                 { "doc",  "application/msword"},
112                 { "xls",  "application/excel"},
113                 { "png",  "image/png" },
114                 { "gif",  "image/gif" },
115                 { "jpg",  "image/jpeg"},
116                 { "jpeg", "image/jpeg"},
117                 { "mp3",  "audio/mp3" }
118         };
119
120         if (!name)
121                 return octet_stream;
122         
123         ext = g_strrstr (name, ".");
124         if (!ext)
125                 return octet_stream;
126         
127         for (i = 0; i != G_N_ELEMENTS(mime_map); ++i) {
128                 if (g_ascii_strcasecmp (mime_map[i][0], ext + 1)) /* +1: ignore '.'*/
129                         return mime_map[i][1];
130         }
131         return octet_stream;
132 }
133
134
135 gchar*
136 modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
137                                           gchar **effective_mime_type)
138 {
139         GString *mime_str = NULL;
140         gchar *icon_name  = NULL;
141         gchar **icons, **cursor;
142         
143         
144         g_return_val_if_fail (name || mime_type, NULL);
145
146         if (!mime_type || g_ascii_strcasecmp (mime_type, "application/octet-stream")) 
147                 mime_str = g_string_new (guess_mime_type_from_name(name));
148         else {
149                 mime_str = g_string_new (mime_type);
150                 g_string_ascii_down (mime_str);
151         }
152 #ifdef MODEST_HILDON_VERSION_0
153         icons = osso_mime_get_icon_names (mime_str->str, NULL);
154 #else
155         icons = hildon_mime_get_icon_names (mime_str->str, NULL);
156 #endif /*MODEST_HILDON_VERSION_0*/
157         for (cursor = icons; cursor; ++cursor) {
158                 if (gtk_icon_theme_has_icon (gtk_icon_theme_get_default(), *cursor)) {
159                         icon_name = g_strdup (*cursor);
160                         break;
161                 }
162         }
163         g_strfreev (icons);
164
165         if (effective_mime_type)
166                 *effective_mime_type = g_string_free (mime_str, FALSE);
167         else
168                 g_string_free (mime_str, TRUE);
169
170         return icon_name;
171 }
172
173 gboolean 
174 modest_platform_activate_uri (const gchar *uri)
175 {
176         gboolean result;
177
178 #ifdef MODEST_HILDON_VERSION_0
179         result = osso_uri_open (uri, NULL, NULL);
180 #else
181         result = hildon_uri_open (uri, NULL, NULL);
182 #endif
183
184         if (!result)
185                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
186         return result;
187 }
188
189 typedef struct  {
190         GSList * actions;
191         gchar *uri;
192 } ModestPlatformPopupInfo;
193
194 static gboolean
195 delete_uri_popup (GtkWidget *menu,
196                   GdkEvent *event,
197                   gpointer userdata)
198 {
199         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
200
201         g_free (popup_info->uri);
202 #ifdef MODEST_HILDON_VERSION_0
203         osso_uri_free_actions (popup_info->actions);
204 #else
205         hildon_uri_free_actions (popup_info->actions);
206 #endif
207         return FALSE;
208 }
209
210 static void
211 activate_uri_popup_item (GtkMenuItem *menu_item,
212                          gpointer userdata)
213 {
214         GSList *node;
215         ModestPlatformPopupInfo *popup_info = (ModestPlatformPopupInfo *) userdata;
216         GtkWidget *label;
217
218         label = gtk_bin_get_child (GTK_BIN (menu_item));
219
220         for (node = popup_info->actions; node != NULL; node = g_slist_next (node)) {
221 #ifdef MODEST_HILDON_VERSION_0
222                 OssoURIAction *action = (OssoURIAction *) node->data;
223                 if (strcmp (gtk_label_get_text (GTK_LABEL(label)), osso_uri_action_get_name (action))==0) {
224                         osso_uri_open (popup_info->uri, action, NULL);
225                         break;
226                 }
227 #else
228                 HildonURIAction *action = (HildonURIAction *) node->data;
229                 if (strcmp (gtk_label_get_text (GTK_LABEL(label)), hildon_uri_action_get_name (action))==0) {
230                         hildon_uri_open (popup_info->uri, action, NULL);
231                         break;
232                 }
233 #endif
234         }
235 }
236
237 gboolean 
238 modest_platform_show_uri_popup (const gchar *uri)
239 {
240         gchar *scheme;
241         GSList *actions_list;
242
243         if (uri == NULL)
244                 return FALSE;
245 #ifdef MODEST_HILDON_VERSION_0
246         scheme = osso_uri_get_scheme_from_uri (uri, NULL);
247         actions_list = osso_uri_get_actions (scheme, NULL);
248 #else
249         scheme = hildon_uri_get_scheme_from_uri (uri, NULL);
250         actions_list = hildon_uri_get_actions (scheme, NULL);
251 #endif
252         if (actions_list != NULL) {
253                 GSList *node;
254                 GtkWidget *menu = gtk_menu_new ();
255                 ModestPlatformPopupInfo *popup_info = g_new0 (ModestPlatformPopupInfo, 1);
256
257                 popup_info->actions = actions_list;
258                 popup_info->uri = g_strdup (uri);
259               
260                 for (node = actions_list; node != NULL; node = g_slist_next (node)) {
261                         GtkWidget *menu_item;
262
263 #ifdef MODEST_HILDON_VERSION_0
264                         OssoURIAction *action;
265
266                         action = (OssoURIAction *) node->data;
267                         menu_item = gtk_menu_item_new_with_label (osso_uri_action_get_name (action));
268                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item), popup_info);
269                         
270                         if (osso_uri_is_default_action (action, NULL)) {
271                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
272                         } else {
273                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
274                         }
275 #else
276                         HildonURIAction *action;
277
278                         action = (HildonURIAction *) node->data;
279                         menu_item = gtk_menu_item_new_with_label (hildon_uri_action_get_name (action));
280                         g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (activate_uri_popup_item), popup_info);
281                         
282                         if (hildon_uri_is_default_action (action, NULL)) {
283                                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);
284                         } else {
285                                 gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
286                         }
287 #endif
288
289                         gtk_widget_show (menu_item);
290                 }
291                 g_signal_connect (G_OBJECT (menu), "delete-event", G_CALLBACK (delete_uri_popup), popup_info);
292                 gtk_menu_popup (GTK_MENU(menu), NULL, NULL, NULL, NULL, 1, gtk_get_current_event_time ());
293                                                   
294         } else {
295                 hildon_banner_show_information (NULL, NULL, _("mcen_ib_unsupported_link"));
296         }
297                 
298         g_free (scheme);
299         return TRUE;
300 }
301
302
303 GdkPixbuf*
304 modest_platform_get_icon (const gchar *name)
305 {
306         GError *err = NULL;
307         GdkPixbuf* pixbuf;
308         GtkIconTheme *current_theme;
309
310         g_return_val_if_fail (name, NULL);
311
312         if (g_str_has_suffix (name, ".png")) { /*FIXME: hack*/
313                 pixbuf = gdk_pixbuf_new_from_file (name, &err);
314                 if (!pixbuf) {
315                         g_printerr ("modest: error loading icon '%s': %s\n",
316                                     name, err->message);
317                         g_error_free (err);
318                         return NULL;
319                 }
320                 return pixbuf;
321         }
322
323         current_theme = gtk_icon_theme_get_default ();
324         pixbuf = gtk_icon_theme_load_icon (current_theme, name, 26,
325                                            GTK_ICON_LOOKUP_NO_SVG,
326                                            &err);
327         if (!pixbuf) {
328                 g_printerr ("modest: error loading theme icon '%s': %s\n",
329                             name, err->message);
330                 g_error_free (err);
331         } 
332         return pixbuf;
333 }
334
335 const gchar*
336 modest_platform_get_app_name (void)
337 {
338         return _("mcen_ap_name");
339 }
340
341 static void 
342 entry_insert_text (GtkEditable *editable,
343                    const gchar *text,
344                    gint         length,
345                    gint        *position,
346                    gpointer     data)
347 {
348         gchar *chars;
349         gint chars_length;
350
351         chars = gtk_editable_get_chars (editable, 0, -1);
352         chars_length = strlen (chars);
353
354         /* Show WID-INF036 */
355         if (chars_length == 20) {
356                 hildon_banner_show_information  (gtk_widget_get_parent (GTK_WIDGET (data)), NULL,
357                                                  _("mcen_ib_maxchar_reached"));
358         } else {
359                 if (chars_length == 0) {
360                         /* A blank space is not valid as first character */
361                         if (strcmp (text, " ")) {
362                                 GtkWidget *ok_button;
363                                 GList *buttons;
364
365                                 /* Show OK button */
366                                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (data)->action_area));
367                                 ok_button = GTK_WIDGET (buttons->next->data);
368                                 gtk_widget_set_sensitive (ok_button, TRUE);
369                                 g_list_free (buttons);
370                         }
371                 }
372
373                 /* Write the text in the entry */
374                 g_signal_handlers_block_by_func (editable,
375                                                  (gpointer) entry_insert_text, data);
376                 gtk_editable_insert_text (editable, text, length, position);
377                 g_signal_handlers_unblock_by_func (editable,
378                                                    (gpointer) entry_insert_text, data);
379         }
380         /* Do not allow further processing */
381         g_signal_stop_emission_by_name (editable, "insert_text");
382 }
383
384 static void
385 entry_changed (GtkEditable *editable,
386                gpointer     user_data)
387 {
388         gchar *chars;
389
390         chars = gtk_editable_get_chars (editable, 0, -1);
391
392         /* Dimm OK button */
393         if (strlen (chars) == 0) {
394                 GtkWidget *ok_button;
395                 GList *buttons;
396
397                 buttons = gtk_container_get_children (GTK_CONTAINER (GTK_DIALOG (user_data)->action_area));
398                 ok_button = GTK_WIDGET (buttons->next->data);
399                 gtk_widget_set_sensitive (ok_button, FALSE);
400
401                 g_list_free (buttons);
402         }
403         g_free (chars);
404 }
405
406 static void
407 launch_sort_headers_dialog (GtkWindow *parent_window,
408                             HildonSortDialog *dialog)
409 {
410         ModestHeaderView *header_view = NULL;
411         GList *cols = NULL;
412         GList *tmp = NULL;
413         GtkSortType sort_type;
414         gint sort_key;
415         gint result;
416         
417         /* Get header window */
418         if (MODEST_IS_MAIN_WINDOW (parent_window)) {
419                 header_view = MODEST_HEADER_VIEW(modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(parent_window),
420                                                                                       MODEST_WIDGET_TYPE_HEADER_VIEW));
421         }
422         if (!header_view) return;
423
424         /* Add sorting keys */
425         cols = modest_header_view_get_columns (header_view);    
426         if (cols == NULL) return;
427         int num_cols = g_list_length(cols);
428         int sort_ids[num_cols];
429         int sort_model_ids[num_cols];
430         GtkTreeViewColumn *sort_cols[num_cols];
431         for (tmp=cols; tmp; tmp=tmp->next) {
432                 gint col_id = GPOINTER_TO_INT (g_object_get_data(G_OBJECT(tmp->data), MODEST_HEADER_VIEW_COLUMN));
433                 switch (col_id) {
434                 case MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG:
435                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_attachment"));
436                         sort_ids[sort_key] = col_id;
437                         sort_model_ids[sort_key] = TNY_HEADER_FLAG_ATTACHMENTS;
438                         sort_cols[sort_key] = tmp->data;
439
440                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_priority"));
441                         sort_ids[sort_key] = col_id;
442                         sort_model_ids[sort_key] = TNY_HEADER_FLAG_PRIORITY;
443                         sort_cols[sort_key] = tmp->data;
444                         break;
445                 case MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT:
446                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_sender_recipient"));
447                         sort_ids[sort_key] = col_id;
448                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_TO_COLUMN;
449                         sort_cols[sort_key] = tmp->data;
450
451                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_subject"));
452                         sort_ids[sort_key] = col_id;
453                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_SUBJECT_COLUMN;
454                         sort_cols[sort_key] = tmp->data;
455                         break;
456                 case MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN:
457                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_sender_recipient"));
458                         sort_ids[sort_key] = col_id;
459                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_FROM_COLUMN;
460                         sort_cols[sort_key] = tmp->data;
461
462                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_subject"));
463                         sort_ids[sort_key] = col_id;
464                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_SUBJECT_COLUMN;
465                         sort_cols[sort_key] = tmp->data;
466                         break;
467                 case MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE:
468                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_date"));
469                         sort_ids[sort_key] = col_id;
470                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_RECEIVED_TIME_T_COLUMN,
471                         sort_cols[sort_key] = tmp->data;
472                         break;
473                 case MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE:
474                         sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_date"));
475                         sort_ids[sort_key] = col_id;
476                         sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_SENT_TIME_T_COLUMN,
477                         sort_cols[sort_key] = tmp->data;
478                         break;
479                 default:
480                         return;
481                 }
482         }
483         
484         /* Launch dialogs */
485         result = gtk_dialog_run (GTK_DIALOG (dialog));
486         if (result == GTK_RESPONSE_OK) {
487                 sort_key = hildon_sort_dialog_get_sort_key (dialog);
488                 sort_type = hildon_sort_dialog_get_sort_order (dialog);
489                 if (sort_ids[sort_key] == MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG)
490                         g_object_set_data(G_OBJECT(sort_cols[sort_key]), 
491                                           MODEST_HEADER_VIEW_FLAG_SORT, 
492                                           GINT_TO_POINTER(sort_model_ids[sort_key]));
493                 
494                 else
495                         gtk_tree_view_column_set_sort_column_id (sort_cols[sort_key], sort_model_ids[sort_key]);
496                 
497                 modest_header_view_sort_by_column_id (header_view, sort_ids[sort_key], sort_type);
498         }
499         
500         /* free */
501         g_list_free(cols);      
502 }
503
504
505
506 gint
507 modest_platform_run_new_folder_dialog (GtkWindow *parent_window,
508                                        TnyFolderStore *parent_folder,
509                                        gchar *suggested_name,
510                                        gchar **folder_name)
511 {
512         GtkWidget *dialog, *entry, *label, *hbox;
513         gint result;
514
515         /* Ask the user for the folder name */
516         dialog = gtk_dialog_new_with_buttons (_("mcen_ti_new_folder"),
517                                               parent_window,
518                                               GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR | GTK_DIALOG_DESTROY_WITH_PARENT,
519                                               GTK_STOCK_OK,
520                                               GTK_RESPONSE_ACCEPT,
521                                               GTK_STOCK_CANCEL,
522                                               GTK_RESPONSE_REJECT,
523                                               NULL);
524
525         /* Create label and entry */
526         label = gtk_label_new (_("mcen_fi_new_folder_name"));
527         /* TODO: check that the suggested name does not exist */
528         /* We set 21 as maximum because we want to show WID-INF036
529            when the user inputs more that 20 */
530         entry = gtk_entry_new_with_max_length (21);
531         if (suggested_name)
532                 gtk_entry_set_text (GTK_ENTRY (entry), suggested_name);
533         else
534                 gtk_entry_set_text (GTK_ENTRY (entry), _("mcen_ia_default_folder_name"));
535         gtk_entry_select_region (GTK_ENTRY (entry), 0, -1);
536
537         /* Track entry changes */
538         g_signal_connect (entry,
539                           "insert-text",
540                           G_CALLBACK (entry_insert_text),
541                           dialog);
542         g_signal_connect (entry,
543                           "changed",
544                           G_CALLBACK (entry_changed),
545                           dialog);
546
547         /* Create the hbox */
548         hbox = gtk_hbox_new (FALSE, 12);
549         gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, FALSE, 0);
550         gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, FALSE, 0);
551
552         /* Add hbox to dialog */
553         gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), 
554                             hbox, FALSE, FALSE, 0);
555         
556         gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
557         
558         result = gtk_dialog_run (GTK_DIALOG(dialog));
559         if (result == GTK_RESPONSE_ACCEPT)
560                 *folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
561
562         gtk_widget_destroy (dialog);
563
564         return result;
565 }
566
567 gint
568 modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
569                                          const gchar *message)
570 {
571         GtkWidget *dialog;
572         gint response;
573
574         dialog = hildon_note_new_confirmation (parent_window, message);
575
576         response = gtk_dialog_run (GTK_DIALOG (dialog));
577
578         gtk_widget_destroy (GTK_WIDGET (dialog));
579
580         return response;
581 }
582
583 void
584 modest_platform_run_information_dialog (GtkWindow *parent_window,
585                                         ModestInformationDialogType type)
586 {
587         GtkWidget *dialog;
588         gchar *message = NULL;
589
590         switch (type) {
591         case MODEST_INFORMATION_CREATE_FOLDER:
592                 message = _("mail_in_ui_folder_create_error");
593                 break;
594         case MODEST_INFORMATION_DELETE_FOLDER:
595                 message = _("mail_in_ui_folder_delete_error");
596                 break;
597         };
598
599         dialog = hildon_note_new_information (parent_window, message);
600
601         gtk_dialog_run (GTK_DIALOG (dialog));
602
603         gtk_widget_destroy (GTK_WIDGET (dialog));
604 }
605
606 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window)
607 {
608         TnyDevice *device = modest_runtime_get_device();
609         
610         if (tny_device_is_online (device))
611                 return TRUE;
612                 
613         /* TODO: Block on the result: */
614         gboolean request_sent = tny_maemo_conic_device_connect (TNY_MAEMO_CONIC_DEVICE (device), NULL);
615         if (!request_sent)
616                 return FALSE;
617
618         return TRUE;
619 }
620
621 void
622 modest_platform_run_sort_dialog (GtkWindow *parent_window,
623                                  ModestSortDialogType type)
624 {
625         GtkWidget *dialog = NULL;
626
627         /* Build dialog */
628         dialog = hildon_sort_dialog_new (parent_window);
629         gtk_window_set_modal (GTK_WINDOW(dialog), TRUE);
630         
631         /* Fill sort keys */
632         switch (type) {
633         case MODEST_SORT_HEADERS:
634                 launch_sort_headers_dialog (parent_window, 
635                                             HILDON_SORT_DIALOG(dialog));
636                 break;
637         }
638         
639         /* Free */
640         gtk_widget_destroy (GTK_WIDGET (dialog));
641 }
642
643
644 gboolean modest_platform_set_update_interval (guint minutes)
645 {
646         /* Delete any existing alarm,
647          * because we will replace it: */
648         if (alarm_cookie) {
649                 /* TODO: What does the alarm_event_del() return value mean? */
650                 alarm_event_del(alarm_cookie);
651                 alarm_cookie = 0;
652         }
653         
654         /* 0 means no updates: */
655         if (minutes == 0)
656                 return TRUE;
657                 
658      
659         /* Register alarm: */
660         
661         /* Get current time: */
662         time_t time_now;
663         time (&time_now);
664         struct tm *st_time = localtime (&time_now);
665         
666         /* Add minutes to tm_min field: */
667         st_time->tm_min += minutes;
668         
669         /* Set the time in alarm_event_t structure: */
670         alarm_event_t event;
671         memset (&event, 0, sizeof (alarm_event_t));
672         event.alarm_time = mktime (st_time);
673
674         /* Specify what should happen when the alarm happens:
675          * It should call this D-Bus method: */
676          
677         /* Note: I am surpised that alarmd can't just use the modest.service file
678          * for this. murrayc. */
679         event.dbus_path = g_strdup(PREFIX "/bin/modest");
680         
681         event.dbus_interface = g_strdup (MODEST_DBUS_IFACE);
682         event.dbus_service = g_strdup (MODEST_DBUS_SERVICE);
683         event.dbus_name = g_strdup (MODEST_DBUS_METHOD_SEND_RECEIVE);
684         
685         alarm_cookie = alarm_event_add (&event);
686         
687         if (!alarm_cookie) {
688             /* Error */
689             printf ("Error setting alarm event. Error code: '%d'\n", alarmd_get_error ());
690             return FALSE;
691         }
692         
693         return TRUE;
694 }
695