X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-ui-dimming-rules.c;h=b2fa8acba59782f2e2b4adeca69c5d5c1db5e8e1;hp=50ef80b681537460d6ebe5117cbcbfa5f5ce0e5a;hb=78b5f8e5fce0a1910e85c8a23114bb9826acb692;hpb=d27a0a29347366d5421e7e796eca4655ef0d095a diff --git a/src/modest-ui-dimming-rules.c b/src/modest-ui-dimming-rules.c index 50ef80b..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); @@ -2304,7 +2310,7 @@ _invalid_clipboard_selected (ModestWindow *win, if (GTK_IS_TEXT_VIEW (focused)) { GtkTextBuffer *buffer = NULL; buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (focused)); - has_selection = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (buffer)); + has_selection = modest_text_utils_buffer_selection_is_valid (buffer); } else if (GTK_IS_EDITABLE (focused)) { has_selection = gtk_editable_get_selection_bounds (GTK_EDITABLE (focused), NULL, NULL); } @@ -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) {