X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fgnome%2Fmodest-platform.c;h=11d5093334db211b7fd4bb6f8dc1d7146af539e8;hb=601c3222c5fe3a42a573e4cdaa708369898cfadc;hp=39297de08cf7f0a37f2620c3c9c6fe7be1852159;hpb=92e848e6267ce480ca81a2cba034375ce04d3756;p=modest diff --git a/src/gnome/modest-platform.c b/src/gnome/modest-platform.c index 39297de..11d5093 100644 --- a/src/gnome/modest-platform.c +++ b/src/gnome/modest-platform.c @@ -32,16 +32,18 @@ #include #include #include - +#include +#include +#include #include "modest-platform.h" #include "modest-mail-operation-queue.h" #include "modest-runtime.h" - #include "gnome/modest-gnome-global-settings-dialog.h" -#include "widgets/modest-account-settings-dialog.h" +#include "widgets/modest-default-account-settings-dialog.h" #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[]) @@ -98,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; } @@ -276,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)); @@ -298,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), */ @@ -344,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 */ @@ -364,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 @@ -373,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 * @@ -381,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; } @@ -389,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 * @@ -459,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; } @@ -473,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; } @@ -483,22 +497,22 @@ 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 * modest_platform_get_account_settings_dialog (ModestAccountSettings *settings) { - ModestAccountSettingsDialog *dialog = modest_account_settings_dialog_new (); + ModestAccountSettingsDialog *dialog = modest_default_account_settings_dialog_new (); - modest_account_settings_dialog_set_account (dialog, settings); + modest_account_settings_dialog_load_settings (dialog, settings); return GTK_WIDGET (dialog); } @@ -540,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 (), @@ -578,7 +594,7 @@ modest_platform_create_move_to_dialog (GtkWindow *parent_window, /* Create pannable and add it to the dialog */ folder_view_container = gtk_scrolled_window_new (NULL, NULL); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (*folder_view_container), + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (folder_view_container), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), folder_view_container); @@ -588,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; +}