1 /* Copyright (c) 2006, Nokia Corporation
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of the Nokia Corporation nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #endif /*HAVE_CONFIG_H*/
34 #include <glib/gi18n.h>
35 #include <glib/gprintf.h>
37 #include <modest-runtime.h>
38 #include <modest-tny-folder.h>
39 #include <modest-tny-msg.h>
40 #include <modest-tny-account.h>
41 #include <modest-address-book.h>
42 #include "modest-error.h"
43 #include "modest-ui-actions.h"
44 #include "modest-protocol-info.h"
45 #include "modest-tny-platform-factory.h"
46 #include "modest-platform.h"
47 #include "modest-debug.h"
48 #include <tny-mime-part.h>
49 #include <tny-camel-folder.h>
50 #include <tny-camel-imap-folder.h>
51 #include <tny-camel-pop-folder.h>
53 #ifdef MODEST_PLATFORM_MAEMO
54 #include "maemo/modest-osso-state-saving.h"
55 #include "maemo/modest-hildon-includes.h"
56 #include "maemo/modest-connection-specific-smtp-window.h"
57 #endif /* MODEST_PLATFORM_MAEMO */
58 #include <modest-utils.h>
60 #include "widgets/modest-ui-constants.h"
61 #include <widgets/modest-main-window.h>
62 #include <widgets/modest-msg-view-window.h>
63 #include <widgets/modest-account-view-window.h>
64 #include <widgets/modest-details-dialog.h>
65 #include <widgets/modest-attachments-view.h>
66 #include "widgets/modest-folder-view.h"
67 #include "widgets/modest-global-settings-dialog.h"
68 #include "modest-account-mgr-helpers.h"
69 #include "modest-mail-operation.h"
70 #include "modest-text-utils.h"
72 #ifdef MODEST_HAVE_EASYSETUP
73 #include "easysetup/modest-easysetup-wizard-dialog.h"
74 #endif /* MODEST_HAVE_EASYSETUP */
76 #include <modest-widget-memory.h>
77 #include <tny-error.h>
78 #include <tny-simple-list.h>
79 #include <tny-msg-view.h>
80 #include <tny-device.h>
81 #include <tny-merge-folder.h>
83 #include <gtkhtml/gtkhtml.h>
85 typedef struct _GetMsgAsyncHelper {
87 ModestMailOperation *mail_op;
94 typedef enum _ReplyForwardAction {
100 typedef struct _ReplyForwardHelper {
101 guint reply_forward_type;
102 ReplyForwardAction action;
104 GtkWidget *parent_window;
105 } ReplyForwardHelper;
107 typedef struct _MoveToHelper {
108 GtkTreeRowReference *reference;
112 typedef struct _PasteAsAttachmentHelper {
113 ModestMsgEditWindow *window;
115 } PasteAsAttachmentHelper;
119 * The do_headers_action uses this kind of functions to perform some
120 * action to each member of a list of headers
122 typedef void (*HeadersFunc) (TnyHeader *header, ModestWindow *win, gpointer user_data);
124 static void do_headers_action (ModestWindow *win,
128 static void open_msg_cb (ModestMailOperation *mail_op,
135 static void reply_forward_cb (ModestMailOperation *mail_op,
142 static void reply_forward (ReplyForwardAction action, ModestWindow *win);
144 static void folder_refreshed_cb (ModestMailOperation *mail_op,
148 static void on_send_receive_finished (ModestMailOperation *mail_op,
151 static gint header_list_count_uncached_msgs (TnyList *header_list);
153 static gboolean connect_to_get_msg (ModestWindow *win,
154 gint num_of_uncached_msgs,
155 TnyAccount *account);
157 static gboolean remote_folder_is_pop (TnyFolderStore *folder);
159 static void do_create_folder (GtkWindow *window,
160 TnyFolderStore *parent_folder,
161 const gchar *suggested_name);
163 static GtkWidget* get_folder_view_from_move_to_dialog (GtkWidget *move_to_dialog);
165 static TnyAccount *get_account_from_folder_store (TnyFolderStore *folder_store);
167 static void transfer_messages_helper (GtkWindow *win,
168 TnyFolder *src_folder,
170 TnyFolder *dst_folder);
173 * This function checks whether a TnyFolderStore is a pop account
176 remote_folder_is_pop (TnyFolderStore *folder)
178 const gchar *proto = NULL;
179 TnyAccount *account = NULL;
181 g_return_val_if_fail (TNY_IS_FOLDER_STORE (folder), FALSE);
183 account = get_account_from_folder_store (folder);
184 proto = tny_account_get_proto (account);
185 g_object_unref (account);
187 return (modest_protocol_info_get_transport_store_protocol (proto) == MODEST_PROTOCOL_STORE_POP);
190 /* FIXME: this should be merged with the similar code in modest-account-view-window */
191 /* Show the account creation wizard dialog.
192 * returns: TRUE if an account was created. FALSE if the user cancelled.
195 modest_ui_actions_run_account_setup_wizard (ModestWindow *win)
197 gboolean result = FALSE;
198 GtkWindow *dialog, *wizard;
199 gint dialog_response;
201 /* Show the easy-setup wizard: */
202 dialog = modest_window_mgr_get_modal (modest_runtime_get_window_mgr());
204 /* old wizard is active already;
206 gtk_window_present (GTK_WINDOW(dialog));
211 /* there is no such wizard yet */
212 wizard = GTK_WINDOW (modest_platform_get_account_settings_wizard ());
213 modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), wizard);
215 /* always present a main window in the background
216 * we do it here, so we cannot end up with two wizards (as this
217 * function might be called in modest_window_mgr_get_main_window as well */
219 win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(),
220 TRUE); /* create if not existent */
222 /* make sure the mainwindow is visible */
223 gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (win));
224 gtk_widget_show_all (GTK_WIDGET(win));
225 gtk_window_present (GTK_WINDOW(win));
227 dialog_response = gtk_dialog_run (GTK_DIALOG (wizard));
228 gtk_widget_destroy (GTK_WIDGET (wizard));
229 if (gtk_events_pending ())
230 gtk_main_iteration ();
232 if (dialog_response == GTK_RESPONSE_CANCEL) {
235 /* Check whether an account was created: */
236 result = modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
243 modest_ui_actions_on_about (GtkAction *action, ModestWindow *win)
246 const gchar *authors[] = {
247 "Dirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>",
250 about = gtk_about_dialog_new ();
251 gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(about), PACKAGE_NAME);
252 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about),PACKAGE_VERSION);
253 gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about),
254 _("Copyright (c) 2006, Nokia Corporation\n"
255 "All rights reserved."));
256 gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about),
257 _("a modest e-mail client\n\n"
258 "design and implementation: Dirk-Jan C. Binnema\n"
259 "contributions from the fine people at KC and Ig\n"
260 "uses the tinymail email framework written by Philip van Hoof"));
261 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
262 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), "http://modest.garage.maemo.org");
263 gtk_window_set_transient_for (GTK_WINDOW (about), GTK_WINDOW (win));
264 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
266 gtk_dialog_run (GTK_DIALOG (about));
267 gtk_widget_destroy(about);
271 * Gets the list of currently selected messages. If the win is the
272 * main window, then it returns a newly allocated list of the headers
273 * selected in the header view. If win is the msg view window, then
274 * the value returned is a list with just a single header.
276 * The caller of this funcion must free the list.
279 get_selected_headers (ModestWindow *win)
281 if (MODEST_IS_MAIN_WINDOW(win)) {
282 GtkWidget *header_view;
284 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(win),
285 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
286 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
288 } else if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
289 /* for MsgViewWindows, we simply return a list with one element */
291 TnyList *list = NULL;
293 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
294 if (header != NULL) {
295 list = tny_simple_list_new ();
296 tny_list_prepend (list, G_OBJECT(header));
297 g_object_unref (G_OBJECT(header));
306 static GtkTreeRowReference *
307 get_next_after_selected_headers (ModestHeaderView *header_view)
309 GtkTreeSelection *sel;
310 GList *selected_rows, *node;
312 GtkTreeRowReference *result;
315 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
316 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
317 selected_rows = gtk_tree_selection_get_selected_rows (sel, NULL);
319 if (selected_rows == NULL)
322 node = g_list_last (selected_rows);
323 path = gtk_tree_path_copy ((GtkTreePath *) node->data);
324 gtk_tree_path_next (path);
326 result = gtk_tree_row_reference_new (model, path);
328 gtk_tree_path_free (path);
329 g_list_foreach (selected_rows, (GFunc) gtk_tree_path_free, NULL);
330 g_list_free (selected_rows);
336 headers_action_mark_as_read (TnyHeader *header,
340 TnyHeaderFlags flags;
342 g_return_if_fail (TNY_IS_HEADER(header));
344 flags = tny_header_get_flags (header);
345 if (flags & TNY_HEADER_FLAG_SEEN) return;
346 tny_header_set_flag (header, TNY_HEADER_FLAG_SEEN);
350 headers_action_mark_as_unread (TnyHeader *header,
354 TnyHeaderFlags flags;
356 g_return_if_fail (TNY_IS_HEADER(header));
358 flags = tny_header_get_flags (header);
359 if (flags & TNY_HEADER_FLAG_SEEN) {
360 tny_header_unset_flag (header, TNY_HEADER_FLAG_SEEN);
364 /** After deleing a message that is currently visible in a window,
365 * show the next message from the list, or close the window if there are no more messages.
368 modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win)
370 /* Close msg view window or select next */
371 if (!modest_msg_view_window_select_next_message (win) &&
372 !modest_msg_view_window_select_previous_message (win)) {
374 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
380 modest_ui_actions_on_delete_message (GtkAction *action, ModestWindow *win)
382 TnyList *header_list = NULL;
383 TnyIterator *iter = NULL;
384 TnyHeader *header = NULL;
385 gchar *message = NULL;
388 ModestWindowMgr *mgr;
389 GtkWidget *header_view = NULL;
391 g_return_if_fail (MODEST_IS_WINDOW(win));
393 /* Check first if the header view has the focus */
394 if (MODEST_IS_MAIN_WINDOW (win)) {
396 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
397 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
398 if (!gtk_widget_is_focus (header_view))
402 /* Get the headers, either from the header view (if win is the main window),
403 * or from the message view window: */
404 header_list = get_selected_headers (win);
405 if (!header_list) return;
407 /* Check if any of the headers are already opened, or in the process of being opened */
408 if (MODEST_IS_MAIN_WINDOW (win)) {
409 gint opened_headers = 0;
411 iter = tny_list_create_iterator (header_list);
412 mgr = modest_runtime_get_window_mgr ();
413 while (!tny_iterator_is_done (iter)) {
414 header = TNY_HEADER (tny_iterator_get_current (iter));
416 if (modest_window_mgr_find_registered_header (mgr, header, NULL))
418 g_object_unref (header);
420 tny_iterator_next (iter);
422 g_object_unref (iter);
424 if (opened_headers > 0) {
427 msg = g_strdup_printf (_("mcen_nc_unable_to_delete_n_messages"),
430 modest_platform_run_information_dialog (GTK_WINDOW (win), (const gchar *) msg);
433 g_object_unref (header_list);
439 if (tny_list_get_length(header_list) == 1) {
440 iter = tny_list_create_iterator (header_list);
441 header = TNY_HEADER (tny_iterator_get_current (iter));
443 desc = g_strdup_printf ("%s", tny_header_get_subject (header));
444 g_object_unref (header);
447 g_object_unref (iter);
449 message = g_strdup_printf(ngettext("emev_nc_delete_message", "emev_nc_delete_messages",
450 tny_list_get_length(header_list)), desc);
452 /* Confirmation dialog */
453 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
457 if (response == GTK_RESPONSE_OK) {
458 ModestWindow *main_window = NULL;
459 ModestWindowMgr *mgr = NULL;
460 GtkTreeModel *model = NULL;
461 GtkTreeSelection *sel = NULL;
462 GList *sel_list = NULL, *tmp = NULL;
463 GtkTreeRowReference *next_row_reference = NULL;
464 GtkTreeRowReference *prev_row_reference = NULL;
465 GtkTreePath *next_path = NULL;
466 GtkTreePath *prev_path = NULL;
467 ModestMailOperation *mail_op = NULL;
469 /* Find last selected row */
470 if (MODEST_IS_MAIN_WINDOW (win)) {
471 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
472 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
473 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
474 for (tmp=sel_list; tmp; tmp=tmp->next) {
475 if (tmp->next == NULL) {
476 prev_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
477 next_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
479 gtk_tree_path_prev (prev_path);
480 gtk_tree_path_next (next_path);
482 prev_row_reference = gtk_tree_row_reference_new (model, prev_path);
483 next_row_reference = gtk_tree_row_reference_new (model, next_path);
488 /* Disable window dimming management */
489 modest_window_disable_dimming (MODEST_WINDOW(win));
491 /* Remove each header. If it's a view window header_view == NULL */
492 mail_op = modest_mail_operation_new ((GObject *) win);
493 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
495 modest_mail_operation_remove_msgs (mail_op, header_list, FALSE);
496 g_object_unref (mail_op);
498 /* Enable window dimming management */
500 gtk_tree_selection_unselect_all (sel);
502 modest_window_enable_dimming (MODEST_WINDOW(win));
504 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
505 modest_ui_actions_refresh_message_window_after_delete (MODEST_MSG_VIEW_WINDOW (win));
507 /* Get main window */
508 mgr = modest_runtime_get_window_mgr ();
509 main_window = modest_window_mgr_get_main_window (mgr, FALSE); /* don't create */
511 /* Move cursor to next row */
514 /* Select next or previous row */
515 if (gtk_tree_row_reference_valid (next_row_reference)) {
516 /* next_path = gtk_tree_row_reference_get_path (row_reference); */
517 gtk_tree_selection_select_path (sel, next_path);
519 else if (gtk_tree_row_reference_valid (prev_row_reference)) {
520 gtk_tree_selection_select_path (sel, prev_path);
524 if (next_row_reference != NULL)
525 gtk_tree_row_reference_free (next_row_reference);
526 if (next_path != NULL)
527 gtk_tree_path_free (next_path);
528 if (prev_row_reference != NULL)
529 gtk_tree_row_reference_free (prev_row_reference);
530 if (prev_path != NULL)
531 gtk_tree_path_free (prev_path);
534 /* Update toolbar dimming state */
536 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
539 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
540 g_list_free (sel_list);
546 g_object_unref (header_list);
552 /* delete either message or folder, based on where we are */
554 modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win)
556 g_return_if_fail (MODEST_IS_WINDOW(win));
558 /* Check first if the header view has the focus */
559 if (MODEST_IS_MAIN_WINDOW (win)) {
561 w = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
562 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
563 if (gtk_widget_is_focus (w)) {
564 modest_ui_actions_on_delete_folder (action, MODEST_MAIN_WINDOW(win));
568 modest_ui_actions_on_delete_message (action, win);
572 modest_ui_actions_on_quit (GtkAction *action, ModestWindow *win)
574 ModestWindowMgr *mgr = NULL;
576 #ifdef MODEST_PLATFORM_MAEMO
577 modest_osso_save_state();
578 #endif /* MODEST_PLATFORM_MAEMO */
580 g_debug ("closing down, clearing %d item(s) from operation queue",
581 modest_mail_operation_queue_num_elements
582 (modest_runtime_get_mail_operation_queue()));
584 /* cancel all outstanding operations */
585 modest_mail_operation_queue_cancel_all
586 (modest_runtime_get_mail_operation_queue());
588 g_debug ("queue has been cleared");
591 /* Check if there are opened editing windows */
592 mgr = modest_runtime_get_window_mgr ();
593 modest_window_mgr_close_all_windows (mgr);
595 /* note: when modest-tny-account-store is finalized,
596 it will automatically set all network connections
599 /* gtk_main_quit (); */
603 modest_ui_actions_on_close_window (GtkAction *action, ModestWindow *win)
607 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
609 /* if (MODEST_IS_MSG_VIEW_WINDOW (win)) { */
610 /* gtk_widget_destroy (GTK_WIDGET (win)); */
611 /* } else if (MODEST_IS_MSG_EDIT_WINDOW (win)) { */
612 /* gboolean ret_value; */
613 /* g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value); */
614 /* } else if (MODEST_IS_WINDOW (win)) { */
615 /* gtk_widget_destroy (GTK_WIDGET (win)); */
617 /* g_return_if_reached (); */
622 modest_ui_actions_on_add_to_contacts (GtkAction *action, ModestWindow *win)
624 GtkClipboard *clipboard = NULL;
625 gchar *selection = NULL;
627 clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
628 selection = gtk_clipboard_wait_for_text (clipboard);
630 /* Question: why is the clipboard being used here?
631 * It doesn't really make a lot of sense. */
635 modest_address_book_add_address (selection);
641 modest_ui_actions_on_accounts (GtkAction *action,
644 /* This is currently only implemented for Maemo */
645 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE)) {
646 if (!modest_ui_actions_run_account_setup_wizard (win))
647 g_debug ("%s: wizard was already running", __FUNCTION__);
651 /* Show the list of accounts */
652 GtkWindow *account_win = GTK_WINDOW (modest_account_view_window_new ());
653 gtk_window_set_transient_for (account_win, GTK_WINDOW (win));
655 /* The accounts dialog must be modal */
656 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), account_win);
657 modest_utils_show_dialog_and_forget (GTK_WINDOW (win), GTK_DIALOG (account_win));
661 #ifdef MODEST_PLATFORM_MAEMO
663 on_smtp_servers_window_hide (GtkWindow* window, gpointer user_data)
665 /* Save any changes. */
666 modest_connection_specific_smtp_window_save_server_accounts (
667 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (window));
668 gtk_widget_destroy (GTK_WIDGET (window));
674 modest_ui_actions_on_smtp_servers (GtkAction *action, ModestWindow *win)
676 /* This is currently only implemented for Maemo,
677 * because it requires an API (libconic) to detect different connection
680 #ifdef MODEST_PLATFORM_MAEMO /* Defined in config.h */
682 /* Create the window if necessary: */
683 GtkWidget *specific_window = GTK_WIDGET (modest_connection_specific_smtp_window_new ());
684 modest_connection_specific_smtp_window_fill_with_connections (
685 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window),
686 modest_runtime_get_account_mgr());
688 /* Show the window: */
689 gtk_window_set_transient_for (GTK_WINDOW (specific_window), GTK_WINDOW (win));
690 gtk_window_set_modal (GTK_WINDOW (specific_window), TRUE);
691 gtk_widget_show (specific_window);
693 /* Save changes when the window is hidden: */
694 g_signal_connect (specific_window, "hide",
695 G_CALLBACK (on_smtp_servers_window_hide), win);
696 #endif /* MODEST_PLATFORM_MAEMO */
700 modest_ui_actions_compose_msg(ModestWindow *win,
703 const gchar *bcc_str,
704 const gchar *subject_str,
705 const gchar *body_str,
707 gboolean set_as_modified)
709 gchar *account_name = NULL;
711 TnyAccount *account = NULL;
712 TnyFolder *folder = NULL;
713 gchar *from_str = NULL, *signature = NULL, *body = NULL;
714 gboolean use_signature = FALSE;
715 ModestWindow *msg_win = NULL;
716 ModestAccountMgr *mgr = modest_runtime_get_account_mgr();
717 ModestTnyAccountStore *store = modest_runtime_get_account_store();
719 account_name = modest_account_mgr_get_default_account(mgr);
721 g_printerr ("modest: no account found\n");
724 account = modest_tny_account_store_get_server_account (store, account_name, TNY_ACCOUNT_TYPE_STORE);
726 g_printerr ("modest: failed to get tnyaccount for '%s'\n", account_name);
729 folder = modest_tny_account_get_special_folder (account, TNY_FOLDER_TYPE_DRAFTS);
731 g_printerr ("modest: failed to find Drafts folder\n");
734 from_str = modest_account_mgr_get_from_string (mgr, account_name);
736 g_printerr ("modest: failed get from string for '%s'\n", account_name);
740 signature = modest_account_mgr_get_signature (mgr, account_name, &use_signature);
741 if (body_str != NULL) {
742 body = use_signature ? g_strconcat(body_str, "\n", signature, NULL) : g_strdup(body_str);
744 body = use_signature ? g_strconcat("\n", signature, NULL) : g_strdup("");
747 msg = modest_tny_msg_new (to_str, from_str, cc_str, bcc_str, subject_str, body, NULL);
749 g_printerr ("modest: failed to create new msg\n");
753 /* Create and register edit window */
754 /* This is destroyed by TODO. */
755 msg_win = modest_msg_edit_window_new (msg, account_name, FALSE);
756 while (attachments) {
757 modest_msg_edit_window_attach_file_one((ModestMsgEditWindow *)msg_win,
759 attachments = g_slist_next(attachments);
761 modest_window_mgr_register_window (modest_runtime_get_window_mgr(), msg_win);
762 modest_msg_edit_window_set_modified (MODEST_MSG_EDIT_WINDOW (msg_win), set_as_modified);
764 gtk_widget_show_all (GTK_WIDGET (msg_win));
770 g_free (account_name);
771 if (account) g_object_unref (G_OBJECT(account));
772 if (folder) g_object_unref (G_OBJECT(folder));
773 if (msg_win) g_object_unref (G_OBJECT(msg_win));
774 if (msg) g_object_unref (G_OBJECT(msg));
778 modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win)
780 /* if there are no accounts yet, just show the wizard */
781 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE))
782 if (!modest_ui_actions_run_account_setup_wizard (win))
785 modest_ui_actions_compose_msg(win, NULL, NULL, NULL, NULL, NULL, NULL, FALSE);
790 modest_ui_actions_msg_retrieval_check (ModestMailOperation *mail_op,
794 ModestMailOperationStatus status;
796 /* If there is no message or the operation was not successful */
797 status = modest_mail_operation_get_status (mail_op);
798 if (!msg || status != MODEST_MAIL_OPERATION_STATUS_SUCCESS) {
800 /* Remove the header from the preregistered uids */
801 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
819 OpenMsgBannerInfo *banner_info;
820 GHashTable *row_refs_per_header;
824 open_msg_banner_idle (gpointer userdata)
826 OpenMsgBannerInfo *banner_info = (OpenMsgBannerInfo *) userdata;
828 gdk_threads_enter ();
829 banner_info->idle_handler = 0;
830 banner_info->banner = modest_platform_animation_banner (NULL, NULL, banner_info->message);
831 g_object_ref (banner_info->banner);
833 gdk_threads_leave ();
840 open_msg_cb (ModestMailOperation *mail_op,
847 ModestWindowMgr *mgr = NULL;
848 ModestWindow *parent_win = NULL;
849 ModestWindow *win = NULL;
850 TnyFolderType folder_type = TNY_FOLDER_TYPE_UNKNOWN;
851 gchar *account = NULL;
853 gboolean open_in_editor = FALSE;
854 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
856 /* Do nothing if there was any problem with the mail
857 operation. The error will be shown by the error_handler of
858 the mail operation */
859 if (!modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
862 parent_win = (ModestWindow *) modest_mail_operation_get_source (mail_op);
863 folder = tny_header_get_folder (header);
865 /* Mark header as read */
866 headers_action_mark_as_read (header, MODEST_WINDOW(parent_win), NULL);
868 /* Gets folder type (OUTBOX headers will be opened in edit window */
869 if (modest_tny_folder_is_local_folder (folder)) {
870 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
871 if (folder_type == TNY_FOLDER_TYPE_INVALID)
872 g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
876 if (folder_type == TNY_FOLDER_TYPE_OUTBOX) {
877 TnyTransportAccount *traccount = NULL;
878 ModestTnyAccountStore *accstore = modest_runtime_get_account_store();
879 traccount = modest_tny_account_store_get_transport_account_from_outbox_header(accstore, header);
881 ModestTnySendQueue *send_queue = NULL;
882 ModestTnySendQueueStatus status;
884 account = g_strdup(modest_tny_account_get_parent_modest_account_name_for_server_account(
885 TNY_ACCOUNT(traccount)));
886 send_queue = modest_runtime_get_send_queue(traccount);
887 msg_id = modest_tny_send_queue_get_msg_id (header);
888 status = modest_tny_send_queue_get_msg_status(send_queue, msg_id);
889 /* Only open messages in outbox with the editor if they are in Failed state */
890 if (status == MODEST_TNY_SEND_QUEUE_FAILED) {
891 open_in_editor = TRUE;
894 g_object_unref(traccount);
896 g_warning("Cannot get transport account for message in outbox!!");
898 } else if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
899 open_in_editor = TRUE; /* Open in editor if the message is in the Drafts folder */
904 account = g_strdup (modest_window_get_active_account (MODEST_WINDOW (parent_win)));
906 account = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
908 if (open_in_editor) {
909 ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
910 const gchar *from_header = NULL;
912 from_header = tny_header_get_from (header);
914 /* we cannot edit without a valid account... */
915 if (!modest_account_mgr_has_accounts(mgr, TRUE)) {
916 if (!modest_ui_actions_run_account_setup_wizard(parent_win))
921 GSList *accounts = modest_account_mgr_account_names (mgr, TRUE);
923 for (node = accounts; node != NULL; node = g_slist_next (node)) {
924 gchar *from = modest_account_mgr_get_from_string (mgr, node->data);
926 if (from && (strcmp (from_header, from) == 0)) {
928 account = g_strdup (node->data);
934 g_slist_foreach (accounts, (GFunc) g_free, NULL);
935 g_slist_free (accounts);
938 win = modest_msg_edit_window_new (msg, account, TRUE);
943 gchar *uid = modest_tny_folder_get_header_unique_id (header);
945 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
946 GtkTreeRowReference *row_reference;
948 row_reference = (GtkTreeRowReference *) g_hash_table_lookup (helper->row_refs_per_header, header);
950 win = modest_msg_view_window_new_with_header_model (msg, account, (const gchar*) uid,
951 helper->model, row_reference);
953 win = modest_msg_view_window_new_for_attachment (msg, account, (const gchar*) uid);
958 /* Register and show new window */
960 mgr = modest_runtime_get_window_mgr ();
961 modest_window_mgr_register_window (mgr, win);
962 g_object_unref (win);
963 gtk_widget_show_all (GTK_WIDGET(win));
966 /* Update toolbar dimming state */
967 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
968 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (parent_win));
974 g_object_unref (parent_win);
975 g_object_unref (folder);
979 modest_ui_actions_disk_operations_error_handler (ModestMailOperation *mail_op,
985 win = modest_mail_operation_get_source (mail_op);
986 error = modest_mail_operation_get_error (mail_op);
989 if (error->code == TNY_SYSTEM_ERROR_MEMORY ||
990 error->code == TNY_IO_ERROR_WRITE ||
991 error->code == TNY_IO_ERROR_READ) {
992 ModestMailOperationStatus st = modest_mail_operation_get_status (mail_op);
993 /* If the mail op has been cancelled then it's not an error: don't show any message */
994 if (st != MODEST_MAIL_OPERATION_STATUS_CANCELED) {
995 modest_platform_information_banner ((GtkWidget *) win,
996 NULL, dgettext("ke-recv",
997 "cerm_device_memory_full"));
999 } else if (user_data) {
1000 modest_platform_information_banner ((GtkWidget *) win,
1005 g_object_unref (win);
1009 * Returns the account a list of headers belongs to. It returns a
1010 * *new* reference so don't forget to unref it
1013 get_account_from_header_list (TnyList *headers)
1015 TnyAccount *account = NULL;
1017 if (tny_list_get_length (headers) > 0) {
1018 TnyIterator *iter = tny_list_create_iterator (headers);
1019 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1020 TnyFolder *folder = tny_header_get_folder (header);
1023 g_object_unref (header);
1025 while (!tny_iterator_is_done (iter)) {
1026 header = TNY_HEADER (tny_iterator_get_current (iter));
1027 folder = tny_header_get_folder (header);
1030 g_object_unref (header);
1032 tny_iterator_next (iter);
1037 account = tny_folder_get_account (folder);
1038 g_object_unref (folder);
1042 g_object_unref (header);
1044 g_object_unref (iter);
1050 foreach_unregister_headers (gpointer data,
1053 ModestWindowMgr *mgr = (ModestWindowMgr *) user_data;
1054 TnyHeader *header = TNY_HEADER (data);
1056 modest_window_mgr_unregister_header (mgr, header);
1060 open_msgs_helper_destroyer (gpointer user_data)
1062 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
1064 if (helper->banner_info) {
1065 g_free (helper->banner_info->message);
1066 if (helper->banner_info->idle_handler > 0) {
1067 g_source_remove (helper->banner_info->idle_handler);
1068 helper->banner_info->idle_handler = 0;
1070 if (helper->banner_info->banner != NULL) {
1071 gtk_widget_destroy (helper->banner_info->banner);
1072 g_object_unref (helper->banner_info->banner);
1073 helper->banner_info->banner = NULL;
1075 g_slice_free (OpenMsgBannerInfo, helper->banner_info);
1076 helper->banner_info = NULL;
1078 g_object_unref (helper->model);
1079 g_object_unref (helper->headers);
1080 g_hash_table_destroy (helper->row_refs_per_header);
1081 g_slice_free (OpenMsgHelper, helper);
1085 open_msgs_performer(gboolean canceled,
1087 GtkWindow *parent_window,
1088 TnyAccount *account,
1091 ModestMailOperation *mail_op = NULL;
1092 const gchar *proto_name;
1094 ModestTransportStoreProtocol proto;
1095 TnyList *not_opened_headers;
1096 TnyConnectionStatus status;
1097 gboolean show_open_draft = FALSE;
1098 OpenMsgHelper *helper = NULL;
1100 helper = (OpenMsgHelper *) user_data;
1101 not_opened_headers = helper->headers;
1103 status = tny_account_get_connection_status (account);
1104 if (err || canceled) {
1105 /* Unregister the already registered headers */
1106 tny_list_foreach (not_opened_headers, foreach_unregister_headers,
1107 modest_runtime_get_window_mgr ());
1108 /* Free the helper */
1109 open_msgs_helper_destroyer (helper);
1113 /* Get the error message depending on the protocol */
1114 proto_name = tny_account_get_proto (account);
1115 if (proto_name != NULL) {
1116 proto = modest_protocol_info_get_transport_store_protocol (proto_name);
1118 proto = MODEST_PROTOCOL_STORE_MAILDIR;
1121 /* Create the error messages */
1122 if (tny_list_get_length (not_opened_headers) == 1) {
1123 if (proto == MODEST_PROTOCOL_STORE_POP) {
1124 error_msg = g_strdup (_("emev_ni_ui_pop3_msg_recv_error"));
1125 } else if (proto == MODEST_PROTOCOL_STORE_IMAP) {
1126 TnyIterator *iter = tny_list_create_iterator (not_opened_headers);
1127 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1128 error_msg = g_strdup_printf (_("emev_ni_ui_imap_message_not_available_in_server"),
1129 tny_header_get_subject (header));
1130 g_object_unref (header);
1131 g_object_unref (iter);
1136 TnyFolderType folder_type;
1138 iter = tny_list_create_iterator (not_opened_headers);
1139 header = TNY_HEADER (tny_iterator_get_current (iter));
1140 folder = tny_header_get_folder (header);
1141 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
1142 show_open_draft = (folder_type == TNY_FOLDER_TYPE_DRAFTS);
1143 g_object_unref (folder);
1144 g_object_unref (header);
1145 g_object_unref (iter);
1146 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1149 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1152 /* Create the mail operation */
1154 modest_mail_operation_new_with_error_handling ((GObject *) parent_window,
1155 modest_ui_actions_disk_operations_error_handler,
1157 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
1160 if (show_open_draft) {
1161 helper->banner_info = g_slice_new (OpenMsgBannerInfo);
1162 helper->banner_info->message = g_strdup (_("mail_ib_opening_draft_message"));
1163 helper->banner_info->banner = NULL;
1164 helper->banner_info->idle_handler = g_timeout_add (500, open_msg_banner_idle,
1165 helper->banner_info);
1168 modest_mail_operation_get_msgs_full (mail_op,
1172 open_msgs_helper_destroyer);
1177 g_object_unref (mail_op);
1178 g_object_unref (account);
1182 * This function is used by both modest_ui_actions_on_open and
1183 * modest_ui_actions_on_header_activated. This way we always do the
1184 * same when trying to open messages.
1187 open_msgs_from_headers (TnyList *headers, ModestWindow *win)
1189 ModestWindowMgr *mgr = NULL;
1190 TnyIterator *iter = NULL, *iter_not_opened = NULL;
1191 TnyList *not_opened_headers = NULL;
1192 TnyHeaderFlags flags = 0;
1193 TnyAccount *account;
1194 gint uncached_msgs = 0;
1195 GtkWidget *header_view;
1196 GtkTreeModel *model;
1197 GHashTable *refs_for_headers;
1198 OpenMsgHelper *helper;
1199 GtkTreeSelection *sel;
1200 GList *sel_list = NULL, *sel_list_iter = NULL;
1202 g_return_if_fail (headers != NULL);
1204 /* Check that only one message is selected for opening */
1205 if (tny_list_get_length (headers) != 1) {
1206 modest_platform_information_banner ((win) ? GTK_WIDGET (win) : NULL,
1207 NULL, _("mcen_ib_select_one_message"));
1211 mgr = modest_runtime_get_window_mgr ();
1212 iter = tny_list_create_iterator (headers);
1214 /* Get the account */
1215 account = get_account_from_header_list (headers);
1220 /* Get the selections, we need to get the references to the
1221 rows here because the treeview/model could dissapear (the
1222 user might want to select another folder)*/
1223 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
1224 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1225 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
1226 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
1227 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
1228 refs_for_headers = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL,
1229 (GDestroyNotify) gtk_tree_row_reference_free);
1231 /* Look if we already have a message view for each header. If
1232 true, then remove the header from the list of headers to
1234 sel_list_iter = sel_list;
1235 not_opened_headers = tny_simple_list_new ();
1236 while (!tny_iterator_is_done (iter) && sel_list_iter) {
1238 ModestWindow *window = NULL;
1239 TnyHeader *header = NULL;
1240 gboolean found = FALSE;
1242 header = TNY_HEADER (tny_iterator_get_current (iter));
1244 flags = tny_header_get_flags (header);
1247 found = modest_window_mgr_find_registered_header (mgr, header, &window);
1249 /* Do not open again the message and present the
1250 window to the user */
1253 gtk_window_present (GTK_WINDOW (window));
1255 /* the header has been registered already, we don't do
1256 * anything but wait for the window to come up*/
1257 g_debug ("header %p already registered, waiting for window", header);
1260 GtkTreeRowReference *row_reference;
1262 tny_list_append (not_opened_headers, G_OBJECT (header));
1263 /* Create a new row reference and add it to the hash table */
1264 row_reference = gtk_tree_row_reference_new (model, (GtkTreePath *) sel_list_iter->data);
1265 g_hash_table_insert (refs_for_headers, header, row_reference);
1269 g_object_unref (header);
1272 tny_iterator_next (iter);
1273 sel_list_iter = g_list_next (sel_list_iter);
1275 g_object_unref (iter);
1277 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
1278 g_list_free (sel_list);
1280 /* Open each message */
1281 if (tny_list_get_length (not_opened_headers) == 0) {
1282 g_hash_table_destroy (refs_for_headers);
1286 /* If some messages would have to be downloaded, ask the user to
1287 * make a connection. It's generally easier to do this here (in the mainloop)
1288 * than later in a thread:
1290 if (tny_list_get_length (not_opened_headers) > 0) {
1291 uncached_msgs = header_list_count_uncached_msgs (not_opened_headers);
1293 if (uncached_msgs > 0) {
1294 /* Allways download if we are online. */
1295 if (!tny_device_is_online (modest_runtime_get_device ())) {
1298 /* If ask for user permission to download the messages */
1299 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1300 ngettext("mcen_nc_get_msg",
1304 /* End if the user does not want to continue */
1305 if (response == GTK_RESPONSE_CANCEL) {
1306 g_hash_table_destroy (refs_for_headers);
1313 /* Register the headers before actually creating the windows: */
1314 iter_not_opened = tny_list_create_iterator (not_opened_headers);
1315 while (!tny_iterator_is_done (iter_not_opened)) {
1316 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter_not_opened));
1318 modest_window_mgr_register_header (mgr, header, NULL);
1319 g_object_unref (header);
1321 tny_iterator_next (iter_not_opened);
1323 g_object_unref (iter_not_opened);
1324 iter_not_opened = NULL;
1326 /* Create the helper. We need to get a reference to the model
1327 here because it could change while the message is readed
1328 (the user could switch between folders) */
1329 helper = g_slice_new (OpenMsgHelper);
1330 helper->model = g_object_ref (model);
1331 helper->headers = g_object_ref (not_opened_headers);
1332 helper->row_refs_per_header = refs_for_headers;
1333 helper->banner_info = NULL;
1335 /* Connect to the account and perform */
1336 if (uncached_msgs > 0) {
1337 modest_platform_connect_and_perform ((GtkWindow *) win, TRUE, g_object_ref (account),
1338 open_msgs_performer, helper);
1340 /* Call directly the performer, do not need to connect */
1341 open_msgs_performer (FALSE, NULL, (GtkWindow *) win,
1342 g_object_ref (account), helper);
1347 g_object_unref (account);
1348 if (not_opened_headers)
1349 g_object_unref (not_opened_headers);
1353 modest_ui_actions_on_open (GtkAction *action, ModestWindow *win)
1358 headers = get_selected_headers (win);
1363 open_msgs_from_headers (headers, win);
1365 g_object_unref(headers);
1370 free_reply_forward_helper (gpointer data)
1372 ReplyForwardHelper *helper;
1374 helper = (ReplyForwardHelper *) data;
1375 g_free (helper->account_name);
1376 g_slice_free (ReplyForwardHelper, helper);
1380 reply_forward_cb (ModestMailOperation *mail_op,
1388 ReplyForwardHelper *rf_helper;
1389 ModestWindow *msg_win = NULL;
1390 ModestEditType edit_type;
1392 TnyAccount *account = NULL;
1393 ModestWindowMgr *mgr = NULL;
1394 gchar *signature = NULL;
1395 gboolean use_signature;
1397 /* If there was any error. The mail operation could be NULL,
1398 this means that we already have the message downloaded and
1399 that we didn't do a mail operation to retrieve it */
1400 if (mail_op && !modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1403 g_return_if_fail (user_data != NULL);
1404 rf_helper = (ReplyForwardHelper *) user_data;
1406 from = modest_account_mgr_get_from_string (modest_runtime_get_account_mgr(),
1407 rf_helper->account_name);
1408 signature = modest_account_mgr_get_signature (modest_runtime_get_account_mgr(),
1409 rf_helper->account_name,
1412 /* Create reply mail */
1413 switch (rf_helper->action) {
1416 modest_tny_msg_create_reply_msg (msg, header, from,
1417 (use_signature) ? signature : NULL,
1418 rf_helper->reply_forward_type,
1419 MODEST_TNY_MSG_REPLY_MODE_SENDER);
1421 case ACTION_REPLY_TO_ALL:
1423 modest_tny_msg_create_reply_msg (msg, header, from,
1424 (use_signature) ? signature : NULL,
1425 rf_helper->reply_forward_type,
1426 MODEST_TNY_MSG_REPLY_MODE_ALL);
1427 edit_type = MODEST_EDIT_TYPE_REPLY;
1429 case ACTION_FORWARD:
1431 modest_tny_msg_create_forward_msg (msg, from, (use_signature) ? signature : NULL,
1432 rf_helper->reply_forward_type);
1433 edit_type = MODEST_EDIT_TYPE_FORWARD;
1436 g_return_if_reached ();
1443 g_printerr ("modest: failed to create message\n");
1447 account = modest_tny_account_store_get_server_account (modest_runtime_get_account_store(),
1448 rf_helper->account_name,
1449 TNY_ACCOUNT_TYPE_STORE);
1451 g_printerr ("modest: failed to get tnyaccount for '%s'\n", rf_helper->account_name);
1455 /* Create and register the windows */
1456 msg_win = modest_msg_edit_window_new (new_msg, rf_helper->account_name, FALSE);
1457 mgr = modest_runtime_get_window_mgr ();
1458 modest_window_mgr_register_window (mgr, msg_win);
1460 if (rf_helper->parent_window != NULL) {
1461 gdouble parent_zoom;
1463 parent_zoom = modest_window_get_zoom (MODEST_WINDOW (rf_helper->parent_window));
1464 modest_window_set_zoom (msg_win, parent_zoom);
1467 /* Show edit window */
1468 gtk_widget_show_all (GTK_WIDGET (msg_win));
1472 g_object_unref (msg_win);
1474 g_object_unref (G_OBJECT (new_msg));
1476 g_object_unref (G_OBJECT (account));
1477 /* g_object_unref (msg); */
1478 free_reply_forward_helper (rf_helper);
1481 /* Checks a list of headers. If any of them are not currently
1482 * downloaded (CACHED) then returns TRUE else returns FALSE.
1485 header_list_count_uncached_msgs (TnyList *header_list)
1488 gint uncached_messages = 0;
1490 iter = tny_list_create_iterator (header_list);
1491 while (!tny_iterator_is_done (iter)) {
1494 header = TNY_HEADER (tny_iterator_get_current (iter));
1496 if (!(tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED))
1497 uncached_messages ++;
1498 g_object_unref (header);
1501 tny_iterator_next (iter);
1503 g_object_unref (iter);
1505 return uncached_messages;
1508 /* Returns FALSE if the user does not want to download the
1509 * messages. Returns TRUE if the user allowed the download.
1512 connect_to_get_msg (ModestWindow *win,
1513 gint num_of_uncached_msgs,
1514 TnyAccount *account)
1516 GtkResponseType response;
1518 /* Allways download if we are online. */
1519 if (tny_device_is_online (modest_runtime_get_device ()))
1522 /* If offline, then ask for user permission to download the messages */
1523 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1524 ngettext("mcen_nc_get_msg",
1526 num_of_uncached_msgs));
1528 if (response == GTK_RESPONSE_CANCEL)
1531 return modest_platform_connect_and_wait((GtkWindow *) win, account);
1535 * Common code for the reply and forward actions
1538 reply_forward (ReplyForwardAction action, ModestWindow *win)
1540 ModestMailOperation *mail_op = NULL;
1541 TnyList *header_list = NULL;
1542 ReplyForwardHelper *rf_helper = NULL;
1543 guint reply_forward_type;
1544 gboolean continue_download = TRUE;
1545 gboolean do_retrieve = TRUE;
1547 g_return_if_fail (MODEST_IS_WINDOW(win));
1549 /* we need an account when editing */
1550 if (!modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE)) {
1551 if (!modest_ui_actions_run_account_setup_wizard (win))
1555 header_list = get_selected_headers (win);
1559 reply_forward_type =
1560 modest_conf_get_int (modest_runtime_get_conf (),
1561 (action == ACTION_FORWARD) ? MODEST_CONF_FORWARD_TYPE : MODEST_CONF_REPLY_TYPE,
1564 /* check if we need to download msg before asking about it */
1565 do_retrieve = (action == ACTION_FORWARD) ||
1566 (reply_forward_type != MODEST_TNY_MSG_REPLY_TYPE_CITE);
1569 gint num_of_unc_msgs;
1571 /* check that the messages have been previously downloaded */
1572 num_of_unc_msgs = header_list_count_uncached_msgs(header_list);
1573 /* If there are any uncached message ask the user
1574 * whether he/she wants to download them. */
1575 if (num_of_unc_msgs) {
1576 TnyAccount *account = get_account_from_header_list (header_list);
1578 continue_download = connect_to_get_msg (win, num_of_unc_msgs, account);
1579 g_object_unref (account);
1584 if (!continue_download) {
1585 g_object_unref (header_list);
1589 /* We assume that we can only select messages of the
1590 same folder and that we reply all of them from the
1591 same account. In fact the interface currently only
1592 allows single selection */
1595 rf_helper = g_slice_new0 (ReplyForwardHelper);
1596 rf_helper->reply_forward_type = reply_forward_type;
1597 rf_helper->action = action;
1598 rf_helper->account_name = g_strdup (modest_window_get_active_account (win));
1600 if ((win != NULL) && (MODEST_IS_WINDOW (win)))
1601 rf_helper->parent_window = GTK_WIDGET (win);
1602 if (!rf_helper->account_name)
1603 rf_helper->account_name =
1604 modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1606 if (MODEST_IS_MSG_VIEW_WINDOW(win)) {
1609 /* Get header and message. Do not free them here, the
1610 reply_forward_cb must do it */
1611 msg = modest_msg_view_window_get_message (MODEST_MSG_VIEW_WINDOW(win));
1612 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW(win));
1613 if (!msg || !header) {
1615 g_object_unref (msg);
1616 g_printerr ("modest: no message found\n");
1619 reply_forward_cb (NULL, header, FALSE, msg, NULL, rf_helper);
1622 g_object_unref (header);
1627 /* Only reply/forward to one message */
1628 iter = tny_list_create_iterator (header_list);
1629 header = TNY_HEADER (tny_iterator_get_current (iter));
1630 g_object_unref (iter);
1633 /* Retrieve messages */
1636 modest_mail_operation_new_with_error_handling (G_OBJECT(win),
1637 modest_ui_actions_disk_operations_error_handler,
1639 modest_mail_operation_queue_add (
1640 modest_runtime_get_mail_operation_queue (), mail_op);
1642 modest_mail_operation_get_msg (mail_op,
1647 g_object_unref(mail_op);
1649 /* we put a ref here to prevent double unref as the reply
1650 * forward callback unrefs the header at its end */
1651 reply_forward_cb (NULL, header, FALSE, NULL, NULL, rf_helper);
1655 g_object_unref (header);
1661 g_object_unref (header_list);
1665 modest_ui_actions_on_reply (GtkAction *action, ModestWindow *win)
1667 g_return_if_fail (MODEST_IS_WINDOW(win));
1669 reply_forward (ACTION_REPLY, win);
1673 modest_ui_actions_on_forward (GtkAction *action, ModestWindow *win)
1675 g_return_if_fail (MODEST_IS_WINDOW(win));
1677 reply_forward (ACTION_FORWARD, win);
1681 modest_ui_actions_on_reply_all (GtkAction *action, ModestWindow *win)
1683 g_return_if_fail (MODEST_IS_WINDOW(win));
1685 reply_forward (ACTION_REPLY_TO_ALL, win);
1689 modest_ui_actions_on_next (GtkAction *action,
1690 ModestWindow *window)
1692 if (MODEST_IS_MAIN_WINDOW (window)) {
1693 GtkWidget *header_view;
1695 header_view = modest_main_window_get_child_widget (
1696 MODEST_MAIN_WINDOW(window),
1697 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1701 modest_header_view_select_next (
1702 MODEST_HEADER_VIEW(header_view));
1703 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
1704 modest_msg_view_window_select_next_message (
1705 MODEST_MSG_VIEW_WINDOW (window));
1707 g_return_if_reached ();
1712 modest_ui_actions_on_prev (GtkAction *action,
1713 ModestWindow *window)
1715 g_return_if_fail (MODEST_IS_WINDOW(window));
1717 if (MODEST_IS_MAIN_WINDOW (window)) {
1718 GtkWidget *header_view;
1719 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
1720 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1724 modest_header_view_select_prev (MODEST_HEADER_VIEW(header_view));
1725 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
1726 modest_msg_view_window_select_previous_message (MODEST_MSG_VIEW_WINDOW (window));
1728 g_return_if_reached ();
1733 modest_ui_actions_on_sort (GtkAction *action,
1734 ModestWindow *window)
1736 g_return_if_fail (MODEST_IS_WINDOW(window));
1738 if (MODEST_IS_MAIN_WINDOW (window)) {
1739 GtkWidget *header_view;
1740 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
1741 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1743 modest_platform_information_banner (NULL, NULL, _CS("ckdg_ib_nothing_to_sort"));
1748 /* Show sorting dialog */
1749 modest_platform_run_sort_dialog (GTK_WINDOW (window), MODEST_SORT_HEADERS);
1754 new_messages_arrived (ModestMailOperation *self,
1755 TnyList *new_headers,
1759 gboolean show_visual_notifications;
1761 source = modest_mail_operation_get_source (self);
1762 show_visual_notifications = (source) ? FALSE : TRUE;
1764 g_object_unref (source);
1766 /* Notify new messages have been downloaded. If the
1767 send&receive was invoked by the user then do not show any
1768 visual notification, only play a sound and activate the LED
1769 (for the Maemo version) */
1770 if (TNY_IS_LIST(new_headers) && (tny_list_get_length (new_headers)) > 0)
1771 modest_platform_on_new_headers_received (new_headers,
1772 show_visual_notifications);
1777 retrieve_all_messages_cb (GObject *source,
1779 guint retrieve_limit)
1785 window = GTK_WINDOW (source);
1786 msg = g_strdup_printf (_("mail_nc_msg_count_limit_exceeded"),
1787 num_msgs, retrieve_limit);
1789 /* Ask the user if they want to retrieve all the messages */
1791 modest_platform_run_confirmation_dialog_with_buttons (window, msg,
1792 _("mcen_bd_get_all"),
1793 _("mcen_bd_newest_only"));
1794 /* Free and return */
1796 return (response == GTK_RESPONSE_ACCEPT) ? TRUE : FALSE;
1800 TnyAccount *account;
1802 gchar *account_name;
1803 gboolean poke_status;
1804 gboolean interactive;
1808 do_send_receive_performer (gboolean canceled,
1810 GtkWindow *parent_window,
1811 TnyAccount *account,
1814 ModestMailOperation *mail_op;
1815 SendReceiveInfo *info;
1817 info = (SendReceiveInfo *) user_data;
1819 if (err || canceled) {
1823 /* Set send/receive operation in progress */
1824 if (info->win && MODEST_IS_MAIN_WINDOW (info->win)) {
1825 modest_main_window_notify_send_receive_initied (MODEST_MAIN_WINDOW (info->win));
1828 mail_op = modest_mail_operation_new_with_error_handling ((info->win) ? G_OBJECT (info->win) : NULL,
1829 modest_ui_actions_send_receive_error_handler,
1832 if (info->win && MODEST_IS_MAIN_WINDOW (info->win))
1833 g_signal_connect (G_OBJECT(mail_op), "operation-finished",
1834 G_CALLBACK (on_send_receive_finished),
1837 /* Send & receive. */
1838 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
1839 modest_mail_operation_update_account (mail_op, info->account_name, info->poke_status, info->interactive,
1840 (info->win) ? retrieve_all_messages_cb : NULL,
1841 new_messages_arrived, info->win);
1842 g_object_unref (G_OBJECT (mail_op));
1846 if (info->account_name)
1847 g_free (info->account_name);
1849 g_object_unref (info->win);
1851 g_object_unref (info->account);
1852 g_slice_free (SendReceiveInfo, info);
1856 * This function performs the send & receive required actions. The
1857 * window is used to create the mail operation. Typically it should
1858 * always be the main window, but we pass it as argument in order to
1862 modest_ui_actions_do_send_receive (const gchar *account_name,
1863 gboolean force_connection,
1864 gboolean poke_status,
1865 gboolean interactive,
1868 gchar *acc_name = NULL;
1869 SendReceiveInfo *info;
1870 ModestTnyAccountStore *acc_store;
1872 /* If no account name was provided then get the current account, and if
1873 there is no current account then pick the default one: */
1874 if (!account_name) {
1876 acc_name = g_strdup (modest_window_get_active_account (win));
1878 acc_name = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1880 g_printerr ("modest: cannot get default account\n");
1884 acc_name = g_strdup (account_name);
1887 acc_store = modest_runtime_get_account_store ();
1889 /* Create the info for the connect and perform */
1890 info = g_slice_new (SendReceiveInfo);
1891 info->account_name = acc_name;
1892 info->win = (win) ? g_object_ref (win) : NULL;
1893 info->poke_status = poke_status;
1894 info->interactive = interactive;
1895 info->account = modest_tny_account_store_get_server_account (acc_store, acc_name,
1896 TNY_ACCOUNT_TYPE_STORE);
1898 /* Invoke the connect and perform */
1899 modest_platform_connect_and_perform ((win) ? GTK_WINDOW (win) : NULL,
1900 force_connection, info->account,
1901 do_send_receive_performer, info);
1906 modest_ui_actions_do_cancel_send (const gchar *account_name,
1909 TnyTransportAccount *transport_account;
1910 TnySendQueue *send_queue = NULL;
1911 GError *error = NULL;
1913 /* Get transport account */
1915 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
1916 (modest_runtime_get_account_store(),
1918 TNY_ACCOUNT_TYPE_TRANSPORT));
1919 if (!transport_account) {
1920 g_printerr ("modest: no transport account found for '%s'\n", account_name);
1925 send_queue = TNY_SEND_QUEUE (modest_runtime_get_send_queue (transport_account));
1926 if (!TNY_IS_SEND_QUEUE(send_queue)) {
1927 g_set_error (&error, MODEST_MAIL_OPERATION_ERROR,
1928 MODEST_MAIL_OPERATION_ERROR_ITEM_NOT_FOUND,
1929 "modest: could not find send queue for account\n");
1931 /* Cancel the current send */
1932 tny_account_cancel (TNY_ACCOUNT (transport_account));
1934 /* Suspend all pending messages */
1935 tny_send_queue_cancel (send_queue, TNY_SEND_QUEUE_CANCEL_ACTION_SUSPEND, &error);
1939 if (transport_account != NULL)
1940 g_object_unref (G_OBJECT (transport_account));
1944 modest_ui_actions_cancel_send_all (ModestWindow *win)
1946 GSList *account_names, *iter;
1948 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
1951 iter = account_names;
1953 modest_ui_actions_do_cancel_send ((const char*) iter->data, win);
1954 iter = g_slist_next (iter);
1957 modest_account_mgr_free_account_names (account_names);
1958 account_names = NULL;
1962 modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win)
1965 /* Check if accounts exist */
1966 gboolean accounts_exist =
1967 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
1969 /* If not, allow the user to create an account before trying to send/receive. */
1970 if (!accounts_exist)
1971 modest_ui_actions_on_accounts (NULL, win);
1973 /* Cancel all sending operaitons */
1974 modest_ui_actions_cancel_send_all (win);
1978 * Refreshes all accounts. This function will be used by automatic
1982 modest_ui_actions_do_send_receive_all (ModestWindow *win,
1983 gboolean force_connection,
1984 gboolean poke_status,
1985 gboolean interactive)
1987 GSList *account_names, *iter;
1989 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
1992 iter = account_names;
1994 modest_ui_actions_do_send_receive ((const char*) iter->data,
1996 poke_status, interactive, win);
1997 iter = g_slist_next (iter);
2000 modest_account_mgr_free_account_names (account_names);
2001 account_names = NULL;
2005 * Handler of the click on Send&Receive button in the main toolbar
2008 modest_ui_actions_on_send_receive (GtkAction *action, ModestWindow *win)
2010 /* Check if accounts exist */
2011 gboolean accounts_exist;
2014 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
2016 /* If not, allow the user to create an account before trying to send/receive. */
2017 if (!accounts_exist)
2018 modest_ui_actions_on_accounts (NULL, win);
2020 /* Refresh the current folder. The if is always TRUE it's just an extra check */
2021 if (MODEST_IS_MAIN_WINDOW (win)) {
2022 GtkWidget *folder_view;
2023 TnyFolderStore *folder_store;
2026 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
2027 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2031 folder_store = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2034 g_object_unref (folder_store);
2037 /* Refresh the active account. Force the connection if needed
2038 and poke the status of all folders */
2039 modest_ui_actions_do_send_receive (NULL, TRUE, TRUE, TRUE, win);
2044 modest_ui_actions_toggle_header_list_view (GtkAction *action, ModestMainWindow *main_window)
2047 GtkWidget *header_view;
2049 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2051 header_view = modest_main_window_get_child_widget (main_window,
2052 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2056 conf = modest_runtime_get_conf ();
2058 /* what is saved/restored is depending on the style; thus; we save with
2059 * old style, then update the style, and restore for this new style
2061 modest_widget_memory_save (conf, G_OBJECT(header_view), MODEST_CONF_HEADER_VIEW_KEY);
2063 if (modest_header_view_get_style
2064 (MODEST_HEADER_VIEW(header_view)) == MODEST_HEADER_VIEW_STYLE_DETAILS)
2065 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2066 MODEST_HEADER_VIEW_STYLE_TWOLINES);
2068 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2069 MODEST_HEADER_VIEW_STYLE_DETAILS);
2071 modest_widget_memory_restore (conf, G_OBJECT(header_view),
2072 MODEST_CONF_HEADER_VIEW_KEY);
2077 modest_ui_actions_on_header_selected (ModestHeaderView *header_view,
2079 ModestMainWindow *main_window)
2081 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2082 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
2084 /* in the case the folder is empty, show the empty folder message and focus
2086 if (!header && gtk_widget_is_focus (GTK_WIDGET (header_view))) {
2087 if (modest_header_view_is_empty (header_view)) {
2088 TnyFolder *folder = modest_header_view_get_folder (header_view);
2089 GtkWidget *folder_view =
2090 modest_main_window_get_child_widget (main_window,
2091 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2093 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view), folder, FALSE);
2094 gtk_widget_grab_focus (GTK_WIDGET (folder_view));
2098 /* If no header has been selected then exit */
2103 if (!gtk_widget_is_focus (GTK_WIDGET(header_view)))
2104 gtk_widget_grab_focus (GTK_WIDGET(header_view));
2106 /* Update toolbar dimming state */
2107 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
2108 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2112 modest_ui_actions_on_header_activated (ModestHeaderView *header_view,
2114 ModestMainWindow *main_window)
2118 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2123 if (modest_header_view_count_selected_headers (header_view) > 1) {
2124 modest_platform_information_banner (NULL, NULL, _("mcen_ib_select_one_message"));
2129 /* headers = tny_simple_list_new (); */
2130 /* tny_list_prepend (headers, G_OBJECT (header)); */
2131 headers = modest_header_view_get_selected_headers (header_view);
2133 open_msgs_from_headers (headers, MODEST_WINDOW (main_window));
2135 g_object_unref (headers);
2139 set_active_account_from_tny_account (TnyAccount *account,
2140 ModestWindow *window)
2142 const gchar *server_acc_name = tny_account_get_id (account);
2144 /* We need the TnyAccount provided by the
2145 account store because that is the one that
2146 knows the name of the Modest account */
2147 TnyAccount *modest_server_account = modest_server_account =
2148 modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store (),
2149 MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
2151 if (!modest_server_account) {
2152 g_warning ("%s: could not get tny account\n", __FUNCTION__);
2156 /* Update active account, but only if it's not a pseudo-account */
2157 if ((!modest_tny_account_is_virtual_local_folders(modest_server_account)) &&
2158 (!modest_tny_account_is_memory_card_account(modest_server_account))) {
2159 const gchar *modest_acc_name =
2160 modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
2161 if (modest_acc_name)
2162 modest_window_set_active_account (window, modest_acc_name);
2165 g_object_unref (modest_server_account);
2170 folder_refreshed_cb (ModestMailOperation *mail_op,
2174 ModestMainWindow *win = NULL;
2175 GtkWidget *header_view;
2177 g_return_if_fail (TNY_IS_FOLDER (folder));
2179 win = MODEST_MAIN_WINDOW (user_data);
2181 modest_main_window_get_child_widget(win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2184 TnyFolder *current_folder;
2186 current_folder = modest_header_view_get_folder (MODEST_HEADER_VIEW (header_view));
2187 if (current_folder != NULL && folder != current_folder) {
2188 g_object_unref (current_folder);
2190 } else if (current_folder)
2191 g_object_unref (current_folder);
2194 /* Check if folder is empty and set headers view contents style */
2195 if (tny_folder_get_all_count (folder) == 0)
2196 modest_main_window_set_contents_style (win,
2197 MODEST_MAIN_WINDOW_CONTENTS_STYLE_EMPTY);
2201 modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder_view,
2202 TnyFolderStore *folder_store,
2204 ModestMainWindow *main_window)
2207 GtkWidget *header_view;
2209 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2211 header_view = modest_main_window_get_child_widget(main_window,
2212 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2216 conf = modest_runtime_get_conf ();
2218 if (TNY_IS_ACCOUNT (folder_store)) {
2220 set_active_account_from_tny_account (TNY_ACCOUNT (folder_store), MODEST_WINDOW (main_window));
2222 /* Show account details */
2223 modest_main_window_set_contents_style (main_window, MODEST_MAIN_WINDOW_CONTENTS_STYLE_DETAILS);
2226 if (TNY_IS_FOLDER (folder_store) && selected) {
2228 /* Update the active account */
2229 TnyAccount *account = modest_tny_folder_get_account (TNY_FOLDER (folder_store));
2231 set_active_account_from_tny_account (account, MODEST_WINDOW (main_window));
2232 g_object_unref (account);
2236 /* Set the header style by default, it could
2237 be changed later by the refresh callback to
2239 modest_main_window_set_contents_style (main_window,
2240 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS);
2242 /* Set folder on header view. This function
2243 will call tny_folder_refresh_async so we
2244 pass a callback that will be called when
2245 finished. We use that callback to set the
2246 empty view if there are no messages */
2247 modest_header_view_set_folder (MODEST_HEADER_VIEW(header_view),
2248 TNY_FOLDER (folder_store),
2249 folder_refreshed_cb,
2252 /* Restore configuration. We need to do this
2253 *after* the set_folder because the widget
2254 memory asks the header view about its
2256 modest_widget_memory_restore (modest_runtime_get_conf (),
2257 G_OBJECT(header_view),
2258 MODEST_CONF_HEADER_VIEW_KEY);
2260 /* Update the active account */
2261 //modest_window_set_active_account (MODEST_WINDOW (main_window), NULL);
2262 /* Save only if we're seeing headers */
2263 if (modest_main_window_get_contents_style (main_window) ==
2264 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS)
2265 modest_widget_memory_save (conf, G_OBJECT (header_view),
2266 MODEST_CONF_HEADER_VIEW_KEY);
2267 modest_header_view_clear (MODEST_HEADER_VIEW(header_view));
2271 /* Update toolbar dimming state */
2272 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2276 modest_ui_actions_on_item_not_found (ModestHeaderView *header_view,ModestItemType type,
2283 item = (type == MODEST_ITEM_TYPE_FOLDER) ? "folder" : "message";
2285 online = tny_device_is_online (modest_runtime_get_device());
2288 /* already online -- the item is simply not there... */
2289 dialog = gtk_message_dialog_new (GTK_WINDOW (win),
2291 GTK_MESSAGE_WARNING,
2293 _("The %s you selected cannot be found"),
2295 gtk_dialog_add_button (GTK_DIALOG (dialog),_("mcen_bd_dialog_ok"), GTK_RESPONSE_ACCEPT);
2296 gtk_dialog_run (GTK_DIALOG(dialog));
2298 dialog = gtk_dialog_new_with_buttons (_("Connection requested"),
2301 _("mcen_bd_dialog_cancel"),
2302 GTK_RESPONSE_REJECT,
2303 _("mcen_bd_dialog_ok"),
2304 GTK_RESPONSE_ACCEPT,
2306 txt = g_strdup_printf (_("This %s is not available in offline mode.\n"
2307 "Do you want to get online?"), item);
2308 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox),
2309 gtk_label_new (txt), FALSE, FALSE, 0);
2310 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
2313 gtk_window_set_default_size (GTK_WINDOW(dialog), 300, 300);
2314 if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
2315 /* TODO: Comment about why is this commented out: */
2316 /* modest_platform_connect_and_wait (); */
2319 gtk_widget_destroy (dialog);
2323 modest_ui_actions_on_msg_link_hover (ModestMsgView *msgview, const gchar* link,
2326 /* g_message ("%s %s", __FUNCTION__, link); */
2331 modest_ui_actions_on_msg_link_clicked (ModestMsgView *msgview, const gchar* link,
2334 modest_platform_activate_uri (link);
2338 modest_ui_actions_on_msg_link_contextual (ModestMsgView *msgview, const gchar* link,
2341 modest_platform_show_uri_popup (link);
2345 modest_ui_actions_on_msg_attachment_clicked (ModestMsgView *msgview, TnyMimePart *mime_part,
2348 modest_msg_view_window_view_attachment (MODEST_MSG_VIEW_WINDOW (win), mime_part);
2352 modest_ui_actions_on_msg_recpt_activated (ModestMsgView *msgview,
2353 const gchar *address,
2356 /* g_message ("%s %s", __FUNCTION__, address); */
2360 on_save_to_drafts_cb (ModestMailOperation *mail_op,
2361 TnyMsg *saved_draft,
2364 ModestMsgEditWindow *edit_window;
2365 ModestMainWindow *win;
2367 /* FIXME. Make the header view sensitive again. This is a
2368 * temporary hack. See modest_ui_actions_on_save_to_drafts()
2370 win = MODEST_MAIN_WINDOW(modest_window_mgr_get_main_window(
2371 modest_runtime_get_window_mgr(), FALSE));
2373 GtkWidget *hdrview = modest_main_window_get_child_widget(
2374 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2375 if (hdrview) gtk_widget_set_sensitive(hdrview, TRUE);
2378 edit_window = MODEST_MSG_EDIT_WINDOW (user_data);
2380 /* Set draft is there was no error */
2381 if (!modest_mail_operation_get_error (mail_op))
2382 modest_msg_edit_window_set_draft (edit_window, saved_draft);
2384 g_object_unref(edit_window);
2388 modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2390 TnyTransportAccount *transport_account;
2391 ModestMailOperation *mail_operation;
2393 gchar *account_name, *from;
2394 ModestAccountMgr *account_mgr;
2395 /* char *info_text; */
2396 gboolean had_error = FALSE;
2397 guint64 available_disk, expected_size;
2400 ModestMainWindow *win;
2402 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), FALSE);
2404 data = modest_msg_edit_window_get_msg_data (edit_window);
2407 available_disk = modest_folder_available_space (NULL);
2408 modest_msg_edit_window_get_parts_size (edit_window, &parts_count, &parts_size);
2409 expected_size = modest_tny_msg_estimate_size (data->plain_body,
2414 if ((available_disk != -1) && expected_size > available_disk) {
2415 modest_msg_edit_window_free_msg_data (edit_window, data);
2417 modest_platform_information_banner (NULL, NULL, dgettext("ke-recv", "cerm_device_memory_full"));
2421 account_name = g_strdup (data->account_name);
2422 account_mgr = modest_runtime_get_account_mgr();
2424 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2426 account_name = modest_account_mgr_get_default_account (account_mgr);
2427 if (!account_name) {
2428 g_printerr ("modest: no account found\n");
2429 modest_msg_edit_window_free_msg_data (edit_window, data);
2433 if (!strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID)) {
2434 account_name = g_strdup (data->account_name);
2438 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2439 (modest_runtime_get_account_store(),
2441 TNY_ACCOUNT_TYPE_TRANSPORT));
2442 if (!transport_account) {
2443 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2444 g_free (account_name);
2445 modest_msg_edit_window_free_msg_data (edit_window, data);
2448 from = modest_account_mgr_get_from_string (account_mgr, account_name);
2450 /* Create the mail operation */
2451 mail_operation = modest_mail_operation_new_with_error_handling (NULL, modest_ui_actions_disk_operations_error_handler,
2453 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2455 modest_mail_operation_save_to_drafts (mail_operation,
2467 data->priority_flags,
2468 on_save_to_drafts_cb,
2469 g_object_ref(edit_window));
2471 /* Use the main window as the parent of the banner, if the
2472 main window does not exist it won't be shown, if the parent
2473 window exists then it's properly shown. We don't use the
2474 editor window because it could be closed (save to drafts
2475 could happen after closing the window */
2476 win = (ModestMainWindow *)
2477 modest_window_mgr_get_main_window( modest_runtime_get_window_mgr(), FALSE);
2479 gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2480 modest_platform_information_banner (GTK_WIDGET (win), NULL, text);
2483 modest_msg_edit_window_set_modified (edit_window, FALSE);
2487 g_free (account_name);
2488 g_object_unref (G_OBJECT (transport_account));
2489 g_object_unref (G_OBJECT (mail_operation));
2491 modest_msg_edit_window_free_msg_data (edit_window, data);
2494 * If the drafts folder is selected then make the header view
2495 * insensitive while the message is being saved to drafts
2496 * (it'll be sensitive again in on_save_to_drafts_cb()). This
2497 * is not very clean but it avoids letting the drafts folder
2498 * in an inconsistent state: the user could edit the message
2499 * being saved and undesirable things would happen.
2500 * In the average case the user won't notice anything at
2501 * all. In the worst case (the user is editing a really big
2502 * file from Drafts) the header view will be insensitive
2503 * during the saving process (10 or 20 seconds, depending on
2504 * the message). Anyway this is just a quick workaround: once
2505 * we find a better solution it should be removed
2506 * See NB#65125 (commend #18) for details.
2508 if (!had_error && win != NULL) {
2509 ModestFolderView *view = MODEST_FOLDER_VIEW(modest_main_window_get_child_widget(
2510 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW));
2512 TnyFolder *folder = TNY_FOLDER(modest_folder_view_get_selected(view));
2514 if (modest_tny_folder_is_local_folder(folder)) {
2515 TnyFolderType folder_type;
2516 folder_type = modest_tny_folder_get_local_or_mmc_folder_type(folder);
2517 if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
2518 GtkWidget *hdrview = modest_main_window_get_child_widget(
2519 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2520 if (hdrview) gtk_widget_set_sensitive(hdrview, FALSE);
2524 if (folder != NULL) g_object_unref(folder);
2531 /* For instance, when clicking the Send toolbar button when editing a message: */
2533 modest_ui_actions_on_send (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2535 TnyTransportAccount *transport_account = NULL;
2536 gboolean had_error = FALSE;
2537 guint64 available_disk, expected_size;
2541 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), TRUE);
2543 if (!modest_msg_edit_window_check_names (edit_window, TRUE))
2546 MsgData *data = modest_msg_edit_window_get_msg_data (edit_window);
2549 available_disk = modest_folder_available_space (NULL);
2550 modest_msg_edit_window_get_parts_size (edit_window, &parts_count, &parts_size);
2551 expected_size = modest_tny_msg_estimate_size (data->plain_body,
2556 if ((available_disk != -1) && expected_size > available_disk) {
2557 modest_msg_edit_window_free_msg_data (edit_window, data);
2559 modest_platform_information_banner (NULL, NULL, dgettext("ke-recv", "cerm_device_memory_full"));
2563 ModestAccountMgr *account_mgr = modest_runtime_get_account_mgr();
2564 gchar *account_name = g_strdup (data->account_name);
2566 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2569 account_name = modest_account_mgr_get_default_account (account_mgr);
2571 if (!account_name) {
2572 modest_msg_edit_window_free_msg_data (edit_window, data);
2573 /* Run account setup wizard */
2574 if (!modest_ui_actions_run_account_setup_wizard (MODEST_WINDOW(edit_window))) {
2579 /* Get the currently-active transport account for this modest account: */
2580 if (strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) != 0) {
2581 transport_account = TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2582 (modest_runtime_get_account_store(),
2583 account_name, TNY_ACCOUNT_TYPE_TRANSPORT));
2586 if (!transport_account) {
2587 modest_msg_edit_window_free_msg_data (edit_window, data);
2588 /* Run account setup wizard */
2589 if (!modest_ui_actions_run_account_setup_wizard(MODEST_WINDOW(edit_window)))
2593 gchar *from = modest_account_mgr_get_from_string (account_mgr, account_name);
2595 /* Create the mail operation */
2596 ModestMailOperation *mail_operation = modest_mail_operation_new (NULL);
2597 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2599 modest_mail_operation_send_new_mail (mail_operation,
2611 data->priority_flags);
2613 if (modest_mail_operation_get_status (mail_operation) == MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS)
2614 modest_platform_information_banner (NULL, NULL, _("mcen_ib_outbox_waiting_to_be_sent"));
2617 if (modest_mail_operation_get_error (mail_operation) != NULL) {
2618 const GError *error = modest_mail_operation_get_error (mail_operation);
2619 if (error->code == MODEST_MAIL_OPERATION_ERROR_INSTANCE_CREATION_FAILED) {
2620 g_warning ("%s failed: %s\n", __FUNCTION__, (modest_mail_operation_get_error (mail_operation))->message);
2621 modest_platform_information_banner (NULL, NULL, _CS("sfil_ni_not_enough_memory"));
2628 g_free (account_name);
2629 g_object_unref (G_OBJECT (transport_account));
2630 g_object_unref (G_OBJECT (mail_operation));
2632 modest_msg_edit_window_free_msg_data (edit_window, data);
2635 modest_msg_edit_window_set_sent (edit_window, TRUE);
2637 /* Save settings and close the window: */
2638 modest_ui_actions_on_close_window (NULL, MODEST_WINDOW (edit_window));
2645 modest_ui_actions_on_toggle_bold (GtkToggleAction *action,
2646 ModestMsgEditWindow *window)
2648 ModestMsgEditFormatState *format_state = NULL;
2650 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2651 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2653 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2656 format_state = modest_msg_edit_window_get_format_state (window);
2657 g_return_if_fail (format_state != NULL);
2659 format_state->bold = gtk_toggle_action_get_active (action);
2660 modest_msg_edit_window_set_format_state (window, format_state);
2661 g_free (format_state);
2666 modest_ui_actions_on_toggle_italics (GtkToggleAction *action,
2667 ModestMsgEditWindow *window)
2669 ModestMsgEditFormatState *format_state = NULL;
2671 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2672 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2674 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2677 format_state = modest_msg_edit_window_get_format_state (window);
2678 g_return_if_fail (format_state != NULL);
2680 format_state->italics = gtk_toggle_action_get_active (action);
2681 modest_msg_edit_window_set_format_state (window, format_state);
2682 g_free (format_state);
2687 modest_ui_actions_on_toggle_bullets (GtkToggleAction *action,
2688 ModestMsgEditWindow *window)
2690 ModestMsgEditFormatState *format_state = NULL;
2692 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2693 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2695 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2698 format_state = modest_msg_edit_window_get_format_state (window);
2699 g_return_if_fail (format_state != NULL);
2701 format_state->bullet = gtk_toggle_action_get_active (action);
2702 modest_msg_edit_window_set_format_state (window, format_state);
2703 g_free (format_state);
2708 modest_ui_actions_on_change_justify (GtkRadioAction *action,
2709 GtkRadioAction *selected,
2710 ModestMsgEditWindow *window)
2712 ModestMsgEditFormatState *format_state = NULL;
2713 GtkJustification value;
2715 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2717 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2720 value = gtk_radio_action_get_current_value (selected);
2722 format_state = modest_msg_edit_window_get_format_state (window);
2723 g_return_if_fail (format_state != NULL);
2725 format_state->justification = value;
2726 modest_msg_edit_window_set_format_state (window, format_state);
2727 g_free (format_state);
2731 modest_ui_actions_on_select_editor_color (GtkAction *action,
2732 ModestMsgEditWindow *window)
2734 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2735 g_return_if_fail (GTK_IS_ACTION (action));
2737 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2740 modest_msg_edit_window_select_color (window);
2744 modest_ui_actions_on_select_editor_background_color (GtkAction *action,
2745 ModestMsgEditWindow *window)
2747 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2748 g_return_if_fail (GTK_IS_ACTION (action));
2750 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2753 modest_msg_edit_window_select_background_color (window);
2757 modest_ui_actions_on_insert_image (GtkAction *action,
2758 ModestMsgEditWindow *window)
2760 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2761 g_return_if_fail (GTK_IS_ACTION (action));
2763 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2766 modest_msg_edit_window_insert_image (window);
2770 modest_ui_actions_on_attach_file (GtkAction *action,
2771 ModestMsgEditWindow *window)
2773 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2774 g_return_if_fail (GTK_IS_ACTION (action));
2776 modest_msg_edit_window_offer_attach_file (window);
2780 modest_ui_actions_on_remove_attachments (GtkAction *action,
2781 ModestMsgEditWindow *window)
2783 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2784 g_return_if_fail (GTK_IS_ACTION (action));
2786 modest_msg_edit_window_remove_attachments (window, NULL);
2790 do_create_folder_cb (ModestMailOperation *mail_op,
2791 TnyFolderStore *parent_folder,
2792 TnyFolder *new_folder,
2795 gchar *suggested_name = (gchar *) user_data;
2796 GtkWindow *source_win = (GtkWindow *) modest_mail_operation_get_source (mail_op);
2798 if (modest_mail_operation_get_error (mail_op)) {
2800 /* Show an error. If there was some problem writing to
2801 disk, show it, otherwise show the generic folder
2802 create error. We do it here and not in an error
2803 handler because the call to do_create_folder will
2804 stop the main loop in a gtk_dialog_run and then,
2805 the message won't be shown until that dialog is
2807 modest_ui_actions_disk_operations_error_handler (mail_op,
2808 _("mail_in_ui_folder_create_error"));
2810 /* Try again. Do *NOT* show any error because the mail
2811 operations system will do it for us because we
2812 created the mail_op with new_with_error_handler */
2813 do_create_folder (source_win, parent_folder, (const gchar *) suggested_name);
2815 /* the 'source_win' is either the ModestMainWindow, or the 'Move to folder'-dialog
2816 * FIXME: any other? */
2817 GtkWidget *folder_view;
2819 if (MODEST_IS_MAIN_WINDOW(source_win))
2821 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (source_win),
2822 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2825 get_folder_view_from_move_to_dialog (GTK_WIDGET(source_win));
2827 /* Select the newly created folder */
2828 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view),
2830 g_object_unref (new_folder);
2832 /* Free. Note that the first time it'll be NULL so noop */
2833 g_free (suggested_name);
2834 g_object_unref (source_win);
2838 do_create_folder (GtkWindow *parent_window,
2839 TnyFolderStore *parent_folder,
2840 const gchar *suggested_name)
2843 gchar *folder_name = NULL;
2845 result = modest_platform_run_new_folder_dialog (GTK_WINDOW (parent_window),
2847 (gchar *) suggested_name,
2850 if (result == GTK_RESPONSE_ACCEPT) {
2851 ModestMailOperation *mail_op;
2853 mail_op = modest_mail_operation_new (NULL);
2854 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
2856 modest_mail_operation_create_folder (mail_op,
2858 (const gchar *) folder_name,
2859 do_create_folder_cb,
2861 g_object_unref (mail_op);
2866 create_folder_performer (gboolean canceled,
2868 GtkWindow *parent_window,
2869 TnyAccount *account,
2872 TnyFolderStore *parent_folder = TNY_FOLDER_STORE (user_data);
2874 if (canceled || err) {
2878 /* Run the new folder dialog */
2879 do_create_folder (GTK_WINDOW (parent_window), parent_folder, NULL);
2882 g_object_unref (parent_folder);
2886 modest_ui_actions_create_folder(GtkWidget *parent_window,
2887 GtkWidget *folder_view)
2889 TnyFolderStore *parent_folder;
2891 parent_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
2893 if (parent_folder) {
2894 /* The parent folder will be freed in the callback */
2895 modest_platform_connect_if_remote_and_perform (GTK_WINDOW (parent_window),
2898 create_folder_performer,
2904 modest_ui_actions_on_new_folder (GtkAction *action, ModestMainWindow *main_window)
2906 GtkWidget *folder_view;
2908 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2910 folder_view = modest_main_window_get_child_widget (main_window,
2911 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2915 modest_ui_actions_create_folder (GTK_WIDGET (main_window), folder_view);
2919 modest_ui_actions_rename_folder_error_handler (ModestMailOperation *mail_op,
2922 const GError *error = NULL;
2923 const gchar *message = NULL;
2925 /* Get error message */
2926 error = modest_mail_operation_get_error (mail_op);
2928 g_return_if_reached ();
2930 switch (error->code) {
2931 case MODEST_MAIL_OPERATION_ERROR_FOLDER_EXISTS:
2932 message = _CS("ckdg_ib_folder_already_exists");
2935 message = _("emev_ib_ui_imap_unable_to_rename");
2938 /* We don't set a parent for the dialog because the dialog
2939 will be destroyed so the banner won't appear */
2940 modest_platform_information_banner (NULL, NULL, message);
2944 TnyFolderStore *folder;
2949 on_rename_folder_cb (ModestMailOperation *mail_op,
2950 TnyFolder *new_folder,
2953 ModestFolderView *folder_view;
2955 folder_view = MODEST_FOLDER_VIEW (user_data);
2956 /* Note that if the rename fails new_folder will be NULL */
2958 modest_folder_view_select_folder (folder_view, new_folder, FALSE);
2960 modest_folder_view_select_first_inbox_or_local (folder_view);
2965 on_rename_folder_performer (gboolean canceled,
2967 GtkWindow *parent_window,
2968 TnyAccount *account,
2971 ModestMailOperation *mail_op = NULL;
2972 GtkTreeSelection *sel = NULL;
2973 GtkWidget *folder_view = NULL;
2974 RenameFolderInfo *data = (RenameFolderInfo*)user_data;
2976 if (!canceled && (err == NULL) && MODEST_IS_MAIN_WINDOW(parent_window)) {
2978 folder_view = modest_main_window_get_child_widget (
2979 MODEST_MAIN_WINDOW (parent_window),
2980 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2983 modest_mail_operation_new_with_error_handling (G_OBJECT(parent_window),
2984 modest_ui_actions_rename_folder_error_handler,
2985 parent_window, NULL);
2987 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
2990 /* Clear the headers view */
2991 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
2992 gtk_tree_selection_unselect_all (sel);
2994 /* Actually rename the folder */
2995 modest_mail_operation_rename_folder (mail_op,
2996 TNY_FOLDER (data->folder),
2997 (const gchar *) (data->new_name),
2998 on_rename_folder_cb,
3002 g_object_unref (mail_op);
3003 g_free (data->new_name);
3008 modest_ui_actions_on_rename_folder (GtkAction *action,
3009 ModestMainWindow *main_window)
3011 TnyFolderStore *folder;
3012 GtkWidget *folder_view;
3013 GtkWidget *header_view;
3015 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3017 folder_view = modest_main_window_get_child_widget (main_window,
3018 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3022 header_view = modest_main_window_get_child_widget (main_window,
3023 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
3028 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
3033 if (TNY_IS_FOLDER (folder)) {
3036 const gchar *current_name;
3037 TnyFolderStore *parent;
3038 gboolean do_rename = TRUE;
3040 current_name = tny_folder_get_name (TNY_FOLDER (folder));
3041 parent = tny_folder_get_folder_store (TNY_FOLDER (folder));
3042 response = modest_platform_run_rename_folder_dialog (GTK_WINDOW (main_window),
3043 parent, current_name,
3045 g_object_unref (parent);
3047 if (response != GTK_RESPONSE_ACCEPT || strlen (folder_name) == 0) {
3050 RenameFolderInfo *rename_folder_data = g_new0 (RenameFolderInfo, 1);
3051 rename_folder_data->folder = folder;
3052 rename_folder_data->new_name = folder_name;
3053 modest_platform_connect_if_remote_and_perform (GTK_WINDOW(main_window), TRUE,
3054 folder, on_rename_folder_performer, rename_folder_data);
3057 g_object_unref (folder);
3061 modest_ui_actions_delete_folder_error_handler (ModestMailOperation *mail_op,
3064 GObject *win = modest_mail_operation_get_source (mail_op);
3066 modest_platform_run_information_dialog ((win) ? GTK_WINDOW (win) : NULL,
3067 _("mail_in_ui_folder_delete_error"));
3068 g_object_unref (win);
3072 TnyFolderStore *folder;
3073 gboolean move_to_trash;
3077 on_delete_folder_cb (gboolean canceled,
3079 GtkWindow *parent_window,
3080 TnyAccount *account,
3083 DeleteFolderInfo *info = (DeleteFolderInfo*) user_data;
3084 GtkWidget *folder_view;
3085 ModestMailOperation *mail_op;
3086 GtkTreeSelection *sel;
3088 if (!MODEST_IS_MAIN_WINDOW(parent_window) || canceled || (err!=NULL)) {
3089 g_object_unref (G_OBJECT (info->folder));
3094 folder_view = modest_main_window_get_child_widget (
3095 MODEST_MAIN_WINDOW (parent_window),
3096 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3098 /* Unselect the folder before deleting it to free the headers */
3099 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
3100 gtk_tree_selection_unselect_all (sel);
3102 /* Create the mail operation */
3104 modest_mail_operation_new_with_error_handling (G_OBJECT(parent_window),
3105 modest_ui_actions_delete_folder_error_handler,
3108 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
3110 modest_mail_operation_remove_folder (mail_op, TNY_FOLDER (info->folder), info->move_to_trash);
3112 modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (folder_view));
3114 g_object_unref (G_OBJECT (mail_op));
3115 g_object_unref (G_OBJECT (info->folder));
3120 delete_folder (ModestMainWindow *main_window, gboolean move_to_trash)
3122 TnyFolderStore *folder;
3123 GtkWidget *folder_view;
3127 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3129 folder_view = modest_main_window_get_child_widget (main_window,
3130 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3134 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
3136 /* Show an error if it's an account */
3137 if (!TNY_IS_FOLDER (folder)) {
3138 modest_platform_run_information_dialog (GTK_WINDOW (main_window),
3139 _("mail_in_ui_folder_delete_error"));
3140 g_object_unref (G_OBJECT (folder));
3145 message = g_strdup_printf (_("mcen_nc_delete_folder_text"),
3146 tny_folder_get_name (TNY_FOLDER (folder)));
3147 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (main_window),
3148 (const gchar *) message);
3151 if (response == GTK_RESPONSE_OK) {
3152 DeleteFolderInfo *info;
3153 info = g_new0(DeleteFolderInfo, 1);
3154 info->folder = folder;
3155 info->move_to_trash = move_to_trash;
3156 g_object_ref (G_OBJECT (info->folder));
3157 TnyAccount *account = tny_folder_get_account (TNY_FOLDER (folder));
3158 modest_platform_connect_if_remote_and_perform (GTK_WINDOW (main_window),
3160 TNY_FOLDER_STORE (account),
3161 on_delete_folder_cb, info);
3162 g_object_unref (account);
3164 g_object_unref (G_OBJECT (folder));
3168 modest_ui_actions_on_delete_folder (GtkAction *action,
3169 ModestMainWindow *main_window)
3171 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3173 delete_folder (main_window, FALSE);
3177 modest_ui_actions_on_move_folder_to_trash_folder (GtkAction *action, ModestMainWindow *main_window)
3179 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3181 delete_folder (main_window, TRUE);
3186 modest_ui_actions_on_password_requested (TnyAccountStore *account_store,
3187 const gchar* server_account_name,
3192 ModestMainWindow *main_window)
3194 g_return_if_fail(server_account_name);
3195 gboolean completed = FALSE;
3197 /* Initalize output parameters: */
3204 #ifdef MODEST_PLATFORM_MAEMO
3205 /* Maemo uses a different (awkward) button order,
3206 * It should probably just use gtk_alternative_dialog_button_order ().
3208 GtkWidget *dialog = gtk_dialog_new_with_buttons (_("mail_ti_password_protected"),
3211 _("mcen_bd_dialog_ok"),
3212 GTK_RESPONSE_ACCEPT,
3213 _("mcen_bd_dialog_cancel"),
3214 GTK_RESPONSE_REJECT,
3217 GtkWidget *dialog = gtk_dialog_new_with_buttons (_("mail_ti_password_protected"),
3221 GTK_RESPONSE_REJECT,
3223 GTK_RESPONSE_ACCEPT,
3225 #endif /* MODEST_PLATFORM_MAEMO */
3227 modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), GTK_WINDOW (dialog));
3229 gchar *server_name = modest_account_mgr_get_server_account_hostname (
3230 modest_runtime_get_account_mgr(), server_account_name);
3231 if (!server_name) {/* This happened once, though I don't know why. murrayc. */
3232 g_warning("%s: Could not get server name for server account '%s'", __FUNCTION__, server_account_name);
3238 /* This causes a warning bec