1 /* Copyright (c) 2006, Nokia Corporation
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of the Nokia Corporation nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #endif /*HAVE_CONFIG_H*/
34 #include <glib/gi18n.h>
35 #include <glib/gprintf.h>
37 #include <modest-runtime.h>
38 #include <modest-tny-folder.h>
39 #include <modest-tny-msg.h>
40 #include <modest-tny-account.h>
41 #include <modest-address-book.h>
42 #include "modest-error.h"
43 #include "modest-ui-actions.h"
44 #include "modest-protocol-info.h"
45 #include "modest-tny-platform-factory.h"
46 #include "modest-platform.h"
47 #include <tny-mime-part.h>
48 #include <tny-camel-folder.h>
49 #include <tny-camel-imap-folder.h>
50 #include <tny-camel-pop-folder.h>
52 #ifdef MODEST_PLATFORM_MAEMO
53 #include "maemo/modest-osso-state-saving.h"
54 #include "maemo/modest-maemo-utils.h"
55 #include "maemo/modest-hildon-includes.h"
56 #endif /* MODEST_PLATFORM_MAEMO */
58 #include "widgets/modest-ui-constants.h"
59 #include <widgets/modest-main-window.h>
60 #include <widgets/modest-msg-view-window.h>
61 #include <widgets/modest-account-view-window.h>
62 #include <widgets/modest-details-dialog.h>
63 #include <widgets/modest-attachments-view.h>
64 #include "widgets/modest-folder-view.h"
65 #include "widgets/modest-global-settings-dialog.h"
66 #include "modest-connection-specific-smtp-window.h"
67 #include "modest-account-mgr-helpers.h"
68 #include "modest-mail-operation.h"
69 #include "modest-text-utils.h"
71 #ifdef MODEST_HAVE_EASYSETUP
72 #include "easysetup/modest-easysetup-wizard.h"
73 #endif /* MODEST_HAVE_EASYSETUP */
75 #include <modest-widget-memory.h>
76 #include <tny-error.h>
77 #include <tny-simple-list.h>
78 #include <tny-msg-view.h>
79 #include <tny-device.h>
80 #include <tny-merge-folder.h>
82 #include <gtkhtml/gtkhtml.h>
84 typedef struct _GetMsgAsyncHelper {
86 ModestMailOperation *mail_op;
93 typedef enum _ReplyForwardAction {
99 typedef struct _ReplyForwardHelper {
100 guint reply_forward_type;
101 ReplyForwardAction action;
103 GtkWidget *parent_window;
104 } ReplyForwardHelper;
106 typedef struct _MoveToHelper {
107 GtkTreeRowReference *reference;
111 typedef struct _PasteAsAttachmentHelper {
112 ModestMsgEditWindow *window;
114 } PasteAsAttachmentHelper;
118 * The do_headers_action uses this kind of functions to perform some
119 * action to each member of a list of headers
121 typedef void (*HeadersFunc) (TnyHeader *header, ModestWindow *win, gpointer user_data);
123 static void do_headers_action (ModestWindow *win,
127 static void open_msg_cb (ModestMailOperation *mail_op,
134 static void reply_forward_cb (ModestMailOperation *mail_op,
141 static void reply_forward (ReplyForwardAction action, ModestWindow *win);
143 static void folder_refreshed_cb (ModestMailOperation *mail_op,
147 static void on_send_receive_finished (ModestMailOperation *mail_op,
150 static gint header_list_count_uncached_msgs (TnyList *header_list);
152 static gboolean connect_to_get_msg (ModestWindow *win,
153 gint num_of_uncached_msgs,
154 TnyAccount *account);
156 static gboolean remote_folder_is_pop (const TnyFolderStore *folder);
158 static gboolean msgs_already_deleted_from_server ( TnyList *headers,
159 const TnyFolderStore *src_folder);
163 * This function checks whether a TnyFolderStore is a pop account
166 remote_folder_is_pop (const TnyFolderStore *folder)
168 const gchar *proto = NULL;
169 TnyAccount *account = NULL;
171 g_return_val_if_fail (TNY_IS_FOLDER_STORE(folder), FALSE);
173 if (TNY_IS_ACCOUNT (folder)) {
174 account = TNY_ACCOUNT(folder);
175 g_object_ref(account);
176 } else if (TNY_IS_FOLDER (folder)) {
177 account = tny_folder_get_account(TNY_FOLDER(folder));
180 if (!account && !TNY_IS_ACCOUNT(account)) {
181 g_warning ("%s: could not get account", __FUNCTION__);
185 proto = tny_account_get_proto(account);
186 g_object_unref (account);
189 (modest_protocol_info_get_transport_store_protocol (proto) == MODEST_PROTOCOL_STORE_POP);
193 * This functions checks whether if a list of messages are already
194 * deleted from the server: that is, if the server is a POP account
195 * and all messages are already cached.
198 msgs_already_deleted_from_server (TnyList *headers, const TnyFolderStore *src_folder)
200 g_return_val_if_fail (TNY_IS_FOLDER_STORE(src_folder), FALSE);
201 g_return_val_if_fail (TNY_IS_LIST(headers), FALSE);
203 gboolean src_is_pop = remote_folder_is_pop (src_folder);
204 gint uncached_msgs = header_list_count_uncached_msgs (headers);
206 return (src_is_pop && !uncached_msgs);
210 /* FIXME: this should be merged with the similar code in modest-account-view-window */
211 /* Show the account creation wizard dialog.
212 * returns: TRUE if an account was created. FALSE if the user cancelled.
215 modest_ui_actions_run_account_setup_wizard (ModestWindow *win)
217 gboolean result = FALSE;
218 GtkWindow *dialog, *wizard;
219 gint dialog_response;
221 /* Show the easy-setup wizard: */
222 dialog = modest_window_mgr_get_modal (modest_runtime_get_window_mgr());
223 if (dialog && MODEST_IS_EASYSETUP_WIZARD_DIALOG(dialog)) {
224 /* old wizard is active already;
226 gtk_window_present (GTK_WINDOW(dialog));
231 /* there is no such wizard yet */
232 wizard = GTK_WINDOW (modest_easysetup_wizard_dialog_new ());
233 modest_window_mgr_set_modal (modest_runtime_get_window_mgr(), wizard);
235 /* always present a main window in the background
236 * we do it here, so we cannot end up with two wizards (as this
237 * function might be called in modest_window_mgr_get_main_window as well */
239 win = modest_window_mgr_get_main_window (modest_runtime_get_window_mgr(),
240 TRUE); /* create if not existent */
242 /* make sure the mainwindow is visible */
243 gtk_window_set_transient_for (GTK_WINDOW (wizard), GTK_WINDOW (win));
244 gtk_widget_show_all (GTK_WIDGET(win));
245 gtk_window_present (GTK_WINDOW(win));
247 dialog_response = gtk_dialog_run (GTK_DIALOG (wizard));
248 gtk_widget_destroy (GTK_WIDGET (wizard));
249 if (gtk_events_pending ())
250 gtk_main_iteration ();
252 if (dialog_response == GTK_RESPONSE_CANCEL) {
255 /* Check whether an account was created: */
256 result = modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
264 modest_ui_actions_on_about (GtkAction *action, ModestWindow *win)
267 const gchar *authors[] = {
268 "Dirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>",
271 about = gtk_about_dialog_new ();
272 gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(about), PACKAGE_NAME);
273 gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about),PACKAGE_VERSION);
274 gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about),
275 _("Copyright (c) 2006, Nokia Corporation\n"
276 "All rights reserved."));
277 gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about),
278 _("a modest e-mail client\n\n"
279 "design and implementation: Dirk-Jan C. Binnema\n"
280 "contributions from the fine people at KC and Ig\n"
281 "uses the tinymail email framework written by Philip van Hoof"));
282 gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
283 gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), "http://modest.garage.maemo.org");
284 gtk_window_set_transient_for (GTK_WINDOW (about), GTK_WINDOW (win));
285 gtk_window_set_modal (GTK_WINDOW (about), TRUE);
287 gtk_dialog_run (GTK_DIALOG (about));
288 gtk_widget_destroy(about);
292 * Gets the list of currently selected messages. If the win is the
293 * main window, then it returns a newly allocated list of the headers
294 * selected in the header view. If win is the msg view window, then
295 * the value returned is a list with just a single header.
297 * The caller of this funcion must free the list.
300 get_selected_headers (ModestWindow *win)
302 if (MODEST_IS_MAIN_WINDOW(win)) {
303 GtkWidget *header_view;
305 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(win),
306 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
307 return modest_header_view_get_selected_headers (MODEST_HEADER_VIEW(header_view));
309 } else if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
310 /* for MsgViewWindows, we simply return a list with one element */
312 TnyList *list = NULL;
314 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW (win));
315 if (header != NULL) {
316 list = tny_simple_list_new ();
317 tny_list_prepend (list, G_OBJECT(header));
318 g_object_unref (G_OBJECT(header));
327 static GtkTreeRowReference *
328 get_next_after_selected_headers (ModestHeaderView *header_view)
330 GtkTreeSelection *sel;
331 GList *selected_rows, *node;
333 GtkTreeRowReference *result;
336 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
337 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
338 selected_rows = gtk_tree_selection_get_selected_rows (sel, NULL);
340 if (selected_rows == NULL)
343 node = g_list_last (selected_rows);
344 path = gtk_tree_path_copy ((GtkTreePath *) node->data);
345 gtk_tree_path_next (path);
347 result = gtk_tree_row_reference_new (model, path);
349 gtk_tree_path_free (path);
350 g_list_foreach (selected_rows, (GFunc) gtk_tree_path_free, NULL);
351 g_list_free (selected_rows);
357 headers_action_mark_as_read (TnyHeader *header,
361 TnyHeaderFlags flags;
363 g_return_if_fail (TNY_IS_HEADER(header));
365 flags = tny_header_get_flags (header);
366 if (flags & TNY_HEADER_FLAG_SEEN) return;
367 tny_header_set_flag (header, TNY_HEADER_FLAG_SEEN);
371 headers_action_mark_as_unread (TnyHeader *header,
375 TnyHeaderFlags flags;
377 g_return_if_fail (TNY_IS_HEADER(header));
379 flags = tny_header_get_flags (header);
380 if (flags & TNY_HEADER_FLAG_SEEN) {
381 tny_header_unset_flag (header, TNY_HEADER_FLAG_SEEN);
385 /** After deleing a message that is currently visible in a window,
386 * show the next message from the list, or close the window if there are no more messages.
389 modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win)
391 /* Close msg view window or select next */
392 if (modest_msg_view_window_last_message_selected (win) &&
393 modest_msg_view_window_first_message_selected (win)) {
394 modest_ui_actions_on_close_window (NULL, MODEST_WINDOW (win));
395 } else if (!modest_msg_view_window_select_next_message (win)) {
397 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
403 modest_ui_actions_on_delete_message (GtkAction *action, ModestWindow *win)
405 TnyList *header_list = NULL;
406 TnyIterator *iter = NULL;
407 TnyHeader *header = NULL;
408 gchar *message = NULL;
411 ModestWindowMgr *mgr;
412 GtkWidget *header_view = NULL;
414 g_return_if_fail (MODEST_IS_WINDOW(win));
416 /* Check first if the header view has the focus */
417 if (MODEST_IS_MAIN_WINDOW (win)) {
419 modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
420 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
421 if (!gtk_widget_is_focus (header_view))
425 /* Get the headers, either from the header view (if win is the main window),
426 * or from the message view window: */
427 header_list = get_selected_headers (win);
428 if (!header_list) return;
430 /* Check if any of the headers are already opened, or in the process of being opened */
431 if (MODEST_IS_MAIN_WINDOW (win)) {
432 gint opened_headers = 0;
434 iter = tny_list_create_iterator (header_list);
435 mgr = modest_runtime_get_window_mgr ();
436 while (!tny_iterator_is_done (iter)) {
437 header = TNY_HEADER (tny_iterator_get_current (iter));
439 if (modest_window_mgr_find_registered_header (mgr, header, NULL))
441 g_object_unref (header);
443 tny_iterator_next (iter);
445 g_object_unref (iter);
447 if (opened_headers > 0) {
450 msg = g_strdup_printf (_("mcen_nc_unable_to_delete_n_messages"),
453 modest_platform_run_information_dialog (GTK_WINDOW (win), (const gchar *) msg);
456 g_object_unref (header_list);
462 if (tny_list_get_length(header_list) == 1) {
463 iter = tny_list_create_iterator (header_list);
464 header = TNY_HEADER (tny_iterator_get_current (iter));
466 desc = g_strdup_printf ("%s", tny_header_get_subject (header));
467 g_object_unref (header);
470 g_object_unref (iter);
472 message = g_strdup_printf(ngettext("emev_nc_delete_message", "emev_nc_delete_messages",
473 tny_list_get_length(header_list)), desc);
475 /* Confirmation dialog */
476 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
480 if (response == GTK_RESPONSE_OK) {
481 ModestWindow *main_window = NULL;
482 ModestWindowMgr *mgr = NULL;
483 GtkTreeModel *model = NULL;
484 GtkTreeSelection *sel = NULL;
485 GList *sel_list = NULL, *tmp = NULL;
486 GtkTreeRowReference *next_row_reference = NULL;
487 GtkTreeRowReference *prev_row_reference = NULL;
488 GtkTreePath *next_path = NULL;
489 GtkTreePath *prev_path = NULL;
490 ModestMailOperation *mail_op = NULL;
492 /* Find last selected row */
493 if (MODEST_IS_MAIN_WINDOW (win)) {
494 model = gtk_tree_view_get_model (GTK_TREE_VIEW (header_view));
495 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
496 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
497 for (tmp=sel_list; tmp; tmp=tmp->next) {
498 if (tmp->next == NULL) {
499 prev_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
500 next_path = gtk_tree_path_copy((GtkTreePath *) tmp->data);
502 gtk_tree_path_prev (prev_path);
503 gtk_tree_path_next (next_path);
505 prev_row_reference = gtk_tree_row_reference_new (model, prev_path);
506 next_row_reference = gtk_tree_row_reference_new (model, next_path);
511 /* Disable window dimming management */
512 modest_window_disable_dimming (MODEST_WINDOW(win));
514 /* Remove each header. If it's a view window header_view == NULL */
515 mail_op = modest_mail_operation_new ((GObject *) win);
516 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
518 modest_mail_operation_remove_msgs (mail_op, header_list, FALSE);
519 g_object_unref (mail_op);
521 /* Enable window dimming management */
523 gtk_tree_selection_unselect_all (sel);
525 modest_window_enable_dimming (MODEST_WINDOW(win));
527 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
528 modest_ui_actions_refresh_message_window_after_delete (MODEST_MSG_VIEW_WINDOW (win));
530 /* Get main window */
531 mgr = modest_runtime_get_window_mgr ();
532 main_window = modest_window_mgr_get_main_window (mgr, FALSE); /* don't create */
534 /* Move cursor to next row */
537 /* Select next or previous row */
538 if (gtk_tree_row_reference_valid (next_row_reference)) {
539 /* next_path = gtk_tree_row_reference_get_path (row_reference); */
540 gtk_tree_selection_select_path (sel, next_path);
542 else if (gtk_tree_row_reference_valid (prev_row_reference)) {
543 gtk_tree_selection_select_path (sel, prev_path);
547 if (next_row_reference != NULL)
548 gtk_tree_row_reference_free (next_row_reference);
549 if (next_path != NULL)
550 gtk_tree_path_free (next_path);
551 if (prev_row_reference != NULL)
552 gtk_tree_row_reference_free (prev_row_reference);
553 if (prev_path != NULL)
554 gtk_tree_path_free (prev_path);
557 /* Update toolbar dimming state */
559 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
562 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
563 g_list_free (sel_list);
569 g_object_unref (header_list);
575 /* delete either message or folder, based on where we are */
577 modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win)
579 g_return_if_fail (MODEST_IS_WINDOW(win));
581 /* Check first if the header view has the focus */
582 if (MODEST_IS_MAIN_WINDOW (win)) {
584 w = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
585 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
586 if (gtk_widget_is_focus (w)) {
587 modest_ui_actions_on_delete_folder (action, MODEST_MAIN_WINDOW(win));
591 modest_ui_actions_on_delete_message (action, win);
597 modest_ui_actions_on_quit (GtkAction *action, ModestWindow *win)
599 ModestWindowMgr *mgr = NULL;
601 #ifdef MODEST_PLATFORM_MAEMO
602 modest_osso_save_state();
603 #endif /* MODEST_PLATFORM_MAEMO */
605 g_debug ("closing down, clearing %d item(s) from operation queue",
606 modest_mail_operation_queue_num_elements
607 (modest_runtime_get_mail_operation_queue()));
609 /* cancel all outstanding operations */
610 modest_mail_operation_queue_cancel_all
611 (modest_runtime_get_mail_operation_queue());
613 g_debug ("queue has been cleared");
616 /* Check if there are opened editing windows */
617 mgr = modest_runtime_get_window_mgr ();
618 modest_window_mgr_close_all_windows (mgr);
620 /* note: when modest-tny-account-store is finalized,
621 it will automatically set all network connections
624 /* gtk_main_quit (); */
628 modest_ui_actions_on_close_window (GtkAction *action, ModestWindow *win)
632 g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value);
634 /* if (MODEST_IS_MSG_VIEW_WINDOW (win)) { */
635 /* gtk_widget_destroy (GTK_WIDGET (win)); */
636 /* } else if (MODEST_IS_MSG_EDIT_WINDOW (win)) { */
637 /* gboolean ret_value; */
638 /* g_signal_emit_by_name (G_OBJECT (win), "delete-event", NULL, &ret_value); */
639 /* } else if (MODEST_IS_WINDOW (win)) { */
640 /* gtk_widget_destroy (GTK_WIDGET (win)); */
642 /* g_return_if_reached (); */
647 modest_ui_actions_on_add_to_contacts (GtkAction *action, ModestWindow *win)
649 GtkClipboard *clipboard = NULL;
650 gchar *selection = NULL;
652 clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
653 selection = gtk_clipboard_wait_for_text (clipboard);
655 /* Question: why is the clipboard being used here?
656 * It doesn't really make a lot of sense. */
660 modest_address_book_add_address (selection);
666 modest_ui_actions_on_accounts (GtkAction *action,
669 /* This is currently only implemented for Maemo */
670 #ifdef MODEST_PLATFORM_MAEMO /* Defined in config.h */
671 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE)) {
672 if (!modest_ui_actions_run_account_setup_wizard (win))
673 g_debug ("%s: wizard was already running", __FUNCTION__);
677 /* Show the list of accounts */
678 GtkWindow *account_win = GTK_WINDOW (modest_account_view_window_new ());
679 gtk_window_set_transient_for (account_win, GTK_WINDOW (win));
681 /* The accounts dialog must be modal */
682 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), account_win);
683 modest_maemo_show_dialog_and_forget (GTK_WINDOW (win), GTK_DIALOG (account_win));
686 GtkWidget *dialog, *label;
688 /* Create the widgets */
690 dialog = gtk_dialog_new_with_buttons ("Message",
692 GTK_DIALOG_DESTROY_WITH_PARENT,
696 label = gtk_label_new ("Hello World!");
698 /* Ensure that the dialog box is destroyed when the user responds. */
700 g_signal_connect_swapped (dialog, "response",
701 G_CALLBACK (gtk_widget_destroy),
704 /* Add the label, and show everything we've added to the dialog. */
706 gtk_container_add (GTK_CONTAINER (GTK_DIALOG(dialog)->vbox),
708 gtk_widget_show_all (dialog);
709 #endif /* MODEST_PLATFORM_MAEMO */
713 on_smtp_servers_window_hide (GtkWindow* window, gpointer user_data)
715 /* Save any changes. */
716 modest_connection_specific_smtp_window_save_server_accounts (
717 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (window));
718 gtk_widget_destroy (GTK_WIDGET (window));
724 modest_ui_actions_on_smtp_servers (GtkAction *action, ModestWindow *win)
726 /* This is currently only implemented for Maemo,
727 * because it requires an API (libconic) to detect different connection
730 #ifdef MODEST_PLATFORM_MAEMO /* Defined in config.h */
732 /* Create the window if necessary: */
733 GtkWidget *specific_window = GTK_WIDGET (modest_connection_specific_smtp_window_new ());
734 modest_connection_specific_smtp_window_fill_with_connections (
735 MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window),
736 modest_runtime_get_account_mgr());
738 /* Show the window: */
739 gtk_window_set_transient_for (GTK_WINDOW (specific_window), GTK_WINDOW (win));
740 gtk_window_set_modal (GTK_WINDOW (specific_window), TRUE);
741 gtk_widget_show (specific_window);
743 /* Save changes when the window is hidden: */
744 g_signal_connect (specific_window, "hide",
745 G_CALLBACK (on_smtp_servers_window_hide), win);
746 #endif /* MODEST_PLATFORM_MAEMO */
750 modest_ui_actions_compose_msg(ModestWindow *win,
753 const gchar *bcc_str,
754 const gchar *subject_str,
755 const gchar *body_str,
758 gchar *account_name = NULL;
760 TnyAccount *account = NULL;
761 TnyFolder *folder = NULL;
762 gchar *from_str = NULL, *signature = NULL, *body = NULL;
763 gboolean use_signature = FALSE;
764 ModestWindow *msg_win = NULL;
765 ModestAccountMgr *mgr = modest_runtime_get_account_mgr();
766 ModestTnyAccountStore *store = modest_runtime_get_account_store();
768 if (win) account_name = g_strdup (modest_window_get_active_account (win));
769 if (!account_name) account_name = modest_account_mgr_get_default_account(mgr);
771 g_printerr ("modest: no account found\n");
774 account = modest_tny_account_store_get_server_account (store, account_name, TNY_ACCOUNT_TYPE_STORE);
776 g_printerr ("modest: failed to get tnyaccount for '%s'\n", account_name);
779 folder = modest_tny_account_get_special_folder (account, TNY_FOLDER_TYPE_DRAFTS);
781 g_printerr ("modest: failed to find Drafts folder\n");
784 from_str = modest_account_mgr_get_from_string (mgr, account_name);
786 g_printerr ("modest: failed get from string for '%s'\n", account_name);
790 signature = modest_account_mgr_get_signature (mgr, account_name, &use_signature);
791 if (body_str != NULL) {
792 body = use_signature ? g_strconcat(body_str, "\n", signature, NULL) : g_strdup(body_str);
794 body = use_signature ? g_strconcat("\n", signature, NULL) : g_strdup("");
797 msg = modest_tny_msg_new (to_str, from_str, cc_str, bcc_str, subject_str, body, NULL);
799 g_printerr ("modest: failed to create new msg\n");
803 /* Create and register edit window */
804 /* This is destroyed by TODO. */
805 msg_win = modest_msg_edit_window_new (msg, account_name, FALSE);
806 while (attachments) {
807 modest_msg_edit_window_attach_file_one((ModestMsgEditWindow *)msg_win,
809 attachments = g_slist_next(attachments);
811 modest_window_mgr_register_window (modest_runtime_get_window_mgr(), msg_win);
814 gtk_window_set_transient_for (GTK_WINDOW (msg_win),
817 gtk_widget_show_all (GTK_WIDGET (msg_win));
823 g_free (account_name);
824 if (account) g_object_unref (G_OBJECT(account));
825 if (folder) g_object_unref (G_OBJECT(folder));
826 if (msg_win) g_object_unref (G_OBJECT(msg_win));
827 if (msg) g_object_unref (G_OBJECT(msg));
831 modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win)
833 /* if there are no accounts yet, just show the wizard */
834 if (!modest_account_mgr_has_accounts (modest_runtime_get_account_mgr(), TRUE))
835 if (!modest_ui_actions_run_account_setup_wizard (win))
838 modest_ui_actions_compose_msg(win, NULL, NULL, NULL, NULL, NULL, NULL);
842 modest_ui_actions_msg_retrieval_check (ModestMailOperation *mail_op,
846 ModestMailOperationStatus status;
848 /* If there is no message or the operation was not successful */
849 status = modest_mail_operation_get_status (mail_op);
850 if (!msg || status != MODEST_MAIL_OPERATION_STATUS_SUCCESS) {
852 /* Remove the header from the preregistered uids */
853 modest_window_mgr_unregister_header (modest_runtime_get_window_mgr (),
863 open_msg_cb (ModestMailOperation *mail_op,
870 ModestWindowMgr *mgr = NULL;
871 ModestWindow *parent_win = NULL;
872 ModestWindow *win = NULL;
873 TnyFolderType folder_type = TNY_FOLDER_TYPE_UNKNOWN;
874 gchar *account = NULL;
876 gboolean open_in_editor = FALSE;
878 /* Do nothing if there was any problem with the mail
879 operation. The error will be shown by the error_handler of
880 the mail operation */
881 if (!modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
884 parent_win = (ModestWindow *) modest_mail_operation_get_source (mail_op);
885 folder = tny_header_get_folder (header);
887 /* Mark header as read */
888 headers_action_mark_as_read (header, MODEST_WINDOW(parent_win), NULL);
890 /* Gets folder type (OUTBOX headers will be opened in edit window */
891 if (modest_tny_folder_is_local_folder (folder)) {
892 folder_type = modest_tny_folder_get_local_or_mmc_folder_type (folder);
893 if (folder_type == TNY_FOLDER_TYPE_INVALID)
894 g_warning ("%s: BUG: TNY_FOLDER_TYPE_INVALID", __FUNCTION__);
898 if (folder_type == TNY_FOLDER_TYPE_OUTBOX) {
899 TnyTransportAccount *traccount = NULL;
900 ModestTnyAccountStore *accstore = modest_runtime_get_account_store();
901 traccount = modest_tny_account_store_get_transport_account_from_outbox_header(accstore, header);
903 ModestTnySendQueue *send_queue = NULL;
904 ModestTnySendQueueStatus status;
906 account = g_strdup(modest_tny_account_get_parent_modest_account_name_for_server_account(
907 TNY_ACCOUNT(traccount)));
908 send_queue = modest_runtime_get_send_queue(traccount);
909 msg_id = modest_tny_send_queue_get_msg_id (header);
910 status = modest_tny_send_queue_get_msg_status(send_queue, msg_id);
911 /* Only open messages in outbox with the editor if they are in Failed state */
912 if (status == MODEST_TNY_SEND_QUEUE_FAILED) {
913 open_in_editor = TRUE;
916 g_object_unref(traccount);
918 g_warning("Cannot get transport account for message in outbox!!");
920 } else if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
921 open_in_editor = TRUE; /* Open in editor if the message is in the Drafts folder */
926 account = g_strdup (modest_window_get_active_account (MODEST_WINDOW (parent_win)));
928 account = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
930 if (open_in_editor) {
931 ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
932 const gchar *from_header = NULL;
934 from_header = tny_header_get_from (header);
936 /* we cannot edit without a valid account... */
937 if (!modest_account_mgr_has_accounts(mgr, TRUE)) {
938 if (!modest_ui_actions_run_account_setup_wizard(parent_win))
943 GSList *accounts = modest_account_mgr_account_names (mgr, TRUE);
945 for (node = accounts; node != NULL; node = g_slist_next (node)) {
946 gchar *from = modest_account_mgr_get_from_string (mgr, node->data);
948 if (from && (strcmp (from_header, from) == 0)) {
950 account = g_strdup (node->data);
956 g_slist_foreach (accounts, (GFunc) g_free, NULL);
957 g_slist_free (accounts);
960 win = modest_msg_edit_window_new (msg, account, TRUE);
964 modest_platform_information_banner (NULL, NULL, _("mail_ib_opening_draft_message"));
967 gchar *uid = modest_tny_folder_get_header_unique_id (header);
969 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
970 GtkWidget *header_view;
971 GtkTreeSelection *sel;
972 GList *sel_list = NULL;
975 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(parent_win),
976 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
978 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (header_view));
979 sel_list = gtk_tree_selection_get_selected_rows (sel, &model);
981 if (sel_list != NULL) {
982 GtkTreeRowReference *row_reference;
984 row_reference = gtk_tree_row_reference_new (model, (GtkTreePath *) sel_list->data);
985 g_list_foreach (sel_list, (GFunc) gtk_tree_path_free, NULL);
986 g_list_free (sel_list);
988 win = modest_msg_view_window_new_with_header_model (
989 msg, account, (const gchar*) uid,
990 model, row_reference);
991 gtk_tree_row_reference_free (row_reference);
993 win = modest_msg_view_window_new_for_attachment (msg, account, (const gchar*) uid);
996 win = modest_msg_view_window_new_for_attachment (msg, account, (const gchar*) uid);
1001 /* Register and show new window */
1003 mgr = modest_runtime_get_window_mgr ();
1004 modest_window_mgr_register_window (mgr, win);
1005 g_object_unref (win);
1006 gtk_widget_show_all (GTK_WIDGET(win));
1009 /* Update toolbar dimming state */
1010 if (MODEST_IS_MAIN_WINDOW (parent_win)) {
1011 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (parent_win));
1017 g_object_unref (parent_win);
1018 g_object_unref (folder);
1022 modest_ui_actions_get_msgs_full_error_handler (ModestMailOperation *mail_op,
1025 const GError *error;
1026 GObject *win = NULL;
1027 const gchar *err_msg;
1029 win = modest_mail_operation_get_source (mail_op);
1030 error = modest_mail_operation_get_error (mail_op);
1032 /* Select error message */
1033 if (error->code == MODEST_MAIL_OPERATION_ERROR_MESSAGE_SIZE_LIMIT)
1034 err_msg = _("emev_ni_ui_imap_msg_size_exceed_error");
1036 err_msg = (const gchar *) user_data;
1039 modest_platform_run_information_dialog ((GtkWindow *) win, err_msg);
1042 g_object_unref (win);
1046 * Returns the account a list of headers belongs to. It returns a
1047 * *new* reference so don't forget to unref it
1050 get_account_from_header_list (TnyList *headers)
1052 TnyAccount *account = NULL;
1054 if (tny_list_get_length (headers) > 0) {
1055 TnyIterator *iter = tny_list_create_iterator (headers);
1056 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1057 TnyFolder *folder = tny_header_get_folder (header);
1058 account = tny_folder_get_account (folder);
1059 g_object_unref (folder);
1060 g_object_unref (header);
1061 g_object_unref (iter);
1067 open_msgs_performer(gboolean canceled,
1069 GtkWindow *parent_window,
1070 TnyAccount *account,
1073 ModestMailOperation *mail_op;
1074 const gchar *proto_name;
1076 ModestTransportStoreProtocol proto;
1077 TnyList *not_opened_headers;
1079 not_opened_headers = TNY_LIST (user_data);
1081 /* Get the error message depending on the protocol */
1082 proto_name = tny_account_get_proto (account);
1083 if (proto_name != NULL) {
1084 proto = modest_protocol_info_get_transport_store_protocol (proto_name);
1086 proto = MODEST_PROTOCOL_STORE_MAILDIR;
1089 /* Create the error messages */
1090 if (tny_list_get_length (not_opened_headers) == 1) {
1091 if (proto == MODEST_PROTOCOL_STORE_POP) {
1092 error_msg = g_strdup (_("emev_ni_ui_pop3_msg_recv_error"));
1093 } else if (proto == MODEST_PROTOCOL_STORE_IMAP) {
1094 TnyIterator *iter = tny_list_create_iterator (not_opened_headers);
1095 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter));
1096 error_msg = g_strdup_printf (_("emev_ni_ui_imap_message_not_available_in_server"),
1097 tny_header_get_subject (header));
1098 g_object_unref (header);
1099 g_object_unref (iter);
1101 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1104 error_msg = g_strdup (_("mail_ni_ui_folder_get_msg_folder_error"));
1107 /* Create the mail operation */
1109 modest_mail_operation_new_with_error_handling ((GObject *) parent_window,
1110 modest_ui_actions_get_msgs_full_error_handler,
1112 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
1115 modest_mail_operation_get_msgs_full (mail_op,
1122 g_object_unref (mail_op);
1123 g_object_unref (not_opened_headers);
1124 g_object_unref (account);
1128 * This function is used by both modest_ui_actions_on_open and
1129 * modest_ui_actions_on_header_activated. This way we always do the
1130 * same when trying to open messages.
1133 open_msgs_from_headers (TnyList *headers, ModestWindow *win)
1135 ModestWindowMgr *mgr = NULL;
1136 TnyIterator *iter = NULL, *iter_not_opened = NULL;
1137 TnyList *not_opened_headers = NULL;
1138 TnyHeaderFlags flags = 0;
1139 TnyAccount *account;
1140 gint uncached_msgs = 0;
1142 g_return_if_fail (headers != NULL);
1144 /* Check that only one message is selected for opening */
1145 if (tny_list_get_length (headers) != 1) {
1146 modest_platform_run_information_dialog ((win) ? GTK_WINDOW (win) : NULL,
1147 _("mcen_ib_select_one_message"));
1151 mgr = modest_runtime_get_window_mgr ();
1152 iter = tny_list_create_iterator (headers);
1154 /* Get the account */
1155 account = get_account_from_header_list (headers);
1157 /* Look if we already have a message view for each header. If
1158 true, then remove the header from the list of headers to
1160 not_opened_headers = tny_simple_list_new ();
1161 while (!tny_iterator_is_done (iter)) {
1163 ModestWindow *window = NULL;
1164 TnyHeader *header = NULL;
1165 gboolean found = FALSE;
1167 header = TNY_HEADER (tny_iterator_get_current (iter));
1169 flags = tny_header_get_flags (header);
1172 found = modest_window_mgr_find_registered_header (mgr, header, &window);
1174 /* Do not open again the message and present the
1175 window to the user */
1178 gtk_window_present (GTK_WINDOW (window));
1180 /* the header has been registered already, we don't do
1181 * anything but wait for the window to come up*/
1182 g_debug ("header %p already registered, waiting for window", header);
1184 tny_list_append (not_opened_headers, G_OBJECT (header));
1188 g_object_unref (header);
1190 tny_iterator_next (iter);
1192 g_object_unref (iter);
1195 /* Open each message */
1196 if (tny_list_get_length (not_opened_headers) == 0)
1199 /* If some messages would have to be downloaded, ask the user to
1200 * make a connection. It's generally easier to do this here (in the mainloop)
1201 * than later in a thread:
1203 if (tny_list_get_length (not_opened_headers) > 0) {
1204 uncached_msgs = header_list_count_uncached_msgs (not_opened_headers);
1206 if (uncached_msgs > 0) {
1207 /* Allways download if we are online. */
1208 if (!tny_device_is_online (modest_runtime_get_device ())) {
1211 /* If ask for user permission to download the messages */
1212 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1213 ngettext("mcen_nc_get_msg",
1217 /* End if the user does not want to continue */
1218 if (response == GTK_RESPONSE_CANCEL)
1224 /* Register the headers before actually creating the windows: */
1225 iter_not_opened = tny_list_create_iterator (not_opened_headers);
1226 while (!tny_iterator_is_done (iter_not_opened)) {
1227 TnyHeader *header = TNY_HEADER (tny_iterator_get_current (iter_not_opened));
1229 modest_window_mgr_register_header (mgr, header, NULL);
1230 g_object_unref (header);
1232 tny_iterator_next (iter_not_opened);
1234 g_object_unref (iter_not_opened);
1235 iter_not_opened = NULL;
1237 /* Connect to the account and perform */
1238 if (uncached_msgs > 0) {
1239 modest_platform_connect_and_perform ((GtkWindow *) win, g_object_ref (account),
1240 open_msgs_performer, g_object_ref (not_opened_headers));
1242 /* Call directly the performer, do not need to connect */
1243 open_msgs_performer (FALSE, NULL, (GtkWindow *) win, g_object_ref (account),
1244 g_object_ref (not_opened_headers));
1249 g_object_unref (account);
1250 if (not_opened_headers)
1251 g_object_unref (not_opened_headers);
1255 modest_ui_actions_on_open (GtkAction *action, ModestWindow *win)
1260 headers = get_selected_headers (win);
1265 open_msgs_from_headers (headers, win);
1267 g_object_unref(headers);
1272 free_reply_forward_helper (gpointer data)
1274 ReplyForwardHelper *helper;
1276 helper = (ReplyForwardHelper *) data;
1277 g_free (helper->account_name);
1278 g_slice_free (ReplyForwardHelper, helper);
1282 reply_forward_cb (ModestMailOperation *mail_op,
1290 ReplyForwardHelper *rf_helper;
1291 ModestWindow *msg_win = NULL;
1292 ModestEditType edit_type;
1294 TnyAccount *account = NULL;
1295 ModestWindowMgr *mgr = NULL;
1296 gchar *signature = NULL;
1297 gboolean use_signature;
1299 /* If there was any error. The mail operation could be NULL,
1300 this means that we already have the message downloaded and
1301 that we didn't do a mail operation to retrieve it */
1302 if (mail_op && !modest_ui_actions_msg_retrieval_check (mail_op, header, msg))
1305 g_return_if_fail (user_data != NULL);
1306 rf_helper = (ReplyForwardHelper *) user_data;
1308 from = modest_account_mgr_get_from_string (modest_runtime_get_account_mgr(),
1309 rf_helper->account_name);
1310 signature = modest_account_mgr_get_signature (modest_runtime_get_account_mgr(),
1311 rf_helper->account_name,
1314 /* Create reply mail */
1315 switch (rf_helper->action) {
1318 modest_tny_msg_create_reply_msg (msg, header, from, signature,
1319 rf_helper->reply_forward_type,
1320 MODEST_TNY_MSG_REPLY_MODE_SENDER);
1322 case ACTION_REPLY_TO_ALL:
1324 modest_tny_msg_create_reply_msg (msg, header, from, signature, rf_helper->reply_forward_type,
1325 MODEST_TNY_MSG_REPLY_MODE_ALL);
1326 edit_type = MODEST_EDIT_TYPE_REPLY;
1328 case ACTION_FORWARD:
1330 modest_tny_msg_create_forward_msg (msg, from, signature, rf_helper->reply_forward_type);
1331 edit_type = MODEST_EDIT_TYPE_FORWARD;
1334 g_return_if_reached ();
1341 g_printerr ("modest: failed to create message\n");
1345 account = modest_tny_account_store_get_server_account (modest_runtime_get_account_store(),
1346 rf_helper->account_name,
1347 TNY_ACCOUNT_TYPE_STORE);
1349 g_printerr ("modest: failed to get tnyaccount for '%s'\n", rf_helper->account_name);
1353 /* Create and register the windows */
1354 msg_win = modest_msg_edit_window_new (new_msg, rf_helper->account_name, FALSE);
1355 mgr = modest_runtime_get_window_mgr ();
1356 modest_window_mgr_register_window (mgr, msg_win);
1358 if (rf_helper->parent_window != NULL) {
1359 gdouble parent_zoom;
1361 parent_zoom = modest_window_get_zoom (MODEST_WINDOW (rf_helper->parent_window));
1362 modest_window_set_zoom (msg_win, parent_zoom);
1365 /* Show edit window */
1366 gtk_widget_show_all (GTK_WIDGET (msg_win));
1370 g_object_unref (msg_win);
1372 g_object_unref (G_OBJECT (new_msg));
1374 g_object_unref (G_OBJECT (account));
1375 /* g_object_unref (msg); */
1376 free_reply_forward_helper (rf_helper);
1379 /* Checks a list of headers. If any of them are not currently
1380 * downloaded (CACHED) then returns TRUE else returns FALSE.
1383 header_list_count_uncached_msgs (TnyList *header_list)
1386 gint uncached_messages = 0;
1388 iter = tny_list_create_iterator (header_list);
1389 while (!tny_iterator_is_done (iter)) {
1392 header = TNY_HEADER (tny_iterator_get_current (iter));
1394 if (!(tny_header_get_flags (header) & TNY_HEADER_FLAG_CACHED))
1395 uncached_messages ++;
1396 g_object_unref (header);
1399 tny_iterator_next (iter);
1401 g_object_unref (iter);
1403 return uncached_messages;
1406 /* Returns FALSE if the user does not want to download the
1407 * messages. Returns TRUE if the user allowed the download.
1410 connect_to_get_msg (ModestWindow *win,
1411 gint num_of_uncached_msgs,
1412 TnyAccount *account)
1414 GtkResponseType response;
1416 /* Allways download if we are online. */
1417 if (tny_device_is_online (modest_runtime_get_device ()))
1420 /* If offline, then ask for user permission to download the messages */
1421 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (win),
1422 ngettext("mcen_nc_get_msg",
1424 num_of_uncached_msgs));
1426 if (response == GTK_RESPONSE_CANCEL)
1429 return modest_platform_connect_and_wait((GtkWindow *) win, account);
1433 * Common code for the reply and forward actions
1436 reply_forward (ReplyForwardAction action, ModestWindow *win)
1438 ModestMailOperation *mail_op = NULL;
1439 TnyList *header_list = NULL;
1440 ReplyForwardHelper *rf_helper = NULL;
1441 guint reply_forward_type;
1442 gboolean continue_download = TRUE;
1443 gboolean do_retrieve = TRUE;
1445 g_return_if_fail (MODEST_IS_WINDOW(win));
1447 /* we need an account when editing */
1448 if (!modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE)) {
1449 if (!modest_ui_actions_run_account_setup_wizard (win))
1453 header_list = get_selected_headers (win);
1457 reply_forward_type =
1458 modest_conf_get_int (modest_runtime_get_conf (),
1459 (action == ACTION_FORWARD) ? MODEST_CONF_FORWARD_TYPE : MODEST_CONF_REPLY_TYPE,
1462 /* check if we need to download msg before asking about it */
1463 do_retrieve = (action == ACTION_FORWARD) ||
1464 (reply_forward_type != MODEST_TNY_MSG_REPLY_TYPE_CITE);
1467 gint num_of_unc_msgs;
1469 /* check that the messages have been previously downloaded */
1470 num_of_unc_msgs = header_list_count_uncached_msgs(header_list);
1471 /* If there are any uncached message ask the user
1472 * whether he/she wants to download them. */
1473 if (num_of_unc_msgs) {
1474 TnyAccount *account = get_account_from_header_list (header_list);
1475 continue_download = connect_to_get_msg (win, num_of_unc_msgs, account);
1476 g_object_unref (account);
1480 if (!continue_download) {
1481 g_object_unref (header_list);
1485 /* We assume that we can only select messages of the
1486 same folder and that we reply all of them from the
1487 same account. In fact the interface currently only
1488 allows single selection */
1491 rf_helper = g_slice_new0 (ReplyForwardHelper);
1492 rf_helper->reply_forward_type = reply_forward_type;
1493 rf_helper->action = action;
1494 rf_helper->account_name = g_strdup (modest_window_get_active_account (win));
1496 if ((win != NULL) && (MODEST_IS_WINDOW (win)))
1497 rf_helper->parent_window = GTK_WIDGET (win);
1498 if (!rf_helper->account_name)
1499 rf_helper->account_name =
1500 modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1502 if (MODEST_IS_MSG_VIEW_WINDOW(win)) {
1505 /* Get header and message. Do not free them here, the
1506 reply_forward_cb must do it */
1507 msg = modest_msg_view_window_get_message (MODEST_MSG_VIEW_WINDOW(win));
1508 header = modest_msg_view_window_get_header (MODEST_MSG_VIEW_WINDOW(win));
1509 if (!msg || !header) {
1511 g_object_unref (msg);
1512 g_printerr ("modest: no message found\n");
1515 reply_forward_cb (NULL, header, FALSE, msg, NULL, rf_helper);
1518 g_object_unref (header);
1523 /* Only reply/forward to one message */
1524 iter = tny_list_create_iterator (header_list);
1525 header = TNY_HEADER (tny_iterator_get_current (iter));
1526 g_object_unref (iter);
1529 /* Retrieve messages */
1532 modest_mail_operation_new_with_error_handling (G_OBJECT(win),
1533 modest_ui_actions_get_msgs_full_error_handler,
1535 modest_mail_operation_queue_add (
1536 modest_runtime_get_mail_operation_queue (), mail_op);
1538 modest_mail_operation_get_msg (mail_op,
1543 g_object_unref(mail_op);
1545 /* we put a ref here to prevent double unref as the reply
1546 * forward callback unrefs the header at its end */
1547 reply_forward_cb (NULL, header, FALSE, NULL, NULL, rf_helper);
1551 g_object_unref (header);
1557 g_object_unref (header_list);
1561 modest_ui_actions_on_reply (GtkAction *action, ModestWindow *win)
1563 g_return_if_fail (MODEST_IS_WINDOW(win));
1565 reply_forward (ACTION_REPLY, win);
1569 modest_ui_actions_on_forward (GtkAction *action, ModestWindow *win)
1571 g_return_if_fail (MODEST_IS_WINDOW(win));
1573 reply_forward (ACTION_FORWARD, win);
1577 modest_ui_actions_on_reply_all (GtkAction *action, ModestWindow *win)
1579 g_return_if_fail (MODEST_IS_WINDOW(win));
1581 reply_forward (ACTION_REPLY_TO_ALL, win);
1585 modest_ui_actions_on_next (GtkAction *action,
1586 ModestWindow *window)
1588 if (MODEST_IS_MAIN_WINDOW (window)) {
1589 GtkWidget *header_view;
1591 header_view = modest_main_window_get_child_widget (
1592 MODEST_MAIN_WINDOW(window),
1593 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1597 modest_header_view_select_next (
1598 MODEST_HEADER_VIEW(header_view));
1599 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
1600 modest_msg_view_window_select_next_message (
1601 MODEST_MSG_VIEW_WINDOW (window));
1603 g_return_if_reached ();
1608 modest_ui_actions_on_prev (GtkAction *action,
1609 ModestWindow *window)
1611 g_return_if_fail (MODEST_IS_WINDOW(window));
1613 if (MODEST_IS_MAIN_WINDOW (window)) {
1614 GtkWidget *header_view;
1615 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
1616 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1620 modest_header_view_select_prev (MODEST_HEADER_VIEW(header_view));
1621 } else if (MODEST_IS_MSG_VIEW_WINDOW (window)) {
1622 modest_msg_view_window_select_previous_message (MODEST_MSG_VIEW_WINDOW (window));
1624 g_return_if_reached ();
1629 modest_ui_actions_on_sort (GtkAction *action,
1630 ModestWindow *window)
1632 g_return_if_fail (MODEST_IS_WINDOW(window));
1634 if (MODEST_IS_MAIN_WINDOW (window)) {
1635 GtkWidget *header_view;
1636 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW(window),
1637 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1639 modest_platform_information_banner (NULL, NULL, _CS("ckdg_ib_nothing_to_sort"));
1644 /* Show sorting dialog */
1645 modest_platform_run_sort_dialog (GTK_WINDOW (window), MODEST_SORT_HEADERS);
1650 new_messages_arrived (ModestMailOperation *self,
1651 TnyList *new_headers,
1656 source = modest_mail_operation_get_source (self);
1658 /* Notify new messages have been downloaded. Do not notify if
1659 the send&receive was invoked by the user, i.e, if the mail
1660 operation has a source (the main window) */
1661 if ((new_headers != NULL) && (tny_list_get_length (new_headers) > 0) && !source)
1662 modest_platform_on_new_headers_received (new_headers);
1665 g_object_unref (source);
1669 TnyAccount *account;
1671 gchar *account_name;
1675 do_send_receive_performer (gboolean canceled,
1677 GtkWindow *parent_window,
1678 TnyAccount *account,
1681 ModestMailOperation *mail_op;
1682 SendReceiveInfo *info;
1684 info = (SendReceiveInfo *) user_data;
1686 if (err || canceled) {
1691 /* Set send/receive operation in progress */
1692 if (info->win && MODEST_IS_MAIN_WINDOW (info->win)) {
1693 modest_main_window_notify_send_receive_initied (MODEST_MAIN_WINDOW (info->win));
1696 mail_op = modest_mail_operation_new_with_error_handling (G_OBJECT (info->win),
1697 modest_ui_actions_send_receive_error_handler,
1700 if (info->win && MODEST_IS_MAIN_WINDOW (info->win))
1701 g_signal_connect (G_OBJECT(mail_op), "operation-finished",
1702 G_CALLBACK (on_send_receive_finished),
1705 /* Send & receive. */
1706 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
1707 modest_mail_operation_update_account (mail_op, info->account_name, (info->win) ? FALSE : TRUE,
1708 new_messages_arrived, info->win);
1709 g_object_unref (G_OBJECT (mail_op));
1713 if (info->account_name)
1714 g_free (info->account_name);
1716 g_object_unref (info->win);
1718 g_object_unref (info->account);
1719 g_slice_free (SendReceiveInfo, info);
1723 * This function performs the send & receive required actions. The
1724 * window is used to create the mail operation. Typically it should
1725 * always be the main window, but we pass it as argument in order to
1729 modest_ui_actions_do_send_receive (const gchar *account_name,
1732 gchar *acc_name = NULL;
1733 SendReceiveInfo *info;
1734 ModestTnyAccountStore *acc_store;
1736 /* If no account name was provided then get the current account, and if
1737 there is no current account then pick the default one: */
1738 if (!account_name) {
1740 acc_name = g_strdup (modest_window_get_active_account (win));
1742 acc_name = modest_account_mgr_get_default_account (modest_runtime_get_account_mgr());
1744 g_printerr ("modest: cannot get default account\n");
1748 acc_name = g_strdup (account_name);
1751 acc_store = modest_runtime_get_account_store ();
1753 /* Create the info for the connect and perform */
1754 info = g_slice_new (SendReceiveInfo);
1755 info->account_name = acc_name;
1756 info->win = (win) ? g_object_ref (win) : NULL;
1757 info->account = modest_tny_account_store_get_server_account (acc_store, acc_name,
1758 TNY_ACCOUNT_TYPE_STORE);
1760 /* Invoke the connect and perform */
1761 modest_platform_connect_and_perform ((win) ? GTK_WINDOW (win) : NULL, info->account,
1762 do_send_receive_performer, info);
1767 modest_ui_actions_do_cancel_send (const gchar *account_name,
1770 TnyTransportAccount *transport_account;
1771 TnySendQueue *send_queue = NULL;
1772 GError *error = NULL;
1774 /* Get transport account */
1776 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
1777 (modest_runtime_get_account_store(),
1779 TNY_ACCOUNT_TYPE_TRANSPORT));
1780 if (!transport_account) {
1781 g_printerr ("modest: no transport account found for '%s'\n", account_name);
1786 send_queue = TNY_SEND_QUEUE (modest_runtime_get_send_queue (transport_account));
1787 if (!TNY_IS_SEND_QUEUE(send_queue)) {
1788 g_set_error (&error, MODEST_MAIL_OPERATION_ERROR,
1789 MODEST_MAIL_OPERATION_ERROR_ITEM_NOT_FOUND,
1790 "modest: could not find send queue for account\n");
1792 /* Keeep messages in outbox folder */
1793 tny_send_queue_cancel (send_queue, FALSE, &error);
1797 if (transport_account != NULL)
1798 g_object_unref (G_OBJECT (transport_account));
1802 modest_ui_actions_cancel_send_all (ModestWindow *win)
1804 GSList *account_names, *iter;
1806 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
1809 iter = account_names;
1811 modest_ui_actions_do_cancel_send ((const char*) iter->data, win);
1812 iter = g_slist_next (iter);
1815 modest_account_mgr_free_account_names (account_names);
1816 account_names = NULL;
1820 modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win)
1823 /* Check if accounts exist */
1824 gboolean accounts_exist =
1825 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
1827 /* If not, allow the user to create an account before trying to send/receive. */
1828 if (!accounts_exist)
1829 modest_ui_actions_on_accounts (NULL, win);
1831 /* Cancel all sending operaitons */
1832 modest_ui_actions_cancel_send_all (win);
1836 * Refreshes all accounts. This function will be used by automatic
1840 modest_ui_actions_do_send_receive_all (ModestWindow *win)
1842 GSList *account_names, *iter;
1844 account_names = modest_account_mgr_account_names (modest_runtime_get_account_mgr(),
1847 iter = account_names;
1849 modest_ui_actions_do_send_receive ((const char*) iter->data, win);
1850 iter = g_slist_next (iter);
1853 modest_account_mgr_free_account_names (account_names);
1854 account_names = NULL;
1858 * Handler of the click on Send&Receive button in the main toolbar
1861 modest_ui_actions_on_send_receive (GtkAction *action, ModestWindow *win)
1863 /* Check if accounts exist */
1864 gboolean accounts_exist =
1865 modest_account_mgr_has_accounts(modest_runtime_get_account_mgr(), TRUE);
1867 /* If not, allow the user to create an account before trying to send/receive. */
1868 if (!accounts_exist)
1869 modest_ui_actions_on_accounts (NULL, win);
1871 /* Refresh the active account */
1872 modest_ui_actions_do_send_receive (NULL, win);
1877 modest_ui_actions_toggle_header_list_view (GtkAction *action, ModestMainWindow *main_window)
1880 GtkWidget *header_view;
1882 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
1884 header_view = modest_main_window_get_child_widget (main_window,
1885 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
1889 conf = modest_runtime_get_conf ();
1891 /* what is saved/restored is depending on the style; thus; we save with
1892 * old style, then update the style, and restore for this new style
1894 modest_widget_memory_save (conf, G_OBJECT(header_view), MODEST_CONF_HEADER_VIEW_KEY);
1896 if (modest_header_view_get_style
1897 (MODEST_HEADER_VIEW(header_view)) == MODEST_HEADER_VIEW_STYLE_DETAILS)
1898 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
1899 MODEST_HEADER_VIEW_STYLE_TWOLINES);
1901 modest_header_view_set_style (MODEST_HEADER_VIEW(header_view),
1902 MODEST_HEADER_VIEW_STYLE_DETAILS);
1904 modest_widget_memory_restore (conf, G_OBJECT(header_view),
1905 MODEST_CONF_HEADER_VIEW_KEY);
1910 modest_ui_actions_on_header_selected (ModestHeaderView *header_view,
1912 ModestMainWindow *main_window)
1914 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
1915 g_return_if_fail (MODEST_IS_HEADER_VIEW (header_view));
1917 /* in the case the folder is empty, show the empty folder message and focus
1919 if (!header && gtk_widget_is_focus (GTK_WIDGET (header_view))) {
1920 if (modest_header_view_is_empty (header_view)) {
1921 TnyFolder *folder = modest_header_view_get_folder (header_view);
1922 GtkWidget *folder_view =
1923 modest_main_window_get_child_widget (main_window,
1924 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
1926 modest_folder_view_select_folder (MODEST_FOLDER_VIEW (folder_view), folder, FALSE);
1927 gtk_widget_grab_focus (GTK_WIDGET (folder_view));
1931 /* If no header has been selected then exit */
1936 if (!gtk_widget_is_focus (GTK_WIDGET(header_view)))
1937 gtk_widget_grab_focus (GTK_WIDGET(header_view));
1939 /* Update toolbar dimming state */
1940 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
1944 modest_ui_actions_on_header_activated (ModestHeaderView *header_view,
1946 ModestMainWindow *main_window)
1950 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
1955 if (modest_header_view_count_selected_headers (header_view) > 1) {
1956 hildon_banner_show_information (NULL, NULL, _("mcen_ib_select_one_message"));
1961 /* headers = tny_simple_list_new (); */
1962 /* tny_list_prepend (headers, G_OBJECT (header)); */
1963 headers = modest_header_view_get_selected_headers (header_view);
1965 open_msgs_from_headers (headers, MODEST_WINDOW (main_window));
1967 g_object_unref (headers);
1971 set_active_account_from_tny_account (TnyAccount *account,
1972 ModestWindow *window)
1974 const gchar *server_acc_name = tny_account_get_id (account);
1976 /* We need the TnyAccount provided by the
1977 account store because that is the one that
1978 knows the name of the Modest account */
1979 TnyAccount *modest_server_account = modest_server_account =
1980 modest_tny_account_store_get_tny_account_by (modest_runtime_get_account_store (),
1981 MODEST_TNY_ACCOUNT_STORE_QUERY_ID,
1983 if (!modest_server_account) {
1984 g_warning ("%s: could not get tny account\n", __FUNCTION__);
1988 /* Update active account, but only if it's not a pseudo-account */
1989 if ((!modest_tny_account_is_virtual_local_folders(modest_server_account)) &&
1990 (!modest_tny_account_is_memory_card_account(modest_server_account))) {
1991 const gchar *modest_acc_name =
1992 modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
1993 if (modest_acc_name)
1994 modest_window_set_active_account (window, modest_acc_name);
1997 g_object_unref (modest_server_account);
2002 folder_refreshed_cb (ModestMailOperation *mail_op,
2006 ModestMainWindow *win = NULL;
2007 GtkWidget *header_view;
2008 gboolean folder_empty = FALSE;
2009 gboolean all_marked_as_deleted = FALSE;
2011 g_return_if_fail (TNY_IS_FOLDER (folder));
2013 win = MODEST_MAIN_WINDOW (user_data);
2015 modest_main_window_get_child_widget(win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2018 TnyFolder *current_folder;
2020 current_folder = modest_header_view_get_folder (MODEST_HEADER_VIEW (header_view));
2021 if (current_folder != NULL && folder != current_folder) {
2022 g_object_unref (current_folder);
2025 g_object_unref (current_folder);
2028 /* Check if folder is empty and set headers view contents style */
2029 folder_empty = (tny_folder_get_all_count (folder) == 0);
2030 all_marked_as_deleted = modest_header_view_is_empty (MODEST_HEADER_VIEW(header_view));
2031 if (folder_empty || all_marked_as_deleted)
2032 modest_main_window_set_contents_style (win,
2033 MODEST_MAIN_WINDOW_CONTENTS_STYLE_EMPTY);
2037 modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder_view,
2038 TnyFolderStore *folder_store,
2040 ModestMainWindow *main_window)
2043 GtkWidget *header_view;
2045 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2047 header_view = modest_main_window_get_child_widget(main_window,
2048 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2052 conf = modest_runtime_get_conf ();
2054 if (TNY_IS_ACCOUNT (folder_store)) {
2056 set_active_account_from_tny_account (TNY_ACCOUNT (folder_store), MODEST_WINDOW (main_window));
2058 /* Show account details */
2059 modest_main_window_set_contents_style (main_window, MODEST_MAIN_WINDOW_CONTENTS_STYLE_DETAILS);
2062 if (TNY_IS_FOLDER (folder_store) && selected) {
2064 /* Update the active account */
2065 TnyAccount *account = modest_tny_folder_get_account (TNY_FOLDER (folder_store));
2067 set_active_account_from_tny_account (account, MODEST_WINDOW (main_window));
2068 g_object_unref (account);
2072 /* Set the header style by default, it could
2073 be changed later by the refresh callback to
2075 modest_main_window_set_contents_style (main_window,
2076 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS);
2078 /* Set folder on header view. This function
2079 will call tny_folder_refresh_async so we
2080 pass a callback that will be called when
2081 finished. We use that callback to set the
2082 empty view if there are no messages */
2083 modest_header_view_set_folder (MODEST_HEADER_VIEW(header_view),
2084 TNY_FOLDER (folder_store),
2085 folder_refreshed_cb,
2088 /* Restore configuration. We need to do this
2089 *after* the set_folder because the widget
2090 memory asks the header view about its
2092 modest_widget_memory_restore (modest_runtime_get_conf (),
2093 G_OBJECT(header_view),
2094 MODEST_CONF_HEADER_VIEW_KEY);
2096 /* Update the active account */
2097 //modest_window_set_active_account (MODEST_WINDOW (main_window), NULL);
2098 /* Save only if we're seeing headers */
2099 if (modest_main_window_get_contents_style (main_window) ==
2100 MODEST_MAIN_WINDOW_CONTENTS_STYLE_HEADERS)
2101 modest_widget_memory_save (conf, G_OBJECT (header_view),
2102 MODEST_CONF_HEADER_VIEW_KEY);
2103 modest_header_view_clear (MODEST_HEADER_VIEW(header_view));
2107 /* Update toolbar dimming state */
2108 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (main_window));
2112 modest_ui_actions_on_item_not_found (ModestHeaderView *header_view,ModestItemType type,
2119 item = (type == MODEST_ITEM_TYPE_FOLDER) ? "folder" : "message";
2121 online = tny_device_is_online (modest_runtime_get_device());
2124 /* already online -- the item is simply not there... */
2125 dialog = gtk_message_dialog_new (GTK_WINDOW (win),
2127 GTK_MESSAGE_WARNING,
2129 _("The %s you selected cannot be found"),
2131 gtk_dialog_add_button (GTK_DIALOG (dialog),_("mcen_bd_dialog_ok"), GTK_RESPONSE_ACCEPT);
2132 gtk_dialog_run (GTK_DIALOG(dialog));
2134 dialog = gtk_dialog_new_with_buttons (_("Connection requested"),
2137 _("mcen_bd_dialog_cancel"),
2138 GTK_RESPONSE_REJECT,
2139 _("mcen_bd_dialog_ok"),
2140 GTK_RESPONSE_ACCEPT,
2142 txt = g_strdup_printf (_("This %s is not available in offline mode.\n"
2143 "Do you want to get online?"), item);
2144 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox),
2145 gtk_label_new (txt), FALSE, FALSE, 0);
2146 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
2149 gtk_window_set_default_size (GTK_WINDOW(dialog), 300, 300);
2150 if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
2151 /* TODO: Comment about why is this commented out: */
2152 /* modest_platform_connect_and_wait (); */
2155 gtk_widget_destroy (dialog);
2159 modest_ui_actions_on_msg_link_hover (ModestMsgView *msgview, const gchar* link,
2162 /* g_message ("%s %s", __FUNCTION__, link); */
2167 modest_ui_actions_on_msg_link_clicked (ModestMsgView *msgview, const gchar* link,
2170 modest_platform_activate_uri (link);
2174 modest_ui_actions_on_msg_link_contextual (ModestMsgView *msgview, const gchar* link,
2177 modest_platform_show_uri_popup (link);
2181 modest_ui_actions_on_msg_attachment_clicked (ModestMsgView *msgview, TnyMimePart *mime_part,
2184 modest_msg_view_window_view_attachment (MODEST_MSG_VIEW_WINDOW (win), mime_part);
2188 modest_ui_actions_on_msg_recpt_activated (ModestMsgView *msgview,
2189 const gchar *address,
2192 /* g_message ("%s %s", __FUNCTION__, address); */
2196 on_save_to_drafts_cb (ModestMailOperation *mail_op,
2197 TnyMsg *saved_draft,
2200 ModestMsgEditWindow *edit_window;
2201 ModestMainWindow *win;
2203 /* FIXME. Make the header view sensitive again. This is a
2204 * temporary hack. See modest_ui_actions_on_save_to_drafts()
2206 win = MODEST_MAIN_WINDOW(modest_window_mgr_get_main_window(
2207 modest_runtime_get_window_mgr(), FALSE));
2209 GtkWidget *hdrview = modest_main_window_get_child_widget(
2210 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2211 if (hdrview) gtk_widget_set_sensitive(hdrview, TRUE);
2214 edit_window = MODEST_MSG_EDIT_WINDOW (user_data);
2216 /* If there was any error do nothing */
2217 if (modest_mail_operation_get_error (mail_op) != NULL)
2220 modest_msg_edit_window_set_draft (edit_window, saved_draft);
2224 modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2226 TnyTransportAccount *transport_account;
2227 ModestMailOperation *mail_operation;
2229 gchar *account_name, *from;
2230 ModestAccountMgr *account_mgr;
2233 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window));
2235 data = modest_msg_edit_window_get_msg_data (edit_window);
2237 account_name = g_strdup (data->account_name);
2238 account_mgr = modest_runtime_get_account_mgr();
2240 account_name = g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2242 account_name = modest_account_mgr_get_default_account (account_mgr);
2243 if (!account_name) {
2244 g_printerr ("modest: no account found\n");
2245 modest_msg_edit_window_free_msg_data (edit_window, data);
2249 if (!strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID)) {
2250 account_name = g_strdup (data->account_name);
2254 TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2255 (modest_runtime_get_account_store(),
2257 TNY_ACCOUNT_TYPE_TRANSPORT));
2258 if (!transport_account) {
2259 g_printerr ("modest: no transport account found for '%s'\n", account_name);
2260 g_free (account_name);
2261 modest_msg_edit_window_free_msg_data (edit_window, data);
2264 from = modest_account_mgr_get_from_string (account_mgr, account_name);
2266 /* Create the mail operation */
2267 mail_operation = modest_mail_operation_new (G_OBJECT(edit_window));
2268 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2270 modest_mail_operation_save_to_drafts (mail_operation,
2282 data->priority_flags,
2283 on_save_to_drafts_cb,
2285 info_text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
2286 modest_platform_information_banner (NULL, NULL, info_text);
2291 g_free (account_name);
2292 g_object_unref (G_OBJECT (transport_account));
2293 g_object_unref (G_OBJECT (mail_operation));
2295 modest_msg_edit_window_free_msg_data (edit_window, data);
2296 modest_msg_edit_window_reset_modified (edit_window);
2299 * If the drafts folder is selected then make the header view
2300 * insensitive while the message is being saved to drafts
2301 * (it'll be sensitive again in on_save_to_drafts_cb()). This
2302 * is not very clean but it avoids letting the drafts folder
2303 * in an inconsistent state: the user could edit the message
2304 * being saved and undesirable things would happen.
2305 * In the average case the user won't notice anything at
2306 * all. In the worst case (the user is editing a really big
2307 * file from Drafts) the header view will be insensitive
2308 * during the saving process (10 or 20 seconds, depending on
2309 * the message). Anyway this is just a quick workaround: once
2310 * we find a better solution it should be removed
2311 * See NB#65125 (commend #18) for details.
2313 ModestMainWindow *win = MODEST_MAIN_WINDOW(modest_window_mgr_get_main_window(
2314 modest_runtime_get_window_mgr(), FALSE));
2316 ModestFolderView *view = MODEST_FOLDER_VIEW(modest_main_window_get_child_widget(
2317 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW));
2319 TnyFolder *folder = TNY_FOLDER(modest_folder_view_get_selected(view));
2321 if (modest_tny_folder_is_local_folder(folder)) {
2322 TnyFolderType folder_type;
2323 folder_type = modest_tny_folder_get_local_or_mmc_folder_type(folder);
2324 if (folder_type == TNY_FOLDER_TYPE_DRAFTS) {
2325 GtkWidget *hdrview = modest_main_window_get_child_widget(
2326 win, MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2327 if (hdrview) gtk_widget_set_sensitive(hdrview, FALSE);
2331 if (folder != NULL) g_object_unref(folder);
2336 /* For instance, when clicking the Send toolbar button when editing a message: */
2338 modest_ui_actions_on_send (GtkWidget *widget, ModestMsgEditWindow *edit_window)
2340 TnyTransportAccount *transport_account = NULL;
2342 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW(edit_window));
2344 if (!modest_msg_edit_window_check_names (edit_window, TRUE))
2347 /* FIXME: Code added just for testing. The final version will
2348 use the send queue provided by tinymail and some
2350 MsgData *data = modest_msg_edit_window_get_msg_data (edit_window);
2352 ModestAccountMgr *account_mgr = modest_runtime_get_account_mgr();
2353 gchar *account_name = g_strdup (data->account_name);
2355 g_strdup(modest_window_get_active_account (MODEST_WINDOW(edit_window)));
2358 account_name = modest_account_mgr_get_default_account (account_mgr);
2360 if (!account_name) {
2361 modest_msg_edit_window_free_msg_data (edit_window, data);
2362 /* Run account setup wizard */
2363 if (!modest_ui_actions_run_account_setup_wizard (MODEST_WINDOW(edit_window)))
2367 /* Get the currently-active transport account for this modest account: */
2368 /* TnyTransportAccount *transport_account = */
2369 /* TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_transport_account_for_open_connection */
2370 /* (modest_runtime_get_account_store(), */
2371 /* account_name)); */
2372 if (strcmp (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) != 0) {
2373 transport_account = TNY_TRANSPORT_ACCOUNT(modest_tny_account_store_get_server_account
2374 (modest_runtime_get_account_store(),
2375 account_name, TNY_ACCOUNT_TYPE_TRANSPORT));
2378 if (!transport_account) {
2379 /* Run account setup wizard */
2380 if (!modest_ui_actions_run_account_setup_wizard(MODEST_WINDOW(edit_window)))
2384 gchar *from = modest_account_mgr_get_from_string (account_mgr, account_name);
2386 /* Create the mail operation */
2387 ModestMailOperation *mail_operation = modest_mail_operation_new (G_OBJECT(edit_window));
2388 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_operation);
2390 modest_mail_operation_send_new_mail (mail_operation,
2402 data->priority_flags);
2404 if (modest_mail_operation_get_status (mail_operation) == MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS)
2405 modest_platform_information_banner (NULL, NULL, _("mcen_ib_outbox_waiting_to_be_sent"));
2410 g_free (account_name);
2411 g_object_unref (G_OBJECT (transport_account));
2412 g_object_unref (G_OBJECT (mail_operation));
2414 modest_msg_edit_window_free_msg_data (edit_window, data);
2415 modest_msg_edit_window_set_sent (edit_window, TRUE);
2417 /* Save settings and close the window: */
2418 modest_ui_actions_on_close_window (NULL, MODEST_WINDOW (edit_window));
2422 modest_ui_actions_on_toggle_bold (GtkToggleAction *action,
2423 ModestMsgEditWindow *window)
2425 ModestMsgEditFormatState *format_state = NULL;
2427 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2428 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2430 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2433 format_state = modest_msg_edit_window_get_format_state (window);
2434 g_return_if_fail (format_state != NULL);
2436 format_state->bold = gtk_toggle_action_get_active (action);
2437 modest_msg_edit_window_set_format_state (window, format_state);
2438 g_free (format_state);
2443 modest_ui_actions_on_toggle_italics (GtkToggleAction *action,
2444 ModestMsgEditWindow *window)
2446 ModestMsgEditFormatState *format_state = NULL;
2448 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2449 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2451 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2454 format_state = modest_msg_edit_window_get_format_state (window);
2455 g_return_if_fail (format_state != NULL);
2457 format_state->italics = gtk_toggle_action_get_active (action);
2458 modest_msg_edit_window_set_format_state (window, format_state);
2459 g_free (format_state);
2464 modest_ui_actions_on_toggle_bullets (GtkToggleAction *action,
2465 ModestMsgEditWindow *window)
2467 ModestMsgEditFormatState *format_state = NULL;
2469 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2470 g_return_if_fail (GTK_IS_TOGGLE_ACTION (action));
2472 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW (window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2475 format_state = modest_msg_edit_window_get_format_state (window);
2476 g_return_if_fail (format_state != NULL);
2478 format_state->bullet = gtk_toggle_action_get_active (action);
2479 modest_msg_edit_window_set_format_state (window, format_state);
2480 g_free (format_state);
2485 modest_ui_actions_on_change_justify (GtkRadioAction *action,
2486 GtkRadioAction *selected,
2487 ModestMsgEditWindow *window)
2489 ModestMsgEditFormatState *format_state = NULL;
2490 GtkJustification value;
2492 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2494 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2497 value = gtk_radio_action_get_current_value (selected);
2499 format_state = modest_msg_edit_window_get_format_state (window);
2500 g_return_if_fail (format_state != NULL);
2502 format_state->justification = value;
2503 modest_msg_edit_window_set_format_state (window, format_state);
2504 g_free (format_state);
2508 modest_ui_actions_on_select_editor_color (GtkAction *action,
2509 ModestMsgEditWindow *window)
2511 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2512 g_return_if_fail (GTK_IS_ACTION (action));
2514 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2517 modest_msg_edit_window_select_color (window);
2521 modest_ui_actions_on_select_editor_background_color (GtkAction *action,
2522 ModestMsgEditWindow *window)
2524 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2525 g_return_if_fail (GTK_IS_ACTION (action));
2527 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2530 modest_msg_edit_window_select_background_color (window);
2534 modest_ui_actions_on_insert_image (GtkAction *action,
2535 ModestMsgEditWindow *window)
2537 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2538 g_return_if_fail (GTK_IS_ACTION (action));
2540 if (modest_msg_edit_window_get_format (MODEST_MSG_EDIT_WINDOW(window)) == MODEST_MSG_EDIT_FORMAT_TEXT)
2543 modest_msg_edit_window_insert_image (window);
2547 modest_ui_actions_on_attach_file (GtkAction *action,
2548 ModestMsgEditWindow *window)
2550 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2551 g_return_if_fail (GTK_IS_ACTION (action));
2553 modest_msg_edit_window_offer_attach_file (window);
2557 modest_ui_actions_on_remove_attachments (GtkAction *action,
2558 ModestMsgEditWindow *window)
2560 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
2561 g_return_if_fail (GTK_IS_ACTION (action));
2563 modest_msg_edit_window_remove_attachments (window, NULL);
2567 modest_ui_actions_new_folder_error_handler (ModestMailOperation *mail_op,
2570 ModestMainWindow *window = MODEST_MAIN_WINDOW (user_data);
2571 const GError *error = modest_mail_operation_get_error (mail_op);
2574 modest_platform_information_banner (GTK_WIDGET (window), NULL,
2575 _("mail_in_ui_folder_create_error"));
2580 modest_ui_actions_create_folder(GtkWidget *parent_window,
2581 GtkWidget *folder_view)
2583 TnyFolderStore *parent_folder;
2585 parent_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
2587 if (parent_folder) {
2588 gboolean finished = FALSE;
2590 gchar *folder_name = NULL, *suggested_name = NULL;
2591 const gchar *proto_str = NULL;
2592 TnyAccount *account;
2594 if (TNY_IS_ACCOUNT (parent_folder))
2595 account = g_object_ref (parent_folder);
2597 account = tny_folder_get_account (TNY_FOLDER (parent_folder));
2598 proto_str = tny_account_get_proto (TNY_ACCOUNT (account));
2600 if (proto_str && modest_protocol_info_get_transport_store_protocol (proto_str) ==
2601 MODEST_PROTOCOL_STORE_POP) {
2603 hildon_banner_show_information (NULL, NULL, _("mail_in_ui_folder_create_error"));
2605 g_object_unref (account);
2607 /* Run the new folder dialog */
2609 result = modest_platform_run_new_folder_dialog (GTK_WINDOW (parent_window),
2614 g_free (suggested_name);
2615 suggested_name = NULL;
2617 if (result == GTK_RESPONSE_ACCEPT) {
2618 ModestMailOperation *mail_op;
2619 TnyFolder *new_folder = NULL;
2621 mail_op = modest_mail_operation_new_with_error_handling (G_OBJECT(parent_window),
2622 modest_ui_actions_new_folder_error_handler,
2623 parent_window, NULL);
2625 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
2627 new_folder = modest_mail_operation_create_folder (mail_op,
2629 (const gchar *) folder_name);
2631 modest_folder_view_select_folder (MODEST_FOLDER_VIEW(folder_view),
2634 g_object_unref (new_folder);
2637 g_object_unref (mail_op);
2642 suggested_name = folder_name;
2646 g_object_unref (parent_folder);
2651 modest_ui_actions_on_new_folder (GtkAction *action, ModestMainWindow *main_window)
2653 GtkWidget *folder_view;
2655 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2657 folder_view = modest_main_window_get_child_widget (main_window,
2658 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2662 modest_ui_actions_create_folder (GTK_WIDGET (main_window), folder_view);
2666 modest_ui_actions_rename_folder_error_handler (ModestMailOperation *mail_op,
2669 ModestMainWindow *window = MODEST_MAIN_WINDOW (user_data);
2670 const GError *error = NULL;
2671 const gchar *message = NULL;
2673 /* Get error message */
2674 error = modest_mail_operation_get_error (mail_op);
2676 g_return_if_reached ();
2678 switch (error->code) {
2679 case MODEST_MAIL_OPERATION_ERROR_FOLDER_EXISTS:
2680 message = _CS("ckdg_ib_folder_already_exists");
2683 g_warning ("%s: BUG: unexpected error:[%d]: %s", __FUNCTION__,
2684 error->code, error->message);
2688 modest_platform_information_banner (GTK_WIDGET (window), NULL, message);
2692 modest_ui_actions_on_rename_folder (GtkAction *action,
2693 ModestMainWindow *main_window)
2695 TnyFolderStore *folder;
2696 GtkWidget *folder_view;
2697 GtkWidget *header_view;
2699 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2701 folder_view = modest_main_window_get_child_widget (main_window,
2702 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2706 header_view = modest_main_window_get_child_widget (main_window,
2707 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
2712 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view));
2717 if (TNY_IS_FOLDER (folder)) {
2720 const gchar *current_name;
2721 TnyFolderStore *parent;
2722 gboolean do_rename = TRUE;
2724 current_name = tny_folder_get_name (TNY_FOLDER (folder));
2725 parent = tny_folder_get_folder_store (TNY_FOLDER (folder));
2726 response = modest_platform_run_rename_folder_dialog (GTK_WINDOW (main_window),
2727 parent, current_name,
2729 g_object_unref (parent);
2731 if (response != GTK_RESPONSE_ACCEPT || strlen (folder_name) == 0) {
2733 } else if (modest_platform_is_network_folderstore(folder) &&
2734 !tny_device_is_online (modest_runtime_get_device())) {
2735 TnyAccount *account = tny_folder_get_account(TNY_FOLDER(folder));
2736 do_rename = modest_platform_connect_and_wait(GTK_WINDOW(main_window), account);
2737 g_object_unref(account);
2741 ModestMailOperation *mail_op;
2742 GtkTreeSelection *sel = NULL;
2745 modest_mail_operation_new_with_error_handling (G_OBJECT(main_window),
2746 modest_ui_actions_rename_folder_error_handler,
2749 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
2752 /* Clear the headers view */
2753 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
2754 gtk_tree_selection_unselect_all (sel);
2756 /* Select *after* the changes */
2757 modest_folder_view_select_folder (MODEST_FOLDER_VIEW(folder_view),
2758 TNY_FOLDER(folder), TRUE);
2760 /* Actually rename the folder */
2761 modest_mail_operation_rename_folder (mail_op,
2762 TNY_FOLDER (folder),
2763 (const gchar *) folder_name);
2765 g_object_unref (mail_op);
2766 g_free (folder_name);
2769 g_object_unref (folder);
2773 modest_ui_actions_delete_folder_error_handler (ModestMailOperation *mail_op,
2776 GObject *win = modest_mail_operation_get_source (mail_op);
2778 modest_platform_run_information_dialog ((win) ? GTK_WINDOW (win) : NULL,
2779 _("mail_in_ui_folder_delete_error"));
2780 g_object_unref (win);
2784 delete_folder (ModestMainWindow *main_window, gboolean move_to_trash)
2786 TnyFolderStore *folder;
2787 GtkWidget *folder_view;
2790 gboolean do_delete = TRUE;
2792 g_return_val_if_fail (MODEST_IS_MAIN_WINDOW (main_window), FALSE);
2794 folder_view = modest_main_window_get_child_widget (main_window,
2795 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2799 folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
2801 /* Show an error if it's an account */
2802 if (!TNY_IS_FOLDER (folder)) {
2803 modest_platform_run_information_dialog (GTK_WINDOW (main_window),
2804 _("mail_in_ui_folder_delete_error"));
2805 g_object_unref (G_OBJECT (folder));
2810 message = g_strdup_printf (_("mcen_nc_delete_folder_text"),
2811 tny_folder_get_name (TNY_FOLDER (folder)));
2812 response = modest_platform_run_confirmation_dialog (GTK_WINDOW (main_window),
2813 (const gchar *) message);
2816 if (response != GTK_RESPONSE_OK) {
2818 } else if (modest_platform_is_network_folderstore(folder) &&
2819 !tny_device_is_online (modest_runtime_get_device())) {
2820 TnyAccount *account = tny_folder_get_account(TNY_FOLDER(folder));
2821 do_delete = modest_platform_connect_and_wait(GTK_WINDOW(main_window), account);
2822 g_object_unref(account);
2826 ModestMailOperation *mail_op;
2827 GtkTreeSelection *sel;
2829 /* Unselect the folder before deleting it to free the headers */
2830 sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (folder_view));
2831 gtk_tree_selection_unselect_all (sel);
2833 /* Create the mail operation */
2835 modest_mail_operation_new_with_error_handling (G_OBJECT(main_window),
2836 modest_ui_actions_delete_folder_error_handler,
2839 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (),
2841 modest_mail_operation_remove_folder (mail_op, TNY_FOLDER (folder), move_to_trash);
2842 g_object_unref (G_OBJECT (mail_op));
2845 g_object_unref (G_OBJECT (folder));
2851 modest_ui_actions_on_delete_folder (GtkAction *action,
2852 ModestMainWindow *main_window)
2854 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2856 if (delete_folder (main_window, FALSE)) {
2857 GtkWidget *folder_view;
2859 folder_view = modest_main_window_get_child_widget (main_window,
2860 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
2861 modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (folder_view));
2866 modest_ui_actions_on_move_folder_to_trash_folder (GtkAction *action, ModestMainWindow *main_window)
2868 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
2870 delete_folder (main_window, TRUE);
2875 show_error (GtkWidget *parent_widget, const gchar* text)
2877 hildon_banner_show_information(parent_widget, NULL, text);
2880 GtkDialog *dialog = GTK_DIALOG (hildon_note_new_information (parent_window, text)); */
2882 GtkDialog *dialog = GTK_DIALOG (gtk_message_dialog_new (parent_window,
2889 gtk_dialog_run (dialog);
2890 gtk_widget_destroy (GTK_WIDGET (dialog));
2895 modest_ui_actions_on_password_requested (TnyAccountStore *account_store,
2896 const gchar* server_account_name,
2901 ModestMainWindow *main_window)
2903 g_return_if_fail(server_account_name);
2905 /* Initalize output parameters: */
2912 #ifdef MODEST_PLATFORM_MAEMO
2913 /* Maemo uses a different (awkward) button order,
2914 * It should probably just use gtk_alternative_dialog_button_order ().
2916 GtkWidget *dialog = gtk_dialog_new_with_buttons (_("mail_ti_password_protected"),
2919 _("mcen_bd_dialog_ok"),
2920 GTK_RESPONSE_ACCEPT,
2921 _("mcen_bd_dialog_cancel"),
2922 GTK_RESPONSE_REJECT,
2925 GtkWidget *dialog = gtk_dialog_new_with_buttons (_("mail_ti_password_protected"),
2929 GTK_RESPONSE_REJECT,
2931 GTK_RESPONSE_ACCEPT,
2933 #endif /* MODEST_PLATFORM_MAEMO */
2935 gtk_window_set_transient_for (GTK_WINDOW(dialog), GTK_WINDOW(main_window));
2937 gchar *server_name = modest_account_mgr_get_server_account_hostname (
2938 modest_runtime_get_account_mgr(), server_account_name);
2939 if (!server_name) {/* This happened once, though I don't know why. murrayc. */
2940 g_warning("%s: Could not get server name for server account '%s'", __FUNCTION__, server_account_name);
2946 /* This causes a warning because the logical ID has no %s in it,
2947 * though the translation does, but there is not much we can do about that: */
2948 gchar *txt = g_strdup_printf (_("mail_ia_password_info"), server_name);
2949 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), gtk_label_new(txt),
2952 g_free (server_name);
2956 gchar *initial_username = modest_account_mgr_get_server_account_username (
2957 modest_runtime_get_account_mgr(), server_account_name);
2959 GtkWidget *entry_username = gtk_entry_new ();
2960 if (initial_username)
2961 gtk_entry_set_text (GTK_ENTRY (entry_username), initial_username);
2962 /* Dim this if a connection has ever succeeded with this username,
2963 * as per the UI spec: */
2964 const gboolean username_known =
2965 modest_account_mgr_get_server_account_username_has_succeeded(
2966 modest_runtime_get_account_mgr(), server_account_name);
2967 gtk_widget_set_sensitive (entry_username, !username_known);
2969 #ifdef MODEST_PLATFORM_MAEMO
2970 /* Auto-capitalization is the default, so let's turn it off: */
2971 hildon_gtk_entry_set_input_mode (GTK_ENTRY (entry_username), HILDON_GTK_INPUT_MODE_FULL);
2973 /* Create a size group to be used by all captions.
2974 * Note that HildonCaption does not create a default size group if we do not specify one.
2975 * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
2976 GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
2978 GtkWidget *caption = hildon_caption_new (sizegroup,
2979 _("mail_fi_username"), entry_username, NULL, HILDON_CAPTION_MANDATORY);
2980 gtk_widget_show (entry_username);
2981 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), caption,
2982 FALSE, FALSE, MODEST_MARGIN_HALF);
2983 gtk_widget_show (caption);
2985 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), entry_username,
2987 #endif /* MODEST_PLATFORM_MAEMO */
2990 GtkWidget *entry_password = gtk_entry_new ();
2991 gtk_entry_set_visibility (GTK_ENTRY(entry_password), FALSE);
2992 /* gtk_entry_set_invisible_char (GTK_ENTRY(entry_password), "*"); */
2994 #ifdef MODEST_PLATFORM_MAEMO
2995 /* Auto-capitalization is the default, so let's turn it off: */
2996 hildon_gtk_entry_set_input_mode (GTK_ENTRY (entry_password),
2997 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
2999 caption = hildon_caption_new (sizegroup,
3000 _("mail_fi_password"), entry_password, NULL, HILDON_CAPTION_MANDATORY);
3001 gtk_widget_show (entry_password);
3002 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), caption,
3003 FALSE, FALSE, MODEST_MARGIN_HALF);
3004 gtk_widget_show (caption);
3005 g_object_unref (sizegroup);
3007 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), entry_password,
3009 #endif /* MODEST_PLATFORM_MAEMO */
3011 if (initial_username != NULL)
3012 gtk_widget_grab_focus (GTK_WIDGET (entry_password));
3014 /* This is not in the Maemo UI spec:
3015 remember_pass_check = gtk_check_button_new_with_label (_("Remember password"));
3016 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), remember_pass_check,
3020 gtk_widget_show_all (GTK_WIDGET(GTK_DIALOG(dialog)->vbox));
3022 if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
3024 *username = g_strdup (gtk_entry_get_text (GTK_ENTRY(entry_username)));
3026 modest_account_mgr_set_server_account_username (
3027 modest_runtime_get_account_mgr(), server_account_name,
3030 const gboolean username_was_changed =
3031 (strcmp (*username, initial_username) != 0);
3032 if (username_was_changed) {
3033 g_warning ("%s: tinymail does not yet support changing the "
3034 "username in the get_password() callback.\n", __FUNCTION__);
3039 *password = g_strdup (gtk_entry_get_text (GTK_ENTRY(entry_password)));
3041 /* We do not save the password in the configuration,
3042 * because this function is only called for passwords that should
3043 * not be remembered:
3044 modest_server_account_set_password (
3045 modest_runtime_get_account_mgr(), server_account_name,
3054 show_error(GTK_WIDGET (main_window), _("mail_ib_login_cancelled"));
3066 /* This is not in the Maemo UI spec:
3067 if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (remember_pass_check)))
3073 gtk_widget_destroy (dialog);
3075 /* printf ("DEBUG: %s: cancel=%d\n", __FUNCTION__, *cancel); */
3079 modest_ui_actions_on_cut (GtkAction *action,
3080 ModestWindow *window)
3082 GtkWidget *focused_widget;
3083 GtkClipboard *clipboard;
3085 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
3086 focused_widget = gtk_window_get_focus (GTK_WINDOW (window));
3087 if (GTK_IS_EDITABLE (focused_widget)) {
3088 gtk_editable_cut_clipboard (GTK_EDITABLE(focused_widget));
3089 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3090 gtk_clipboard_store (clipboard);
3091 } else if (GTK_IS_TEXT_VIEW (focused_widget)) {
3092 GtkTextBuffer *buffer;
3094 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (focused_widget));
3095 gtk_text_buffer_cut_clipboard (buffer, clipboard, TRUE);
3096 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3097 gtk_clipboard_store (clipboard);
3098 } else if (MODEST_IS_HEADER_VIEW (focused_widget)) {
3099 TnyList *header_list = modest_header_view_get_selected_headers (
3100 MODEST_HEADER_VIEW (focused_widget));
3101 gboolean continue_download = FALSE;
3102 gint num_of_unc_msgs;
3104 num_of_unc_msgs = header_list_count_uncached_msgs(header_list);
3106 if (num_of_unc_msgs) {
3107 TnyAccount *account = get_account_from_header_list (header_list);
3108 continue_download = connect_to_get_msg (window, num_of_unc_msgs, account);
3109 g_object_unref (account);
3112 if (num_of_unc_msgs == 0 || continue_download) {
3113 /* modest_platform_information_banner (
3114 NULL, NULL, _CS("mcen_ib_getting_items"));*/
3115 modest_header_view_cut_selection (
3116 MODEST_HEADER_VIEW (focused_widget));
3119 g_object_unref (header_list);
3120 } else if (MODEST_IS_FOLDER_VIEW (focused_widget)) {
3121 modest_folder_view_cut_selection (MODEST_FOLDER_VIEW (focused_widget));
3126 modest_ui_actions_on_copy (GtkAction *action,
3127 ModestWindow *window)
3129 GtkClipboard *clipboard;
3130 GtkWidget *focused_widget;
3131 gboolean copied = TRUE;
3133 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
3134 focused_widget = gtk_window_get_focus (GTK_WINDOW (window));
3136 if (GTK_IS_LABEL (focused_widget)) {
3137 gtk_clipboard_set_text (clipboard, gtk_label_get_text (GTK_LABEL (focused_widget)), -1);
3138 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3139 gtk_clipboard_store (clipboard);
3140 } else if (GTK_IS_EDITABLE (focused_widget)) {
3141 gtk_editable_copy_clipboard (GTK_EDITABLE(focused_widget));
3142 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3143 gtk_clipboard_store (clipboard);
3144 } else if (GTK_IS_HTML (focused_widget)) {
3145 gtk_html_copy (GTK_HTML (focused_widget));
3146 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3147 gtk_clipboard_store (clipboard);
3148 } else if (GTK_IS_TEXT_VIEW (focused_widget)) {
3149 GtkTextBuffer *buffer;
3150 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (focused_widget));
3151 gtk_text_buffer_copy_clipboard (buffer, clipboard);
3152 gtk_clipboard_set_can_store (clipboard, NULL, 0);
3153 gtk_clipboard_store (clipboard);
3154 } else if (MODEST_IS_HEADER_VIEW (focused_widget)) {
3155 TnyList *header_list = modest_header_view_get_selected_headers (
3156 MODEST_HEADER_VIEW (focused_widget));
3157 gboolean continue_download = FALSE;
3158 gint num_of_unc_msgs;
3160 num_of_unc_msgs = header_list_count_uncached_msgs(header_list);
3162 if (num_of_unc_msgs) {
3163 TnyAccount *account = get_account_from_header_list (header_list);
3164 continue_download = connect_to_get_msg (window, num_of_unc_msgs, account);
3165 g_object_unref (account);
3168 if (num_of_unc_msgs == 0 || continue_download) {
3169 modest_platform_information_banner (
3170 NULL, NULL, _CS("mcen_ib_getting_items"));
3171 modest_header_view_copy_selection (
3172 MODEST_HEADER_VIEW (focused_widget));
3176 g_object_unref (header_list);
3178 } else if (MODEST_IS_FOLDER_VIEW (focused_widget)) {
3179 modest_folder_view_copy_selection (MODEST_FOLDER_VIEW (focused_widget));
3182 /* Show information banner if there was a copy to clipboard */
3184 modest_platform_information_banner (
3185 NULL, NULL, _CS("ecoc_ib_edwin_copied"));
3189 modest_ui_actions_on_undo (GtkAction *action,
3190 ModestWindow *window)
3192 ModestEmailClipboard *clipboard = NULL;
3194 if (MODEST_IS_MSG_EDIT_WINDOW (window)) {
3195 modest_msg_edit_window_undo (MODEST_MSG_EDIT_WINDOW (window));
3196 } else if (MODEST_IS_MAIN_WINDOW (window)) {
3197 /* Clear clipboard source */
3198 clipboard = modest_runtime_get_email_clipboard ();
3199 modest_email_clipboard_clear (clipboard);
3202 g_return_if_reached ();
3207 modest_ui_actions_on_redo (GtkAction *action,
3208 ModestWindow *window)
3210 if (MODEST_IS_MSG_EDIT_WINDOW (window)) {
3211 modest_msg_edit_window_redo (MODEST_MSG_EDIT_WINDOW (window));
3214 g_return_if_reached ();
3220 destroy_information_note (ModestMailOperation *mail_op, gpointer user_data)
3222 /* destroy information note */
3223 gtk_widget_destroy (GTK_WIDGET(user_data));
3228 paste_as_attachment_free (gpointer data)
3230 PasteAsAttachmentHelper *helper = (PasteAsAttachmentHelper *) data;
3232 gtk_widget_destroy (helper->banner);
3233 g_object_unref (helper->banner);
3238 paste_msg_as_attachment_cb (ModestMailOperation *mail_op,
3243 PasteAsAttachmentHelper *helper = (PasteAsAttachmentHelper *) userdata;
3244 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (helper->window));
3249 modest_msg_edit_window_add_part (MODEST_MSG_EDIT_WINDOW (helper->window), TNY_MIME_PART (msg));
3254 modest_ui_actions_on_paste (GtkAction *action,
3255 ModestWindow *window)
3257 GtkWidget *focused_widget = NULL;
3258 GtkWidget *inf_note = NULL;
3259 ModestMailOperation *mail_op = NULL;
3261 focused_widget = gtk_window_get_focus (GTK_WINDOW (window));
3262 if (GTK_IS_EDITABLE (focused_widget)) {
3263 gtk_editable_paste_clipboard (GTK_EDITABLE(focused_widget));
3264 } else if (GTK_IS_TEXT_VIEW (focused_widget)) {
3265 ModestEmailClipboard *e_clipboard = NULL;
3266 e_clipboard = modest_runtime_get_email_clipboard ();
3267 if (modest_email_clipboard_cleared (e_clipboard)) {
3268 GtkTextBuffer *buffer;
3269 GtkClipboard *clipboard;
3271 clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
3272 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (focused_widget));
3273 gtk_text_buffer_paste_clipboard (buffer, clipboard, NULL, TRUE);
3274 } else if (MODEST_IS_MSG_EDIT_WINDOW (window)) {
3275 ModestMailOperation *mail_op;
3276 TnyFolder *src_folder;
3279 PasteAsAttachmentHelper *helper = g_new0 (PasteAsAttachmentHelper, 1);
3280 helper->window = MODEST_MSG_EDIT_WINDOW (window);
3281 helper->banner = modest_platform_animation_banner (GTK_WIDGET (window), NULL,
3282 _CS("ckct_nw_pasting"));
3283 modest_email_clipboard_get_data (e_clipboard, &src_folder, &data, &delete);
3284 mail_op = modest_mail_operation_new (G_OBJECT (window));
3285 if (helper->banner != NULL) {
3286 g_object_ref (G_OBJECT (helper->banner));
3287 gtk_window_set_modal (GTK_WINDOW (helper->banner), FALSE);
3288 gtk_widget_show (GTK_WIDGET (helper->banner));
3292 modest_mail_operation_get_msgs_full (mail_op,
3294 (GetMsgAsyncUserCallback) paste_msg_as_attachment_cb,
3296 paste_as_attachment_free);
3299 } else if (MODEST_IS_FOLDER_VIEW (focused_widget)) {
3300 ModestEmailClipboard *clipboard = NULL;
3301 TnyFolder *src_folder = NULL;
3302 TnyFolderStore *folder_store = NULL;
3303 TnyList *data = NULL;
3304 gboolean delete = FALSE;
3306 /* Check clipboard source */
3307 clipboard = modest_runtime_get_email_clipboard ();
3308 if (modest_email_clipboard_cleared (clipboard))
3311 /* Get elements to paste */
3312 modest_email_clipboard_get_data (clipboard, &src_folder, &data, &delete);
3314 /* Create a new mail operation */
3315 mail_op = modest_mail_operation_new (G_OBJECT(window));
3317 /* Get destination folder */
3318 folder_store = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (focused_widget));
3320 /* transfer messages */
3324 /* Ask for user confirmation */
3326 modest_ui_actions_msgs_move_to_confirmation (window,
3327 TNY_FOLDER (folder_store),
3331 if (response == GTK_RESPONSE_OK) {
3332 /* Launch notification */
3333 inf_note = modest_platform_animation_banner (GTK_WIDGET (window), NULL,
3334 _CS("ckct_nw_pasting"));
3335 if (inf_note != NULL) {
3336 gtk_window_set_modal (GTK_WINDOW(inf_note), FALSE);
3337 gtk_widget_show (GTK_WIDGET(inf_note));
3340 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
3341 modest_mail_operation_xfer_msgs (mail_op,
3343 TNY_FOLDER (folder_store),
3345 destroy_information_note,
3348 g_object_unref (mail_op);
3351 } else if (src_folder != NULL) {
3352 /* Launch notification */
3353 inf_note = modest_platform_animation_banner (GTK_WIDGET (window), NULL,
3354 _CS("ckct_nw_pasting"));
3355 if (inf_note != NULL) {
3356 gtk_window_set_modal (GTK_WINDOW(inf_note), FALSE);
3357 gtk_widget_show (GTK_WIDGET(inf_note));
3360 modest_mail_operation_queue_add (modest_runtime_get_mail_operation_queue (), mail_op);
3361 modest_mail_operation_xfer_folder (mail_op,
3365 destroy_information_note,
3371 g_object_unref (data);
3372 if (src_folder != NULL)
3373 g_object_unref (src_folder);
3374 if (folder_store != NULL)
3375 g_object_unref (folder_store);
3381 modest_ui_actions_on_select_all (GtkAction *action,
3382 ModestWindow *window)
3384 GtkWidget *focused_widget;
3386 focused_widget = gtk_window_get_focus (GTK_WINDOW (window));
3387 if (MODEST_IS_ATTACHMENTS_VIEW (focused_widget)) {
3388 modest_attachments_view_select_all (MODEST_ATTACHMENTS_VIEW (focused_widget));
3389 } else if (GTK_IS_LABEL (focused_widget)) {
3390 gtk_label_select_region (GTK_LABEL (focused_widget), 0, -1);
3391 } else if (GTK_IS_EDITABLE (focused_widget)) {
3392 gtk_editable_select_region (GTK_EDITABLE(focused_widget), 0, -1);
3393 } else if (GTK_IS_TEXT_VIEW (focused_widget)) {
3394 GtkTextBuffer *buffer;
3395 GtkTextIter start, end;
3397 buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (focused_widget));
3398 gtk_text_buffer_get_start_iter (buffer, &start);
3399 gtk_text_buffer_get_end_iter (buffer, &end);
3400 gtk_text_buffer_select_range (buffer, &start, &end);
3401 } else if (GTK_IS_HTML (focused_widget)) {
3402 gtk_html_select_all (GTK_HTML (focused_widget));
3403 } else if (MODEST_IS_MAIN_WINDOW (window)) {
3404 GtkWidget *header_view = focused_widget;
3405 GtkTreeSelection *selection = NULL;
3407 if (!(MODEST_IS_HEADER_VIEW (focused_widget))) {
3408 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (window),
3409 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
3412 /* Disable window dimming management */
3413 modest_window_disable_dimming (MODEST_WINDOW(window));
3415 /* Select all messages */
3416 selection = gtk_tree_view_get_selection (GTK_TREE_VIEW(header_view));
3417 gtk_tree_selection_select_all (selection);
3419 /* Set focuse on header view */
3420 gtk_widget_grab_focus (header_view);
3423 /* Enable window dimming management */
3424 modest_window_enable_dimming (MODEST_WINDOW(window));
3425 modest_ui_actions_check_toolbar_dimming_rules (MODEST_WINDOW (window));
3431 modest_ui_actions_on_mark_as_read (GtkAction *action,
3432 ModestWindow *window)
3434 g_return_if_fail (MODEST_IS_WINDOW(window));
3436 /* Mark each header as read */
3437 do_headers_action (window, headers_action_mark_as_read, NULL);
3441 modest_ui_actions_on_mark_as_unread (GtkAction *action,
3442 ModestWindow *window)
3444 g_return_if_fail (MODEST_IS_WINDOW(window));
3446 /* Mark each header as read */
3447 do_headers_action (window, headers_action_mark_as_unread, NULL);
3451 modest_ui_actions_on_change_zoom (GtkRadioAction *action,
3452 GtkRadioAction *selected,
3453 ModestWindow *window)
3457 value = gtk_radio_action_get_current_value (selected);
3458 if (MODEST_IS_WINDOW (window)) {
3459 modest_window_set_zoom (MODEST_WINDOW (window), ((gdouble)value)/100);
3464 modest_ui_actions_msg_edit_on_change_priority (GtkRadioAction *action,
3465 GtkRadioAction *selected,
3466 ModestWindow *window)
3468 TnyHeaderFlags flags;
3469 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3471 flags = gtk_radio_action_get_current_value (selected);
3472 modest_msg_edit_window_set_priority_flags (MODEST_MSG_EDIT_WINDOW (window), flags);
3476 modest_ui_actions_msg_edit_on_change_file_format (GtkRadioAction *action,
3477 GtkRadioAction *selected,
3478 ModestWindow *window)
3482 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3484 file_format = gtk_radio_action_get_current_value (selected);
3485 modest_msg_edit_window_set_file_format (MODEST_MSG_EDIT_WINDOW (window), file_format);
3490 modest_ui_actions_on_zoom_plus (GtkAction *action,
3491 ModestWindow *window)
3493 g_return_if_fail (MODEST_IS_WINDOW (window));
3495 modest_window_zoom_plus (MODEST_WINDOW (window));
3499 modest_ui_actions_on_zoom_minus (GtkAction *action,
3500 ModestWindow *window)
3502 g_return_if_fail (MODEST_IS_WINDOW (window));
3504 modest_window_zoom_minus (MODEST_WINDOW (window));
3508 modest_ui_actions_on_toggle_fullscreen (GtkToggleAction *toggle,
3509 ModestWindow *window)
3511 ModestWindowMgr *mgr;
3512 gboolean fullscreen, active;
3513 g_return_if_fail (MODEST_IS_WINDOW (window));
3515 mgr = modest_runtime_get_window_mgr ();
3517 active = (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (toggle)))?1:0;
3518 fullscreen = modest_window_mgr_get_fullscreen_mode (mgr);
3520 if (active != fullscreen) {
3521 modest_window_mgr_set_fullscreen_mode (mgr, active);
3522 gtk_window_present (GTK_WINDOW (window));
3527 modest_ui_actions_on_change_fullscreen (GtkAction *action,
3528 ModestWindow *window)
3530 ModestWindowMgr *mgr;
3531 gboolean fullscreen;
3533 g_return_if_fail (MODEST_IS_WINDOW (window));
3535 mgr = modest_runtime_get_window_mgr ();
3536 fullscreen = modest_window_mgr_get_fullscreen_mode (mgr);
3537 modest_window_mgr_set_fullscreen_mode (mgr, !fullscreen);
3539 gtk_window_present (GTK_WINDOW (window));
3543 * Used by modest_ui_actions_on_details to call do_headers_action
3546 headers_action_show_details (TnyHeader *header,
3547 ModestWindow *window,
3554 dialog = modest_details_dialog_new_with_header (GTK_WINDOW (window), header);
3557 gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
3558 gtk_widget_show_all (dialog);
3559 gtk_dialog_run (GTK_DIALOG (dialog));
3561 gtk_widget_destroy (dialog);
3565 * Show the folder details in a ModestDetailsDialog widget
3568 show_folder_details (TnyFolder *folder,
3574 dialog = modest_details_dialog_new_with_folder (window, folder);
3577 gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
3578 gtk_widget_show_all (dialog);
3579 gtk_dialog_run (GTK_DIALOG (dialog));
3581 gtk_widget_destroy (dialog);
3585 * Show the header details in a ModestDetailsDialog widget
3588 modest_ui_actions_on_details (GtkAction *action,
3591 TnyList * headers_list;
3595 if (MODEST_IS_MSG_VIEW_WINDOW (win)) {
3598 msg = modest_msg_view_window_get_message (MODEST_MSG_VIEW_WINDOW (win));
3601 g_object_unref (msg);
3603 headers_list = get_selected_headers (win);
3607 iter = tny_list_create_iterator (headers_list);
3609 header = TNY_HEADER (tny_iterator_get_current (iter));
3611 headers_action_show_details (header, win, NULL);
3612 g_object_unref (header);
3615 g_object_unref (iter);
3616 g_object_unref (headers_list);
3618 } else if (MODEST_IS_MAIN_WINDOW (win)) {
3619 GtkWidget *folder_view, *header_view;
3621 /* Check which widget has the focus */
3622 folder_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
3623 MODEST_MAIN_WINDOW_WIDGET_TYPE_FOLDER_VIEW);
3624 if (gtk_widget_is_focus (folder_view)) {
3625 TnyFolderStore *folder_store
3626 = modest_folder_view_get_selected (MODEST_FOLDER_VIEW (folder_view));
3627 if (!folder_store) {
3628 g_warning ("%s: No item was selected.\n", __FUNCTION__);
3631 /* Show only when it's a folder */
3632 /* This function should not be called for account items,
3633 * because we dim the menu item for them. */
3634 if (TNY_IS_FOLDER (folder_store)) {
3635 show_folder_details (TNY_FOLDER (folder_store), GTK_WINDOW (win));
3638 g_object_unref (folder_store);
3641 header_view = modest_main_window_get_child_widget (MODEST_MAIN_WINDOW (win),
3642 MODEST_MAIN_WINDOW_WIDGET_TYPE_HEADER_VIEW);
3643 /* Show details of each header */
3644 do_headers_action (win, headers_action_show_details, header_view);
3650 modest_ui_actions_on_toggle_show_cc (GtkToggleAction *toggle,
3651 ModestMsgEditWindow *window)
3653 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3655 modest_msg_edit_window_show_cc (window, gtk_toggle_action_get_active (toggle));
3659 modest_ui_actions_on_toggle_show_bcc (GtkToggleAction *toggle,
3660 ModestMsgEditWindow *window)
3662 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3664 modest_msg_edit_window_show_bcc (window, gtk_toggle_action_get_active (toggle));
3668 modest_ui_actions_toggle_folders_view (GtkAction *action,
3669 ModestMainWindow *main_window)
3671 g_return_if_fail (MODEST_IS_MAIN_WINDOW(main_window));
3673 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)))
3674 modest_main_window_set_style (main_window, MODEST_MAIN_WINDOW_STYLE_SPLIT);
3676 modest_main_window_set_style (main_window, MODEST_MAIN_WINDOW_STYLE_SIMPLE);
3680 modest_ui_actions_on_toggle_toolbar (GtkToggleAction *toggle,
3681 ModestWindow *window)
3683 gboolean active, fullscreen = FALSE;
3684 ModestWindowMgr *mgr;
3686 active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (toggle));
3688 /* Check if we want to toggle the toolbar vuew in fullscreen
3690 if (!strcmp (gtk_action_get_name (GTK_ACTION (toggle)),
3691 "ViewShowToolbarFullScreen")) {
3695 /* Toggle toolbar */
3696 mgr = modest_runtime_get_window_mgr ();
3697 modest_window_mgr_show_toolbars (mgr, G_TYPE_FROM_INSTANCE (window), active, fullscreen);
3701 modest_ui_actions_msg_edit_on_select_font (GtkAction *action,
3702 ModestMsgEditWindow *window)
3704 modest_msg_edit_window_select_font (window);
3708 modest_ui_actions_on_folder_display_name_changed (ModestFolderView *folder_view,
3709 const gchar *display_name,
3712 /* This is usually used to change the title of the main window, which
3713 * is the one that holds the folder view. Note that this change can
3714 * happen even when the widget doesn't have the focus. */
3716 gtk_window_set_title (window, display_name);
3718 gtk_window_set_title (window, " ");
3722 modest_ui_actions_on_select_contacts (GtkAction *action, ModestMsgEditWindow *window)
3724 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3725 modest_msg_edit_window_select_contacts (window);
3729 modest_ui_actions_on_check_names (GtkAction *action, ModestMsgEditWindow *window)
3731 g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
3732 modest_msg_edit_window_check_names (window, FALSE);
3736 create_move_to_dialog_on_new_folder(GtkWidget *button, gpointer user_data)
3738 modest_ui_actions_create_folder (gtk_widget_get_toplevel (button),
3739 GTK_WIDGET (user_data));
3743 * This function is used to track changes in the selection of the
3744 * folder view that is inside the "move to" dialog to enable/disable
3745 * the OK button because we do not want the user to select a disallowed
3746 * destination for a folder.
3747 * The user also not desired to be able to use NEW button on items where
3748 * folder creation is not possibel.