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