From: Jose Dapena Paz Date: Tue, 12 Feb 2008 09:30:05 +0000 (+0000) Subject: * src/modest-ui-dimming-rules.c: X-Git-Tag: git_migration_finished~1690 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=78b5f8e5fce0a1910e85c8a23114bb9826acb692 * src/modest-ui-dimming-rules.c: * Now we check the active account of the message view or main window to dim purge if it's a pop account (fixes NB#80377). pmo-trunk-r4164 --- diff --git a/src/modest-ui-dimming-rules.c b/src/modest-ui-dimming-rules.c index 7ab6ff0..b2fa8ac 100644 --- a/src/modest-ui-dimming-rules.c +++ b/src/modest-ui-dimming-rules.c @@ -70,6 +70,7 @@ static gboolean _msg_download_in_progress (ModestWindow *win); static gboolean _msg_download_completed (ModestMainWindow *win); static gboolean _selected_msg_sent_in_progress (ModestWindow *win); static gboolean _sending_in_progress (ModestWindow *win); +static gboolean _invalid_account_for_purge (ModestWindow *win, ModestDimmingRule *rule); static gboolean _invalid_folder_for_purge (ModestWindow *win, ModestDimmingRule *rule); static gboolean _transfer_mode_enabled (ModestWindow *win); static gboolean _selected_folder_has_subfolder_with_same_name (ModestWindow *win); @@ -1240,6 +1241,11 @@ modest_ui_dimming_rules_on_remove_attachments (ModestWindow *win, gpointer user_ } } + /* cannot purge in pop accounts */ + if (!dimmed) { + dimmed = _invalid_account_for_purge (win, rule); + } + /* cannot purge in editable drafts nor pop folders */ if (!dimmed) { dimmed = _invalid_folder_for_purge (win, rule); @@ -2596,6 +2602,49 @@ _sending_in_progress (ModestWindow *win) } static gboolean +_invalid_account_for_purge (ModestWindow *win, + ModestDimmingRule *rule) +{ + const gchar *account_name; + ModestTnyAccountStore *account_store; + TnyAccount *store_account; + gboolean result = FALSE; + const gchar *protocol_name; + + account_name = modest_window_get_active_account (win); + if (account_name == NULL) + goto frees; + + account_store = modest_runtime_get_account_store (); + store_account = modest_tny_account_store_get_server_account (account_store, account_name, TNY_ACCOUNT_TYPE_STORE); + if (store_account == NULL) + goto frees; + + protocol_name = tny_account_get_proto (store_account); + if (modest_protocol_info_get_transport_store_protocol (protocol_name) == MODEST_PROTOCOL_STORE_POP) { + gint n_selected = 0; + result = TRUE; + + if (MODEST_IS_MSG_VIEW_WINDOW (win)) { + TnyList *attachments; + attachments = modest_msg_view_window_get_attachments (MODEST_MSG_VIEW_WINDOW(win)); + n_selected = tny_list_get_length (attachments); + g_object_unref (attachments); + } + + modest_dimming_rule_set_notification (rule, + ngettext ("mail_ib_unable_to_pure_attach_pop_mail_singular", + "mail_ib_unable_to_pure_attach_pop_mail_plural", + n_selected)); + + } +frees: + if (store_account) + g_object_unref (store_account); + return result; +} + +static gboolean _invalid_folder_for_purge (ModestWindow *win, ModestDimmingRule *rule) {