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