Do ignore empty recipients when checking names
[modest] / src / gnome / modest-platform.c
index d986295..11d5093 100644 (file)
@@ -32,7 +32,9 @@
 #include <tny-gnome-device.h>
 #include <tny-camel-imap-store-account.h>
 #include <tny-camel-pop-store-account.h>
-
+#include <tny-simple-list.h>
+#include <tny-error.h>
+#include <tny-merge-folder.h>
 #include "modest-platform.h"
 #include "modest-mail-operation-queue.h"
 #include "modest-runtime.h"
@@ -41,6 +43,7 @@
 #include "gnome/modest-account-assistant.h"
 #include "gnome/modest-gnome-sort-dialog.h"
 #include "widgets/modest-details-dialog.h"
+#include "widgets/modest-main-window.h"
 
 gboolean
 modest_platform_init (int argc, char *argv[])
@@ -97,21 +100,21 @@ modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
 gboolean 
 modest_platform_activate_uri (const gchar *uri)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
        return FALSE;
 }
 
 gboolean 
 modest_platform_activate_file (const gchar *path, const gchar *mime_type)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
        return FALSE;
 }
 
 gboolean 
 modest_platform_show_uri_popup (const gchar *uri)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
        return FALSE;
 }
 
@@ -275,17 +278,21 @@ modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window,
                                               gpointer user_data)
 {
        TnyAccount *account = NULL;
-       
-       if (!folder_store) {
+
+       if (!folder_store ||
+           (TNY_IS_MERGE_FOLDER (folder_store) &&
+            (tny_folder_get_folder_type (TNY_FOLDER(folder_store)) == TNY_FOLDER_TYPE_OUTBOX))) {
+
                /* We promise to instantly perform the callback, so ... */
                if (callback) {
-                       callback (FALSE, NULL, parent_window, NULL, user_data);
-               }
-               return; 
-               
-               /* Original comment: Maybe it is something local. */
-               /* PVH's comment: maybe we should KNOW this in stead of assuming? */
-               
+                       GError *error = NULL;
+                       g_set_error (&error, TNY_ERROR_DOMAIN, TNY_SERVICE_ERROR_UNKNOWN,
+                                    "Unable to move or not found folder");
+                       callback (FALSE, error, parent_window, NULL, user_data);
+                       g_error_free (error);
+               }
+               return;
+
        } else if (TNY_IS_FOLDER (folder_store)) {
                /* Get the folder's parent account: */
                account = tny_folder_get_account(TNY_FOLDER (folder_store));
@@ -297,7 +304,7 @@ modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window,
        if (tny_account_get_account_type (account) == TNY_ACCOUNT_TYPE_STORE) {
                if (!TNY_IS_CAMEL_POP_STORE_ACCOUNT (account) &&
                    !TNY_IS_CAMEL_IMAP_STORE_ACCOUNT (account)) {
-                       
+
                        /* This IS a local account like a maildir account, which does not require 
                         * a connection. (original comment had a vague assumption in its language
                         * usage. There's no assuming needed, this IS what it IS: a local account), */
@@ -343,7 +350,7 @@ modest_platform_push_email_notification(void)
 }
 
 void 
-modest_platform_on_new_headers_received (TnyList *header_list,
+modest_platform_on_new_headers_received (GList *URI_list,
                                         gboolean show_visual)
 {
        /* TODO: implement this */
@@ -363,7 +370,15 @@ modest_platform_information_banner (GtkWidget *widget,
                                    const gchar *icon_name,
                                    const gchar *text)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
+}
+
+void 
+modest_platform_system_banner (GtkWidget *widget,
+                              const gchar *icon_name,
+                              const gchar *text)
+{
+       g_warning ("NOT IMPLEMENTED");;
 }
 
 void
@@ -372,7 +387,7 @@ modest_platform_information_banner_with_timeout (GtkWidget *widget,
                                                 const gchar *text,
                                                 gint timeout)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
 }
 
 GtkWidget *
@@ -380,7 +395,7 @@ modest_platform_animation_banner (GtkWidget *widget,
                                  const gchar *icon_name,
                                  const gchar *text)
 {
-       g_message ("NOT IMPLEMENTED");
+       g_warning ("NOT IMPLEMENTED");
        return NULL;
 }
 
@@ -388,7 +403,7 @@ modest_platform_animation_banner (GtkWidget *widget,
 void
 modest_platform_show_search_messages (GtkWindow *parent_window)
 {
-       g_message ("NOT IMPLEMENTED");;
+       g_warning ("NOT IMPLEMENTED");;
 }
 
 GtkWidget *
@@ -458,13 +473,13 @@ modest_platform_connect_and_perform_if_network_folderstore (GtkWindow *parent_wi
 void 
 modest_platform_remove_new_mail_notifications (gboolean only_visuals)
 {
-       g_message ("NOT IMPLEMENTED %s", __FUNCTION__);
+       g_warning ("NOT IMPLEMENTED %s", __FUNCTION__);
 }
 
 gboolean 
 modest_platform_check_and_wait_for_account_is_online(TnyAccount *account)
 {
-       g_message ("NOT IMPLEMENTED %s", __FUNCTION__);
+       g_warning ("NOT IMPLEMENTED %s", __FUNCTION__);
        return TRUE;
 }
 
@@ -472,7 +487,7 @@ gboolean
 modest_platform_run_certificate_confirmation_dialog (const gchar* server_name,
                                                     const gchar *certificate)
 {
-       g_message ("NOT IMPLEMENTED %s", __FUNCTION__);
+       g_warning ("NOT IMPLEMENTED %s", __FUNCTION__);
        return TRUE;
 }
 
@@ -482,14 +497,14 @@ modest_platform_run_rename_folder_dialog (GtkWindow *parent_window,
                                           const gchar *suggested_name,
                                           gchar **folder_name)
 {
-       g_message ("NOT IMPLEMENTED %s", __FUNCTION__);
+       g_warning ("NOT IMPLEMENTED %s", __FUNCTION__);
        return GTK_RESPONSE_CANCEL;
 }
 
 void 
 modest_platform_show_addressbook (GtkWindow *parent_window)
 {
-       g_message ("NOT IMPLEMENTED %s", __FUNCTION__);
+       g_warning ("NOT IMPLEMENTED %s", __FUNCTION__);
 }
 
 GtkWidget *
@@ -539,12 +554,14 @@ modest_platform_run_folder_details_dialog (GtkWindow *parent_window,
 
 void
 modest_platform_run_header_details_dialog (GtkWindow *parent_window,
-                                          TnyHeader *header)
+                                          TnyHeader *header,
+                                          gboolean async_get_size, 
+                                          TnyMsg *msg)
 {
        GtkWidget *dialog;
        
        /* Create dialog */
-       dialog = modest_details_dialog_new_with_header (parent_window, header);
+       dialog = modest_details_dialog_new_with_header (parent_window, header, TRUE);
 
        /* Run dialog */
        modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), 
@@ -587,3 +604,51 @@ modest_platform_create_move_to_dialog (GtkWindow *parent_window,
 
        return dialog;
 }
+
+TnyList *
+modest_platform_get_list_to_move (ModestWindow *window)
+{
+       TnyList *list = NULL;
+
+       /* If it's a main window then it could be that we're moving a
+          folder or a set of messages */
+       if (MODEST_IS_MAIN_WINDOW (window)) {
+               ModestHeaderView *header_view = NULL;
+               ModestFolderView *folder_view = NULL;
+
+               folder_view = (ModestFolderView *)
+                       modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
+                                                            MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
+               header_view = (ModestHeaderView *)
+                       modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
+                                                            MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
+
+               /* Get folder or messages to transfer */
+               if (gtk_widget_is_focus (GTK_WIDGET (folder_view))) {
+                       TnyFolderStore *src_folder;
+
+                       src_folder = modest_folder_view_get_selected (folder_view);
+                       if (src_folder) {
+                               list = tny_simple_list_new ();
+                               tny_list_prepend (list, G_OBJECT (src_folder));
+                               g_object_unref (src_folder);
+                       }
+               } else if (gtk_widget_is_focus (GTK_WIDGET(header_view))) {
+                       list = modest_header_view_get_selected_headers(header_view);
+               }
+       } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
+               TnyHeader *header = NULL;
+
+               /* We simply return the currently viewed message */
+               header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (window));
+               if (header) {
+                       list = tny_simple_list_new ();
+                       tny_list_prepend (list, G_OBJECT (header));
+                       g_object_unref (header);
+               }
+       } else {
+               g_return_val_if_reached (NULL);
+       }
+
+       return list;
+}