1 /* Copyright (c) 2006, Nokia Corporation
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of the Nokia Corporation nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #endif /*HAVE_CONFIG_H*/
34 #include <glib/gi18n.h>
35 #include <glib/gprintf.h>
37 #include <modest-runtime.h>
38 #include <modest-tny-folder.h>
39 #include <modest-tny-msg.h>
40 #include <modest-tny-account.h>
41 #include <modest-address-book.h>
42 #include "modest-error.h"
43 #include "modest-ui-actions.h"
44 #include "modest-tny-platform-factory.h"
45 #include "modest-platform.h"
46 #include "modest-debug.h"
47 #include <tny-mime-part.h>
48 #include <tny-camel-folder.h>
49 #include <tny-camel-imap-folder.h>
50 #include <tny-camel-pop-folder.h>
51 #ifdef MODEST_TOOLKIT_HILDON2
52 #include <modest-accounts-window.h>
53 #include <hildon/hildon-pannable-area.h>
54 #include <hildon/hildon-gtk.h>
55 #include <modest-header-window.h>
56 #include <modest-folder-window.h>
59 #ifdef MODEST_PLATFORM_MAEMO
60 #include "maemo/modest-osso-state-saving.h"
61 #endif /* MODEST_PLATFORM_MAEMO */
62 #ifndef MODEST_TOOLKIT_GTK
63 #include "maemo/modest-hildon-includes.h"
64 #include "maemo/modest-connection-specific-smtp-window.h"
65 #endif /* !MODEST_TOOLKIT_GTK */
66 #include <modest-utils.h>
68 #include "widgets/modest-ui-constants.h"
69 #include <widgets/modest-main-window.h>
70 #include <widgets/modest-msg-view-window.h>
71 #include <widgets/modest-account-view-window.h>
72 #include <widgets/modest-details-dialog.h>
73 #include <widgets/modest-attachments-view.h>
74 #include "widgets/modest-folder-view.h"
75 #include "widgets/modest-global-settings-dialog.h"
76 #include "modest-account-mgr-helpers.h"
77 #include "modest-mail-operation.h"
78 #include "modest-text-utils.h"
79 #include <modest-widget-memory.h>
80 #include <tny-error.h>
81 #include <tny-simple-list.h>
82 #include <tny-msg-view.h>
83 #include <tny-device.h>
84 #include <tny-merge-folder.h>
86 #include <gtkhtml/gtkhtml.h>
88 #define MIN_FREE_SPACE 5 * 1024 * 1024
89 #define MODEST_MOVE_TO_DIALOG_FOLDER_VIEW "move-to-dialog-folder-view"
91 typedef struct _GetMsgAsyncHelper {
93 ModestMailOperation *mail_op;
100 typedef enum _ReplyForwardAction {
104 } ReplyForwardAction;
106 typedef struct _ReplyForwardHelper {
107 guint reply_forward_type;
108 ReplyForwardAction action;
110 GtkWidget *parent_window;
112 } ReplyForwardHelper;
114 typedef struct _MoveToHelper {
115 GtkTreeRowReference *reference;
119 typedef struct _PasteAsAttachmentHelper {
120 ModestMsgEditWindow *window;
122 } PasteAsAttachmentHelper;
130 * The do_headers_action uses this kind of functions to perform some
131 * action to each member of a list of headers
133 typedef void (*HeadersFunc) (TnyHeader *header, ModestWindow *win, gpointer user_data);
135 static void do_headers_action (ModestWindow *win,
139 static void open_msg_cb (ModestMailOperation *mail_op,
146 static void reply_forward_cb (ModestMailOperation *mail_op,
153 static void reply_forward (ReplyForwardAction action, ModestWindow *win);
155 static void folder_refreshed_cb (ModestMailOperation *mail_op,
159 static void on_send_receive_finished (ModestMailOperation *mail_op,
162 static gint header_list_count_uncached_msgs (TnyList *header_list);
164 static gboolean connect_to_get_msg (ModestWindow *win,
165 gint num_of_uncached_msgs,
166 TnyAccount *account);
168 static gboolean remote_folder_has_leave_on_server (TnyFolderStore *folder);
170 static void do_create_folder (GtkWindow *window,
171 TnyFolderStore *parent_folder,
172 const gchar *suggested_name);
174 static TnyAccount *get_account_from_folder_store (TnyFolderStore *folder_store);
176 static void modest_ui_actions_on_main_window_move_to (GtkAction *action,
177 GtkWidget *folder_view,
178 TnyFolderStore *dst_folder,
179 ModestMainWindow *win);
180 #ifdef MODEST_TOOLKIT_HILDON2
181 static void modest_ui_actions_on_folder_window_move_to (GtkWidget *folder_view,
182 TnyFolderStore *dst_folder,
187 static void modest_ui_actions_on_window_move_to (GtkAction *action,
188 TnyList *list_to_move,
189 TnyFolderStore *dst_folder,
193 * This function checks whether a TnyFolderStore is a pop account
196 remote_folder_has_leave_on_server (TnyFolderStore *folder)
201 g_return_val_if_fail (TNY_IS_FOLDER_STORE (folder), FALSE);
203 account = get_account_from_folder_store (folder);
204 result = (modest_protocol_registry_protocol_type_has_leave_on_server (modest_runtime_get_protocol_registry (),
205 modest_tny_account_get_protocol_type (account)));
206 g_object_unref (account);
211 /* FIXME: this should be merged with the similar code in modest-account-view-window */
212 /* Show the account creation wizard dialog.
213 * returns: TRUE if an account was created. FALSE if the user cancelled.
216 modest_ui_actions_run_account_setup_wizard (ModestWindow *win)
218 gboolean result = FALSE;
220 gint dialog_response;
222 /* there is no such wizard yet */
223 wizard = GTK_WINDOW (modest_platform_get_account_settings_wizard ());
224 modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), GTK_WINDOW (wizard), (GtkWindow *) win);
226 #ifndef MODEST_TOOLKIT_HILDON2
227 /* always present a main window in the background
228 * we do it here, so we cannot end up with two wizards (as this
229 * function might be called in modest_window_mgr_get_main_window as well */
231 win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(),
232 TRUE); /* create if not existent */
236 ModestWindowMgr *mgr;
238 mgr = modest_runtime_get_window_mgr ();
240 window_list = modest_window_mgr_get_window_list (mgr);
241 if (window_list == NULL) {
242 win = MODEST_WINDOW (modest_accounts_window_new ());
243 modest_window_mgr_register_window (mgr, win, NULL);
244 gtk_widget_show_all (GTK_WIDGET (win));
246 win = MODEST_WINDOW (modest_folder_window_new (NULL));
247 modest_window_mgr_register_window (mgr, win, NULL);
249 gtk_widget_show_all (GTK_WIDGET (win));
251 g_list_free (window_list);
257 gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (win));
259 /* make sure the mainwindow is visible. We need to present the
260 wizard again to give it the focus back. show_all are needed
261 in order to get the widgets properly drawn (MainWindow main
262 paned won't be in its right position and the dialog will be
264 #ifndef MODEST_TOOLKIT_HILDON2
265 gtk_widget_show_all (GTK_WIDGET (win));
266 gtk_widget_show_all (GTK_WIDGET (wizard));
267 gtk_window_present (GTK_WINDOW (win));
268 gtk_window_present (GTK_WINDOW (wizard));
271 dialog_response = gtk_dialog_run (GTK_DIALOG (wizard));
272 gtk_widget_destroy (GTK_WIDGET (wizard));
273 if (gtk_events_pending ())
274 gtk_main_iteration ();
276 if (dialog_response == GTK_RESPONSE_CANCEL) {
279 /* Check whether an account was created: */
280 result = modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
287 modest_ui_actions_on_about (GtkAction *action, ModestWindow *win)
290 const gchar *authors[] = {
291 "Dirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>",
294 about = gtk_about_dialog_new ();
295 gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(about), PACKAGE_NAME);
296 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about),PACKAGE_VERSION);
297 gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about),
298 _("Copyright (c) 2006, Nokia Corporation\n"
299 "All rights reserved."));
300 gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about),
301 _("a modest e-mail client\n\n"
302 "design and implementation: Dirk-Jan C. Binnema\n"
303 "contributions from the fine people at KC and Ig\n"
304 "uses the tinymail email framework written by Philip van Hoof"));
305 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
306 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), "http://modest.garage.maemo.org");
307 gtk_window_set_transient_for (GTK_WINDOW (about), GTK_WINDOW (win));
308 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
310 gtk_dialog_run (GTK_DIALOG (about));
311 gtk_widget_destroy(about);
315 * Gets the list of currently selected messages. If the win is the
316 * main window, then it returns a newly allocated list of the headers
317 * selected in the header view. If win is the msg view window, then
318 * the value returned is a list with just a single header.
320 * The caller of this funcion must free the list.
323 get_selected_headers (ModestWindow *win)
325 if (MODEST_IS_MAIN_WINDOW(win)) {
326 GtkWidget *header_view;
328 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(win),
329 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
330 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
332 } else if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
333 /* for MsgViewWindows, we simply return a list with one element */
335 TnyList *list = NULL;
337 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
338 if (header != NULL) {
339 list = tny_simple_list_new ();
340 tny_list_prepend (list, G_OBJECT(header));
341 g_object_unref (G_OBJECT(header));
346 #ifdef MODEST_TOOLKIT_HILDON2
347 } else if (MODEST_IS_HEADER_WINDOW (win)) {
348 GtkWidget *header_view;
350 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (win)));
351 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
357 static GtkTreeRowReference *
358 get_next_after_selected_headers (ModestHeaderView *header_view)
360 GtkTreeSelection *sel;
361 GList *selected_rows, *node;
363 GtkTreeRowReference *result;
366 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
367 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
368 selected_rows = gtk_tree_selection_get_selected_rows (sel, NULL);
370 if (selected_rows == NULL)
373 node = g_list_last (selected_rows);
374 path = gtk_tree_path_copy ((GtkTreePath *) node->data);
375 gtk_tree_path_next (path);
377 result = gtk_tree_row_reference_new (model, path);
379 gtk_tree_path_free (path);
380 g_list_foreach (selected_rows, (GFunc) gtk_tree_path_free, NULL);
381 g_list_free (selected_rows);
387 headers_action_mark_as_read (TnyHeader *header,
391 TnyHeaderFlags flags;
393 g_return_if_fail (TNY_IS_HEADER(header));
395 flags = tny_header_get_flags (header);
396 if (flags & TNY_HEADER_FLAG_SEEN) return;
397 tny_header_set_flag (header, TNY_HEADER_FLAG_SEEN);
401 headers_action_mark_as_unread (TnyHeader *header,
405 TnyHeaderFlags flags;
407 g_return_if_fail (TNY_IS_HEADER(header));
409 flags = tny_header_get_flags (header);
410 if (flags & TNY_HEADER_FLAG_SEEN) {
411 tny_header_unset_flag (header, TNY_HEADER_FLAG_SEEN);
415 /** After deleing a message that is currently visible in a window,
416 * show the next message from the list, or close the window if there are no more messages.
419 modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win)
421 /* Close msg view window or select next */
422 if (!modest_msg_view_window_select_next_message (win) &&
423 !modest_msg_view_window_select_previous_message (win)) {
425 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
431 modest_ui_actions_on_delete_message (GtkAction *action, ModestWindow *win)
433 modest_ui_actions_on_edit_mode_delete_message (win);
437 modest_ui_actions_on_edit_mode_delete_message (ModestWindow *win)
439 TnyList *header_list = NULL;
440 TnyIterator *iter = NULL;
441 TnyHeader *header = NULL;
442 gchar *message = NULL;
445 ModestWindowMgr *mgr;
446 GtkWidget *header_view = NULL;
447 gboolean retval = TRUE;
449 g_return_val_if_fail (MODEST_IS_WINDOW(win), FALSE);
451 /* Check first if the header view has the focus */
452 if (MODEST_IS_MAIN_WINDOW (win)) {
454 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
455 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
456 if (!gtk_widget_is_focus (header_view))
460 /* Get the headers, either from the header view (if win is the main window),
461 * or from the message view window: */
462 header_list = get_selected_headers (win);
463 if (!header_list) return FALSE;
465 /* Check if any of the headers are already opened, or in the process of being opened */
466 if (MODEST_IS_MAIN_WINDOW (win)) {
467 gint opened_headers = 0;
469 iter = tny_list_create_iterator (header_list);
470 mgr = modest_runtime_get_window_mgr ();
471 while (!tny_iterator_is_done (iter)) {
472 header = TNY_HEADER (tny_iterator_get_current (iter));
474 if (modest_window_mgr_find_registered_header (mgr, header, NULL))
476 g_object_unref (header);
478 tny_iterator_next (iter);
480 g_object_unref (iter);
482 if (opened_headers > 0) {
485 msg = g_strdup_printf (_("mcen_nc_unable_to_delete_n_messages"),
488 modest_platform_run_information_dialog (GTK_WINDOW (win), (const gchar *) msg, FALSE);
491 g_object_unref (header_list);
497 if (tny_list_get_length(header_list) == 1) {
498 iter = tny_list_create_iterator (header_list);
499 header = TNY_HEADER (tny_iterator_get_current (iter));
502 subject = tny_header_dup_subject (header);
504 subject = g_strdup (_("mail_va_no_subject"));
505 desc = g_strdup_printf ("%s", subject);
507 g_object_unref (header);
510 g_object_unref (iter);
512 message = g_strdup_printf(ngettext("emev_nc_delete_message", "emev_nc_delete_messages",
513 tny_list_get_length(header_list)), desc);
515 /* Confirmation dialog */
516 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
520 if (response == GTK_RESPONSE_OK) {
521 ModestWindow *main_window = NULL;
522 ModestWindowMgr *mgr = NULL;
523 GtkTreeModel *model = NULL;
524 GtkTreeSelection *sel = NULL;
525 GList *sel_list = NULL, *tmp = NULL;
526 GtkTreeRowReference *next_row_reference = NULL;
527 GtkTreeRowReference *prev_row_reference = NULL;
528 GtkTreePath *next_path = NULL;
529 GtkTreePath *prev_path = NULL;
530 ModestMailOperation *mail_op = NULL;
532 /* Find last selected row */
533 if (MODEST_IS_MAIN_WINDOW (win)) {
534 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
535 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
536 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
537 for (tmp=sel_list; tmp; tmp=tmp->next) {
538 if (tmp->next == NULL) {
539 prev_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
540 next_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
542 gtk_tree_path_prev (prev_path);
543 gtk_tree_path_next (next_path);
545 prev_row_reference = gtk_tree_row_reference_new (model, prev_path);
546 next_row_reference = gtk_tree_row_reference_new (model, next_path);
551 /* Disable window dimming management */
552 modest_window_disable_dimming (MODEST_WINDOW(win));
554 /* Remove each header. If it's a view window header_view == NULL */
555 mail_op = modest_mail_operation_new ((GObject *) win);
556 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
558 modest_mail_operation_remove_msgs (mail_op, header_list, FALSE);
559 g_object_unref (mail_op);
561 /* Enable window dimming management */
563 gtk_tree_selection_unselect_all (sel);
565 modest_window_enable_dimming (MODEST_WINDOW(win));
567 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
568 modest_ui_actions_refresh_message_window_after_delete (MODEST_MSG_VIEW_WINDOW (win));
570 /* Get main window */
571 mgr = modest_runtime_get_window_mgr ();
572 main_window = modest_window_mgr_get_main_window (mgr, FALSE); /* don't create */
573 } else if (MODEST_IS_MAIN_WINDOW (win)) {
574 /* Move cursor to next row */
577 /* Select next or previous row */
578 if (gtk_tree_row_reference_valid (next_row_reference)) {
579 gtk_tree_selection_select_path (sel, next_path);
581 else if (gtk_tree_row_reference_valid (prev_row_reference)) {
582 gtk_tree_selection_select_path (sel, prev_path);
586 if (gtk_tree_row_reference_valid (next_row_reference))
587 gtk_tree_row_reference_free (next_row_reference);
588 if (next_path != NULL)
589 gtk_tree_path_free (next_path);
590 if (gtk_tree_row_reference_valid (prev_row_reference))
591 gtk_tree_row_reference_free (prev_row_reference);
592 if (prev_path != NULL)
593 gtk_tree_path_free (prev_path);
596 /* Update toolbar dimming state */
598 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
599 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
603 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
604 g_list_free (sel_list);
613 g_object_unref (header_list);
621 /* delete either message or folder, based on where we are */
623 modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win)
625 g_return_if_fail (MODEST_IS_WINDOW(win));
627 /* Check first if the header view has the focus */
628 if (MODEST_IS_MAIN_WINDOW (win)) {
630 w = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
631 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
632 if (gtk_widget_is_focus (w)) {
633 modest_ui_actions_on_delete_folder (action, MODEST_WINDOW(win));
637 modest_ui_actions_on_delete_message (action, win);
641 modest_ui_actions_on_quit (GtkAction *action, ModestWindow *win)
643 ModestWindowMgr *mgr = NULL;
645 #ifdef MODEST_PLATFORM_MAEMO
646 modest_osso_save_state();
647 #endif /* MODEST_PLATFORM_MAEMO */
649 g_debug ("closing down, clearing %d item(s) from operation queue",
650 modest_mail_operation_queue_num_elements
651 (modest_runtime_get_mail_operation_queue()));
653 /* cancel all outstanding operations */
654 modest_mail_operation_queue_cancel_all
655 (modest_runtime_get_mail_operation_queue());
657 g_debug ("queue has been cleared");
660 /* Check if there are opened editing windows */
661 mgr = modest_runtime_get_window_mgr ();
662 modest_window_mgr_close_all_windows (mgr);
664 /* note: when modest-tny-account-store is finalized,
665 it will automatically set all network connections
668 /* gtk_main_quit (); */
672 modest_ui_actions_on_close_window (GtkAction *action, ModestWindow *win)
676 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
678 /* if (MODEST_IS_MSG_VIEW_WINDOW (win)) { */
679 /* gtk_widget_destroy (GTK_WIDGET (win)); */
680 /* } else if (MODEST_IS_MSG_EDIT_WINDOW (win)) { */
681 /* gboolean ret_value; */
682 /* g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value); */
683 /* } else if (MODEST_IS_WINDOW (win)) { */
684 /* gtk_widget_destroy (GTK_WIDGET (win)); */
686 /* g_return_if_reached (); */
691 modest_ui_actions_add_to_contacts (GtkAction *action, ModestWindow *win)
693 g_return_if_fail (MODEST_IS_MSG_VIEW_WINDOW (win));
695 modest_msg_view_window_add_to_contacts (MODEST_MSG_VIEW_WINDOW (win));
699 modest_ui_actions_on_add_to_contacts (GtkAction *action, ModestWindow *win)
701 GtkClipboard *clipboard = NULL;
702 gchar *selection = NULL;
704 clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
705 selection = gtk_clipboard_wait_for_text (clipboard);
707 /* Question: why is the clipboard being used here?
708 * It doesn't really make a lot of sense. */
712 modest_address_book_add_address (selection);
718 modest_ui_actions_on_new_account (GtkAction *action,
719 ModestWindow *window)
721 modest_ui_actions_run_account_setup_wizard (window);
725 modest_ui_actions_on_accounts (GtkAction *action,
728 /* This is currently only implemented for Maemo */
729 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE)) {
730 if (!modest_ui_actions_run_account_setup_wizard (win))
731 g_debug ("%s: wizard was already running", __FUNCTION__);
735 /* Show the list of accounts */
736 GtkWindow *account_win = GTK_WINDOW (modest_account_view_window_new ());
738 /* The accounts dialog must be modal */
739 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (account_win), (GtkWindow *) win);
740 modest_utils_show_dialog_and_forget (GTK_WINDOW (win), GTK_DIALOG (account_win));
745 modest_ui_actions_on_smtp_servers (GtkAction *action, ModestWindow *win)
747 /* This is currently only implemented for Maemo,
748 * because it requires an API (libconic) to detect different connection
751 #ifndef MODEST_TOOLKIT_GTK /* Defined in config.h */
753 /* Create the window if necessary: */
754 GtkWidget *specific_window = GTK_WIDGET (modest_connection_specific_smtp_window_new ());
755 modest_connection_specific_smtp_window_fill_with_connections (
756 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window),
757 modest_runtime_get_account_mgr());
759 /* Show the window: */
760 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (),
761 GTK_WINDOW (specific_window), (GtkWindow *) win);
762 gtk_widget_show (specific_window);
763 #endif /* !MODEST_TOOLKIT_GTK */
767 modest_ui_actions_compose_msg(ModestWindow *win,
770 const gchar *bcc_str,
771 const gchar *subject_str,
772 const gchar *body_str,
774 gboolean set_as_modified)
776 gchar *account_name = NULL;
778 TnyAccount *account = NULL;
779 TnyFolder *folder = NULL;
780 gchar *from_str = NULL, *signature = NULL, *body = NULL;
781 gboolean use_signature = FALSE;
782 ModestWindow *msg_win = NULL;
783 ModestAccountMgr *mgr = modest_runtime_get_account_mgr();
784 ModestTnyAccountStore *store = modest_runtime_get_account_store();
785 GnomeVFSFileSize total_size, allowed_size;
787 /* we check for low-mem */
788 if (modest_platform_check_memory_low (win, TRUE))
791 #ifdef MODEST_TOOLKIT_HILDON2
792 account_name = g_strdup (modest_window_get_active_account(win));
795 account_name = modest_account_mgr_get_default_account(mgr);
798 g_printerr ("modest: no account found\n");
801 account = modest_tny_account_store_get_server_account (store, account_name, TNY_ACCOUNT_TYPE_STORE);
803 g_printerr ("modest: failed to get tnyaccount for '%s'\n", account_name);
806 folder = modest_tny_account_get_special_folder (account, TNY_FOLDER_TYPE_DRAFTS);
808 g_printerr ("modest: failed to find Drafts folder\n");
811 from_str = modest_account_mgr_get_from_string (mgr, account_name);
813 g_printerr ("modest: failed get from string for '%s'\n", account_name);
817 signature = modest_account_mgr_get_signature (mgr, account_name, &use_signature);
818 if (body_str != NULL) {
819 body = use_signature ? g_strconcat(body_str, "\n--\n", signature, NULL) : g_strdup(body_str);
821 body = use_signature ? g_strconcat("\n--\n", signature, NULL) : g_strdup("");
824 msg = modest_tny_msg_new (to_str, from_str, cc_str, bcc_str, subject_str, body, NULL, NULL, NULL);
826 g_printerr ("modest: failed to create new msg\n");
830 /* Create and register edit window */
831 /* This is destroyed by TODO. */
833 allowed_size = MODEST_MAX_ATTACHMENT_SIZE;
834 msg_win = modest_msg_edit_window_new (msg, account_name, FALSE);
836 if (!modest_window_mgr_register_window (modest_runtime_get_window_mgr(), msg_win, win)) {
837 gtk_widget_destroy (GTK_WIDGET (msg_win));
840 modest_msg_edit_window_set_modified (MODEST_MSG_EDIT_WINDOW (msg_win), set_as_modified);
841 gtk_widget_show_all (GTK_WIDGET (msg_win));
843 while (attachments) {
845 modest_msg_edit_window_attach_file_one((ModestMsgEditWindow *)msg_win,
846 attachments->data, allowed_size);
848 if (total_size > allowed_size) {
849 g_warning ("%s: total size: %u",
850 __FUNCTION__, (unsigned int)total_size);
853 allowed_size -= total_size;
855 attachments = g_slist_next(attachments);
862 g_free (account_name);
864 g_object_unref (G_OBJECT(account));
866 g_object_unref (G_OBJECT(folder));
868 g_object_unref (G_OBJECT(msg));
872 modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win)
874 /* if there are no accounts yet, just show the wizard */
875 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE))
876 if (!modest_ui_actions_run_account_setup_wizard (win))
879 modest_ui_actions_compose_msg(win, NULL, NULL, NULL, NULL, NULL, NULL, FALSE);
884 modest_ui_actions_msg_retrieval_check (ModestMailOperation *mail_op,
888 ModestMailOperationStatus status;
890 /* If there is no message or the operation was not successful */
891 status = modest_mail_operation_get_status (mail_op);
892 if (!msg || status != MODEST_MAIL_OPERATION_STATUS_SUCCESS) {
895 /* If it's a memory low issue, then show a banner */
896 error = modest_mail_operation_get_error (mail_op);
897 if (error && error->domain == MODEST_MAIL_OPERATION_ERROR &&
898 error->code == MODEST_MAIL_OPERATION_ERROR_LOW_MEMORY) {
899 GObject *source = modest_mail_operation_get_source (mail_op);
900 modest_platform_run_information_dialog (GTK_IS_WINDOW (source) ? GTK_WINDOW (source) : NULL,
901 _KR("memr_ib_operation_disabled"),
903 g_object_unref (source);
906 if (error && ((error->code == TNY_SERVICE_ERROR_NO_SUCH_MESSAGE) ||
907 error->code == TNY_SERVICE_ERROR_MESSAGE_NOT_AVAILABLE)) {
908 gchar *subject, *msg;
909 subject = tny_header_dup_subject (header);
911 subject = g_strdup (_("mail_va_no_subject"));;
912 msg = g_strdup_printf (_("emev_ni_ui_imap_message_not_available_in_server"),
914 modest_platform_run_information_dialog (NULL, msg, FALSE);
919 /* Remove the header from the preregistered uids */
920 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
938 OpenMsgBannerInfo *banner_info;
939 GtkTreeRowReference *rowref;
943 open_msg_banner_idle (gpointer userdata)
945 OpenMsgBannerInfo *banner_info = (OpenMsgBannerInfo *) userdata;
947 gdk_threads_enter ();
948 banner_info->idle_handler = 0;
949 banner_info->banner = modest_platform_animation_banner (NULL, NULL, banner_info->message);
951 g_object_ref (banner_info->banner);
953 gdk_threads_leave ();
960 get_header_view_from_window (ModestWindow *window)
962 GtkWidget *header_view;
964 if (MODEST_IS_MAIN_WINDOW (window)) {
965 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
966 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
967 #ifdef MODEST_TOOLKIT_HILDON2
968 } else if (MODEST_IS_HEADER_WINDOW (window)){
969 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (window)));
979 get_info_from_header (TnyHeader *header, gboolean *is_draft, gboolean *can_open)
982 gchar *account = NULL;
983 TnyFolderType folder_type = TNY_FOLDER_TYPE_UNKNOWN;
988 folder = tny_header_get_folder (header);
989 /* Gets folder type (OUTBOX headers will be opened in edit window */
990 if (modest_tny_folder_is_local_folder (folder)) {
991 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
992 if (folder_type == TNY_FOLDER_TYPE_INVALID)
993 g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
996 if (folder_type == TNY_FOLDER_TYPE_OUTBOX) {
997 TnyTransportAccount *traccount = NULL;
998 ModestTnyAccountStore *accstore = modest_runtime_get_account_store();
999 traccount = modest_tny_account_store_get_transport_account_from_outbox_header(accstore, header);
1001 ModestTnySendQueue *send_queue = NULL;
1002 ModestTnySendQueueStatus status;
1004 account = g_strdup(modest_tny_account_get_parent_modest_account_name_for_server_account(
1005 TNY_ACCOUNT(traccount)));
1006 send_queue = modest_runtime_get_send_queue(traccount, TRUE);
1007 if (TNY_IS_SEND_QUEUE (send_queue)) {
1008 msg_id = modest_tny_send_queue_get_msg_id (header);
1009 status = modest_tny_send_queue_get_msg_status(send_queue, msg_id);
1011 /* Only open messages in outbox with the editor if they are in Failed state */
1012 if (status == MODEST_TNY_SEND_QUEUE_FAILED) {
1015 #ifdef MODEST_TOOLKIT_HILDON2
1017 /* In Fremantle we can not
1018 open any message from
1019 outbox which is not in
1025 g_object_unref(traccount);
1027 g_warning("Cannot get transport account for message in outbox!!");
1029 } else if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
1030 *is_draft = TRUE; /* Open in editor if the message is in the Drafts folder */
1034 TnyAccount *acc = tny_folder_get_account (folder);
1037 g_strdup (modest_tny_account_get_parent_modest_account_name_for_server_account (acc));
1038 g_object_unref (acc);
1042 g_object_unref (folder);
1048 open_msg_cb (ModestMailOperation *mail_op,
1055 ModestWindowMgr *mgr = NULL;
1056 ModestWindow *parent_win = NULL;
1057 ModestWindow *win = NULL;
1058 gchar *account = NULL;
1059 gboolean open_in_editor = FALSE;
1061 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
1063 /* Do nothing if there was any problem with the mail
1064 operation. The error will be shown by the error_handler of
1065 the mail operation */
1066 if (!modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1069 parent_win = (ModestWindow *) modest_mail_operation_get_source (mail_op);
1071 /* Mark header as read */
1072 headers_action_mark_as_read (header, MODEST_WINDOW(parent_win), NULL);
1074 account = get_info_from_header (header, &open_in_editor, &can_open);
1078 account = g_strdup (modest_window_get_active_account (MODEST_WINDOW (parent_win)));
1080 account = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1082 if (open_in_editor) {
1083 ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
1084 gchar *from_header = NULL, *acc_name;
1086 from_header = tny_header_dup_from (header);
1088 /* we cannot edit without a valid account... */
1089 if (!modest_account_mgr_has_accounts(mgr, TRUE)) {
1090 if (!modest_ui_actions_run_account_setup_wizard(parent_win)) {
1091 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1093 g_free (from_header);
1098 acc_name = modest_utils_get_account_name_from_recipient (from_header);
1099 g_free (from_header);
1105 win = modest_msg_edit_window_new (msg, account, TRUE);
1107 gchar *uid = modest_tny_folder_get_header_unique_id (header);
1109 if (helper->rowref && helper->model) {
1110 win = modest_msg_view_window_new_with_header_model (msg, account, (const gchar*) uid,
1111 helper->model, helper->rowref);
1113 win = modest_msg_view_window_new_for_attachment (msg, account, (const gchar*) uid);
1118 /* Register and show new window */
1120 mgr = modest_runtime_get_window_mgr ();
1121 if (!modest_window_mgr_register_window (mgr, win, NULL)) {
1122 gtk_widget_destroy (GTK_WIDGET (win));
1125 gtk_widget_show_all (GTK_WIDGET(win));
1128 /* Update toolbar dimming state */
1129 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
1130 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (parent_win));
1136 g_object_unref (parent_win);
1140 is_memory_full_error (GError *error)
1142 gboolean enough_free_space = TRUE;
1143 GnomeVFSURI *cache_dir_uri;
1144 const gchar *cache_dir;
1145 GnomeVFSFileSize free_space;
1147 cache_dir = tny_account_store_get_cache_dir (TNY_ACCOUNT_STORE (modest_runtime_get_account_store ()));
1148 cache_dir_uri = gnome_vfs_uri_new (cache_dir);
1149 if (gnome_vfs_get_volume_free_space (cache_dir_uri, &free_space) == GNOME_VFS_OK) {
1150 if (free_space < MIN_FREE_SPACE)
1151 enough_free_space = FALSE;
1153 gnome_vfs_uri_unref (cache_dir_uri);
1155 if ((error->code == TNY_SYSTEM_ERROR_MEMORY ||
1156 /* When asking for a mail and no space left on device
1157 tinymail returns this error */
1158 error->code == TNY_SERVICE_ERROR_MESSAGE_NOT_AVAILABLE ||
1159 /* When the folder summary could not be read or
1161 error->code == TNY_IO_ERROR_WRITE ||
1162 error->code == TNY_IO_ERROR_READ) &&
1163 !enough_free_space) {
1171 check_memory_full_error (GtkWidget *parent_window, GError *err)
1176 if (is_memory_full_error (err))
1177 modest_platform_information_banner (parent_window,
1178 NULL, _KR("cerm_device_memory_full"));
1179 else if (err->code == TNY_SYSTEM_ERROR_MEMORY)
1180 /* If the account was created in memory full
1181 conditions then tinymail won't be able to
1182 connect so it'll return this error code */
1183 modest_platform_information_banner (parent_window,
1184 NULL, _("emev_ui_imap_inbox_select_error"));
1192 modest_ui_actions_disk_operations_error_handler (ModestMailOperation *mail_op,
1195 const GError *error;
1196 GObject *win = NULL;
1197 ModestMailOperationStatus status;
1199 win = modest_mail_operation_get_source (mail_op);
1200 error = modest_mail_operation_get_error (mail_op);
1201 status = modest_mail_operation_get_status (mail_op);
1203 /* If the mail op has been cancelled then it's not an error:
1204 don't show any message */
1205 if (status != MODEST_MAIL_OPERATION_STATUS_CANCELED) {
1206 if (is_memory_full_error ((GError *) error)) {
1207 modest_platform_information_banner ((GtkWidget *) win,
1208 NULL, _KR("cerm_device_memory_full"));
1209 } else if (error->code == TNY_SYSTEM_ERROR_MEMORY) {
1210 modest_platform_information_banner ((GtkWidget *) win,
1211 NULL, _("emev_ui_imap_inbox_select_error"));
1212 } else if (error->domain == MODEST_MAIL_OPERATION_ERROR &&
1213 error->code == MODEST_MAIL_OPERATION_ERROR_FILE_IO) {
1214 modest_platform_information_banner ((GtkWidget *) win,
1215 NULL, _CS ("sfil_ni_unable_to_open_file_not_found"));
1216 } else if (user_data) {
1217 modest_platform_information_banner ((GtkWidget *) win,
1223 g_object_unref (win);
1227 * Returns the account a list of headers belongs to. It returns a
1228 * *new* reference so don't forget to unref it
1231 get_account_from_header_list (TnyList *headers)
1233 TnyAccount *account = NULL;
1235 if (tny_list_get_length (headers) > 0) {
1236 TnyIterator *iter = tny_list_create_iterator (headers);
1237 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1238 TnyFolder *folder = tny_header_get_folder (header);
1241 g_object_unref (header);
1243 while (!tny_iterator_is_done (iter)) {
1244 header = TNY_HEADER (tny_iterator_get_current (iter));
1245 folder = tny_header_get_folder (header);
1248 g_object_unref (header);
1250 tny_iterator_next (iter);
1255 account = tny_folder_get_account (folder);
1256 g_object_unref (folder);
1260 g_object_unref (header);
1262 g_object_unref (iter);
1268 get_account_from_header (TnyHeader *header)
1270 TnyAccount *account = NULL;
1273 folder = tny_header_get_folder (header);
1276 account = tny_folder_get_account (folder);
1277 g_object_unref (folder);
1283 open_msg_helper_destroyer (gpointer user_data)
1285 OpenMsgHelper *helper = (OpenMsgHelper *) user_data;
1287 if (helper->banner_info) {
1288 g_free (helper->banner_info->message);
1289 if (helper->banner_info->idle_handler > 0) {
1290 g_source_remove (helper->banner_info->idle_handler);
1291 helper->banner_info->idle_handler = 0;
1293 if (helper->banner_info->banner != NULL) {
1294 gtk_widget_destroy (helper->banner_info->banner);
1295 g_object_unref (helper->banner_info->banner);
1296 helper->banner_info->banner = NULL;
1298 g_slice_free (OpenMsgBannerInfo, helper->banner_info);
1299 helper->banner_info = NULL;
1301 g_object_unref (helper->model);
1302 g_object_unref (helper->header);
1303 gtk_tree_row_reference_free (helper->rowref);
1304 g_slice_free (OpenMsgHelper, helper);
1308 open_msg_performer(gboolean canceled,
1310 GtkWindow *parent_window,
1311 TnyAccount *account,
1314 ModestMailOperation *mail_op = NULL;
1316 ModestProtocolType proto;
1317 TnyConnectionStatus status;
1318 OpenMsgHelper *helper = NULL;
1319 ModestProtocol *protocol;
1320 ModestProtocolRegistry *protocol_registry;
1323 helper = (OpenMsgHelper *) user_data;
1325 status = tny_account_get_connection_status (account);
1326 if (err || canceled) {
1327 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (), helper->header);
1328 /* Free the helper */
1329 open_msg_helper_destroyer (helper);
1331 /* In memory full conditions we could get this error here */
1332 check_memory_full_error ((GtkWidget *) parent_window, err);
1337 /* Get the error message depending on the protocol */
1338 proto = modest_tny_account_get_protocol_type (account);
1339 if (proto == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1340 proto = MODEST_PROTOCOLS_STORE_MAILDIR;
1343 protocol_registry = modest_runtime_get_protocol_registry ();
1344 subject = tny_header_dup_subject (helper->header);
1346 protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, proto);
1347 error_msg = modest_protocol_get_translation (protocol, MODEST_PROTOCOL_TRANSLATION_MSG_NOT_AVAILABLE, subject);
1351 if (error_msg == NULL) {
1352 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1355 #ifndef MODEST_TOOLKIT_HILDON2
1356 gboolean show_open_draft = FALSE;
1357 if (modest_protocol_registry_protocol_type_has_tag (protocol_registry,
1359 MODEST_PROTOCOL_REGISTRY_LOCAL_STORE_PROTOCOLS)) {
1361 TnyFolderType folder_type;
1363 folder = tny_header_get_folder (helper->header);
1364 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
1365 show_open_draft = (folder_type == TNY_FOLDER_TYPE_DRAFTS);
1366 g_object_unref (folder);
1370 #ifdef MODEST_TOOLKIT_HILDON2
1373 gchar *account_name = get_info_from_header (helper->header, &is_draft, &can_open);
1376 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (), helper->header);
1377 g_free (account_name);
1378 open_msg_helper_destroyer (helper);
1383 ModestWindow *window;
1384 GtkWidget *header_view;
1387 header_view = get_header_view_from_window (MODEST_WINDOW (parent_window));
1388 uid = modest_tny_folder_get_header_unique_id (helper->header);
1390 window = modest_msg_view_window_new_from_header_view
1391 (MODEST_HEADER_VIEW (header_view), account_name, uid, helper->rowref);
1392 if (window != NULL) {
1393 if (!modest_window_mgr_register_window (modest_runtime_get_window_mgr (),
1395 gtk_widget_destroy (GTK_WIDGET (window));
1397 gtk_widget_show_all (GTK_WIDGET(window));
1401 g_free (account_name);
1403 open_msg_helper_destroyer (helper);
1406 g_free (account_name);
1408 /* Create the mail operation */
1410 modest_mail_operation_new_with_error_handling ((GObject *) parent_window,
1411 modest_ui_actions_disk_operations_error_handler,
1413 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
1417 #ifndef MODEST_TOOLKIT_HILDON2
1418 if (show_open_draft) {
1419 helper->banner_info = g_slice_new (OpenMsgBannerInfo);
1420 helper->banner_info->message = g_strdup (_("mail_ib_opening_draft_message"));
1421 helper->banner_info->banner = NULL;
1422 helper->banner_info->idle_handler = g_timeout_add (500, open_msg_banner_idle,
1423 helper->banner_info);
1429 headers = TNY_LIST (tny_simple_list_new ());
1430 tny_list_prepend (headers, G_OBJECT (helper->header));
1431 modest_mail_operation_get_msgs_full (mail_op,
1435 open_msg_helper_destroyer);
1436 g_object_unref (headers);
1441 g_object_unref (mail_op);
1442 g_object_unref (account);
1446 * This function is used by both modest_ui_actions_on_open and
1447 * modest_ui_actions_on_header_activated. This way we always do the
1448 * same when trying to open messages.
1451 open_msg_from_header (TnyHeader *header, GtkTreeRowReference *rowref, ModestWindow *win)
1453 ModestWindowMgr *mgr = NULL;
1454 TnyAccount *account;
1455 gboolean cached = FALSE;
1457 GtkWidget *header_view = NULL;
1458 OpenMsgHelper *helper;
1459 ModestWindow *window;
1461 g_return_if_fail (header != NULL && rowref != NULL);
1463 mgr = modest_runtime_get_window_mgr ();
1466 header_view = get_header_view_from_window (MODEST_WINDOW (win));
1467 if (header_view == NULL)
1470 /* Get the account */
1471 account = get_account_from_header (header);
1476 found = modest_window_mgr_find_registered_header (mgr, header, &window);
1478 /* Do not open again the message and present the
1479 window to the user */
1482 #ifndef MODEST_TOOLKIT_HILDON2
1483 gtk_window_present (GTK_WINDOW (window));
1486 /* the header has been registered already, we don't do
1487 * anything but wait for the window to come up*/
1488 g_debug ("header %p already registered, waiting for window", header);
1493 /* Open each message */
1494 cached = tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED;
1496 /* Allways download if we are online. */
1497 if (!tny_device_is_online (modest_runtime_get_device ())) {
1500 /* If ask for user permission to download the messages */
1501 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1502 _("mcen_nc_get_msg"));
1504 /* End if the user does not want to continue */
1505 if (response == GTK_RESPONSE_CANCEL) {
1511 /* We register the window for opening */
1512 modest_window_mgr_register_header (mgr, header, NULL);
1514 /* Create the helper. We need to get a reference to the model
1515 here because it could change while the message is readed
1516 (the user could switch between folders) */
1517 helper = g_slice_new (OpenMsgHelper);
1518 helper->model = g_object_ref (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)));
1519 helper->header = g_object_ref (header);
1520 helper->rowref = gtk_tree_row_reference_copy (rowref);
1521 helper->banner_info = NULL;
1523 /* Connect to the account and perform */
1525 modest_platform_connect_and_perform ((GtkWindow *) win, TRUE, g_object_ref (account),
1526 open_msg_performer, helper);
1528 /* Call directly the performer, do not need to connect */
1529 open_msg_performer (FALSE, NULL, (GtkWindow *) win,
1530 g_object_ref (account), helper);
1535 g_object_unref (account);
1539 modest_ui_actions_on_open (GtkAction *action, ModestWindow *win)
1546 /* we check for low-mem; in that case, show a warning, and don't allow
1549 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
1553 headers = get_selected_headers (win);
1557 headers_count = tny_list_get_length (headers);
1558 if (headers_count != 1) {
1559 if (headers_count > 1) {
1560 /* Don't allow activation if there are more than one message selected */
1561 modest_platform_information_banner (NULL, NULL, _("mcen_ib_select_one_message"));
1564 g_object_unref (headers);
1568 iter = tny_list_create_iterator (headers);
1569 header = TNY_HEADER (tny_iterator_get_current (iter));
1570 g_object_unref (iter);
1574 open_msg_from_header (header, NULL, win);
1575 g_object_unref (header);
1578 g_object_unref(headers);
1582 rf_helper_window_closed (gpointer data,
1585 ReplyForwardHelper *helper = (ReplyForwardHelper *) data;
1587 helper->parent_window = NULL;
1590 static ReplyForwardHelper*
1591 create_reply_forward_helper (ReplyForwardAction action,
1593 guint reply_forward_type,
1596 ReplyForwardHelper *rf_helper = NULL;
1597 const gchar *active_acc = modest_window_get_active_account (win);
1599 rf_helper = g_slice_new0 (ReplyForwardHelper);
1600 rf_helper->reply_forward_type = reply_forward_type;
1601 rf_helper->action = action;
1602 rf_helper->parent_window = (MODEST_IS_WINDOW (win)) ? GTK_WIDGET (win) : NULL;
1603 rf_helper->header = (header) ? g_object_ref (header) : NULL;
1604 rf_helper->account_name = (active_acc) ?
1605 g_strdup (active_acc) :
1606 modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1608 /* Note that window could be destroyed just AFTER calling
1609 register_window so we must ensure that this pointer does
1610 not hold invalid references */
1611 if (rf_helper->parent_window)
1612 g_object_weak_ref (G_OBJECT (rf_helper->parent_window),
1613 rf_helper_window_closed, rf_helper);
1619 free_reply_forward_helper (gpointer data)
1621 ReplyForwardHelper *helper;
1623 helper = (ReplyForwardHelper *) data;
1624 g_free (helper->account_name);
1626 g_object_unref (helper->header);
1627 if (helper->parent_window)
1628 g_object_weak_unref (G_OBJECT (helper->parent_window),
1629 rf_helper_window_closed, helper);
1630 g_slice_free (ReplyForwardHelper, helper);
1634 reply_forward_cb (ModestMailOperation *mail_op,
1641 TnyMsg *new_msg = NULL;
1642 ReplyForwardHelper *rf_helper;
1643 ModestWindow *msg_win = NULL;
1644 ModestEditType edit_type;
1646 TnyAccount *account = NULL;
1647 ModestWindowMgr *mgr = NULL;
1648 gchar *signature = NULL;
1649 gboolean use_signature;
1651 /* If there was any error. The mail operation could be NULL,
1652 this means that we already have the message downloaded and
1653 that we didn't do a mail operation to retrieve it */
1654 rf_helper = (ReplyForwardHelper *) user_data;
1655 if (mail_op && !modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1658 from = modest_account_mgr_get_from_string (modest_runtime_get_account_mgr(),
1659 rf_helper->account_name);
1660 signature = modest_account_mgr_get_signature (modest_runtime_get_account_mgr(),
1661 rf_helper->account_name,
1664 /* Create reply mail */
1665 switch (rf_helper->action) {
1668 modest_tny_msg_create_reply_msg (msg, header, from,
1669 (use_signature) ? signature : NULL,
1670 rf_helper->reply_forward_type,
1671 MODEST_TNY_MSG_REPLY_MODE_SENDER);
1673 case ACTION_REPLY_TO_ALL:
1675 modest_tny_msg_create_reply_msg (msg, header, from,
1676 (use_signature) ? signature : NULL,
1677 rf_helper->reply_forward_type,
1678 MODEST_TNY_MSG_REPLY_MODE_ALL);
1679 edit_type = MODEST_EDIT_TYPE_REPLY;
1681 case ACTION_FORWARD:
1683 modest_tny_msg_create_forward_msg (msg, from, (use_signature) ? signature : NULL,
1684 rf_helper->reply_forward_type);
1685 edit_type = MODEST_EDIT_TYPE_FORWARD;
1688 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1690 g_return_if_reached ();
1698 g_warning ("%s: failed to create message\n", __FUNCTION__);
1702 account = modest_tny_account_store_get_server_account (modest_runtime_get_account_store(),
1703 rf_helper->account_name,
1704 TNY_ACCOUNT_TYPE_STORE);
1706 g_warning ("%s: failed to get tnyaccount for '%s'\n", __FUNCTION__, rf_helper->account_name);
1710 /* Create and register the windows */
1711 msg_win = modest_msg_edit_window_new (new_msg, rf_helper->account_name, FALSE);
1712 mgr = modest_runtime_get_window_mgr ();
1713 modest_window_mgr_register_window (mgr, msg_win, (ModestWindow *) rf_helper->parent_window);
1715 /* Note that register_window could have deleted the account */
1716 if (MODEST_IS_WINDOW (rf_helper->parent_window)) {
1717 gdouble parent_zoom;
1719 parent_zoom = modest_window_get_zoom (MODEST_WINDOW (rf_helper->parent_window));
1720 modest_window_set_zoom (msg_win, parent_zoom);
1723 /* Show edit window */
1724 gtk_widget_show_all (GTK_WIDGET (msg_win));
1727 /* We always unregister the header because the message is
1728 forwarded or replied so the original one is no longer
1730 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
1733 g_object_unref (G_OBJECT (new_msg));
1735 g_object_unref (G_OBJECT (account));
1736 free_reply_forward_helper (rf_helper);
1739 /* Checks a list of headers. If any of them are not currently
1740 * downloaded (CACHED) then returns TRUE else returns FALSE.
1743 header_list_count_uncached_msgs (TnyList *header_list)
1746 gint uncached_messages = 0;
1748 iter = tny_list_create_iterator (header_list);
1749 while (!tny_iterator_is_done (iter)) {
1752 header = TNY_HEADER (tny_iterator_get_current (iter));
1754 if (!(tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED))
1755 uncached_messages ++;
1756 g_object_unref (header);
1759 tny_iterator_next (iter);
1761 g_object_unref (iter);
1763 return uncached_messages;
1766 /* Returns FALSE if the user does not want to download the
1767 * messages. Returns TRUE if the user allowed the download.
1770 connect_to_get_msg (ModestWindow *win,
1771 gint num_of_uncached_msgs,
1772 TnyAccount *account)
1774 GtkResponseType response;
1776 /* Allways download if we are online. */
1777 if (tny_device_is_online (modest_runtime_get_device ()))
1780 /* If offline, then ask for user permission to download the messages */
1781 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1782 ngettext("mcen_nc_get_msg",
1784 num_of_uncached_msgs));
1786 if (response == GTK_RESPONSE_CANCEL)
1789 return modest_platform_connect_and_wait((GtkWindow *) win, account);
1793 reply_forward_performer (gboolean canceled,
1795 GtkWindow *parent_window,
1796 TnyAccount *account,
1799 ReplyForwardHelper *rf_helper = NULL;
1800 ModestMailOperation *mail_op;
1802 rf_helper = (ReplyForwardHelper *) user_data;
1804 if (canceled || err) {
1805 free_reply_forward_helper (rf_helper);
1809 /* Retrieve the message */
1810 modest_window_mgr_register_header (modest_runtime_get_window_mgr (), rf_helper->header, NULL);
1811 mail_op = modest_mail_operation_new_with_error_handling (G_OBJECT (parent_window),
1812 modest_ui_actions_disk_operations_error_handler,
1814 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
1815 modest_mail_operation_get_msg (mail_op, rf_helper->header, TRUE, reply_forward_cb, rf_helper);
1818 g_object_unref(mail_op);
1822 * Common code for the reply and forward actions
1825 reply_forward (ReplyForwardAction action, ModestWindow *win)
1827 ReplyForwardHelper *rf_helper = NULL;
1828 guint reply_forward_type;
1830 g_return_if_fail (MODEST_IS_WINDOW(win));
1832 /* we check for low-mem; in that case, show a warning, and don't allow
1833 * reply/forward (because it could potentially require a lot of memory */
1834 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
1838 /* we need an account when editing */
1839 if (!modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE)) {
1840 if (!modest_ui_actions_run_account_setup_wizard (win))
1844 reply_forward_type =
1845 modest_conf_get_int (modest_runtime_get_conf (),
1846 (action == ACTION_FORWARD) ?
1847 MODEST_CONF_FORWARD_TYPE :
1848 MODEST_CONF_REPLY_TYPE,
1851 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
1853 TnyHeader *header = NULL;
1854 /* Get header and message. Do not free them here, the
1855 reply_forward_cb must do it */
1856 msg = modest_msg_view_window_get_message (MODEST_MSG_VIEW_WINDOW(win));
1857 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
1859 if (msg && header) {
1861 rf_helper = create_reply_forward_helper (action, win,
1862 reply_forward_type, header);
1863 reply_forward_cb (NULL, header, FALSE, msg, NULL, rf_helper);
1865 g_warning("%s: no message or header found in viewer\n", __FUNCTION__);
1869 g_object_unref (msg);
1871 g_object_unref (header);
1873 TnyHeader *header = NULL;
1875 gboolean do_retrieve = TRUE;
1876 TnyList *header_list = NULL;
1878 header_list = get_selected_headers (win);
1881 /* Check that only one message is selected for replying */
1882 if (tny_list_get_length (header_list) != 1) {
1883 modest_platform_information_banner ((win) ? GTK_WIDGET (win) : NULL,
1884 NULL, _("mcen_ib_select_one_message"));
1885 g_object_unref (header_list);
1889 /* Only reply/forward to one message */
1890 iter = tny_list_create_iterator (header_list);
1891 header = TNY_HEADER (tny_iterator_get_current (iter));
1892 g_object_unref (iter);
1894 /* Retrieve messages */
1895 do_retrieve = (action == ACTION_FORWARD) ||
1896 (reply_forward_type != MODEST_TNY_MSG_REPLY_TYPE_CITE);
1899 TnyAccount *account = NULL;
1900 TnyFolder *folder = NULL;
1901 gdouble download = TRUE;
1902 guint uncached_msgs = 0;
1904 folder = tny_header_get_folder (header);
1906 goto do_retrieve_frees;
1907 account = tny_folder_get_account (folder);
1909 goto do_retrieve_frees;
1911 uncached_msgs = header_list_count_uncached_msgs (header_list);
1913 if (uncached_msgs > 0) {
1914 /* Allways download if we are online. */
1915 if (!tny_device_is_online (modest_runtime_get_device ())) {
1918 /* If ask for user permission to download the messages */
1919 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1920 ngettext("mcen_nc_get_msg",
1924 /* End if the user does not want to continue */
1925 if (response == GTK_RESPONSE_CANCEL)
1932 rf_helper = create_reply_forward_helper (action, win,
1933 reply_forward_type, header);
1934 if (uncached_msgs > 0) {
1935 modest_platform_connect_and_perform (GTK_WINDOW (win),
1937 reply_forward_performer,
1940 reply_forward_performer (FALSE, NULL, GTK_WINDOW (win),
1941 account, rf_helper);
1946 g_object_unref (account);
1948 g_object_unref (folder);
1950 reply_forward_cb (NULL, header, FALSE, NULL, NULL, rf_helper);
1953 g_object_unref (header_list);
1954 g_object_unref (header);
1959 modest_ui_actions_on_reply (GtkAction *action, ModestWindow *win)
1961 g_return_if_fail (MODEST_IS_WINDOW(win));
1963 reply_forward (ACTION_REPLY, win);
1967 modest_ui_actions_on_forward (GtkAction *action, ModestWindow *win)
1969 g_return_if_fail (MODEST_IS_WINDOW(win));
1971 reply_forward (ACTION_FORWARD, win);
1975 modest_ui_actions_on_reply_all (GtkAction *action, ModestWindow *win)
1977 g_return_if_fail (MODEST_IS_WINDOW(win));
1979 reply_forward (ACTION_REPLY_TO_ALL, win);
1983 modest_ui_actions_on_next (GtkAction *action,
1984 ModestWindow *window)
1986 if (MODEST_IS_MAIN_WINDOW (window)) {
1987 GtkWidget *header_view;
1989 header_view = modest_main_window_get_child_widget (
1990 MODEST_MAIN_WINDOW(window),
1991 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1995 modest_header_view_select_next (
1996 MODEST_HEADER_VIEW(header_view));
1997 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
1998 modest_msg_view_window_select_next_message (
1999 MODEST_MSG_VIEW_WINDOW (window));
2001 g_return_if_reached ();
2006 modest_ui_actions_on_prev (GtkAction *action,
2007 ModestWindow *window)
2009 g_return_if_fail (MODEST_IS_WINDOW(window));
2011 if (MODEST_IS_MAIN_WINDOW (window)) {
2012 GtkWidget *header_view;
2013 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
2014 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2018 modest_header_view_select_prev (MODEST_HEADER_VIEW(header_view));
2019 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
2020 modest_msg_view_window_select_previous_message (MODEST_MSG_VIEW_WINDOW (window));
2022 g_return_if_reached ();
2027 modest_ui_actions_on_sort (GtkAction *action,
2028 ModestWindow *window)
2030 GtkWidget *header_view = NULL;
2032 g_return_if_fail (MODEST_IS_WINDOW(window));
2034 if (MODEST_IS_MAIN_WINDOW (window)) {
2035 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
2036 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2037 #ifdef MODEST_TOOLKIT_HILDON2
2038 } else if (MODEST_IS_HEADER_WINDOW (window)) {
2039 header_view = GTK_WIDGET (modest_header_window_get_header_view (MODEST_HEADER_WINDOW (window)));
2044 modest_platform_information_banner (NULL, NULL, _CS("ckdg_ib_nothing_to_sort"));
2049 /* Show sorting dialog */
2050 modest_utils_run_sort_dialog (GTK_WINDOW (window), MODEST_SORT_HEADERS);
2054 new_messages_arrived (ModestMailOperation *self,
2055 TnyList *new_headers,
2059 gboolean show_visual_notifications;
2061 source = modest_mail_operation_get_source (self);
2062 show_visual_notifications = (source) ? FALSE : TRUE;
2064 g_object_unref (source);
2066 /* Notify new messages have been downloaded. If the
2067 send&receive was invoked by the user then do not show any
2068 visual notification, only play a sound and activate the LED
2069 (for the Maemo version) */
2070 if (TNY_IS_LIST(new_headers) && (tny_list_get_length (new_headers)) > 0)
2071 modest_platform_on_new_headers_received (new_headers,
2072 show_visual_notifications);
2077 retrieve_all_messages_cb (GObject *source,
2079 guint retrieve_limit)
2085 window = GTK_WINDOW (source);
2086 msg = g_strdup_printf (_("mail_nc_msg_count_limit_exceeded"),
2087 num_msgs, retrieve_limit);
2089 /* Ask the user if they want to retrieve all the messages */
2091 modest_platform_run_confirmation_dialog_with_buttons (window, msg,
2092 _("mcen_bd_get_all"),
2093 _("mcen_bd_newest_only"));
2094 /* Free and return */
2096 return (response == GTK_RESPONSE_ACCEPT) ? TRUE : FALSE;
2100 TnyAccount *account;
2102 gchar *account_name;
2103 gboolean poke_status;
2104 gboolean interactive;
2105 ModestMailOperation *mail_op;
2109 do_send_receive_performer (gboolean canceled,
2111 GtkWindow *parent_window,
2112 TnyAccount *account,
2115 SendReceiveInfo *info;
2117 info = (SendReceiveInfo *) user_data;
2119 if (err || canceled) {
2120 /* In memory full conditions we could get this error here */
2121 check_memory_full_error ((GtkWidget *) parent_window, err);
2123 if (info->mail_op) {
2124 modest_mail_operation_queue_remove (modest_runtime_get_mail_operation_queue (),
2130 /* Set send/receive operation in progress */
2131 if (info->win && MODEST_IS_MAIN_WINDOW (info->win)) {
2132 modest_main_window_notify_send_receive_initied (MODEST_MAIN_WINDOW (info->win));
2135 if (info->win && MODEST_IS_MAIN_WINDOW (info->win))
2136 g_signal_connect (G_OBJECT (info->mail_op), "operation-finished",
2137 G_CALLBACK (on_send_receive_finished),
2140 /* Send & receive. */
2141 modest_mail_operation_update_account (info->mail_op, info->account_name, info->poke_status, info->interactive,
2142 (info->win) ? retrieve_all_messages_cb : NULL,
2143 new_messages_arrived, info->win);
2148 g_object_unref (G_OBJECT (info->mail_op));
2149 if (info->account_name)
2150 g_free (info->account_name);
2152 g_object_unref (info->win);
2154 g_object_unref (info->account);
2155 g_slice_free (SendReceiveInfo, info);
2159 * This function performs the send & receive required actions. The
2160 * window is used to create the mail operation. Typically it should
2161 * always be the main window, but we pass it as argument in order to
2165 modest_ui_actions_do_send_receive (const gchar *account_name,
2166 gboolean force_connection,
2167 gboolean poke_status,
2168 gboolean interactive,
2171 gchar *acc_name = NULL;
2172 SendReceiveInfo *info;
2173 ModestTnyAccountStore *acc_store;
2175 /* If no account name was provided then get the current account, and if
2176 there is no current account then pick the default one: */
2177 if (!account_name) {
2179 acc_name = g_strdup (modest_window_get_active_account (win));
2181 acc_name = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
2183 g_printerr ("modest: cannot get default account\n");
2187 acc_name = g_strdup (account_name);
2190 acc_store = modest_runtime_get_account_store ();
2192 /* Create the info for the connect and perform */
2193 info = g_slice_new (SendReceiveInfo);
2194 info->account_name = acc_name;
2195 info->win = (win) ? g_object_ref (win) : NULL;
2196 info->poke_status = poke_status;
2197 info->interactive = interactive;
2198 info->account = modest_tny_account_store_get_server_account (acc_store, acc_name,
2199 TNY_ACCOUNT_TYPE_STORE);
2200 /* We need to create the operation here, because otherwise it
2201 could happen that the queue emits the queue-empty signal
2202 while we're trying to connect the account */
2203 info->mail_op = modest_mail_operation_new_with_error_handling ((info->win) ? G_OBJECT (info->win) : NULL,
2204 modest_ui_actions_disk_operations_error_handler,
2206 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), info->mail_op);
2208 /* Invoke the connect and perform */
2209 modest_platform_connect_and_perform ((win) ? GTK_WINDOW (win) : NULL,
2210 force_connection, info->account,
2211 do_send_receive_performer, info);
2216 modest_ui_actions_do_cancel_send (const gchar *account_name,
2219 TnyTransportAccount *transport_account;
2220 TnySendQueue *send_queue = NULL;
2221 GError *error = NULL;
2223 /* Get transport account */
2225 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2226 (modest_runtime_get_account_store(),
2228 TNY_ACCOUNT_TYPE_TRANSPORT));
2229 if (!transport_account) {
2230 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2235 send_queue = TNY_SEND_QUEUE (modest_runtime_get_send_queue (transport_account, TRUE));
2236 if (!TNY_IS_SEND_QUEUE(send_queue)) {
2237 g_set_error (&error, MODEST_MAIL_OPERATION_ERROR,
2238 MODEST_MAIL_OPERATION_ERROR_ITEM_NOT_FOUND,
2239 "modest: could not find send queue for account\n");
2241 /* Cancel the current send */
2242 tny_account_cancel (TNY_ACCOUNT (transport_account));
2244 /* Suspend all pending messages */
2245 tny_send_queue_cancel (send_queue, TNY_SEND_QUEUE_CANCEL_ACTION_SUSPEND, &error);
2249 if (transport_account != NULL)
2250 g_object_unref (G_OBJECT (transport_account));
2254 modest_ui_actions_cancel_send_all (ModestWindow *win)
2256 GSList *account_names, *iter;
2258 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
2261 iter = account_names;
2263 modest_ui_actions_do_cancel_send ((const char*) iter->data, win);
2264 iter = g_slist_next (iter);
2267 modest_account_mgr_free_account_names (account_names);
2268 account_names = NULL;
2272 modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win)
2275 /* Check if accounts exist */
2276 gboolean accounts_exist =
2277 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
2279 /* If not, allow the user to create an account before trying to send/receive. */
2280 if (!accounts_exist)
2281 modest_ui_actions_on_accounts (NULL, win);
2283 /* Cancel all sending operaitons */
2284 modest_ui_actions_cancel_send_all (win);
2288 * Refreshes all accounts. This function will be used by automatic
2292 modest_ui_actions_do_send_receive_all (ModestWindow *win,
2293 gboolean force_connection,
2294 gboolean poke_status,
2295 gboolean interactive)
2297 GSList *account_names, *iter;
2299 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
2302 iter = account_names;
2304 modest_ui_actions_do_send_receive ((const char*) iter->data,
2306 poke_status, interactive, win);
2307 iter = g_slist_next (iter);
2310 modest_account_mgr_free_account_names (account_names);
2311 account_names = NULL;
2315 * Handler of the click on Send&Receive button in the main toolbar
2318 modest_ui_actions_on_send_receive (GtkAction *action, ModestWindow *win)
2320 /* Check if accounts exist */
2321 gboolean accounts_exist;
2324 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
2326 /* If not, allow the user to create an account before trying to send/receive. */
2327 if (!accounts_exist)
2328 modest_ui_actions_on_accounts (NULL, win);
2330 /* Refresh the current folder. The if is always TRUE it's just an extra check */
2331 if (MODEST_IS_MAIN_WINDOW (win)) {
2332 GtkWidget *folder_view;
2333 TnyFolderStore *folder_store;
2336 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
2337 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2341 folder_store = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2344 g_object_unref (folder_store);
2345 /* Refresh the active account. Force the connection if needed
2346 and poke the status of all folders */
2347 modest_ui_actions_do_send_receive (NULL, TRUE, TRUE, TRUE, win);
2348 #ifdef MODEST_TOOLKIT_HILDON2
2349 } else if (MODEST_IS_ACCOUNTS_WINDOW (win)) {
2350 modest_ui_actions_do_send_receive_all (win, TRUE, TRUE, TRUE);
2353 const gchar *active_account;
2354 active_account = modest_window_get_active_account (MODEST_WINDOW (win));
2356 modest_ui_actions_do_send_receive (active_account, TRUE, TRUE, TRUE, win);
2363 modest_ui_actions_toggle_header_list_view (GtkAction *action, ModestMainWindow *main_window)
2366 GtkWidget *header_view;
2368 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2370 header_view = modest_main_window_get_child_widget (main_window,
2371 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2375 conf = modest_runtime_get_conf ();
2377 /* what is saved/restored is depending on the style; thus; we save with
2378 * old style, then update the style, and restore for this new style
2380 modest_widget_memory_save (conf, G_OBJECT(header_view), MODEST_CONF_HEADER_VIEW_KEY);
2382 if (modest_header_view_get_style
2383 (MODEST_HEADER_VIEW(header_view)) == MODEST_HEADER_VIEW_STYLE_DETAILS)
2384 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2385 MODEST_HEADER_VIEW_STYLE_TWOLINES);
2387 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
2388 MODEST_HEADER_VIEW_STYLE_DETAILS);
2390 modest_widget_memory_restore (conf, G_OBJECT(header_view),
2391 MODEST_CONF_HEADER_VIEW_KEY);
2396 modest_ui_actions_on_header_selected (ModestHeaderView *header_view,
2398 ModestMainWindow *main_window)
2400 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2401 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
2403 /* in the case the folder is empty, show the empty folder message and focus
2405 if (!header && gtk_widget_is_focus (GTK_WIDGET (header_view))) {
2406 if (modest_header_view_is_empty (header_view)) {
2407 TnyFolder *folder = modest_header_view_get_folder (header_view);
2408 GtkWidget *folder_view =
2409 modest_main_window_get_child_widget (main_window,
2410 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2411 if (folder != NULL) {
2412 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view), folder, FALSE);
2413 g_object_unref (folder);
2415 gtk_widget_grab_focus (GTK_WIDGET (folder_view));
2419 /* If no header has been selected then exit */
2424 if (!gtk_widget_is_focus (GTK_WIDGET(header_view)))
2425 gtk_widget_grab_focus (GTK_WIDGET(header_view));
2427 /* Update toolbar dimming state */
2428 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
2429 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2433 modest_ui_actions_on_header_activated (ModestHeaderView *header_view,
2436 ModestWindow *window)
2438 GtkWidget *open_widget;
2439 GtkTreeRowReference *rowref;
2441 g_return_if_fail (MODEST_IS_WINDOW(window));
2442 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
2443 g_return_if_fail (TNY_IS_HEADER (header));
2445 if (modest_header_view_count_selected_headers (header_view) > 1) {
2446 /* Don't allow activation if there are more than one message selected */
2447 modest_platform_information_banner (NULL, NULL, _("mcen_ib_select_one_message"));
2451 /* we check for low-mem; in that case, show a warning, and don't allow
2452 * activating headers
2454 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
2457 if (MODEST_IS_MAIN_WINDOW (window)) {
2458 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (window));
2459 open_widget = modest_window_get_action_widget (MODEST_WINDOW (window), "/MenuBar/EmailMenu/EmailOpenMenu");
2460 if (!GTK_WIDGET_IS_SENSITIVE (open_widget))
2464 rowref = gtk_tree_row_reference_new (gtk_tree_view_get_model (GTK_TREE_VIEW (header_view)), path);
2465 open_msg_from_header (header, rowref, MODEST_WINDOW (window));
2466 gtk_tree_row_reference_free (rowref);
2470 set_active_account_from_tny_account (TnyAccount *account,
2471 ModestWindow *window)
2473 const gchar *server_acc_name = tny_account_get_id (account);
2475 /* We need the TnyAccount provided by the
2476 account store because that is the one that
2477 knows the name of the Modest account */
2478 TnyAccount *modest_server_account = modest_server_account =
2479 modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store (),
2480 MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
2482 if (!modest_server_account) {
2483 g_warning ("%s: could not get tny account\n", __FUNCTION__);
2487 /* Update active account, but only if it's not a pseudo-account */
2488 if ((!modest_tny_account_is_virtual_local_folders(modest_server_account)) &&
2489 (!modest_tny_account_is_memory_card_account(modest_server_account))) {
2490 const gchar *modest_acc_name =
2491 modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
2492 if (modest_acc_name)
2493 modest_window_set_active_account (window, modest_acc_name);
2496 g_object_unref (modest_server_account);
2501 folder_refreshed_cb (ModestMailOperation *mail_op,
2505 ModestMainWindow *win = NULL;
2506 GtkWidget *folder_view;
2507 const GError *error;
2509 g_return_if_fail (TNY_IS_FOLDER (folder));
2511 win = MODEST_MAIN_WINDOW (user_data);
2513 /* Check if the operation failed due to memory low conditions */
2514 error = modest_mail_operation_get_error (mail_op);
2515 if (error && error->domain == MODEST_MAIL_OPERATION_ERROR &&
2516 error->code == MODEST_MAIL_OPERATION_ERROR_LOW_MEMORY) {
2517 modest_platform_run_information_dialog (GTK_WINDOW (win),
2518 _KR("memr_ib_operation_disabled"),
2524 modest_main_window_get_child_widget(win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2527 TnyFolderStore *current_folder;
2529 current_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2530 if (current_folder) {
2531 gboolean different = ((TnyFolderStore *) folder != current_folder);
2532 g_object_unref (current_folder);
2538 /* Check if folder is empty and set headers view contents style */
2539 if (tny_folder_get_all_count (folder) == 0)
2540 modest_main_window_set_contents_style (win,
2541 MODEST_MAIN_WINDOW_CONTENTS_STYLE_EMPTY);
2546 modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder_view,
2547 TnyFolderStore *folder_store,
2549 ModestMainWindow *main_window)
2552 GtkWidget *header_view;
2554 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2556 header_view = modest_main_window_get_child_widget(main_window,
2557 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2561 conf = modest_runtime_get_conf ();
2563 if (TNY_IS_ACCOUNT (folder_store)) {
2565 set_active_account_from_tny_account (TNY_ACCOUNT (folder_store), MODEST_WINDOW (main_window));
2567 /* Show account details */
2568 modest_main_window_set_contents_style (main_window, MODEST_MAIN_WINDOW_CONTENTS_STYLE_DETAILS);
2571 if (TNY_IS_FOLDER (folder_store) && selected) {
2572 TnyAccount *account;
2573 const gchar *account_name = NULL;
2575 /* Update the active account */
2576 account = modest_tny_folder_get_account (TNY_FOLDER (folder_store));
2578 set_active_account_from_tny_account (account, MODEST_WINDOW (main_window));
2580 modest_tny_account_get_parent_modest_account_name_for_server_account (account);
2581 g_object_unref (account);
2585 /* Set the header style by default, it could
2586 be changed later by the refresh callback to
2588 modest_main_window_set_contents_style (main_window,
2589 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS);
2591 /* Set folder on header view. This function
2592 will call tny_folder_refresh_async so we
2593 pass a callback that will be called when
2594 finished. We use that callback to set the
2595 empty view if there are no messages */
2596 modest_header_view_set_folder (MODEST_HEADER_VIEW(header_view),
2597 TNY_FOLDER (folder_store),
2599 MODEST_WINDOW (main_window),
2600 folder_refreshed_cb,
2603 /* Restore configuration. We need to do this
2604 *after* the set_folder because the widget
2605 memory asks the header view about its
2607 modest_widget_memory_restore (modest_runtime_get_conf (),
2608 G_OBJECT(header_view),
2609 MODEST_CONF_HEADER_VIEW_KEY);
2611 /* No need to save the header view
2612 configuration for Maemo because it only
2613 saves the sorting stuff and that it's
2614 already being done by the sort
2615 dialog. Remove it when the GNOME version
2616 has the same behaviour */
2617 #ifdef MODEST_TOOLKIT_GTK
2618 if (modest_main_window_get_contents_style (main_window) ==
2619 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS)
2620 modest_widget_memory_save (conf, G_OBJECT (header_view),
2621 MODEST_CONF_HEADER_VIEW_KEY);
2623 modest_header_view_clear (MODEST_HEADER_VIEW(header_view));
2627 /* Update dimming state */
2628 modest_ui_actions_check_menu_dimming_rules (MODEST_WINDOW (main_window));
2629 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2633 modest_ui_actions_on_item_not_found (ModestHeaderView *header_view,ModestItemType type,
2640 item = (type == MODEST_ITEM_TYPE_FOLDER) ? "folder" : "message";
2642 online = tny_device_is_online (modest_runtime_get_device());
2645 /* already online -- the item is simply not there... */
2646 dialog = gtk_message_dialog_new (GTK_WINDOW (win),
2648 GTK_MESSAGE_WARNING,
2650 _("The %s you selected cannot be found"),
2652 gtk_dialog_add_button (GTK_DIALOG (dialog),_("mcen_bd_dialog_ok"), GTK_RESPONSE_ACCEPT);
2653 gtk_dialog_run (GTK_DIALOG(dialog));
2655 dialog = gtk_dialog_new_with_buttons (_("Connection requested"),
2658 _("mcen_bd_dialog_cancel"),
2659 GTK_RESPONSE_REJECT,
2660 _("mcen_bd_dialog_ok"),
2661 GTK_RESPONSE_ACCEPT,
2663 txt = g_strdup_printf (_("This %s is not available in offline mode.\n"
2664 "Do you want to get online?"), item);
2665 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox),
2666 gtk_label_new (txt), FALSE, FALSE, 0);
2667 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
2670 gtk_window_set_default_size (GTK_WINDOW(dialog), 300, 300);
2671 if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
2672 /* TODO: Comment about why is this commented out: */
2673 /* modest_platform_connect_and_wait (); */
2676 gtk_widget_destroy (dialog);
2680 modest_ui_actions_on_msg_link_hover (ModestMsgView *msgview, const gchar* link,
2683 /* g_message ("%s %s", __FUNCTION__, link); */
2688 modest_ui_actions_on_msg_link_clicked (ModestMsgView *msgview, const gchar* link,
2691 modest_platform_activate_uri (link);
2695 modest_ui_actions_on_msg_link_contextual (ModestMsgView *msgview, const gchar* link,
2698 modest_platform_show_uri_popup (link);
2702 modest_ui_actions_on_msg_attachment_clicked (ModestMsgView *msgview, TnyMimePart *mime_part,
2705 /* we check for low-mem; in that case, show a warning, and don't allow
2706 * viewing attachments
2708 if (modest_platform_check_memory_low (MODEST_WINDOW(win), TRUE))
2711 modest_msg_view_window_view_attachment (MODEST_MSG_VIEW_WINDOW (win), mime_part);
2715 modest_ui_actions_on_msg_recpt_activated (ModestMsgView *msgview,
2716 const gchar *address,
2719 /* g_message ("%s %s", __FUNCTION__, address); */
2723 on_save_to_drafts_cb (ModestMailOperation *mail_op,
2724 TnyMsg *saved_draft,
2727 ModestMsgEditWindow *edit_window;
2729 /* TODO: in hildon 2 we have to dim and undim the header views while we're saving */
2730 #ifndef MODEST_TOOLKIT_HILDON2
2731 ModestMainWindow *win;
2733 /* FIXME. Make the header view sensitive again. This is a
2734 * temporary hack. See modest_ui_actions_on_save_to_drafts()
2736 win = MODEST_MAIN_WINDOW(modest_window_mgr_get_main_window(
2737 modest_runtime_get_window_mgr(), FALSE));
2739 GtkWidget *hdrview = modest_main_window_get_child_widget(
2740 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2741 if (hdrview) gtk_widget_set_sensitive(hdrview, TRUE);
2745 edit_window = MODEST_MSG_EDIT_WINDOW (user_data);
2747 /* Set draft is there was no error */
2748 if (!modest_mail_operation_get_error (mail_op))
2749 modest_msg_edit_window_set_draft (edit_window, saved_draft);
2751 g_object_unref(edit_window);
2755 enough_space_for_message (ModestMsgEditWindow *edit_window,
2758 TnyAccountStore *acc_store;
2759 guint64 available_disk, expected_size;
2764 acc_store = TNY_ACCOUNT_STORE (modest_runtime_get_account_store());
2765 available_disk = modest_utils_get_available_space (NULL);
2766 modest_msg_edit_window_get_parts_size (edit_window, &parts_count, &parts_size);
2767 expected_size = modest_tny_msg_estimate_size (data->plain_body,
2772 /* Double check: memory full condition or message too big */
2773 if (available_disk < MIN_FREE_SPACE ||
2774 expected_size > available_disk) {
2776 modest_platform_information_banner (NULL, NULL,
2777 _KR("cerm_device_memory_full"));
2782 * djcb: if we're in low-memory state, we only allow for
2783 * saving messages smaller than
2784 * MODEST_MAX_LOW_MEMORY_MESSAGE_SIZE (see modest-defs.h) this
2785 * should still allow for sending anything critical...
2787 if ((expected_size > MODEST_MAX_LOW_MEMORY_MESSAGE_SIZE) &&
2788 modest_platform_check_memory_low (MODEST_WINDOW(edit_window), TRUE))
2792 * djcb: we also make sure that the attachments are smaller than the max size
2793 * this is for the case where we'd try to forward a message with attachments
2794 * bigger than our max allowed size, or sending an message from drafts which
2795 * somehow got past our checks when attaching.
2797 if (expected_size > MODEST_MAX_ATTACHMENT_SIZE) {
2798 modest_platform_run_information_dialog (
2799 GTK_WINDOW(edit_window),
2800 _KR("memr_ib_operation_disabled"),
2809 modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2811 TnyTransportAccount *transport_account;
2812 ModestMailOperation *mail_operation;
2814 gchar *account_name, *from;
2815 ModestAccountMgr *account_mgr;
2816 gboolean had_error = FALSE;
2817 ModestMainWindow *win = NULL;
2819 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), FALSE);
2821 data = modest_msg_edit_window_get_msg_data (edit_window);
2824 if (!enough_space_for_message (edit_window, data)) {
2825 modest_msg_edit_window_free_msg_data (edit_window, data);
2829 account_name = g_strdup (data->account_name);
2830 account_mgr = modest_runtime_get_account_mgr();
2832 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2834 account_name = modest_account_mgr_get_default_account (account_mgr);
2835 if (!account_name) {
2836 g_printerr ("modest: no account found\n");
2837 modest_msg_edit_window_free_msg_data (edit_window, data);
2841 if (!strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID)) {
2842 account_name = g_strdup (data->account_name);
2846 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2847 (modest_runtime_get_account_store (),
2849 TNY_ACCOUNT_TYPE_TRANSPORT));
2850 if (!transport_account) {
2851 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2852 g_free (account_name);
2853 modest_msg_edit_window_free_msg_data (edit_window, data);
2856 from = modest_account_mgr_get_from_string (account_mgr, account_name);
2858 /* Create the mail operation */
2859 mail_operation = modest_mail_operation_new_with_error_handling (NULL, modest_ui_actions_disk_operations_error_handler,
2861 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2863 modest_mail_operation_save_to_drafts (mail_operation,
2875 data->priority_flags,
2876 on_save_to_drafts_cb,
2877 g_object_ref(edit_window));
2879 #ifdef MODEST_TOOLKIT_HILDON2
2880 /* In hildon2 we always show the information banner on saving to drafts.
2881 * It will be a system information banner in this case.
2883 gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2884 modest_platform_information_banner (NULL, NULL, text);
2887 /* Use the main window as the parent of the banner, if the
2888 main window does not exist it won't be shown, if the parent
2889 window exists then it's properly shown. We don't use the
2890 editor window because it could be closed (save to drafts
2891 could happen after closing the window */
2892 win = (ModestMainWindow *)
2893 modest_window_mgr_get_main_window( modest_runtime_get_window_mgr(), FALSE);
2895 gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2896 modest_platform_information_banner (GTK_WIDGET (win), NULL, text);
2900 modest_msg_edit_window_set_modified (edit_window, FALSE);
2904 g_free (account_name);
2905 g_object_unref (G_OBJECT (transport_account));
2906 g_object_unref (G_OBJECT (mail_operation));
2908 modest_msg_edit_window_free_msg_data (edit_window, data);
2911 * If the drafts folder is selected then make the header view
2912 * insensitive while the message is being saved to drafts
2913 * (it'll be sensitive again in on_save_to_drafts_cb()). This
2914 * is not very clean but it avoids letting the drafts folder
2915 * in an inconsistent state: the user could edit the message
2916 * being saved and undesirable things would happen.
2917 * In the average case the user won't notice anything at
2918 * all. In the worst case (the user is editing a really big
2919 * file from Drafts) the header view will be insensitive
2920 * during the saving process (10 or 20 seconds, depending on
2921 * the message). Anyway this is just a quick workaround: once
2922 * we find a better solution it should be removed
2923 * See NB#65125 (commend #18) for details.
2925 if (!had_error && win != NULL) {
2926 ModestFolderView *view = MODEST_FOLDER_VIEW(modest_main_window_get_child_widget(
2927 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW));
2929 TnyFolder *folder = TNY_FOLDER(modest_folder_view_get_selected(view));
2931 if (modest_tny_folder_is_local_folder(folder)) {
2932 TnyFolderType folder_type;
2933 folder_type = modest_tny_folder_get_local_or_mmc_folder_type(folder);
2934 if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
2935 GtkWidget *hdrview = modest_main_window_get_child_widget(
2936 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2937 if (hdrview) gtk_widget_set_sensitive(hdrview, FALSE);
2941 if (folder != NULL) g_object_unref(folder);
2948 /* For instance, when clicking the Send toolbar button when editing a message: */
2950 modest_ui_actions_on_send (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2952 TnyTransportAccount *transport_account = NULL;
2953 gboolean had_error = FALSE;
2955 ModestAccountMgr *account_mgr;
2956 gchar *account_name;
2958 ModestMailOperation *mail_operation;
2960 g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window), TRUE);
2962 if (!modest_msg_edit_window_check_names (edit_window, TRUE))
2965 data = modest_msg_edit_window_get_msg_data (edit_window);
2968 if (!enough_space_for_message (edit_window, data)) {
2969 modest_msg_edit_window_free_msg_data (edit_window, data);
2973 account_mgr = modest_runtime_get_account_mgr();
2974 account_name = g_strdup (data->account_name);
2976 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2979 account_name = modest_account_mgr_get_default_account (account_mgr);
2981 if (!account_name) {
2982 modest_msg_edit_window_free_msg_data (edit_window, data);
2983 /* Run account setup wizard */
2984 if (!modest_ui_actions_run_account_setup_wizard (MODEST_WINDOW(edit_window))) {
2989 /* Get the currently-active transport account for this modest account: */
2990 if (strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) != 0) {
2992 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2993 (modest_runtime_get_account_store (),
2994 account_name, TNY_ACCOUNT_TYPE_TRANSPORT));
2997 if (!transport_account) {
2998 modest_msg_edit_window_free_msg_data (edit_window, data);
2999 /* Run account setup wizard */
3000 if (!modest_ui_actions_run_account_setup_wizard(MODEST_WINDOW(edit_window)))
3005 /* Create the mail operation */
3006 from = modest_account_mgr_get_from_string (account_mgr, account_name);
3007 mail_operation = modest_mail_operation_new_with_error_handling (NULL, modest_ui_actions_disk_operations_error_handler, NULL, NULL);
3008 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
3010 modest_mail_operation_send_new_mail (mail_operation,
3022 data->priority_flags);
3024 if (modest_mail_operation_get_status (mail_operation) == MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS)
3025 modest_platform_information_banner (NULL, NULL, _("mcen_ib_outbox_waiting_to_be_sent"));
3028 if (modest_mail_operation_get_error (mail_operation) != NULL) {
3029 const GError *error = modest_mail_operation_get_error (mail_operation);
3030 if (error->domain == MODEST_MAIL_OPERATION_ERROR &&
3031 error->code == MODEST_MAIL_OPERATION_ERROR_INSTANCE_CREATION_FAILED) {
3032 g_warning ("%s failed: %s\n", __FUNCTION__, (modest_mail_operation_get_error (mail_operation))->message);
3033 modest_platform_information_banner (NULL, NULL, _CS("sfil_ni_not_enough_memory"));
3040 g_free (account_name);
3041 g_object_unref (G_OBJECT (transport_account));
3042 g_object_unref (G_OBJECT (mail_operation));
3044 modest_msg_edit_window_free_msg_data (edit_window, data);
3047 modest_msg_edit_window_set_sent (edit_window, TRUE);
3049 /* Save settings and close the window: */
3050 modest_ui_actions_on_close_window (NULL, MODEST_WINDOW (edit_window));
3057 modest_ui_actions_on_toggle_bold (GtkToggleAction *action,
3058 ModestMsgEditWindow *window)
3060 ModestMsgEditFormatState *format_state = NULL;
3062 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3063 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3065 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3068 format_state = modest_msg_edit_window_get_format_state (window);
3069 g_return_if_fail (format_state != NULL);
3071 format_state->bold = gtk_toggle_action_get_active (action);
3072 modest_msg_edit_window_set_format_state (window, format_state);
3073 g_free (format_state);
3078 modest_ui_actions_on_toggle_italics (GtkToggleAction *action,
3079 ModestMsgEditWindow *window)
3081 ModestMsgEditFormatState *format_state = NULL;
3083 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3084 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3086 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3089 format_state = modest_msg_edit_window_get_format_state (window);
3090 g_return_if_fail (format_state != NULL);
3092 format_state->italics = gtk_toggle_action_get_active (action);
3093 modest_msg_edit_window_set_format_state (window, format_state);
3094 g_free (format_state);
3099 modest_ui_actions_on_toggle_bullets (GtkToggleAction *action,
3100 ModestMsgEditWindow *window)
3102 ModestMsgEditFormatState *format_state = NULL;
3104 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3105 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
3107 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3110 format_state = modest_msg_edit_window_get_format_state (window);
3111 g_return_if_fail (format_state != NULL);
3113 format_state->bullet = gtk_toggle_action_get_active (action);
3114 modest_msg_edit_window_set_format_state (window, format_state);
3115 g_free (format_state);
3120 modest_ui_actions_on_change_justify (GtkRadioAction *action,
3121 GtkRadioAction *selected,
3122 ModestMsgEditWindow *window)
3124 ModestMsgEditFormatState *format_state = NULL;
3125 GtkJustification value;
3127 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3129 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3132 value = gtk_radio_action_get_current_value (selected);
3134 format_state = modest_msg_edit_window_get_format_state (window);
3135 g_return_if_fail (format_state != NULL);
3137 format_state->justification = value;
3138 modest_msg_edit_window_set_format_state (window, format_state);
3139 g_free (format_state);
3143 modest_ui_actions_on_select_editor_color (GtkAction *action,
3144 ModestMsgEditWindow *window)
3146 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3147 g_return_if_fail (GTK_IS_ACTION (action));
3149 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3152 modest_msg_edit_window_select_color (window);
3156 modest_ui_actions_on_select_editor_background_color (GtkAction *action,
3157 ModestMsgEditWindow *window)
3159 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3160 g_return_if_fail (GTK_IS_ACTION (action));
3162 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3165 modest_msg_edit_window_select_background_color (window);
3169 modest_ui_actions_on_insert_image (GObject *object,
3170 ModestMsgEditWindow *window)
3172 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3175 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
3178 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
3181 modest_msg_edit_window_insert_image (window);
3185 modest_ui_actions_on_attach_file (GtkAction *action,
3186 ModestMsgEditWindow *window)
3188 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3189 g_return_if_fail (GTK_IS_ACTION (action));
3191 if (modest_platform_check_memory_low (MODEST_WINDOW(window), TRUE))
3194 modest_msg_edit_window_offer_attach_file (window);
3198 modest_ui_actions_on_remove_attachments (GtkAction *action,
3199 ModestMsgEditWindow *window)
3201 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3203 modest_msg_edit_window_remove_attachments (window, NULL);
3207 #ifndef MODEST_TOOLKIT_GTK
3212 TnyFolderStore *folder;
3213 } CreateFolderHelper;
3216 show_create_folder_in_timeout (gpointer data)
3218 CreateFolderHelper *helper = (CreateFolderHelper *) data;
3220 /* Remove the timeout ASAP, we can not wait until the dialog
3221 is shown because it could take a lot of time and so the
3222 timeout could be called twice or more times */
3223 g_source_remove (helper->handler);
3225 gdk_threads_enter ();
3226 do_create_folder (helper->win, helper->folder, helper->name);
3227 gdk_threads_leave ();
3229 g_object_unref (helper->win);
3230 g_object_unref (helper->folder);
3231 g_free (helper->name);
3232 g_slice_free (CreateFolderHelper, helper);
3239 do_create_folder_cb (ModestMailOperation *mail_op,
3240 TnyFolderStore *parent_folder,
3241 TnyFolder *new_folder,
3244 gchar *suggested_name = (gchar *) user_data;
3245 GtkWindow *source_win = (GtkWindow *) modest_mail_operation_get_source (mail_op);
3247 if (modest_mail_operation_get_error (mail_op)) {
3249 /* Show an error. If there was some problem writing to
3250 disk, show it, otherwise show the generic folder
3251 create error. We do it here and not in an error
3252 handler because the call to do_create_folder will
3253 stop the main loop in a gtk_dialog_run and then,
3254 the message won't be shown until that dialog is