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-defs.h>
39 #include <modest-tny-folder.h>
40 #include <modest-tny-msg.h>
41 #include <modest-tny-account.h>
42 #include <modest-address-book.h>
43 #include "modest-error.h"
44 #include "modest-ui-actions.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>
52 #ifdef MODEST_TOOLKIT_HILDON2
53 #include <modest-accounts-window.h>
54 #include <hildon/hildon-pannable-area.h>
55 #include <hildon/hildon-gtk.h>
56 #include <modest-header-window.h>
57 #include <modest-folder-window.h>
58 #include <modest-maemo-utils.h>
61 #ifdef MODEST_PLATFORM_MAEMO
62 #include "maemo/modest-osso-state-saving.h"
63 #endif /* MODEST_PLATFORM_MAEMO */
64 #ifndef MODEST_TOOLKIT_GTK
65 #include "maemo/modest-hildon-includes.h"
66 #include "maemo/modest-connection-specific-smtp-window.h"
67 #endif /* !MODEST_TOOLKIT_GTK */
68 #include <modest-utils.h>
70 #include "widgets/modest-ui-constants.h"
71 #include <widgets/modest-main-window.h>
72 #include <widgets/modest-msg-view-window.h>
73 #include <widgets/modest-account-view-window.h>
74 #include <widgets/modest-details-dialog.h>
75 #include <widgets/modest-attachments-view.h>
76 #include "widgets/modest-folder-view.h"
77 #include "widgets/modest-global-settings-dialog.h"
78 #include "modest-account-mgr-helpers.h"
79 #include "modest-mail-operation.h"
80 #include "modest-text-utils.h"
81 #include <modest-widget-memory.h>
82 #include <tny-error.h>
83 #include <tny-simple-list.h>
84 #include <tny-msg-view.h>
85 #include <tny-device.h>
86 #include <tny-merge-folder.h>
88 #include <gtkhtml/gtkhtml.h>
90 #define MIN_FREE_SPACE 5 * 1024 * 1024
91 #define MODEST_MOVE_TO_DIALOG_FOLDER_VIEW "move-to-dialog-folder-view"
93 typedef struct _GetMsgAsyncHelper {
95 ModestMailOperation *mail_op;
102 typedef enum _ReplyForwardAction {
106 } ReplyForwardAction;
108 typedef struct _ReplyForwardHelper {
109 guint reply_forward_type;
110 ReplyForwardAction action;
112 GtkWidget *parent_window;
114 } ReplyForwardHelper;
116 typedef struct _MoveToHelper {
117 GtkTreeRowReference *reference;
121 typedef struct _PasteAsAttachmentHelper {
122 ModestMsgEditWindow *window;
124 } PasteAsAttachmentHelper;
132 * The do_headers_action uses this kind of functions to perform some
133 * action to each member of a list of headers
135 typedef void (*HeadersFunc) (TnyHeader *header, ModestWindow *win, gpointer user_data);
137 static void do_headers_action (ModestWindow *win,
141 static void open_msg_cb (ModestMailOperation *mail_op,
148 static void reply_forward_cb (ModestMailOperation *mail_op,
155 static void reply_forward (ReplyForwardAction action, ModestWindow *win);
157 static void folder_refreshed_cb (ModestMailOperation *mail_op,
161 static void on_send_receive_finished (ModestMailOperation *mail_op,
164 static gint header_list_count_uncached_msgs (TnyList *header_list);
166 static gboolean connect_to_get_msg (ModestWindow *win,
167 gint num_of_uncached_msgs,
168 TnyAccount *account);
170 static gboolean remote_folder_has_leave_on_server (TnyFolderStore *folder);
172 static void do_create_folder (GtkWindow *window,
173 TnyFolderStore *parent_folder,
174 const gchar *suggested_name);
176 static TnyAccount *get_account_from_folder_store (TnyFolderStore *folder_store);
178 static void modest_ui_actions_on_main_window_move_to (GtkAction *action,
179 GtkWidget *folder_view,
180 TnyFolderStore *dst_folder,
181 ModestMainWindow *win);
182 #ifdef MODEST_TOOLKIT_HILDON2
183 static void modest_ui_actions_on_folder_window_move_to (GtkWidget *folder_view,
184 TnyFolderStore *dst_folder,
189 static void modest_ui_actions_on_window_move_to (GtkAction *action,
190 TnyList *list_to_move,
191 TnyFolderStore *dst_folder,
195 * This function checks whether a TnyFolderStore is a pop account
198 remote_folder_has_leave_on_server (TnyFolderStore *folder)
203 g_return_val_if_fail (TNY_IS_FOLDER_STORE (folder), FALSE);
205 account = get_account_from_folder_store (folder);
206 result = (modest_protocol_registry_protocol_type_has_leave_on_server (modest_runtime_get_protocol_registry (),
207 modest_tny_account_get_protocol_type (account)));
208 g_object_unref (account);
213 /* FIXME: this should be merged with the similar code in modest-account-view-window */
214 /* Show the account creation wizard dialog.
215 * returns: TRUE if an account was created. FALSE if the user cancelled.
218 modest_ui_actions_run_account_setup_wizard (ModestWindow *win)
220 gboolean result = FALSE;
222 gint dialog_response;
224 /* there is no such wizard yet */
225 wizard = GTK_WINDOW (modest_platform_get_account_settings_wizard ());
226 modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), GTK_WINDOW (wizard), (GtkWindow *) win);
228 #ifndef MODEST_TOOLKIT_HILDON2
229 /* always present a main window in the background
230 * we do it here, so we cannot end up with two wizards (as this
231 * function might be called in modest_window_mgr_get_main_window as well */
233 win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(),
234 TRUE); /* create if not existent */
238 ModestWindowMgr *mgr;
240 mgr = modest_runtime_get_window_mgr ();
242 window_list = modest_window_mgr_get_window_list (mgr);
243 if (window_list == NULL) {
244 ModestWindow *old_win;
245 win = MODEST_WINDOW (modest_accounts_window_new ());
246 if (modest_window_mgr_register_window (mgr, win, NULL)) {
247 gtk_widget_show_all (GTK_WIDGET (win));
249 gtk_widget_destroy (GTK_WIDGET (win));
254 win = MODEST_WINDOW (modest_folder_window_new (NULL));
255 if (modest_window_mgr_register_window (mgr, win, NULL)) {
256 gtk_widget_show_all (GTK_WIDGET (win));
258 gtk_widget_destroy (GTK_WIDGET (win));
262 g_list_free (window_list);
268 gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (win));
270 /* make sure the mainwindow is visible. We need to present the
271 wizard again to give it the focus back. show_all are needed
272 in order to get the widgets properly drawn (MainWindow main
273 paned won't be in its right position and the dialog will be
275 #ifndef MODEST_TOOLKIT_HILDON2
276 gtk_widget_show_all (GTK_WIDGET (win));
277 gtk_widget_show_all (GTK_WIDGET (wizard));
278 gtk_window_present (GTK_WINDOW (win));
279 gtk_window_present (GTK_WINDOW (wizard));
282 dialog_response = gtk_dialog_run (GTK_DIALOG (wizard));
283 gtk_widget_destroy (GTK_WIDGET (wizard));
284 if (gtk_events_pending ())
285 gtk_main_iteration ();
287 if (dialog_response == GTK_RESPONSE_CANCEL) {
290 /* Check whether an account was created: */
291 result = modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
298 modest_ui_actions_on_about (GtkAction *action, ModestWindow *win)
301 const gchar *authors[] = {
302 "Dirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>",
305 about = gtk_about_dialog_new ();
306 gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(about), PACKAGE_NAME);
307 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about),PACKAGE_VERSION);
308 gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about),
309 _("Copyright (c) 2006, Nokia Corporation\n"
310 "All rights reserved."));
311 gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about),
312 _("a modest e-mail client\n\n"
313 "design and implementation: Dirk-Jan C. Binnema\n"
314 "contributions from the fine people at KC and Ig\n"
315 "uses the tinymail email framework written by Philip van Hoof"));
316 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
317 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), "http://modest.garage.maemo.org");
318 gtk_window_set_transient_for (GTK_WINDOW (about), GTK_WINDOW (win));
319 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
321 gtk_dialog_run (GTK_DIALOG (about));
322 gtk_widget_destroy(about);
326 * Gets the list of currently selected messages. If the win is the
327 * main window, then it returns a newly allocated list of the headers
328 * selected in the header view. If win is the msg view window, then
329 * the value returned is a list with just a single header.
331 * The caller of this funcion must free the list.
334 get_selected_headers (ModestWindow *win)
336 if (MODEST_IS_MAIN_WINDOW(win)) {
337 GtkWidget *header_view;
339 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(win),
340 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
341 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
343 } else if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
344 /* for MsgViewWindows, we simply return a list with one element */
346 TnyList *list = NULL;
348 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
349 if (header != NULL) {
350 list = tny_simple_list_new ();
351 tny_list_prepend (list, G_OBJECT(header));
352 g_object_unref (G_OBJECT(header));
357 #ifdef MODEST_TOOLKIT_HILDON2
358 } else if (MODEST_IS_HEADER_WINDOW (win)) {
359 GtkWidget *header_view;
361 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (win)));
362 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
368 static GtkTreeRowReference *
369 get_next_after_selected_headers (ModestHeaderView *header_view)
371 GtkTreeSelection *sel;
372 GList *selected_rows, *node;
374 GtkTreeRowReference *result;
377 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
378 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
379 selected_rows = gtk_tree_selection_get_selected_rows (sel, NULL);
381 if (selected_rows == NULL)
384 node = g_list_last (selected_rows);
385 path = gtk_tree_path_copy ((GtkTreePath *) node->data);
386 gtk_tree_path_next (path);
388 result = gtk_tree_row_reference_new (model, path);
390 gtk_tree_path_free (path);
391 g_list_foreach (selected_rows, (GFunc) gtk_tree_path_free, NULL);
392 g_list_free (selected_rows);
398 headers_action_mark_as_read (TnyHeader *header,
402 TnyHeaderFlags flags;
404 g_return_if_fail (TNY_IS_HEADER(header));
406 flags = tny_header_get_flags (header);
407 if (flags & TNY_HEADER_FLAG_SEEN) return;
408 tny_header_set_flag (header, TNY_HEADER_FLAG_SEEN);
412 headers_action_mark_as_unread (TnyHeader *header,
416 TnyHeaderFlags flags;
418 g_return_if_fail (TNY_IS_HEADER(header));
420 flags = tny_header_get_flags (header);
421 if (flags & TNY_HEADER_FLAG_SEEN) {
422 tny_header_unset_flag (header, TNY_HEADER_FLAG_SEEN);
426 /** After deleing a message that is currently visible in a window,
427 * show the next message from the list, or close the window if there are no more messages.
430 modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win)
432 /* Close msg view window or select next */
433 if (!modest_msg_view_window_select_next_message (win) &&
434 !modest_msg_view_window_select_previous_message (win)) {
436 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
442 modest_ui_actions_on_delete_message (GtkAction *action, ModestWindow *win)
444 modest_ui_actions_on_edit_mode_delete_message (win);
448 modest_ui_actions_on_edit_mode_delete_message (ModestWindow *win)
450 TnyList *header_list = NULL;
451 TnyIterator *iter = NULL;
452 TnyHeader *header = NULL;
453 gchar *message = NULL;
456 ModestWindowMgr *mgr;
457 GtkWidget *header_view = NULL;
458 gboolean retval = TRUE;
460 g_return_val_if_fail (MODEST_IS_WINDOW(win), FALSE);
462 /* Check first if the header view has the focus */
463 if (MODEST_IS_MAIN_WINDOW (win)) {
465 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
466 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
467 if (!gtk_widget_is_focus (header_view))
471 /* Get the headers, either from the header view (if win is the main window),
472 * or from the message view window: */
473 header_list = get_selected_headers (win);
474 if (!header_list) return FALSE;
476 /* Check if any of the headers are already opened, or in the process of being opened */
477 if (MODEST_IS_MAIN_WINDOW (win)) {
478 gint opened_headers = 0;
480 iter = tny_list_create_iterator (header_list);
481 mgr = modest_runtime_get_window_mgr ();
482 while (!tny_iterator_is_done (iter)) {
483 header = TNY_HEADER (tny_iterator_get_current (iter));
485 if (modest_window_mgr_find_registered_header (mgr, header, NULL))
487 g_object_unref (header);
489 tny_iterator_next (iter);
491 g_object_unref (iter);
493 if (opened_headers > 0) {
496 msg = g_strdup_printf (_("mcen_nc_unable_to_delete_n_messages"),
499 modest_platform_run_information_dialog (GTK_WINDOW (win), (const gchar *) msg, FALSE);
502 g_object_unref (header_list);
508 if (tny_list_get_length(header_list) == 1) {
509 iter = tny_list_create_iterator (header_list);
510 header = TNY_HEADER (tny_iterator_get_current (iter));
513 subject = tny_header_dup_subject (header);
515 subject = g_strdup (_("mail_va_no_subject"));
516 desc = g_strdup_printf ("%s", subject);
518 g_object_unref (header);
521 g_object_unref (iter);
523 message = g_strdup_printf(ngettext("emev_nc_delete_message", "emev_nc_delete_messages",
524 tny_list_get_length(header_list)), desc);
526 /* Confirmation dialog */
527 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
531 if (response == GTK_RESPONSE_OK) {
532 ModestWindow *main_window = NULL;
533 ModestWindowMgr *mgr = NULL;
534 GtkTreeModel *model = NULL;
535 GtkTreeSelection *sel = NULL;
536 GList *sel_list = NULL, *tmp = NULL;
537 GtkTreeRowReference *next_row_reference = NULL;
538 GtkTreeRowReference *prev_row_reference = NULL;
539 GtkTreePath *next_path = NULL;
540 GtkTreePath *prev_path = NULL;
541 ModestMailOperation *mail_op = NULL;
543 /* Find last selected row */
544 if (MODEST_IS_MAIN_WINDOW (win)) {
545 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
546 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
547 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
548 for (tmp=sel_list; tmp; tmp=tmp->next) {
549 if (tmp->next == NULL) {
550 prev_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
551 next_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
553 gtk_tree_path_prev (prev_path);
554 gtk_tree_path_next (next_path);
556 prev_row_reference = gtk_tree_row_reference_new (model, prev_path);
557 next_row_reference = gtk_tree_row_reference_new (model, next_path);
562 /* Disable window dimming management */
563 modest_window_disable_dimming (MODEST_WINDOW(win));
565 /* Remove each header. If it's a view window header_view == NULL */
566 mail_op = modest_mail_operation_new ((GObject *) win);
567 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
569 modest_mail_operation_remove_msgs (mail_op, header_list, FALSE);
570 g_object_unref (mail_op);
572 /* Enable window dimming management */
574 gtk_tree_selection_unselect_all (sel);
576 modest_window_enable_dimming (MODEST_WINDOW(win));
578 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
579 modest_ui_actions_refresh_message_window_after_delete (MODEST_MSG_VIEW_WINDOW (win));
581 /* Get main window */
582 mgr = modest_runtime_get_window_mgr ();
583 main_window = modest_window_mgr_get_main_window (mgr, FALSE); /* don't create */
584 } else if (MODEST_IS_MAIN_WINDOW (win)) {
585 /* Move cursor to next row */
588 /* Select next or previous row */
589 if (gtk_tree_row_reference_valid (next_row_reference)) {
590 gtk_tree_selection_select_path (sel, next_path);
592 else if (gtk_tree_row_reference_valid (prev_row_reference)) {
593 gtk_tree_selection_select_path (sel, prev_path);
597 if (gtk_tree_row_reference_valid (next_row_reference))
598 gtk_tree_row_reference_free (next_row_reference);
599 if (next_path != NULL)
600 gtk_tree_path_free (next_path);
601 if (gtk_tree_row_reference_valid (prev_row_reference))
602 gtk_tree_row_reference_free (prev_row_reference);
603 if (prev_path != NULL)
604 gtk_tree_path_free (prev_path);
607 /* Update toolbar dimming state */
609 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
610 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
614 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
615 g_list_free (sel_list);
624 g_object_unref (header_list);
632 /* delete either message or folder, based on where we are */
634 modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win)
636 g_return_if_fail (MODEST_IS_WINDOW(win));
638 /* Check first if the header view has the focus */
639 if (MODEST_IS_MAIN_WINDOW (win)) {
641 w = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
642 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
643 if (gtk_widget_is_focus (w)) {
644 modest_ui_actions_on_delete_folder (action, MODEST_WINDOW(win));
648 modest_ui_actions_on_delete_message (action, win);
652 modest_ui_actions_on_quit (GtkAction *action, ModestWindow *win)
654 ModestWindowMgr *mgr = NULL;
656 #ifdef MODEST_PLATFORM_MAEMO
657 modest_osso_save_state();
658 #endif /* MODEST_PLATFORM_MAEMO */
660 g_debug ("closing down, clearing %d item(s) from operation queue",
661 modest_mail_operation_queue_num_elements
662 (modest_runtime_get_mail_operation_queue()));
664 /* cancel all outstanding operations */
665 modest_mail_operation_queue_cancel_all
666 (modest_runtime_get_mail_operation_queue());
668 g_debug ("queue has been cleared");
671 /* Check if there are opened editing windows */
672 mgr = modest_runtime_get_window_mgr ();
673 modest_window_mgr_close_all_windows (mgr);
675 /* note: when modest-tny-account-store is finalized,
676 it will automatically set all network connections
679 /* gtk_main_quit (); */
683 modest_ui_actions_on_close_window (GtkAction *action, ModestWindow *win)
687 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
689 /* if (MODEST_IS_MSG_VIEW_WINDOW (win)) { */
690 /* gtk_widget_destroy (GTK_WIDGET (win)); */
691 /* } else if (MODEST_IS_MSG_EDIT_WINDOW (win)) { */
692 /* gboolean ret_value; */
693 /* g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value); */
694 /* } else if (MODEST_IS_WINDOW (win)) { */
695 /* gtk_widget_destroy (GTK_WIDGET (win)); */
697 /* g_return_if_reached (); */
702 modest_ui_actions_add_to_contacts (GtkAction *action, ModestWindow *win)
704 g_return_if_fail (MODEST_IS_MSG_VIEW_WINDOW (win));
706 modest_msg_view_window_add_to_contacts (MODEST_MSG_VIEW_WINDOW (win));
710 modest_ui_actions_on_add_to_contacts (GtkAction *action, ModestWindow *win)
712 GtkClipboard *clipboard = NULL;
713 gchar *selection = NULL;
715 clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
716 selection = gtk_clipboard_wait_for_text (clipboard);
718 /* Question: why is the clipboard being used here?
719 * It doesn't really make a lot of sense. */
723 modest_address_book_add_address (selection);
729 modest_ui_actions_on_new_account (GtkAction *action,
730 ModestWindow *window)
732 modest_ui_actions_run_account_setup_wizard (window);
736 modest_ui_actions_on_accounts (GtkAction *action,
739 /* This is currently only implemented for Maemo */
740 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE)) {
741 if (!modest_ui_actions_run_account_setup_wizard (win))
742 g_debug ("%s: wizard was already running", __FUNCTION__);
746 /* Show the list of accounts */
747 GtkWindow *account_win = GTK_WINDOW (modest_account_view_window_new ());
749 /* The accounts dialog must be modal */
750 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (account_win), (GtkWindow *) win);
751 modest_utils_show_dialog_and_forget (GTK_WINDOW (win), GTK_DIALOG (account_win));
756 modest_ui_actions_on_smtp_servers (GtkAction *action, ModestWindow *win)
758 /* This is currently only implemented for Maemo,
759 * because it requires an API (libconic) to detect different connection
762 #ifndef MODEST_TOOLKIT_GTK /* Defined in config.h */
764 /* Create the window if necessary: */
765 GtkWidget *specific_window = GTK_WIDGET (modest_connection_specific_smtp_window_new ());
766 modest_connection_specific_smtp_window_fill_with_connections (
767 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window),
768 modest_runtime_get_account_mgr());
770 /* Show the window: */
771 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (),
772 GTK_WINDOW (specific_window), (GtkWindow *) win);
773 gtk_widget_show (specific_window);
774 #endif /* !MODEST_TOOLKIT_GTK */
778 modest_ui_actions_compose_msg(ModestWindow *win,
781 const gchar *bcc_str,
782 const gchar *subject_str,
783 const gchar *body_str,
785 gboolean set_as_modified)
787 gchar *account_name = NULL;
789 TnyAccount *account = NULL;
790 TnyFolder *folder = NULL;
791 gchar *from_str = NULL, *signature = NULL, *body = NULL;
792 gboolean use_signature = FALSE;
793 ModestWindow *msg_win = NULL;
794 ModestAccountMgr *mgr = modest_runtime_get_account_mgr();
795 ModestTnyAccountStore *store = modest_runtime_get_account_store();
796 GnomeVFSFileSize total_size, allowed_size;
798 /* we check for low-mem */
799 if (modest_platform_check_memory_low (win, TRUE))
802 #ifdef MODEST_TOOLKIT_HILDON2
803 account_name = g_strdup (modest_window_get_active_account(win));
806 account_name = modest_account_mgr_get_default_account(mgr);
809 g_printerr ("modest: no account found\n");
812 account = modest_tny_account_store_get_server_account (store, account_name, TNY_ACCOUNT_TYPE_STORE);
814 g_printerr ("modest: failed to get tnyaccount for '%s'\n", account_name);
817 folder = modest_tny_account_get_special_folder (account, TNY_FOLDER_TYPE_DRAFTS);
819 g_printerr ("modest: failed to find Drafts folder\n");
822 from_str = modest_account_mgr_get_from_string (mgr, account_name);
824 g_printerr ("modest: failed get from string for '%s'\n", account_name);
828 signature = modest_account_mgr_get_signature (mgr, account_name, &use_signature);
829 if (body_str != NULL) {
830 body = use_signature ? g_strconcat(body_str, "\n--\n", signature, NULL) : g_strdup(body_str);
832 body = use_signature ? g_strconcat("\n--\n", signature, NULL) : g_strdup("");
835 msg = modest_tny_msg_new (to_str, from_str, cc_str, bcc_str, subject_str, body, NULL, NULL, NULL);
837 g_printerr ("modest: failed to create new msg\n");
841 /* Create and register edit window */
842 /* This is destroyed by TODO. */
844 allowed_size = MODEST_MAX_ATTACHMENT_SIZE;
845 msg_win = modest_msg_edit_window_new (msg, account_name, FALSE);
847 if (!modest_window_mgr_register_window (modest_runtime_get_window_mgr(), msg_win, win)) {
848 gtk_widget_destroy (GTK_WIDGET (msg_win));
851 modest_msg_edit_window_set_modified (MODEST_MSG_EDIT_WINDOW (msg_win), set_as_modified);
852 gtk_widget_show_all (GTK_WIDGET (msg_win));
854 while (attachments) {
856 modest_msg_edit_window_attach_file_one((ModestMsgEditWindow *)msg_win,
857 attachments->data, allowed_size);
859 if (total_size > allowed_size) {
860 g_warning ("%s: total size: %u",
861 __FUNCTION__, (unsigned int)total_size);
864 allowed_size -= total_size;
866 attachments = g_slist_next(attachments);
873 g_free (account_name);
875 g_object_unref (G_OBJECT(account));
877 g_object_unref (G_OBJECT(folder));
879 g_object_unref (G_OBJECT(msg));
883 modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win)
885 /* if there are no accounts yet, just show the wizard */
886 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE))
887 if (!modest_ui_actions_run_account_setup_wizard (win))
890 modest_ui_actions_compose_msg(win, NULL, NULL, NULL, NULL, NULL, NULL, FALSE);
895 modest_ui_actions_msg_retrieval_check (ModestMailOperation *mail_op,
899 ModestMailOperationStatus status;
901 /* If there is no message or the operation was not successful */
902 status = modest_mail_operation_get_status (mail_op);
903 if (!msg || status != MODEST_MAIL_OPERATION_STATUS_SUCCESS) {
906 /* If it's a memory low issue, then show a banner */
907 error = modest_mail_operation_get_error (mail_op);
908 if (error && error->domain == MODEST_MAIL_OPERATION_ERROR &&
909 error->code == MODEST_MAIL_OPERATION_ERROR_LOW_MEMORY) {
910 GObject *source = modest_mail_operation_get_source (mail_op);
911 modest_platform_run_information_dialog (GTK_IS_WINDOW (source) ? GTK_WINDOW (source) : NULL,
912 _KR("memr_ib_operation_disabled"),
914 g_object_unref (source);
917 if (error && ((error->code == TNY_SERVICE_ERROR_NO_SUCH_MESSAGE) ||
918 error->code == TNY_SERVICE_ERROR_MESSAGE_NOT_AVAILABLE)) {
919 gchar *subject, *msg, *format = NULL;
921 subject = tny_header_dup_subject (header);
923 subject = g_strdup (_("mail_va_no_subject"));
925 account = modest_mail_operation_get_account (mail_op);
927 ModestProtocol *protocol;
928 ModestProtocolType proto;
929 proto = modest_tny_account_get_protocol_type (account);
930 protocol = modest_protocol_registry_get_protocol_by_type (modest_runtime_get_protocol_registry (), proto);
932 format = modest_protocol_get_translation (protocol, MODEST_PROTOCOL_TRANSLATION_MSG_NOT_AVAILABLE, subject);
933 g_object_unref (account);
937 format = g_strdup (_("emev_ni_ui_imap_message_not_available_in_server"));
939 msg = g_strdup_printf (format, subject);
940 modest_platform_run_information_dialog (NULL, msg, FALSE);
946 /* Remove the header from the preregistered uids */
947 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
965 OpenMsgBannerInfo *banner_info;
966 GtkTreeRowReference *rowref;
970 open_msg_banner_idle (gpointer userdata)
972 OpenMsgBannerInfo *banner_info = (OpenMsgBannerInfo *) userdata;
974 gdk_threads_enter ();
975 banner_info->idle_handler = 0;
976 banner_info->banner = modest_platform_animation_banner (NULL, NULL, banner_info->message);
978 g_object_ref (banner_info->banner);
980 gdk_threads_leave ();
987 get_header_view_from_window (ModestWindow *window)
989 GtkWidget *header_view;
991 if (MODEST_IS_MAIN_WINDOW (window)) {
992 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
993 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
994 #ifdef MODEST_TOOLKIT_HILDON2
995 } else if (MODEST_IS_HEADER_WINDOW (window)){
996 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (window)));
1006 get_info_from_header (TnyHeader *header, gboolean *is_draft, gboolean *can_open)
1009 gchar *account = NULL;
1010 TnyFolderType folder_type = TNY_FOLDER_TYPE_UNKNOWN;
1015 folder = tny_header_get_folder (header);
1016 /* Gets folder type (OUTBOX headers will be opened in edit window */
1017 if (modest_tny_folder_is_local_folder (folder)) {
1018 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
1019 if (folder_type == TNY_FOLDER_TYPE_INVALID)
1020 g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
1023 if (folder_type == TNY_FOLDER_TYPE_OUTBOX) {
1024 TnyTransportAccount *traccount = NULL;
1025 ModestTnyAccountStore *accstore = modest_runtime_get_account_store();
1026 traccount = modest_tny_account_store_get_transport_account_from_outbox_header(accstore, header);
1028 ModestTnySendQueue *send_queue = NULL;
1029 ModestTnySendQueueStatus status;
1031 account = g_strdup(modest_tny_account_get_parent_modest_account_name_for_server_account(
1032 TNY_ACCOUNT(traccount)));
1033 send_queue = modest_runtime_get_send_queue(traccount, TRUE);
1034 if (TNY_IS_SEND_QUEUE (send_queue)) {
1035 msg_id = modest_tny_send_queue_get_msg_id (header);
1036 status = modest_tny_send_queue_get_msg_status(send_queue, msg_id);
1038 /* Only open messages in outbox with the editor if they are in Failed state */
1039 if (status == MODEST_TNY_SEND_QUEUE_FAILED) {
1042 #ifdef MODEST_TOOLKIT_HILDON2
1044 /* In Fremantle we can not
1045 open any message from
1046 outbox which is not in
1052 g_object_unref(traccount);
1054 g_warning("Cannot get transport account for message in outbox!!");
1056 } else if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
1057 *is_draft = TRUE; /* Open in editor if the message is in the Drafts folder */
1061 TnyAccount *acc = tny_folder_get_account (folder);
1064 g_strdup (modest_tny_account_get_parent_modest_account_name_for_server_account (acc));
1065 g_object_unref (acc);
1069 g_object_unref (folder);
1075 open_msg_cb (ModestMailOperation *mail_op,
1082 ModestWindowMgr *mgr = NULL;
1083 ModestWindow *parent_win = NULL;
1084 ModestWindow *win = NULL;
1085 gchar *account = NULL;
1086 gboolean open_in_editor = FALSE;
1088 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
1090 /* Do nothing if there was any problem with the mail
1091 operation. The error will be shown by the error_handler of
1092 the mail operation */
1093 if (!modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1096 parent_win = (ModestWindow *) modest_mail_operation_get_source (mail_op);
1098 /* Mark header as read */
1099 headers_action_mark_as_read (header, MODEST_WINDOW(parent_win), NULL);
1101 account = get_info_from_header (header, &open_in_editor, &can_open);
1105 account = g_strdup (modest_window_get_active_account (MODEST_WINDOW (parent_win)));
1107 account = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1109 if (open_in_editor) {
1110 ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
1111 gchar *from_header = NULL, *acc_name;
1113 from_header = tny_header_dup_from (header);
1115 /* we cannot edit without a valid account... */
1116 if (!modest_account_mgr_has_accounts(mgr, TRUE)) {
1117 if (!modest_ui_actions_run_account_setup_wizard(parent_win)) {
1118 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1120 g_free (from_header);
1125 acc_name = modest_utils_get_account_name_from_recipient (from_header);
1126 g_free (from_header);
1132 win = modest_msg_edit_window_new (msg, account, TRUE);
1134 gchar *uid = modest_tny_folder_get_header_unique_id (header);
1136 if (helper->rowref && helper->model) {
1137 win = modest_msg_view_window_new_with_header_model (msg, account, (const gchar*) uid,
1138 helper->model, helper->rowref);
1140 win = modest_msg_view_window_new_for_attachment (msg, account, (const gchar*) uid);
1145 /* Register and show new window */
1147 mgr = modest_runtime_get_window_mgr ();
1148 if (!modest_window_mgr_register_window (mgr, win, NULL)) {
1149 gtk_widget_destroy (GTK_WIDGET (win));
1152 gtk_widget_show_all (GTK_WIDGET(win));
1155 /* Update toolbar dimming state */
1156 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
1157 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (parent_win));
1163 g_object_unref (parent_win);
1167 is_memory_full_error (GError *error, ModestMailOperation *mail_op)
1169 gboolean enough_free_space = TRUE;
1170 GnomeVFSURI *cache_dir_uri;
1171 const gchar *cache_dir = NULL;
1172 GnomeVFSFileSize free_space;
1173 TnyAccountStore *acc_store;
1175 acc_store = TNY_ACCOUNT_STORE (modest_runtime_get_account_store ());
1177 /* Cache dir is different in case we're using an external storage (like MMC account) */
1179 TnyAccount *account = modest_mail_operation_get_account (mail_op);
1181 if (modest_tny_account_is_memory_card_account (account)) {
1182 cache_dir = g_getenv (MODEST_MMC1_VOLUMEPATH_ENV);
1184 g_object_unref (account);
1188 /* Get the default local cache dir */
1190 cache_dir = tny_account_store_get_cache_dir (acc_store);
1192 cache_dir_uri = gnome_vfs_uri_new (cache_dir);
1193 if (cache_dir_uri) {
1194 if (gnome_vfs_get_volume_free_space (cache_dir_uri, &free_space) == GNOME_VFS_OK) {
1195 if (free_space < MIN_FREE_SPACE)
1196 enough_free_space = FALSE;
1198 gnome_vfs_uri_unref (cache_dir_uri);
1201 if ((error->code == TNY_SYSTEM_ERROR_MEMORY ||
1202 /* When asking for a mail and no space left on device
1203 tinymail returns this error */
1204 error->code == TNY_SERVICE_ERROR_MESSAGE_NOT_AVAILABLE ||
1205 /* When the folder summary could not be read or
1207 error->code == TNY_IO_ERROR_WRITE ||
1208 error->code == TNY_IO_ERROR_READ) &&
1209 !enough_free_space) {
1217 check_memory_full_error (GtkWidget *parent_window, GError *err)
1222 if (is_memory_full_error (err, NULL))
1223 modest_platform_information_banner (parent_window,
1224 NULL, _KR("cerm_device_memory_full"));
1225 else if (err->code == TNY_SYSTEM_ERROR_MEMORY)
1226 /* If the account was created in memory full
1227 conditions then tinymail won't be able to
1228 connect so it'll return this error code */
1229 modest_platform_information_banner (parent_window,
1230 NULL, _("emev_ui_imap_inbox_select_error"));
1238 modest_ui_actions_disk_operations_error_handler (ModestMailOperation *mail_op,
1241 const GError *error;
1242 GObject *win = NULL;
1243 ModestMailOperationStatus status;
1245 win = modest_mail_operation_get_source (mail_op);
1246 error = modest_mail_operation_get_error (mail_op);
1247 status = modest_mail_operation_get_status (mail_op);
1249 /* If the mail op has been cancelled then it's not an error:
1250 don't show any message */
1251 if (status != MODEST_MAIL_OPERATION_STATUS_CANCELED) {
1252 if (is_memory_full_error ((GError *) error, mail_op)) {
1253 modest_platform_information_banner ((GtkWidget *) win,
1254 NULL, _KR("cerm_device_memory_full"));
1255 } else if (error->code == TNY_SYSTEM_ERROR_MEMORY) {
1256 modest_platform_information_banner ((GtkWidget *) win,
1257 NULL, _("emev_ui_imap_inbox_select_error"));
1258 } else if (error->domain == MODEST_MAIL_OPERATION_ERROR &&
1259 error->code == MODEST_MAIL_OPERATION_ERROR_FILE_IO) {
1260 modest_platform_information_banner ((GtkWidget *) win,
1261 NULL, _CS ("sfil_ni_unable_to_open_file_not_found"));
1262 } else if (user_data) {
1263 modest_platform_information_banner ((GtkWidget *) win,
1269 g_object_unref (win);
1273 * Returns the account a list of headers belongs to. It returns a
1274 * *new* reference so don't forget to unref it
1277 get_account_from_header_list (TnyList *headers)
1279 TnyAccount *account = NULL;
1281 if (tny_list_get_length (headers) > 0) {
1282 TnyIterator *iter = tny_list_create_iterator (headers);
1283 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1284 TnyFolder *folder = tny_header_get_folder (header);
1287 g_object_unref (header);
1289 while (!tny_iterator_is_done (iter)) {
1290 header = TNY_HEADER (tny_iterator_get_current (iter));
1291 folder = tny_header_get_folder (header);
1294 g_object_unref (header);
1296 tny_iterator_next (iter);
1301 account = tny_folder_get_account (folder);
1302 g_object_unref (folder);
1306 g_object_unref (header);
1308 g_object_unref (iter);
1314 get_account_from_header (TnyHeader *header)
1316 TnyAccount *account = NULL;
1319 folder = tny_header_get_folder (header);
1322 account = tny_folder_get_account (folder);
1323 g_object_unref (folder);
1329 open_msg_helper_destroyer (gpointer user_data)
1331 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
1333 if (helper->banner_info) {
1334 g_free (helper->banner_info->message);
1335 if (helper->banner_info->idle_handler > 0) {
1336 g_source_remove (helper->banner_info->idle_handler);
1337 helper->banner_info->idle_handler = 0;
1339 if (helper->banner_info->banner != NULL) {
1340 gtk_widget_destroy (helper->banner_info->banner);
1341 g_object_unref (helper->banner_info->banner);
1342 helper->banner_info->banner = NULL;
1344 g_slice_free (OpenMsgBannerInfo, helper->banner_info);
1345 helper->banner_info = NULL;
1347 g_object_unref (helper->model);
1348 g_object_unref (helper->header);
1349 gtk_tree_row_reference_free (helper->rowref);
1350 g_slice_free (OpenMsgHelper, helper);
1354 open_msg_performer(gboolean canceled,
1356 GtkWindow *parent_window,
1357 TnyAccount *account,
1360 ModestMailOperation *mail_op = NULL;
1361 gchar *error_msg = NULL;
1362 ModestProtocolType proto;
1363 TnyConnectionStatus status;
1364 OpenMsgHelper *helper = NULL;
1365 ModestProtocol *protocol;
1366 ModestProtocolRegistry *protocol_registry;
1369 helper = (OpenMsgHelper *) user_data;
1371 status = tny_account_get_connection_status (account);
1372 if (err || canceled) {
1373 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (), helper->header);
1374 /* Free the helper */
1375 open_msg_helper_destroyer (helper);
1377 /* In memory full conditions we could get this error here */
1378 check_memory_full_error ((GtkWidget *) parent_window, err);
1383 /* Get the error message depending on the protocol */
1384 proto = modest_tny_account_get_protocol_type (account);
1385 if (proto == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1386 proto = MODEST_PROTOCOLS_STORE_MAILDIR;
1389 protocol_registry = modest_runtime_get_protocol_registry ();
1390 subject = tny_header_dup_subject (helper->header);
1392 protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, proto);
1393 error_msg = modest_protocol_get_translation (protocol, MODEST_PROTOCOL_TRANSLATION_MSG_NOT_AVAILABLE, subject);
1397 if (error_msg == NULL) {
1398 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1401 #ifndef MODEST_TOOLKIT_HILDON2
1402 gboolean show_open_draft = FALSE;
1403 if (modest_protocol_registry_protocol_type_has_tag (protocol_registry,
1405 MODEST_PROTOCOL_REGISTRY_LOCAL_STORE_PROTOCOLS)) {
1407 TnyFolderType folder_type;
1409 folder = tny_header_get_folder (helper->header);
1410 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
1411 show_open_draft = (folder_type == TNY_FOLDER_TYPE_DRAFTS);
1412 g_object_unref (folder);
1416 #ifdef MODEST_TOOLKIT_HILDON2
1419 gchar *account_name = get_info_from_header (helper->header, &is_draft, &can_open);
1422 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (), helper->header);
1423 g_free (account_name);
1424 open_msg_helper_destroyer (helper);
1429 ModestWindow *window;
1430 GtkWidget *header_view;
1433 header_view = get_header_view_from_window (MODEST_WINDOW (parent_window));
1434 uid = modest_tny_folder_get_header_unique_id (helper->header);
1436 window = modest_msg_view_window_new_from_header_view
1437 (MODEST_HEADER_VIEW (header_view), account_name, uid, helper->rowref);
1438 if (window != NULL) {
1439 if (!modest_window_mgr_register_window (modest_runtime_get_window_mgr (),
1441 gtk_widget_destroy (GTK_WIDGET (window));
1443 gtk_widget_show_all (GTK_WIDGET(window));
1447 g_free (account_name);
1449 open_msg_helper_destroyer (helper);
1452 g_free (account_name);
1454 /* Create the mail operation */
1456 modest_mail_operation_new_with_error_handling ((GObject *) parent_window,
1457 modest_ui_actions_disk_operations_error_handler,
1458 g_strdup (error_msg), g_free);
1459 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
1463 #ifndef MODEST_TOOLKIT_HILDON2
1464 if (show_open_draft) {
1465 helper->banner_info = g_slice_new (OpenMsgBannerInfo);
1466 helper->banner_info->message = g_strdup (_("mail_ib_opening_draft_message"));
1467 helper->banner_info->banner = NULL;
1468 helper->banner_info->idle_handler = g_timeout_add (500, open_msg_banner_idle,
1469 helper->banner_info);
1475 headers = TNY_LIST (tny_simple_list_new ());
1476 tny_list_prepend (headers, G_OBJECT (helper->header));
1477 modest_mail_operation_get_msgs_full (mail_op,
1481 open_msg_helper_destroyer);
1482 g_object_unref (headers);
1489 g_object_unref (mail_op);
1490 g_object_unref (account);
1494 * This function is used by both modest_ui_actions_on_open and
1495 * modest_ui_actions_on_header_activated. This way we always do the
1496 * same when trying to open messages.
1499 open_msg_from_header (TnyHeader *header, GtkTreeRowReference *rowref, ModestWindow *win)
1501 ModestWindowMgr *mgr = NULL;
1502 TnyAccount *account;
1503 gboolean cached = FALSE;
1505 GtkWidget *header_view = NULL;
1506 OpenMsgHelper *helper;
1507 ModestWindow *window;
1509 g_return_if_fail (header != NULL && rowref != NULL);
1511 mgr = modest_runtime_get_window_mgr ();
1514 header_view = get_header_view_from_window (MODEST_WINDOW (win));
1515 if (header_view == NULL)
1518 /* Get the account */
1519 account = get_account_from_header (header);
1524 found = modest_window_mgr_find_registered_header (mgr, header, &window);
1526 /* Do not open again the message and present the
1527 window to the user */
1530 #ifndef MODEST_TOOLKIT_HILDON2
1531 gtk_window_present (GTK_WINDOW (window));
1534 /* the header has been registered already, we don't do
1535 * anything but wait for the window to come up*/
1536 g_debug ("header %p already registered, waiting for window", header);
1541 /* Open each message */
1542 cached = tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED;
1544 /* Allways download if we are online. */
1545 if (!tny_device_is_online (modest_runtime_get_device ())) {
1548 /* If ask for user permission to download the messages */
1549 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1550 _("mcen_nc_get_msg"));
1552 /* End if the user does not want to continue */
1553 if (response == GTK_RESPONSE_CANCEL) {
1559 /* We register the window for opening */
1560 modest_window_mgr_register_header (mgr, header, NULL);
1562 /* Create the helper. We need to get a reference to the model
1563 here because it could change while the message is readed
1564 (the user could switch between folders) */
1565 helper = g_slice_new (OpenMsgHelper);
1566 helper->model = g_object_ref (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)));
1567 helper->header = g_object_ref (header);
1568 helper->rowref = gtk_tree_row_reference_copy (rowref);
1569 helper->banner_info = NULL;
1571 /* Connect to the account and perform */
1573 modest_platform_connect_and_perform ((GtkWindow *) win, TRUE, g_object_ref (account),
1574 open_msg_performer, helper);
1576 /* Call directly the performer, do not need to connect */
1577 open_msg_performer (FALSE, NULL, (GtkWindow *) win,
1578 g_object_ref (account), helper);
1583 g_object_unref (account);
1587 modest_ui_actions_on_open (GtkAction *action, ModestWindow *win)
1594 /* we check for low-mem; in that case, show a warning, and don't allow
1597 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
1601 headers = get_selected_headers (win);
1605 headers_count = tny_list_get_length (headers);
1606 if (headers_count != 1) {
1607 if (headers_count > 1) {
1608 /* Don't allow activation if there are more than one message selected */
1609 modest_platform_information_banner (NULL, NULL, _("mcen_ib_select_one_message"));
1612 g_object_unref (headers);
1616 iter = tny_list_create_iterator (headers);
1617 header = TNY_HEADER (tny_iterator_get_current (iter));
1618 g_object_unref (iter);
1622 open_msg_from_header (header, NULL, win);
1623 g_object_unref (header);
1626 g_object_unref(headers);
1630 rf_helper_window_closed (gpointer data,
1633 ReplyForwardHelper *helper = (ReplyForwardHelper *) data;
1635 helper->parent_window = NULL;
1638 static ReplyForwardHelper*
1639 create_reply_forward_helper (ReplyForwardAction action,
1641 guint reply_forward_type,
1644 ReplyForwardHelper *rf_helper = NULL;
1645 const gchar *active_acc = modest_window_get_active_account (win);
1647 rf_helper = g_slice_new0 (ReplyForwardHelper);
1648 rf_helper->reply_forward_type = reply_forward_type;
1649 rf_helper->action = action;
1650 rf_helper->parent_window = (MODEST_IS_WINDOW (win)) ? GTK_WIDGET (win) : NULL;
1651 rf_helper->header = (header) ? g_object_ref (header) : NULL;
1652 rf_helper->account_name = (active_acc) ?
1653 g_strdup (active_acc) :
1654 modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1656 /* Note that window could be destroyed just AFTER calling
1657 register_window so we must ensure that this pointer does
1658 not hold invalid references */
1659 if (rf_helper->parent_window)
1660 g_object_weak_ref (G_OBJECT (rf_helper->parent_window),
1661 rf_helper_window_closed, rf_helper);
1667 free_reply_forward_helper (gpointer data)
1669 ReplyForwardHelper *helper;
1671 helper = (ReplyForwardHelper *) data;
1672 g_free (helper->account_name);
1674 g_object_unref (helper->header);
1675 if (helper->parent_window)
1676 g_object_weak_unref (G_OBJECT (helper->parent_window),
1677 rf_helper_window_closed, helper);
1678 g_slice_free (ReplyForwardHelper, helper);
1682 reply_forward_cb (ModestMailOperation *mail_op,
1689 TnyMsg *new_msg = NULL;
1690 ReplyForwardHelper *rf_helper;
1691 ModestWindow *msg_win = NULL;
1692 ModestEditType edit_type;
1694 TnyAccount *account = NULL;
1695 ModestWindowMgr *mgr = NULL;
1696 gchar *signature = NULL;
1697 gboolean use_signature;
1699 /* If there was any error. The mail operation could be NULL,
1700 this means that we already have the message downloaded and
1701 that we didn't do a mail operation to retrieve it */
1702 rf_helper = (ReplyForwardHelper *) user_data;
1703 if (mail_op && !modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1706 from = modest_account_mgr_get_from_string (modest_runtime_get_account_mgr(),
1707 rf_helper->account_name);
1708 signature = modest_account_mgr_get_signature (modest_runtime_get_account_mgr(),
1709 rf_helper->account_name,
1712 /* Create reply mail */
1713 switch (rf_helper->action) {
1716 modest_tny_msg_create_reply_msg (msg, header, from,
1717 (use_signature) ? signature : NULL,
1718 rf_helper->reply_forward_type,
1719 MODEST_TNY_MSG_REPLY_MODE_SENDER);
1721 case ACTION_REPLY_TO_ALL:
1723 modest_tny_msg_create_reply_msg (msg, header, from,
1724 (use_signature) ? signature : NULL,
1725 rf_helper->reply_forward_type,
1726 MODEST_TNY_MSG_REPLY_MODE_ALL);
1727 edit_type = MODEST_EDIT_TYPE_REPLY;
1729 case ACTION_FORWARD:
1731 modest_tny_msg_create_forward_msg (msg, from, (use_signature) ? signature : NULL,
1732 rf_helper->reply_forward_type);
1733 edit_type = MODEST_EDIT_TYPE_FORWARD;
1736 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1738 g_return_if_reached ();
1746 g_warning ("%s: failed to create message\n", __FUNCTION__);
1750 account = modest_tny_account_store_get_server_account (modest_runtime_get_account_store(),
1751 rf_helper->account_name,
1752 TNY_ACCOUNT_TYPE_STORE);
1754 g_warning ("%s: failed to get tnyaccount for '%s'\n", __FUNCTION__, rf_helper->account_name);
1758 /* Create and register the windows */
1759 msg_win = modest_msg_edit_window_new (new_msg, rf_helper->account_name, FALSE);
1760 mgr = modest_runtime_get_window_mgr ();
1761 modest_window_mgr_register_window (mgr, msg_win, (ModestWindow *) rf_helper->parent_window);
1763 /* Note that register_window could have deleted the account */
1764 if (MODEST_IS_WINDOW (rf_helper->parent_window)) {
1765 gdouble parent_zoom;
1767 parent_zoom = modest_window_get_zoom (MODEST_WINDOW (rf_helper->parent_window));
1768 modest_window_set_zoom (msg_win, parent_zoom);
1771 /* Show edit window */
1772 gtk_widget_show_all (GTK_WIDGET (msg_win));
1775 /* We always unregister the header because the message is
1776 forwarded or replied so the original one is no longer
1778 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1781 g_object_unref (G_OBJECT (new_msg));
1783 g_object_unref (G_OBJECT (account));
1784 free_reply_forward_helper (rf_helper);
1787 /* Checks a list of headers. If any of them are not currently
1788 * downloaded (CACHED) then returns TRUE else returns FALSE.
1791 header_list_count_uncached_msgs (TnyList *header_list)
1794 gint uncached_messages = 0;
1796 iter = tny_list_create_iterator (header_list);
1797 while (!tny_iterator_is_done (iter)) {
1800 header = TNY_HEADER (tny_iterator_get_current (iter));
1802 if (!(tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED))
1803 uncached_messages ++;
1804 g_object_unref (header);
1807 tny_iterator_next (iter);
1809 g_object_unref (iter);
1811 return uncached_messages;
1814 /* Returns FALSE if the user does not want to download the
1815 * messages. Returns TRUE if the user allowed the download.
1818 connect_to_get_msg (ModestWindow *win,
1819 gint num_of_uncached_msgs,
1820 TnyAccount *account)
1822 GtkResponseType response;
1824 /* Allways download if we are online. */
1825 if (tny_device_is_online (modest_runtime_get_device ()))
1828 /* If offline, then ask for user permission to download the messages */
1829 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1830 ngettext("mcen_nc_get_msg",
1832 num_of_uncached_msgs));
1834 if (response == GTK_RESPONSE_CANCEL)
1837 return modest_platform_connect_and_wait((GtkWindow *) win, account);
1841 reply_forward_performer (gboolean canceled,
1843 GtkWindow *parent_window,
1844 TnyAccount *account,
1847 ReplyForwardHelper *rf_helper = NULL;
1848 ModestMailOperation *mail_op;
1850 rf_helper = (ReplyForwardHelper *) user_data;
1852 if (canceled || err) {
1853 free_reply_forward_helper (rf_helper);
1857 /* Retrieve the message */
1858 modest_window_mgr_register_header (modest_runtime_get_window_mgr (), rf_helper->header, NULL);
1859 mail_op = modest_mail_operation_new_with_error_handling (G_OBJECT (parent_window),
1860 modest_ui_actions_disk_operations_error_handler,
1862 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
1863 modest_mail_operation_get_msg (mail_op, rf_helper->header, TRUE, reply_forward_cb, rf_helper);
1866 g_object_unref(mail_op);
1870 * Common code for the reply and forward actions
1873 reply_forward (ReplyForwardAction action, ModestWindow *win)
1875 ReplyForwardHelper *rf_helper = NULL;
1876 guint reply_forward_type;
1878 g_return_if_fail (MODEST_IS_WINDOW(win));
1880 /* we check for low-mem; in that case, show a warning, and don't allow
1881 * reply/forward (because it could potentially require a lot of memory */
1882 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
1886 /* we need an account when editing */
1887 if (!modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE)) {
1888 if (!modest_ui_actions_run_account_setup_wizard (win))
1892 reply_forward_type =
1893 modest_conf_get_int (modest_runtime_get_conf (),
1894 (action == ACTION_FORWARD) ?
1895 MODEST_CONF_FORWARD_TYPE :
1896 MODEST_CONF_REPLY_TYPE,
1899 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
1901 TnyHeader *header = NULL;
1902 /* Get header and message. Do not free them here, the
1903 reply_forward_cb must do it */
1904 msg = modest_msg_view_window_get_message (MODEST_MSG_VIEW_WINDOW(win));
1905 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
1907 if (msg && header) {
1909 rf_helper = create_reply_forward_helper (action, win,
1910 reply_forward_type, header);
1911 reply_forward_cb (NULL, header, FALSE, msg, NULL, rf_helper);
1913 g_warning("%s: no message or header found in viewer\n", __FUNCTION__);
1917 g_object_unref (msg);
1919 g_object_unref (header);
1921 TnyHeader *header = NULL;
1923 gboolean do_retrieve = TRUE;
1924 TnyList *header_list = NULL;
1926 header_list = get_selected_headers (win);
1929 /* Check that only one message is selected for replying */
1930 if (tny_list_get_length (header_list) != 1) {
1931 modest_platform_information_banner ((win) ? GTK_WIDGET (win) : NULL,
1932 NULL, _("mcen_ib_select_one_message"));
1933 g_object_unref (header_list);
1937 /* Only reply/forward to one message */
1938 iter = tny_list_create_iterator (header_list);
1939 header = TNY_HEADER (tny_iterator_get_current (iter));
1940 g_object_unref (iter);
1942 /* Retrieve messages */
1943 do_retrieve = (action == ACTION_FORWARD) ||
1944 (reply_forward_type != MODEST_TNY_MSG_REPLY_TYPE_CITE);
1947 TnyAccount *account = NULL;
1948 TnyFolder *folder = NULL;
1949 gdouble download = TRUE;
1950 guint uncached_msgs = 0;
1952 folder = tny_header_get_folder (header);
1954 goto do_retrieve_frees;
1955 account = tny_folder_get_account (folder);
1957 goto do_retrieve_frees;
1959 uncached_msgs = header_list_count_uncached_msgs (header_list);
1961 if (uncached_msgs > 0) {
1962 /* Allways download if we are online. */
1963 if (!tny_device_is_online (modest_runtime_get_device ())) {
1966 /* If ask for user permission to download the messages */
1967 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1968 ngettext("mcen_nc_get_msg",
1972 /* End if the user does not want to continue */
1973 if (response == GTK_RESPONSE_CANCEL)
1980 rf_helper = create_reply_forward_helper (action, win,
1981 reply_forward_type, header);
1982 if (uncached_msgs > 0) {
1983 modest_platform_connect_and_perform (GTK_WINDOW (win),
1985 reply_forward_performer,
1988 reply_forward_performer (FALSE, NULL, GTK_WINDOW (win),
1989 account, rf_helper);
1994 g_object_unref (account);
1996 g_object_unref (folder);
1998 reply_forward_cb (NULL, header, FALSE, NULL, NULL, rf_helper);
2001 g_object_unref (header_list);
2002 g_object_unref (header);
2007 modest_ui_actions_on_reply (GtkAction *action, ModestWindow *win)
2009 g_return_if_fail (MODEST_IS_WINDOW(win));
2011 reply_forward (ACTION_REPLY, win);
2015 modest_ui_actions_on_forward (GtkAction *action, ModestWindow *win)
2017 g_return_if_fail (MODEST_IS_WINDOW(win));
2019 reply_forward (ACTION_FORWARD, win);
2023 modest_ui_actions_on_reply_all (GtkAction *action, ModestWindow *win)
2025 g_return_if_fail (MODEST_IS_WINDOW(win));
2027 reply_forward (ACTION_REPLY_TO_ALL, win);
2031 modest_ui_actions_on_next (GtkAction *action,
2032 ModestWindow *window)
2034 if (MODEST_IS_MAIN_WINDOW (window)) {
2035 GtkWidget *header_view;
2037 header_view = modest_main_window_get_child_widget (
2038 MODEST_MAIN_WINDOW(window),
2039 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2043 modest_header_view_select_next (
2044 MODEST_HEADER_VIEW(header_view));
2045 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
2046 modest_msg_view_window_select_next_message (
2047 MODEST_MSG_VIEW_WINDOW (window));
2049 g_return_if_reached ();
2054 modest_ui_actions_on_prev (GtkAction *action,
2055 ModestWindow *window)
2057 g_return_if_fail (MODEST_IS_WINDOW(window));
2059 if (MODEST_IS_MAIN_WINDOW (window)) {
2060 GtkWidget *header_view;
2061 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
2062 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2066 modest_header_view_select_prev (MODEST_HEADER_VIEW(header_view));
2067 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
2068 modest_msg_view_window_select_previous_message (MODEST_MSG_VIEW_WINDOW (window));
2070 g_return_if_reached ();
2075 modest_ui_actions_on_sort (GtkAction *action,
2076 ModestWindow *window)
2078 GtkWidget *header_view = NULL;
2080 g_return_if_fail (MODEST_IS_WINDOW(window));
2082 if (MODEST_IS_MAIN_WINDOW (window)) {
2083 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
2084 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2085 #ifdef MODEST_TOOLKIT_HILDON2
2086 } else if (MODEST_IS_HEADER_WINDOW (window)) {
2087 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (window)));
2092 modest_platform_information_banner (NULL, NULL, _CS("ckdg_ib_nothing_to_sort"));
2097 /* Show sorting dialog */
2098 modest_utils_run_sort_dialog (GTK_WINDOW (window), MODEST_SORT_HEADERS);
2102 new_messages_arrived (ModestMailOperation *self,
2103 TnyList *new_headers,
2107 gboolean show_visual_notifications;
2109 source = modest_mail_operation_get_source (self);
2110 show_visual_notifications = (source) ? FALSE : TRUE;
2112 g_object_unref (source);
2114 /* Notify new messages have been downloaded. If the
2115 send&receive was invoked by the user then do not show any
2116 visual notification, only play a sound and activate the LED
2117 (for the Maemo version) */
2118 if (TNY_IS_LIST(new_headers) && (tny_list_get_length (new_headers)) > 0)
2119 modest_platform_on_new_headers_received (new_headers,
2120 show_visual_notifications);
2125 retrieve_all_messages_cb (GObject *source,
2127 guint retrieve_limit)
2133 window = GTK_WINDOW (source);
2134 msg = g_strdup_printf (_("mail_nc_msg_count_limit_exceeded"),
2135 num_msgs, retrieve_limit);
2137 /* Ask the user if they want to retrieve all the messages */
2139 modest_platform_run_confirmation_dialog_with_buttons (window, msg,
2140 _("mcen_bd_get_all"),
2141 _("mcen_bd_newest_only"));
2142 /* Free and return */
2144 return (response == GTK_RESPONSE_ACCEPT) ? TRUE : FALSE;
2148 TnyAccount *account;
2150 gchar *account_name;
2151 gboolean poke_status;
2152 gboolean interactive;
2153 ModestMailOperation *mail_op;
2157 do_send_receive_performer (gboolean canceled,
2159 GtkWindow *parent_window,
2160 TnyAccount *account,
2163 SendReceiveInfo *info;
2165 info = (SendReceiveInfo *) user_data;
2167 if (err || canceled) {
2168 /* In memory full conditions we could get this error here */
2169 check_memory_full_error ((GtkWidget *) parent_window, err);
2171 if (info->mail_op) {
2172 modest_mail_operation_queue_remove (modest_runtime_get_mail_operation_queue (),
2178 /* Set send/receive operation in progress */
2179 if (info->win && MODEST_IS_MAIN_WINDOW (info->win)) {
2180 modest_main_window_notify_send_receive_initied (MODEST_MAIN_WINDOW (info->win));
2183 if (info->win && MODEST_IS_MAIN_WINDOW (info->win))
2184 g_signal_connect (G_OBJECT (info->mail_op), "operation-finished",
2185 G_CALLBACK (on_send_receive_finished),
2188 /* Send & receive. */
2189 modest_mail_operation_update_account (info->mail_op, info->account_name, info->poke_status, info->interactive,
2190 (info->win) ? retrieve_all_messages_cb : NULL,
2191 new_messages_arrived, info->win);
2196 g_object_unref (G_OBJECT (info->mail_op));
2197 if (info->account_name)
2198 g_free (info->account_name);
2200 g_object_unref (info->win);
2202 g_object_unref (info->account);
2203 g_slice_free (SendReceiveInfo, info);
2207 * This function performs the send & receive required actions. The
2208 * window is used to create the mail operation. Typically it should
2209 * always be the main window, but we pass it as argument in order to
2213 modest_ui_actions_do_send_receive (const gchar *account_name,
2214 gboolean force_connection,
2215 gboolean poke_status,
2216 gboolean interactive,
2219 gchar *acc_name = NULL;
2220 SendReceiveInfo *info;
2221 ModestTnyAccountStore *acc_store;
2223 /* If no account name was provided then get the current account, and if
2224 there is no current account then pick the default one: */
2225 if (!account_name) {
2227 acc_name = g_strdup (modest_window_get_active_account (win));
2229 acc_name = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
2231 g_printerr ("modest: cannot get default account\n");
2235 acc_name = g_strdup (account_name);
2238 acc_store = modest_runtime_get_account_store ();
2240 /* Create the info for the connect and perform */
2241 info = g_slice_new (SendReceiveInfo);
2242 info->account_name = acc_name;
2243 info->win = (win) ? g_object_ref (win) : NULL;
2244 info->poke_status = poke_status;
2245 info->interactive = interactive;
2246 info->account = modest_tny_account_store_get_server_account (acc_store, acc_name,
2247 TNY_ACCOUNT_TYPE_STORE);
2248 /* We need to create the operation here, because otherwise it
2249 could happen that the queue emits the queue-empty signal
2250 while we're trying to connect the account */
2251 info->mail_op = modest_mail_operation_new_with_error_handling ((info->win) ? G_OBJECT (info->win) : NULL,
2252 modest_ui_actions_disk_operations_error_handler,
2254 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), info->mail_op);
2256 /* Invoke the connect and perform */
2257 modest_platform_connect_and_perform ((win) ? GTK_WINDOW (win) : NULL,
2258 force_connection, info->account,
2259 do_send_receive_performer, info);
2264 modest_ui_actions_do_cancel_send (const gchar *account_name,
2267 TnyTransportAccount *transport_account;
2268 TnySendQueue *send_queue = NULL;
2269 GError *error = NULL;
2271 /* Get transport account */
2273 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2274 (modest_runtime_get_account_store(),
2276 TNY_ACCOUNT_TYPE_TRANSPORT));
2277 if (!transport_account) {
2278 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2283 send_queue = TNY_SEND_QUEUE (modest_runtime_get_send_queue (transport_account, TRUE));
2284 if (!TNY_IS_SEND_QUEUE(send_queue)) {
2285 g_set_error (&error, MODEST_MAIL_OPERATION_ERROR,
2286 MODEST_MAIL_OPERATION_ERROR_ITEM_NOT_FOUND,
2287 "modest: could not find send queue for account\n");
2289 /* Cancel the current send */
2290 tny_account_cancel (TNY_ACCOUNT (transport_account));
2292 /* Suspend all pending messages */
2293 tny_send_queue_cancel (send_queue, TNY_SEND_QUEUE_CANCEL_ACTION_SUSPEND, &error);
2297 if (transport_account != NULL)
2298 g_object_unref (G_OBJECT (transport_account));
2302 modest_ui_actions_cancel_send_all (ModestWindow *win)
2304 GSList *account_names, *iter;
2306 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
2309 iter = account_names;
2311 modest_ui_actions_do_cancel_send ((const char*) iter->data, win);
2312 iter = g_slist_next (iter);
2315 modest_account_mgr_free_account_names (account_names);
2316 account_names = NULL;
2320 modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win)
2323 /* Check if accounts exist */
2324 gboolean accounts_exist =
2325 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
2327 /* If not, allow the user to create an account before trying to send/receive. */
2328 if (!accounts_exist)
2329 modest_ui_actions_on_accounts (NULL, win);
2331 /* Cancel all sending operaitons */
2332 modest_ui_actions_cancel_send_all (win);
2336 * Refreshes all accounts. This function will be used by automatic
2340 modest_ui_actions_do_send_receive_all (ModestWindow *win,
2341 gboolean force_connection,
2342 gboolean poke_status,
2343 gboolean interactive)
2345 GSList *account_names, *iter;
2347 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
2350 iter = account_names;
2352 modest_ui_actions_do_send_receive ((const char*) iter->data,
2354 poke_status, interactive, win);
2355 iter = g_slist_next (iter);
2358 modest_account_mgr_free_account_names (account_names);
2359 account_names = NULL;
2363 * Handler of the click on Send&Receive button in the main toolbar
2366 modest_ui_actions_on_send_receive (GtkAction *action, ModestWindow *win)
2368 /* Check if accounts exist */
2369 gboolean accounts_exist;
2372 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
2374 /* If not, allow the user to create an account before trying to send/receive. */
2375 if (!accounts_exist)
2376 modest_ui_actions_on_accounts (NULL, win);
2378 /* Refresh the current folder. The if is always TRUE it's just an extra check */
2379 if (MODEST_IS_MAIN_WINDOW (win)) {
2380 GtkWidget *folder_view;
2381 TnyFolderStore *folder_store;
2384 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
2385 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2389 folder_store = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2392 g_object_unref (folder_store);
2393 /* Refresh the active account. Force the connection if needed
2394 and poke the status of all folders */
2395 modest_ui_actions_do_send_receive (NULL, TRUE, TRUE, TRUE, win);
2396 #ifdef MODEST_TOOLKIT_HILDON2
2397 } else if (MODEST_IS_ACCOUNTS_WINDOW (win)) {
2398 modest_ui_actions_do_send_receive_all (win, TRUE, TRUE, TRUE);
2401 const gchar *active_account;
2402 active_account = modest_window_get_active_account (MODEST_WINDOW (win));
2404 modest_ui_actions_do_send_receive (active_account, TRUE, TRUE, TRUE, win);
2411 modest_ui_actions_toggle_header_list_view (GtkAction *action, ModestMainWindow *main_window)
2414 GtkWidget *header_view;
2416 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2418 header_view = modest_main_window_get_child_widget (main_window,
2419 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2423 conf = modest_runtime_get_conf ();
2425 /* what is saved/restored is depending on the style; thus; we save with
2426 * old style, then update the style, and restore for this new style
2428 modest_widget_memory_save (conf, G_OBJECT(header_view), MODEST_CONF_HEADER_VIEW_KEY);
2430 if (modest_header_view_get_style
2431 (MODEST_HEADER_VIEW(header_view)) == MODEST_HEADER_VIEW_STYLE_DETAILS)
2432 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2433 MODEST_HEADER_VIEW_STYLE_TWOLINES);
2435 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2436 MODEST_HEADER_VIEW_STYLE_DETAILS);
2438 modest_widget_memory_restore (conf, G_OBJECT(header_view),
2439 MODEST_CONF_HEADER_VIEW_KEY);
2444 modest_ui_actions_on_header_selected (ModestHeaderView *header_view,
2446 ModestMainWindow *main_window)
2448 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2449 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
2451 /* in the case the folder is empty, show the empty folder message and focus
2453 if (!header && gtk_widget_is_focus (GTK_WIDGET (header_view))) {
2454 if (modest_header_view_is_empty (header_view)) {
2455 TnyFolder *folder = modest_header_view_get_folder (header_view);
2456 GtkWidget *folder_view =
2457 modest_main_window_get_child_widget (main_window,
2458 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2459 if (folder != NULL) {
2460 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view), folder, FALSE);
2461 g_object_unref (folder);
2463 gtk_widget_grab_focus (GTK_WIDGET (folder_view));
2467 /* If no header has been selected then exit */
2472 if (!gtk_widget_is_focus (GTK_WIDGET(header_view)))
2473 gtk_widget_grab_focus (GTK_WIDGET(header_view));
2475 /* Update toolbar dimming state */
2476 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
2477 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2481 modest_ui_actions_on_header_activated (ModestHeaderView *header_view,
2484 ModestWindow *window)
2486 GtkWidget *open_widget;
2487 GtkTreeRowReference *rowref;
2489 g_return_if_fail (MODEST_IS_WINDOW(window));
2490 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
2491 g_return_if_fail (TNY_IS_HEADER (header));
2493 if (modest_header_view_count_selected_headers (header_view) > 1) {
2494 /* Don't allow activation if there are more than one message selected */
2495 modest_platform_information_banner (NULL, NULL, _("mcen_ib_select_one_message"));
2499 /* we check for low-mem; in that case, show a warning, and don't allow
2500 * activating headers
2502 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
2505 if (MODEST_IS_MAIN_WINDOW (window)) {
2506 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (window));
2507 open_widget = modest_window_get_action_widget (MODEST_WINDOW (window), "/MenuBar/EmailMenu/EmailOpenMenu");
2508 if (!GTK_WIDGET_IS_SENSITIVE (open_widget))
2512 rowref = gtk_tree_row_reference_new (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)), path);
2513 open_msg_from_header (header, rowref, MODEST_WINDOW (window));
2514 gtk_tree_row_reference_free (rowref);
2518 set_active_account_from_tny_account (TnyAccount *account,
2519 ModestWindow *window)
2521 const gchar *server_acc_name = tny_account_get_id (account);
2523 /* We need the TnyAccount provided by the
2524 account store because that is the one that
2525 knows the name of the Modest account */
2526 TnyAccount *modest_server_account = modest_server_account =
2527 modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store (),
2528 MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
2530 if (!modest_server_account) {
2531 g_warning ("%s: could not get tny account\n", __FUNCTION__);
2535 /* Update active account, but only if it's not a pseudo-account */
2536 if ((!modest_tny_account_is_virtual_local_folders(modest_server_account)) &&
2537 (!modest_tny_account_is_memory_card_account(modest_server_account))) {
2538 const gchar *modest_acc_name =
2539 modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
2540 if (modest_acc_name)
2541 modest_window_set_active_account (window, modest_acc_name);
2544 g_object_unref (modest_server_account);
2549 folder_refreshed_cb (ModestMailOperation *mail_op,
2553 ModestMainWindow *win = NULL;
2554 GtkWidget *folder_view;
2555 const GError *error;
2557 g_return_if_fail (TNY_IS_FOLDER (folder));
2559 win = MODEST_MAIN_WINDOW (user_data);
2561 /* Check if the operation failed due to memory low conditions */
2562 error = modest_mail_operation_get_error (mail_op);
2563 if (error && error->domain == MODEST_MAIL_OPERATION_ERROR &&
2564 error->code == MODEST_MAIL_OPERATION_ERROR_LOW_MEMORY) {
2565 modest_platform_run_information_dialog (GTK_WINDOW (win),
2566 _KR("memr_ib_operation_disabled"),
2572 modest_main_window_get_child_widget(win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2575 TnyFolderStore *current_folder;
2577 current_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2578 if (current_folder) {
2579 gboolean different = ((TnyFolderStore *) folder != current_folder);
2580 g_object_unref (current_folder);
2586 /* Check if folder is empty and set headers view contents style */
2587 if (tny_folder_get_all_count (folder) == 0)
2588 modest_main_window_set_contents_style (win,
2589 MODEST_MAIN_WINDOW_CONTENTS_STYLE_EMPTY);
2594 modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder_view,
2595 TnyFolderStore *folder_store,
2597 ModestMainWindow *main_window)
2600 GtkWidget *header_view;
2602 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2604 header_view = modest_main_window_get_child_widget(main_window,
2605 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2609 conf = modest_runtime_get_conf ();
2611 if (TNY_IS_ACCOUNT (folder_store)) {
2613 set_active_account_from_tny_account (TNY_ACCOUNT (folder_store), MODEST_WINDOW (main_window));
2615 /* Show account details */
2616 modest_main_window_set_contents_style (main_window, MODEST_MAIN_WINDOW_CONTENTS_STYLE_DETAILS);
2619 if (TNY_IS_FOLDER (folder_store) && selected) {
2620 TnyAccount *account;
2621 const gchar *account_name = NULL;
2623 /* Update the active account */
2624 account = modest_tny_folder_get_account (TNY_FOLDER (folder_store));
2626 set_active_account_from_tny_account (account, MODEST_WINDOW (main_window));
2628 modest_tny_account_get_parent_modest_account_name_for_server_account (account);
2629 g_object_unref (account);
2633 /* Set the header style by default, it could
2634 be changed later by the refresh callback to
2636 modest_main_window_set_contents_style (main_window,
2637 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS);
2639 /* Set folder on header view. This function
2640 will call tny_folder_refresh_async so we
2641 pass a callback that will be called when
2642 finished. We use that callback to set the
2643 empty view if there are no messages */
2644 modest_header_view_set_folder (MODEST_HEADER_VIEW(header_view),
2645 TNY_FOLDER (folder_store),
2647 MODEST_WINDOW (main_window),
2648 folder_refreshed_cb,
2651 /* Restore configuration. We need to do this
2652 *after* the set_folder because the widget
2653 memory asks the header view about its
2655 modest_widget_memory_restore (modest_runtime_get_conf (),
2656 G_OBJECT(header_view),
2657 MODEST_CONF_HEADER_VIEW_KEY);
2659 /* No need to save the header view
2660 configuration for Maemo because it only
2661 saves the sorting stuff and that it's
2662 already being done by the sort
2663 dialog. Remove it when the GNOME version
2664 has the same behaviour */
2665 #ifdef MODEST_TOOLKIT_GTK
2666 if (modest_main_window_get_contents_style (main_window) ==
2667 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS)
2668 modest_widget_memory_save (conf, G_OBJECT (header_view),
2669 MODEST_CONF_HEADER_VIEW_KEY);
2671 modest_header_view_clear (MODEST_HEADER_VIEW(header_view));
2675 /* Update dimming state */
2676 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
2677 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2681 modest_ui_actions_on_item_not_found (ModestHeaderView *header_view,ModestItemType type,
2688 item = (type == MODEST_ITEM_TYPE_FOLDER) ? "folder" : "message";
2690 online = tny_device_is_online (modest_runtime_get_device());
2693 /* already online -- the item is simply not there... */
2694 dialog = gtk_message_dialog_new (GTK_WINDOW (win),
2696 GTK_MESSAGE_WARNING,
2698 _("The %s you selected cannot be found"),
2700 gtk_dialog_add_button (GTK_DIALOG (dialog),_("mcen_bd_dialog_ok"), GTK_RESPONSE_ACCEPT);
2701 gtk_dialog_run (GTK_DIALOG(dialog));
2703 dialog = gtk_dialog_new_with_buttons (_("Connection requested"),
2706 _("mcen_bd_dialog_cancel"),
2707 GTK_RESPONSE_REJECT,
2708 _("mcen_bd_dialog_ok"),
2709 GTK_RESPONSE_ACCEPT,
2711 txt = g_strdup_printf (_("This %s is not available in offline mode.\n"
2712 "Do you want to get online?"), item);
2713 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox),
2714 gtk_label_new (txt), FALSE, FALSE, 0);
2715 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
2718 gtk_window_set_default_size (GTK_WINDOW(dialog), 300, 300);
2719 if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
2720 /* TODO: Comment about why is this commented out: */
2721 /* modest_platform_connect_and_wait (); */
2724 gtk_widget_destroy (dialog);
2728 modest_ui_actions_on_msg_link_hover (ModestMsgView *msgview, const gchar* link,
2731 /* g_message ("%s %s", __FUNCTION__, link); */
2736 modest_ui_actions_on_msg_link_clicked (ModestMsgView *msgview, const gchar* link,
2739 modest_platform_activate_uri (link);
2743 modest_ui_actions_on_msg_link_contextual (ModestMsgView *msgview, const gchar* link,
2746 modest_platform_show_uri_popup (link);
2750 modest_ui_actions_on_msg_attachment_clicked (ModestMsgView *msgview, TnyMimePart *mime_part,
2753 /* we check for low-mem; in that case, show a warning, and don't allow
2754 * viewing attachments
2756 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
2759 modest_msg_view_window_view_attachment (MODEST_MSG_VIEW_WINDOW (win), mime_part);
2763 modest_ui_actions_on_msg_recpt_activated (ModestMsgView *msgview,
2764 const gchar *address,
2767 /* g_message ("%s %s", __FUNCTION__, address); */
2771 on_save_to_drafts_cb (ModestMailOperation *mail_op,
2772 TnyMsg *saved_draft,
2775 ModestMsgEditWindow *edit_window;
2777 /* TODO: in hildon 2 we have to dim and undim the header views while we're saving */
2778 #ifndef MODEST_TOOLKIT_HILDON2
2779 ModestMainWindow *win;
2781 /* FIXME. Make the header view sensitive again. This is a
2782 * temporary hack. See modest_ui_actions_on_save_to_drafts()
2784 win = MODEST_MAIN_WINDOW(modest_window_mgr_get_main_window(
2785 modest_runtime_get_window_mgr(), FALSE));
2787 GtkWidget *hdrview = modest_main_window_get_child_widget(
2788 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2789 if (hdrview) gtk_widget_set_sensitive(hdrview, TRUE);
2793 edit_window = MODEST_MSG_EDIT_WINDOW (user_data);
2795 /* Set draft is there was no error */
2796 if (!modest_mail_operation_get_error (mail_op))
2797 modest_msg_edit_window_set_draft (edit_window, saved_draft);
2799 g_object_unref(edit_window);
2803 enough_space_for_message (ModestMsgEditWindow *edit_window,
2806 TnyAccountStore *acc_store;
2807 guint64 available_disk, expected_size;
2812 acc_store = TNY_ACCOUNT_STORE (modest_runtime_get_account_store());
2813 available_disk = modest_utils_get_available_space (NULL);
2814 modest_msg_edit_window_get_parts_size (edit_window, &parts_count, &parts_size);
2815 expected_size = modest_tny_msg_estimate_size (data->plain_body,
2820 /* Double check: memory full condition or message too big */
2821 if (available_disk < MIN_FREE_SPACE ||
2822 expected_size > available_disk) {
2824 modest_platform_information_banner (NULL, NULL,
2825 _KR("cerm_device_memory_full"));
2830 * djcb: if we're in low-memory state, we only allow for
2831 * saving messages smaller than
2832 * MODEST_MAX_LOW_MEMORY_MESSAGE_SIZE (see modest-defs.h) this
2833 * should still allow for sending anything critical...
2835 if ((expected_size > MODEST_MAX_LOW_MEMORY_MESSAGE_SIZE) &&
2836 modest_platform_check_memory_low (MODEST_WINDOW(edit_window), TRUE))
2840 * djcb: we also make sure that the attachments are smaller than the max size
2841 * this is for the case where we'd try to forward a message with attachments
2842 * bigger than our max allowed size, or sending an message from drafts which
2843 * somehow got past our checks when attaching.
2845 if (expected_size > MODEST_MAX_ATTACHMENT_SIZE) {
2846 modest_platform_run_information_dialog (
2847 GTK_WINDOW(edit_window),
2848 _KR("memr_ib_operation_disabled"),
2857 modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2859 TnyTransportAccount *transport_account;
2860 ModestMailOperation *mail_operation;
2862 gchar *account_name, *from;
2863 ModestAccountMgr *account_mgr;
2864 gboolean had_error = FALSE;
2865 ModestMainWindow *win = NULL;
2867 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), FALSE);
2869 data = modest_msg_edit_window_get_msg_data (edit_window);
2872 if (!enough_space_for_message (edit_window, data)) {
2873 modest_msg_edit_window_free_msg_data (edit_window, data);
2877 account_name = g_strdup (data->account_name);
2878 account_mgr = modest_runtime_get_account_mgr();
2880 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2882 account_name = modest_account_mgr_get_default_account (account_mgr);
2883 if (!account_name) {
2884 g_printerr ("modest: no account found\n");
2885 modest_msg_edit_window_free_msg_data (edit_window, data);
2889 if (!strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID)) {
2890 account_name = g_strdup (data->account_name);
2894 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2895 (modest_runtime_get_account_store (),
2897 TNY_ACCOUNT_TYPE_TRANSPORT));
2898 if (!transport_account) {
2899 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2900 g_free (account_name);
2901 modest_msg_edit_window_free_msg_data (edit_window, data);
2904 from = modest_account_mgr_get_from_string (account_mgr, account_name);
2906 /* Create the mail operation */
2907 mail_operation = modest_mail_operation_new_with_error_handling (NULL, modest_ui_actions_disk_operations_error_handler,
2909 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2911 modest_mail_operation_save_to_drafts (mail_operation,
2923 data->priority_flags,
2924 on_save_to_drafts_cb,
2925 g_object_ref(edit_window));
2927 #ifdef MODEST_TOOLKIT_HILDON2
2928 /* In hildon2 we always show the information banner on saving to drafts.
2929 * It will be a system information banner in this case.
2931 gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2932 modest_platform_information_banner (NULL, NULL, text);
2935 /* Use the main window as the parent of the banner, if the
2936 main window does not exist it won't be shown, if the parent
2937 window exists then it's properly shown. We don't use the
2938 editor window because it could be closed (save to drafts
2939 could happen after closing the window */
2940 win = (ModestMainWindow *)
2941 modest_window_mgr_get_main_window( modest_runtime_get_window_mgr(), FALSE);
2943 gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2944 modest_platform_information_banner (GTK_WIDGET (win), NULL, text);
2948 modest_msg_edit_window_set_modified (edit_window, FALSE);
2952 g_free (account_name);
2953 g_object_unref (G_OBJECT (transport_account));
2954 g_object_unref (G_OBJECT (mail_operation));
2956 modest_msg_edit_window_free_msg_data (edit_window, data);
2959 * If the drafts folder is selected then make the header view
2960 * insensitive while the message is being saved to drafts
2961 * (it'll be sensitive again in on_save_to_drafts_cb()). This
2962 * is not very clean but it avoids letting the drafts folder
2963 * in an inconsistent state: the user could edit the message
2964 * being saved and undesirable things would happen.
2965 * In the average case the user won't notice anything at
2966 * all. In the worst case (the user is editing a really big
2967 * file from Drafts) the header view will be insensitive
2968 * during the saving process (10 or 20 seconds, depending on
2969 * the message). Anyway this is just a quick workaround: once
2970 * we find a better solution it should be removed
2971 * See NB#65125 (commend #18) for details.
2973 if (!had_error && win != NULL) {
2974 ModestFolderView *view = MODEST_FOLDER_VIEW(modest_main_window_get_child_widget(
2975 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW));
2977 TnyFolder *folder = TNY_FOLDER(modest_folder_view_get_selected(view));
2979 if (modest_tny_folder_is_local_folder(folder)) {
2980 TnyFolderType folder_type;
2981 folder_type = modest_tny_folder_get_local_or_mmc_folder_type(folder);
2982 if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
2983 GtkWidget *hdrview = modest_main_window_get_child_widget(
2984 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2985 if (hdrview) gtk_widget_set_sensitive(hdrview, FALSE);
2989 if (folder != NULL) g_object_unref(folder);
2996 /* For instance, when clicking the Send toolbar button when editing a message: */
2998 modest_ui_actions_on_send (GtkWidget *widget, ModestMsgEditWindow *edit_window)
3000 TnyTransportAccount *transport_account = NULL;
3001 gboolean had_error = FALSE;
3003 ModestAccountMgr *account_mgr;
3004 gchar *account_name;
3006 ModestMailOperation *mail_operation;
3008 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), TRUE);
3010 if (!modest_msg_edit_window_check_names (edit_window, TRUE))
3013 data = modest_msg_edit_window_get_msg_data (edit_window);
3016 if (!enough_space_for_message (edit_window, data)) {
3017 modest_msg_edit_window_free_msg_data (edit_window, data);
3021 account_mgr = modest_runtime_get_account_mgr();
3022 account_name = g_strdup (data->account_name);
3024 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
3027 account_name = modest_account_mgr_get_default_account (account_mgr);
3029 if (!account_name) {
3030 modest_msg_edit_window_free_msg_data (edit_window, data);
3031 /* Run account setup wizard */
3032 if (!modest_ui_actions_run_account_setup_wizard (MODEST_WINDOW(edit_window))) {
3037 /* Get the currently-active transport account for this modest account: */
3038 if (strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) != 0) {
3040 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
3041 (modest_runtime_get_account_store (),
3042 account_name, TNY_ACCOUNT_TYPE_TRANSPORT));
3045 if (!transport_account) {
3046 modest_msg_edit_window_free_msg_data (edit_window, data);
3047 /* Run account setup wizard */
3048 if (!modest_ui_actions_run_account_setup_wizard(MODEST_WINDOW(edit_window)))
3053 /* Create the mail operation */
3054 from = modest_account_mgr_get_from_string (account_mgr, account_name);
3055 mail_operation = modest_mail_operation_new_with_error_handling (NULL, modest_ui_actions_disk_operations_error_handler, NULL, NULL);
3056 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
3058 modest_mail_operation_send_new_mail (mail_operation,
3070 data->priority_flags);
3072 if (modest_mail_operation_get_status (mail_operation) == MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS)
3073 modest_platform_information_banner (NULL, NULL, _("mcen_ib_outbox_waiting_to_be_sent"));
3076 if (modest_mail_operation_get_error (mail_operation) != NULL) {
3077 const GError *error = modest_mail_operation_get_error (mail_operation);
3078 if (error->domain == MODEST_MAIL_OPERATION_ERROR &&
3079 error->code == MODEST_MAIL_OPERATION_ERROR_INSTANCE_CREATION_FAILED) {
3080 g_warning ("%s failed: %s\n", __FUNCTION__, (modest_mail_operation_get_error (mail_operation))->message);
3081 modest_platform_information_banner (NULL, NULL, _CS("sfil_ni_not_enough_memory"));
3088 g_free (account_name);
3089 g_object_unref (G_OBJECT (transport_account));
3090 g_object_unref (G_OBJECT (mail_operation));
3092 modest_msg_edit_window_free_msg_data (edit_window, data);
3095 modest_msg_edit_window_set_sent (edit_window, TRUE);
3097 /* Save settings and close the window: */
3098 modest_ui_actions_on_close_window (NULL, MODEST_WINDOW (edit_window));
3105 modest_ui_actions_on_toggle_bold (GtkToggleAction *action,
3106 ModestMsgEditWindow *window)
3108 ModestMsgEditFormatState *format_state = NULL;
3110 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3111 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3113 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3116 format_state = modest_msg_edit_window_get_format_state (window);
3117 g_return_if_fail (format_state != NULL);
3119 format_state->bold = gtk_toggle_action_get_active (action);
3120 modest_msg_edit_window_set_format_state (window, format_state);
3121 g_free (format_state);
3126 modest_ui_actions_on_toggle_italics (GtkToggleAction *action,
3127 ModestMsgEditWindow *window)
3129 ModestMsgEditFormatState *format_state = NULL;
3131 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3132 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3134 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3137 format_state = modest_msg_edit_window_get_format_state (window);
3138 g_return_if_fail (format_state != NULL);
3140 format_state->italics = gtk_toggle_action_get_active (action);
3141 modest_msg_edit_window_set_format_state (window, format_state);
3142 g_free (format_state);
3147 modest_ui_actions_on_toggle_bullets (GtkToggleAction *action,
3148 ModestMsgEditWindow *window)
3150 ModestMsgEditFormatState *format_state = NULL;
3152 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3153 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3155 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3158 format_state = modest_msg_edit_window_get_format_state (window);
3159 g_return_if_fail (format_state != NULL);
3161 format_state->bullet = gtk_toggle_action_get_active (action);
3162 modest_msg_edit_window_set_format_state (window, format_state);
3163 g_free (format_state);
3168 modest_ui_actions_on_change_justify (GtkRadioAction *action,
3169 GtkRadioAction *selected,
3170 ModestMsgEditWindow *window)
3172 ModestMsgEditFormatState *format_state = NULL;
3173 GtkJustification value;
3175 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3177 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3180 value = gtk_radio_action_get_current_value (selected);
3182 format_state = modest_msg_edit_window_get_format_state (window);
3183 g_return_if_fail (format_state != NULL);
3185 format_state->justification = value;
3186 modest_msg_edit_window_set_format_state (window, format_state);
3187 g_free (format_state);
3191 modest_ui_actions_on_select_editor_color (GtkAction *action,
3192 ModestMsgEditWindow *window)
3194 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3195 g_return_if_fail (GTK_IS_ACTION (action));
3197 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3200 modest_msg_edit_window_select_color (window);
3204 modest_ui_actions_on_select_editor_background_color (GtkAction *action,
3205 ModestMsgEditWindow *window)
3207 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3208 g_return_if_fail (GTK_IS_ACTION (action));
3210 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3213 modest_msg_edit_window_select_background_color (window);
3217 modest_ui_actions_on_insert_image (GObject *object,
3218 ModestMsgEditWindow *window)
3220 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3223 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
3226 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3229 modest_msg_edit_window_insert_image (window);
3233 modest_ui_actions_on_attach_file (GtkAction *action,
3234 ModestMsgEditWindow *window)
3236 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3237 g_return_if_fail (GTK_IS_ACTION (action));
3239 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
3242 modest_msg_edit_window_offer_attach_file (window);
3246 modest_ui_actions_on_remove_attachments (GtkAction *action,
3247 ModestMsgEditWindow *window)
3249 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3251 modest_msg_edit_window_remove_attachments (window, NULL);
3255 do_create_folder_cb (ModestMailOperation *mail_op,
3256 TnyFolderStore *parent_folder,
3257 TnyFolder *new_folder,
3260 gchar *suggested_name = (gchar *) user_data;
3261 GtkWindow *source_win = (GtkWindow *) modest_mail_operation_get_source (mail_op);
3262 const GError *error;
3264 error = modest_mail_operation_get_error (mail_op);
3267 /* Show an error. If there was some problem writing to
3268 disk, show it, otherwise show the generic folder
3269 create error. We do it here and not in an error
3270 handler because the call to do_create_folder will
3271 stop the main loop in a gtk_dialog_run and then,
3272 the message won't be shown until that dialog is
3274 modest_ui_actions_disk_operations_error_handler (mail_op,
3275 _("mail_in_ui_folder_create_error"));
3277 if (!is_memory_full_error ((GError *) error, mail_op)) {
3278 /* Try again if there is no full memory condition */
3279 do_create_folder (source_win, parent_folder, (const gchar *) suggested_name);
3282 /* the 'source_win' is either the ModestMainWindow, or the 'Move to folder'-dialog
3283 * FIXME: any other? */
3284 GtkWidget *folder_view;
3286 if (MODEST_IS_MAIN_WINDOW(source_win))
3288 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (source_win),
3289 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3291 folder_view = GTK_WIDGET(g_object_get_data (G_OBJECT (source_win),
3292 MODEST_MOVE_TO_DIALOG_FOLDER_VIEW));
3294 /* Select the newly created folder. It could happen
3295 that the widget is no longer there (i.e. the window
3296 has been destroyed, so we need to check this */
3298 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view),
3300 g_object_unref (new_folder);
3302 /* Free. Note that the first time it'll be NULL so noop */
3303 g_free (suggested_name);
3304 g_object_unref (source_win);
3309 TnyFolderStore *parent;
3310 } CreateFolderConnect;
3313 do_create_folder_performer (gboolean canceled,
3315 GtkWindow *parent_window,
3316 TnyAccount *account,
3319 CreateFolderConnect *helper = (CreateFolderConnect *) user_data;
3320 ModestMailOperation *mail_op;
3322 if (canceled || err) {
3323 /* In memory full conditions we could get this error here */
3324 check_memory_full_error ((GtkWidget *) parent_window, err);
3328 mail_op = modest_mail_operation_new ((GObject *) parent_window);
3329 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
3331 modest_mail_operation_create_folder (mail_op,
3333 (const gchar *) helper->folder_name,
3334 do_create_folder_cb,
3335 g_strdup (helper->folder_name));
3336 g_object_unref (mail_op);
3340 g_object_unref (helper->parent);
3341 if (helper->folder_name)
3342 g_free (helper->folder_name);
3343 g_slice_free (CreateFolderConnect, helper);
3348 do_create_folder (GtkWindow *parent_window,
3349 TnyFolderStore *suggested_parent,
3350 const gchar *suggested_name)
3353 gchar *folder_name = NULL;
3354 TnyFolderStore *parent_folder = NULL;
3356 result = modest_platform_run_new_folder_dialog (GTK_WINDOW (parent_window),
3358 (gchar *) suggested_name,
3362 if (result == GTK_RESPONSE_ACCEPT && parent_folder) {
3363 CreateFolderConnect *helper = (CreateFolderConnect *) g_slice_new0 (CreateFolderConnect);
3364 helper->folder_name = g_strdup (folder_name);
3365 helper->parent = g_object_ref (parent_folder);
3367 modest_platform_connect_if_remote_and_perform (GTK_WINDOW (parent_window),
3370 do_create_folder_performer,
3375 g_free (folder_name);
3377 g_object_unref (parent_folder);
3381 modest_ui_actions_create_folder(GtkWidget *parent_window,
3382 GtkWidget *folder_view)
3384 TnyFolderStore *parent_folder;
3386 #ifdef MODEST_TOOLKIT_HILDON2
3387 ModestTnyAccountStore *acc_store;
3389 acc_store = modest_runtime_get_account_store ();
3391 parent_folder = (TnyFolderStore *)
3392 modest_tny_account_store_get_local_folders_account (acc_store);
3394 parent_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
3397 if (parent_folder) {
3398 do_create_folder (GTK_WINDOW (parent_window), parent_folder, NULL);
3399 g_object_unref (parent_folder);
3404 modest_ui_actions_on_new_folder (GtkAction *action, ModestWindow *window)
3407 g_return_if_fail (MODEST_IS_WINDOW(window));
3409 if (MODEST_IS_MAIN_WINDOW (window)) {
3410 GtkWidget *folder_view;
3412 folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
3413 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3417 modest_ui_actions_create_folder (GTK_WIDGET (window), folder_view);
3418 #ifdef MODEST_TOOLKIT_HILDON2
3419 } else if (MODEST_IS_FOLDER_WINDOW (window)) {
3420 GtkWidget *folder_view;
3422 folder_view = GTK_WIDGET (modest_folder_window_get_folder_view (MODEST_FOLDER_WINDOW (window)));
3423 modest_ui_actions_create_folder (GTK_WIDGET (window), folder_view);
3426 g_assert_not_reached ();
3431 modest_ui_actions_rename_folder_error_handler (ModestMailOperation *mail_op,
3434 const GError *error = NULL;
3435 const gchar *message = NULL;
3437 /* Get error message */
3438 error = modest_mail_operation_get_error (mail_op);
3440 g_return_if_reached ();
3442 if (error->domain == MODEST_MAIL_OPERATION_ERROR &&
3443 error->code == MODEST_MAIL_OPERATION_ERROR_FOLDER_EXISTS) {
3444 message = _CS("ckdg_ib_folder_already_exists");
3445 } else if (error->domain == TNY_ERROR_DOMAIN &&
3446 error->code == TNY_SERVICE_ERROR_STATE) {
3447 /* This means that the folder is already in use (a
3448 message is opened for example */
3449 message = _("emev_ni_internal_error");
3451 message = _CS("ckdg_ib_unable_to_rename");
3454 /* We don't set a parent for the dialog because the dialog
3455 will be destroyed so the banner won't appear */
3456 modest_platform_information_banner (NULL, NULL, message);
3460 TnyFolderStore *folder;
3465 on_rename_folder_cb (ModestMailOperation *mail_op,
3466 TnyFolder *new_folder,
3469 ModestFolderView *folder_view;
3471 /* If the window was closed when renaming a folder, or if
3472 * it's not a main window this will happen */
3473 if (!MODEST_IS_FOLDER_VIEW (user_data))
3476 folder_view = MODEST_FOLDER_VIEW (user_data);
3477 /* Note that if the rename fails new_folder will be NULL */
3479 modest_folder_view_select_folder (folder_view, new_folder, FALSE);
3481 modest_folder_view_select_first_inbox_or_local (folder_view);
3483 gtk_widget_grab_focus (GTK_WIDGET (folder_view));
3487 on_rename_folder_performer (gboolean canceled,
3489 GtkWindow *parent_window,
3490 TnyAccount *account,
3493 ModestMailOperation *mail_op = NULL;
3494 GtkTreeSelection *sel = NULL;
3495 GtkWidget *folder_view = NULL;
3496 RenameFolderInfo *data = (RenameFolderInfo*)user_data;
3498 if (canceled || err) {
3499 /* In memory full conditions we could get this error here */
3500 check_memory_full_error ((GtkWidget *) parent_window, err);
3504 modest_mail_operation_new_with_error_handling (G_OBJECT(parent_window),
3505 modest_ui_actions_rename_folder_error_handler,
3506 parent_window, NULL);
3508 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
3511 if (MODEST_IS_MAIN_WINDOW(parent_window)) {
3513 folder_view = modest_main_window_get_child_widget (
3514 MODEST_MAIN_WINDOW (parent_window),
3515 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3517 #ifdef MODEST_TOOLKIT_HILDON2
3518 else if (MODEST_IS_FOLDER_WINDOW (parent_window)) {
3519 ModestFolderWindow *folder_window = (ModestFolderWindow *) parent_window;
3520 folder_view = GTK_WIDGET (modest_folder_window_get_folder_view (folder_window));
3524 /* Clear the folders view */
3525 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
3526 gtk_tree_selection_unselect_all (sel);
3528 /* Actually rename the folder */
3529 modest_mail_operation_rename_folder (mail_op,
3530 TNY_FOLDER (data->folder),
3531 (const gchar *) (data->new_name),
3532 on_rename_folder_cb,
3534 g_object_unref (mail_op);
3537 g_object_unref (data->folder);
3538 g_free (data->new_name);
3543 modest_ui_actions_on_rename_folder (GtkAction *action,
3544 ModestWindow *window)
3546 modest_ui_actions_on_edit_mode_rename_folder (window);
3550 modest_ui_actions_on_edit_mode_rename_folder (ModestWindow *window)
3552 TnyFolderStore *folder;
3553 GtkWidget *folder_view;
3554 gboolean do_rename = TRUE;
3556 g_return_val_if_fail (MODEST_IS_WINDOW(window), FALSE);
3558 if (MODEST_IS_MAIN_WINDOW (window)) {
3559 folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
3560 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3564 #ifdef MODEST_TOOLKIT_HILDON2
3565 } else if (MODEST_IS_FOLDER_WINDOW (window)) {
3566 folder_view = GTK_WIDGET (modest_folder_window_get_folder_view (MODEST_FOLDER_WINDOW (window)));
3572 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
3577 if (TNY_IS_FOLDER (folder)) {
3578 gchar *folder_name = NULL;
3580 const gchar *current_name;
3581 TnyFolderStore *parent;
3583 current_name = tny_folder_get_name (TNY_FOLDER (folder));
3584 parent = tny_folder_get_folder_store (TNY_FOLDER (folder));
3585 response = modest_platform_run_rename_folder_dialog (GTK_WINDOW (window),
3586 parent, current_name,
3588 g_object_unref (parent);
3590 if (response != GTK_RESPONSE_ACCEPT || strlen (folder_name) == 0) {
3593 RenameFolderInfo *rename_folder_data = g_new0 (RenameFolderInfo, 1);
3594 rename_folder_data->folder = g_object_ref (folder);
3595 rename_folder_data->new_name = folder_name;
3596 modest_platform_connect_if_remote_and_perform (GTK_WINDOW(window), TRUE,
3597 folder, on_rename_folder_performer, rename_folder_data);
3600 g_object_unref (folder);
3605 modest_ui_actions_delete_folder_error_handler (ModestMailOperation *mail_op,
3608 GObject *win = modest_mail_operation_get_source (mail_op);
3610 modest_platform_run_information_dialog ((win) ? GTK_WINDOW (win) : NULL,
3611 _("mail_in_ui_folder_delete_error"),
3613 g_object_unref (win);
3617 TnyFolderStore *folder;
3618 gboolean move_to_trash;
3622 on_delete_folder_cb (gboolean canceled,
3624 GtkWindow *parent_window,
3625 TnyAccount *account,
3628 DeleteFolderInfo *info = (DeleteFolderInfo*) user_data;
3629 GtkWidget *folder_view;
3630 ModestMailOperation *mail_op;
3631 GtkTreeSelection *sel;
3633 if (!MODEST_IS_WINDOW(parent_window) || canceled || (err!=NULL)) {
3634 g_object_unref (G_OBJECT (info->folder));
3639 if (MODEST_IS_MAIN_WINDOW (parent_window)) {
3640 folder_view = modest_main_window_get_child_widget (
3641 MODEST_MAIN_WINDOW (parent_window),
3642 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3643 #ifdef MODEST_TOOLKIT_HILDON2
3644 } else if (MODEST_IS_FOLDER_WINDOW (parent_window)) {
3645 folder_view = GTK_WIDGET (modest_folder_window_get_folder_view (MODEST_FOLDER_WINDOW (parent_window)));
3648 g_object_unref (G_OBJECT (info->folder));
3653 /* Unselect the folder before deleting it to free the headers */
3654 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
3655 gtk_tree_selection_unselect_all (sel);
3657 /* Create the mail operation */
3659 modest_mail_operation_new_with_error_handling (G_OBJECT(parent_window),
3660 modest_ui_actions_delete_folder_error_handler,
3663 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
3665 modest_mail_operation_remove_folder (mail_op, TNY_FOLDER (info->folder), info->move_to_trash);
3667 modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (folder_view));
3669 g_object_unref (G_OBJECT (mail_op));
3670 g_object_unref (G_OBJECT (info->folder));
3675 delete_folder (ModestWindow *window, gboolean move_to_trash)
3677 TnyFolderStore *folder;
3678 GtkWidget *folder_view;
3682 g_return_val_if_fail (MODEST_IS_WINDOW(window), FALSE);
3684 if (MODEST_IS_MAIN_WINDOW (window)) {
3686 folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
3687 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3688 #ifdef MODEST_TOOLKIT_HILDON2
3689 } else if (MODEST_IS_FOLDER_WINDOW (window)) {
3690 folder_view = GTK_WIDGET (modest_folder_window_get_folder_view (MODEST_FOLDER_WINDOW (window)));
3698 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
3703 /* Show an error if it's an account */
3704 if (!TNY_IS_FOLDER (folder)) {
3705 modest_platform_run_information_dialog (GTK_WINDOW (window),
3706 _("mail_in_ui_folder_delete_error"),
3708 g_object_unref (G_OBJECT (folder));
3713 message = g_strdup_printf (_("mcen_nc_delete_folder_text"),
3714 tny_folder_get_name (TNY_FOLDER (folder)));
3715 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (window),
3716 (const gchar *) message);
3719 if (response == GTK_RESPONSE_OK) {
3720 DeleteFolderInfo *info;
3721 info = g_new0(DeleteFolderInfo, 1);
3722 info->folder = folder;
3723 info->move_to_trash = move_to_trash;
3724 g_object_ref (G_OBJECT (info->folder));
3725 TnyAccount *account = tny_folder_get_account (TNY_FOLDER (folder));
3726 modest_platform_connect_if_remote_and_perform (GTK_WINDOW (window),
3728 TNY_FOLDER_STORE (account),
3729 on_delete_folder_cb, info);
3730 g_object_unref (account);
3735 g_object_unref (G_OBJECT (folder));
3739 modest_ui_actions_on_delete_folder (GtkAction *action,
3740 ModestWindow *window)
3742 modest_ui_actions_on_edit_mode_delete_folder (window);
3746 modest_ui_actions_on_edit_mode_delete_folder (ModestWindow *window)
3748 g_return_val_if_fail (MODEST_IS_WINDOW(window), TRUE);
3750 return delete_folder (window, FALSE);
3754 modest_ui_actions_on_move_folder_to_trash_folder (GtkAction *action, ModestMainWindow *main_window)
3756 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3758 delete_folder (MODEST_WINDOW (main_window), TRUE);
3762 typedef struct _PasswordDialogFields {
3763 GtkWidget *username;
3764 GtkWidget *password;
3766 } PasswordDialogFields;