2007-05-16 Murray Cumming <murrayc@murrayc.com>
[modest] / src / maemo / modest-platform.c
index 691da5d..921bccc 100644 (file)
 #include <modest-runtime.h>
 #include <modest-main-window.h>
 #include <modest-header-view.h>
+#include "maemo/modest-maemo-global-settings-dialog.h"
 
 #include <modest-hildon-includes.h>
 
 #include <dbus_api/modest-dbus-callbacks.h>
+#include <maemo/modest-osso-autosave-callbacks.h>
 #include <libosso.h>
 #include <alarmd/alarm_event.h> /* For alarm_event_add(), etc. */
 #include <tny-maemo-conic-device.h>
 #include <gtk/gtkmain.h>
 #include <string.h>
 
-static cookie_t alarm_cookie = 0;
+static osso_context_t *osso_context = NULL;
+       
+static void    
+on_modest_conf_update_interval_changed (ModestConf* self, const gchar *key, 
+       ModestConfEvent event, gpointer user_data)
+{
+       if (strcmp (key, MODEST_CONF_UPDATE_INTERVAL) == 0) {
+               const guint update_interval_minutes = 
+                       modest_conf_get_int (self, MODEST_CONF_UPDATE_INTERVAL, NULL);
+               modest_platform_set_update_interval (update_interval_minutes);
+       }
+}
 
 gboolean
 modest_platform_init (void)
-{      
-       osso_context_t *osso_context =
-               osso_initialize(PACKAGE, PACKAGE_VERSION,
-                               TRUE, NULL);    
+{
+       osso_hw_state_t hw_state = { 0 };       
+       osso_context =
+               osso_initialize(PACKAGE,PACKAGE_VERSION,
+                               FALSE, NULL);   
        if (!osso_context) {
                g_printerr ("modest: failed to acquire osso context\n");
                return FALSE;
@@ -82,13 +96,28 @@ modest_platform_init (void)
        */
 
        /* Register hardware event dbus callback: */
-    osso_hw_set_event_cb(osso_context, NULL, modest_osso_cb_hw_state_handler, NULL);
+       hw_state.shutdown_ind = TRUE;
+       osso_hw_set_event_cb(osso_context, NULL,/*&hw_state*/ modest_osso_cb_hw_state_handler, NULL);
 
-       /* TODO: Get the actual update interval from gconf, 
-        * when that preferences dialog has been implemented.
-        * And make sure that this is called again whenever that is changed. */
-       const guint update_interval_minutes = 15;
-       modest_platform_set_update_interval (update_interval_minutes);
+       /* Register osso auto-save callbacks: */
+       result = osso_application_set_autosave_cb (osso_context, 
+               modest_on_osso_application_autosave, NULL /* user_data */);
+       if (result != OSSO_OK) {
+               g_warning ("osso_application_set_autosave_cb() failed.");       
+       }
+       
+
+       /* Make sure that the update interval is changed whenever its gconf key 
+        * is changed: */
+       ModestConf *conf = modest_runtime_get_conf ();
+       g_signal_connect (G_OBJECT(conf),
+                         "key_changed",
+                         G_CALLBACK (on_modest_conf_update_interval_changed), 
+                         NULL);
+                         
+       /* Get the initial update interval from gconf: */
+       on_modest_conf_update_interval_changed(conf, MODEST_CONF_UPDATE_INTERVAL,
+               MODEST_CONF_EVENT_KEY_CHANGED, NULL);
        
        return TRUE;
 }
@@ -186,6 +215,32 @@ modest_platform_activate_uri (const gchar *uri)
        return result;
 }
 
+gboolean 
+modest_platform_activate_file (const gchar *path)
+{
+       gint result;
+       DBusConnection *con;
+       gchar *uri_path = NULL;
+
+       uri_path = g_strconcat ("file://", path, NULL);
+       
+       con = osso_get_dbus_connection (osso_context);
+#ifdef MODEST_HILDON_VERSION_0
+       result = osso_mime_open_file (con, uri_path);
+
+       if (result != 1)
+               hildon_banner_show_information (NULL, NULL, _("mcen_ni_noregistered_viewer"));
+       return result != 1;
+#else
+       result = hildon_mime_open_file (con, uri_path);
+
+       if (result != 1)
+               hildon_banner_show_information (NULL, NULL, _("mcen_ni_noregistered_viewer"));
+       return result != 1;
+#endif
+
+}
+
 typedef struct  {
        GSList * actions;
        gchar *uri;
@@ -304,11 +359,11 @@ GdkPixbuf*
 modest_platform_get_icon (const gchar *name)
 {
        GError *err = NULL;
-       GdkPixbuf* pixbuf;
-       GtkIconTheme *current_theme;
+       GdkPixbuf* pixbuf = NULL;
+       GtkIconTheme *current_theme = NULL;
 
        g_return_val_if_fail (name, NULL);
-
+       
        if (g_str_has_suffix (name, ".png")) { /*FIXME: hack*/
                pixbuf = gdk_pixbuf_new_from_file (name, &err);
                if (!pixbuf) {
@@ -412,6 +467,7 @@ launch_sort_headers_dialog (GtkWindow *parent_window,
        GList *tmp = NULL;
        GtkSortType sort_type;
        gint sort_key;
+       gint default_key = 0;
        gint result;
        
        /* Get header window */
@@ -469,19 +525,24 @@ launch_sort_headers_dialog (GtkWindow *parent_window,
                        sort_ids[sort_key] = col_id;
                        sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_RECEIVED_TIME_T_COLUMN,
                        sort_cols[sort_key] = tmp->data;
+                       default_key = sort_key;
                        break;
                case MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE:
                        sort_key = hildon_sort_dialog_add_sort_key (dialog, _("mcen_li_sort_date"));
                        sort_ids[sort_key] = col_id;
                        sort_model_ids[sort_key] = TNY_GTK_HEADER_LIST_MODEL_DATE_SENT_TIME_T_COLUMN,
                        sort_cols[sort_key] = tmp->data;
+                       default_key = sort_key;
                        break;
                default:
-                       return;
+                       g_printerr ("modest: column (id: %i) not valid", col_id);
+                       goto frees;
                }
        }
        
        /* Launch dialogs */
+       hildon_sort_dialog_set_sort_key (dialog, default_key);
+       hildon_sort_dialog_set_sort_order (dialog, GTK_SORT_DESCENDING);
        result = gtk_dialog_run (GTK_DIALOG (dialog));
        if (result == GTK_RESPONSE_OK) {
                sort_key = hildon_sort_dialog_get_sort_key (dialog);
@@ -498,6 +559,7 @@ launch_sort_headers_dialog (GtkWindow *parent_window,
        }
        
        /* free */
+ frees:
        g_list_free(cols);      
 }
 
@@ -582,19 +644,9 @@ modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
 
 void
 modest_platform_run_information_dialog (GtkWindow *parent_window,
-                                       ModestInformationDialogType type)
+                                       const gchar *message)
 {
        GtkWidget *dialog;
-       gchar *message = NULL;
-
-       switch (type) {
-       case MODEST_INFORMATION_CREATE_FOLDER:
-               message = _("mail_in_ui_folder_create_error");
-               break;
-       case MODEST_INFORMATION_DELETE_FOLDER:
-               message = _("mail_in_ui_folder_delete_error");
-               break;
-       };
 
        dialog = hildon_note_new_information (parent_window, message);
 
@@ -643,12 +695,19 @@ modest_platform_run_sort_dialog (GtkWindow *parent_window,
 
 gboolean modest_platform_set_update_interval (guint minutes)
 {
+       ModestConf *conf = modest_runtime_get_conf ();
+       if (!conf)
+               return FALSE;
+               
+       cookie_t alarm_cookie = modest_conf_get_int (conf, MODEST_CONF_ALARM_ID, NULL);
+
        /* Delete any existing alarm,
         * because we will replace it: */
        if (alarm_cookie) {
                /* TODO: What does the alarm_event_del() return value mean? */
                alarm_event_del(alarm_cookie);
                alarm_cookie = 0;
+               modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, 0, NULL);
        }
        
        /* 0 means no updates: */
@@ -681,15 +740,53 @@ gboolean modest_platform_set_update_interval (guint minutes)
        event.dbus_interface = g_strdup (MODEST_DBUS_IFACE);
        event.dbus_service = g_strdup (MODEST_DBUS_SERVICE);
        event.dbus_name = g_strdup (MODEST_DBUS_METHOD_SEND_RECEIVE);
+
+       /* Otherwise, a dialog will be shown if exect_name or dbus_path is NULL,
+       even though we have specified no dialog text: */
+       event.flags = ALARM_EVENT_NO_DIALOG;
        
        alarm_cookie = alarm_event_add (&event);
        
+       /* Store the alarm ID in GConf, so we can remove it later:
+        * This is apparently valid between application instances. */
+       modest_conf_set_int (conf, MODEST_CONF_ALARM_ID, alarm_cookie, NULL);
+       
        if (!alarm_cookie) {
            /* Error */
-           printf ("Error setting alarm event. Error code: '%d'\n", alarmd_get_error ());
+           const alarm_error_t alarm_error = alarmd_get_error ();
+           printf ("Error setting alarm event. Error code: '%d'\n", alarm_error);
+           
+           /* Give people some clue: */
+           /* The alarm API should have a function for this: */
+           if (alarm_error == ALARMD_ERROR_DBUS) {
+               printf ("  ALARMD_ERROR_DBUS: An error with D-Bus occurred, probably coudn't get a D-Bus connection.\n");
+           } else if (alarm_error == ALARMD_ERROR_CONNECTION) {
+               printf ("  ALARMD_ERROR_CONNECTION: Could not contact alarmd via D-Bus.\n");
+           } else if (alarm_error == ALARMD_ERROR_INTERNAL) {
+               printf ("  ALARMD_ERROR_INTERNAL: Some alarmd or libalarm internal error, possibly a version mismatch.\n");
+           } else if (alarm_error == ALARMD_ERROR_MEMORY) {
+               printf ("  ALARMD_ERROR_MEMORY: A memory allocation failed.\n");
+           } else if (alarm_error == ALARMD_ERROR_ARGUMENT) {
+               printf ("  ALARMD_ERROR_ARGUMENT: An argument given by caller was invalid.\n");
+           }
+           
            return FALSE;
        }
        
        return TRUE;
 }
 
+GtkWidget * 
+modest_platform_get_global_settings_dialog ()
+{
+       return modest_maemo_global_settings_dialog_new ();
+}
+
+void 
+modest_platform_on_new_msg (void)
+{
+       /* TODO: play sound SR-SND-18 */
+       /* TODO: LED lightning pattern */
+       /* TODO: update the application icon in the task navigator */ 
+       g_print ("--------------- NEW MESSAGE ARRIVED ---------------\n");
+}