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