2007-05-03 Murray Cumming <murrayc@murrayc.com>
[modest] / src / gnome / modest-platform.c
index 999e462..9b80c90 100644 (file)
@@ -162,16 +162,11 @@ modest_platform_run_new_folder_dialog (GtkWindow *parent_window,
        return result;
 }
 
+
 gint
 modest_platform_run_confirmation_dialog (GtkWindow *parent_window,
-                                        ModestConfirmationDialogType type,
-                                        gpointer user_data)
+                                        const gchar *msg)
 {
-       switch (type) {
-       case MODEST_CONFIRMATION_DELETE_FOLDER:
-               break;
-       };
-
        /* TODO implement confirmation dialog */
        return GTK_RESPONSE_CANCEL;
 }
@@ -189,3 +184,16 @@ modest_platform_run_information_dialog (GtkWindow *parent_window,
 
        /* TODO: implement a information dialog */
 }
+
+gboolean modest_platform_connect_and_wait (GtkWindow *parent_window)
+{
+       /* TODO: Do something with network-manager? 
+          Otherwise, maybe it is safe to assume that we would already be online if we could be. */
+       return TRUE;
+}
+
+gboolean modest_platform_set_update_interval (guint minutes)
+{
+       /* TODO. */
+}
+