
* mail-config.glade: Split "Other" page into three pages, Display, Composer, and PGP. Add HTML image stuff on the Display page and default forward style on the Composer page. * mail-config.c (mail_config_get_default_forward_style, mail_config_set_default_forward_style): User-specified default style for forwarding messages. (config_read, mail_config_write_on_exit): Deal with forward style. * mail-accounts.c: Handle HTML image display options and default forward style. * mail-callbacks.c (forward): New. Forward in the user-selected default style. (forward_inline, forward_quoted): Simplify these some. Remove the fallback to forward attached when forwarding multiple messages: it should just forward the multiple messages inline or quoted in those cases. (Which it doesn't yet, but that's a bug.) * folder-browser.c (context_menu): Remove "Forward inline" and make "Forward" call forward() rather than forward_attached(). * folder-browser-factory.c: Update command/menu/toolbar/pixmap gunk for the "MessageForwardAttached" vs "MessageForward" split. * mail-session.c (mail_session_get_type): * mail-format.c (format_mime_part): * mail-account-gui.c (setup_service): Fix warnings. svn path=/trunk/; revision=9792
393 lines
12 KiB
C
393 lines
12 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* folder-browser-factory.c: A Bonobo Control factory for Folder Browsers
|
|
*
|
|
* Author:
|
|
* Miguel de Icaza (miguel@helixcode.com)
|
|
*
|
|
* (C) 2000 Helix Code, Inc.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <bonobo/bonobo-main.h>
|
|
#include <bonobo/bonobo-object.h>
|
|
#include <bonobo/bonobo-generic-factory.h>
|
|
#include <bonobo/bonobo-control.h>
|
|
#include <bonobo/bonobo-ui-component.h>
|
|
#include <bonobo/bonobo-ui-util.h>
|
|
|
|
#include <gal/util/e-util.h>
|
|
#include <gal/widgets/e-gui-utils.h>
|
|
|
|
#include "widgets/menus/gal-view-menus.h"
|
|
|
|
#include <gal/menus/gal-view-factory-etable.h>
|
|
#include <gal/menus/gal-view-etable.h>
|
|
|
|
#include "folder-browser-factory.h"
|
|
|
|
#include "folder-browser.h"
|
|
#include "mail.h"
|
|
#include "mail-callbacks.h"
|
|
#include "shell/Evolution.h"
|
|
#include "mail-config.h"
|
|
#include "mail-ops.h"
|
|
#include "mail-session.h"
|
|
|
|
#include "e-util/e-gui-utils.h"
|
|
#include "camel/camel-vtrash-folder.h"
|
|
|
|
/* The FolderBrowser BonoboControls we have. */
|
|
static EList *control_list = NULL;
|
|
|
|
/*
|
|
* Add with 'folder_browser'
|
|
*/
|
|
BonoboUIVerb verbs [] = {
|
|
BONOBO_UI_UNSAFE_VERB ("PrintMessage", print_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("PrintPreviewMessage", print_preview_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MailGetSend", send_receive_mail),
|
|
BONOBO_UI_UNSAFE_VERB ("MailCompose", compose_msg),
|
|
|
|
/* Edit Menu */
|
|
BONOBO_UI_UNSAFE_VERB ("EditSelectAll", select_all),
|
|
BONOBO_UI_UNSAFE_VERB ("EditInvertSelection", invert_selection),
|
|
|
|
/* Settings Menu */
|
|
BONOBO_UI_UNSAFE_VERB ("SetMailFilter", filter_edit),
|
|
BONOBO_UI_UNSAFE_VERB ("SetVFolder", vfolder_edit_vfolders),
|
|
BONOBO_UI_UNSAFE_VERB ("SetMailConfig", providers_config),
|
|
BONOBO_UI_UNSAFE_VERB ("SetSubscribe", manage_subscriptions),
|
|
BONOBO_UI_UNSAFE_VERB ("SetForgetPwd", mail_session_forget_passwords),
|
|
|
|
/* Message Menu */
|
|
BONOBO_UI_UNSAFE_VERB ("MessageOpen", open_message),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageResend", resend_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageSaveAs", save_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessagePrint", print_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageReplySender", reply_to_sender),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageReplyAll", reply_to_all),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageForward", forward),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageForwardAttached", forward_attached),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageForwardInline", forward_inline),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageForwardQuoted", forward_quoted),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageMarkAsRead", mark_as_seen),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageMarkAsUnRead", mark_as_unseen),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageMarkAllAsRead", mark_all_as_seen),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageMove", move_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageCopy", copy_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageDelete", delete_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageUndelete", undelete_msg),
|
|
|
|
/*BONOBO_UI_UNSAFE_VERB ("MessageAddSenderToAddressBook", addrbook_sender),*/
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageApplyFilters", apply_filters),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageVFolderSubject", vfolder_subject),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageVFolderSender", vfolder_sender),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageVFolderRecipient", vfolder_recipient),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageVFolderMailingList", vfolder_mlist),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageFilterSubject", filter_subject),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageFilterSender", filter_sender),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageFilterRecipient", filter_recipient),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageFilterMailingList", filter_mlist),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageHideClear", hide_none),
|
|
BONOBO_UI_UNSAFE_VERB ("MessageHideRead", hide_read),
|
|
/*BONOBO_UI_UNSAFE_VERB ("MessageHideDeleted", hide_deleted),*/
|
|
BONOBO_UI_UNSAFE_VERB ("MessageHideSelected", hide_selected),
|
|
|
|
/* Folder Menu */
|
|
BONOBO_UI_UNSAFE_VERB ("FolderExpunge", expunge_folder),
|
|
BONOBO_UI_UNSAFE_VERB ("FolderConfig", configure_folder),
|
|
BONOBO_UI_UNSAFE_VERB ("EmptyTrash", empty_trash),
|
|
|
|
/* Toolbar specific */
|
|
BONOBO_UI_UNSAFE_VERB ("MailStop", stop_threads),
|
|
BONOBO_UI_UNSAFE_VERB ("MailPrevious", previous_msg),
|
|
BONOBO_UI_UNSAFE_VERB ("MailNext", next_msg),
|
|
|
|
BONOBO_UI_UNSAFE_VERB ("MessageSearch", search_msg),
|
|
|
|
BONOBO_UI_VERB_END
|
|
};
|
|
|
|
static EPixmap pixcache [] = {
|
|
E_PIXMAP ("/menu/File/New/NewFirstItem/MessageNew", "new-message.xpm"),
|
|
E_PIXMAP ("/menu/File/Folder/FolderConfig", "configure_16_folder.xpm"),
|
|
E_PIXMAP ("/menu/File/Print/Print", "print.xpm"),
|
|
E_PIXMAP ("/menu/File/Print/Print Preview", "print-preview.xpm"),
|
|
|
|
E_PIXMAP ("/menu/Edit/MessageDelete", "delete_message.xpm"),
|
|
E_PIXMAP ("/menu/Edit/MessageUndelete", "undelete_message.xpm"),
|
|
|
|
/*E_PIXMAP ("/menu/View/MessageHideDeleted", "hide_deleted_messages.xpm"),*/
|
|
E_PIXMAP ("/menu/View/MessageHideRead", "hide_read_messages.xpm"),
|
|
E_PIXMAP ("/menu/View/MessageHideSelected", "hide_selected_messages.xpm"),
|
|
E_PIXMAP ("/menu/View/MessageHideClear", "show_all_messages.xpm"),
|
|
|
|
E_PIXMAP ("/menu/Actions/Component/SendReceive", "send-receive.xpm"),
|
|
E_PIXMAP ("/menu/Actions/Component/MessageCopy", "copy_16_message.xpm"),
|
|
E_PIXMAP ("/menu/Actions/Component/MessageMove", "move_message.xpm"),
|
|
E_PIXMAP ("/menu/Actions/Component/MessageReplyAll", "reply_to_all.xpm"),
|
|
E_PIXMAP ("/menu/Actions/Component/MessageReplySender", "reply.xpm"),
|
|
E_PIXMAP ("/menu/Actions/Component/MessageForward", "forward.xpm"),
|
|
|
|
E_PIXMAP ("/menu/Tools/Component/SetMailConfig", "configure_16_mail.xpm"),
|
|
|
|
E_PIXMAP ("/Toolbar/MailGet", "buttons/send-24-receive.png"),
|
|
E_PIXMAP ("/Toolbar/MailCompose", "buttons/compose-message.png"),
|
|
E_PIXMAP ("/Toolbar/Reply", "buttons/reply.png"),
|
|
E_PIXMAP ("/Toolbar/ReplyAll", "buttons/reply-to-all.png"),
|
|
E_PIXMAP ("/Toolbar/Forward", "buttons/forward.png"),
|
|
E_PIXMAP ("/Toolbar/Move", "buttons/move-message.png"),
|
|
E_PIXMAP ("/Toolbar/Copy", "buttons/copy-message.png"),
|
|
|
|
E_PIXMAP_END
|
|
};
|
|
|
|
static void
|
|
display_view(GalViewCollection *collection,
|
|
GalView *view,
|
|
gpointer data)
|
|
{
|
|
FolderBrowser *fb = data;
|
|
if (GAL_IS_VIEW_ETABLE(view)) {
|
|
e_tree_set_state_object(fb->message_list->tree, GAL_VIEW_ETABLE(view)->state);
|
|
}
|
|
}
|
|
|
|
static void
|
|
folder_browser_setup_view_menus (FolderBrowser *fb,
|
|
BonoboUIComponent *uic)
|
|
{
|
|
GalViewCollection *collection;
|
|
GalViewMenus *views;
|
|
GalViewFactory *factory;
|
|
ETableSpecification *spec;
|
|
char *spec_string, *local_dir;
|
|
|
|
collection = gal_view_collection_new();
|
|
/* FIXME: Memory leak. */
|
|
local_dir = gnome_util_prepend_user_home ("/evolution/views/mail/");
|
|
|
|
gal_view_collection_set_storage_directories(
|
|
collection,
|
|
EVOLUTION_DATADIR "/evolution/views/mail/",
|
|
local_dir);
|
|
g_free (local_dir);
|
|
|
|
spec_string = message_list_get_layout(fb->message_list);
|
|
spec = e_table_specification_new();
|
|
e_table_specification_load_from_string(spec, spec_string);
|
|
g_free(spec_string);
|
|
|
|
factory = gal_view_factory_etable_new(spec);
|
|
gal_view_collection_add_factory(collection, factory);
|
|
gtk_object_sink(GTK_OBJECT(factory));
|
|
|
|
gal_view_collection_load(collection);
|
|
|
|
views = gal_view_menus_new(collection);
|
|
gal_view_menus_apply(views, uic, NULL); /* This function probably needs to sink the views object. */
|
|
gtk_signal_connect(GTK_OBJECT(collection), "display_view",
|
|
display_view, fb);
|
|
/* gtk_object_sink(GTK_OBJECT(views)); */
|
|
|
|
gtk_object_sink(GTK_OBJECT(collection));
|
|
}
|
|
|
|
static void
|
|
folder_browser_setup_property_menu (FolderBrowser *fb,
|
|
BonoboUIComponent *uic)
|
|
{
|
|
char *name, *base = NULL;
|
|
|
|
if (fb->uri)
|
|
base = g_basename (fb->uri);
|
|
|
|
if (base && base [0] != 0)
|
|
name = g_strdup_printf (_("Properties for \"%s\""), base);
|
|
else
|
|
name = g_strdup (_("Properties"));
|
|
|
|
bonobo_ui_component_set_prop (
|
|
uic, "/menu/File/Folder/FolderConfig",
|
|
"label", name, NULL);
|
|
g_free (name);
|
|
}
|
|
|
|
static void
|
|
control_activate (BonoboControl *control,
|
|
BonoboUIComponent *uic,
|
|
FolderBrowser *fb)
|
|
{
|
|
GtkWidget *folder_browser;
|
|
Bonobo_UIContainer container;
|
|
int state;
|
|
|
|
container = bonobo_control_get_remote_ui_container (control);
|
|
bonobo_ui_component_set_container (uic, container);
|
|
bonobo_object_release_unref (container, NULL);
|
|
|
|
g_assert (container == bonobo_ui_component_get_container (uic));
|
|
g_return_if_fail (container != CORBA_OBJECT_NIL);
|
|
|
|
folder_browser = bonobo_control_get_widget (control);
|
|
|
|
bonobo_ui_component_add_verb_list_with_data (
|
|
uic, verbs, folder_browser);
|
|
|
|
bonobo_ui_component_freeze (uic, NULL);
|
|
|
|
bonobo_ui_util_set_ui (
|
|
uic, EVOLUTION_DATADIR,
|
|
"evolution-mail.xml", "evolution-mail");
|
|
|
|
state = mail_config_get_thread_list();
|
|
bonobo_ui_component_set_prop(uic, "/commands/ViewThreaded", "state", state?"1":"0", NULL);
|
|
bonobo_ui_component_add_listener(uic, "ViewThreaded", folder_browser_toggle_threads, folder_browser);
|
|
/* FIXME: this kind of bypasses bonobo but seems the only way when we change components */
|
|
folder_browser_toggle_threads(uic, "", Bonobo_UIComponent_STATE_CHANGED, state?"1":"0", folder_browser);
|
|
|
|
state = mail_config_get_view_source();
|
|
bonobo_ui_component_set_prop(uic, "/commands/ViewSource", "state", state?"1":"0", NULL);
|
|
bonobo_ui_component_add_listener(uic, "ViewSource", folder_browser_toggle_view_source, folder_browser);
|
|
/* FIXME: this kind of bypasses bonobo but seems the only way when we change components */
|
|
folder_browser_toggle_view_source(uic, "", Bonobo_UIComponent_STATE_CHANGED, state?"1":"0", folder_browser);
|
|
|
|
if (fb->folder && CAMEL_IS_VTRASH_FOLDER(fb->folder)) {
|
|
bonobo_ui_component_set_prop(uic, "/commands/HideDeleted", "sensitive", "0", NULL);
|
|
state = FALSE;
|
|
} else {
|
|
state = mail_config_get_hide_deleted();
|
|
}
|
|
bonobo_ui_component_set_prop(uic, "/commands/HideDeleted", "state", state?"1":"0", NULL);
|
|
bonobo_ui_component_add_listener(uic, "HideDeleted", folder_browser_toggle_hide_deleted, folder_browser);
|
|
/* FIXME: this kind of bypasses bonobo but seems the only way when we change components */
|
|
folder_browser_toggle_hide_deleted(uic, "", Bonobo_UIComponent_STATE_CHANGED, state?"1":"0", folder_browser);
|
|
|
|
folder_browser_setup_view_menus (fb, uic);
|
|
folder_browser_setup_property_menu (fb, uic);
|
|
|
|
e_pixmaps_update (uic, pixcache);
|
|
|
|
bonobo_ui_component_set_prop(uic, "/commands/MailStop", "sensitive", "0", NULL);
|
|
|
|
bonobo_ui_component_thaw (uic, NULL);
|
|
|
|
if (fb->folder)
|
|
mail_sync_folder (fb->folder, NULL, NULL);
|
|
}
|
|
|
|
static void
|
|
control_deactivate (BonoboControl *control,
|
|
BonoboUIComponent *uic,
|
|
FolderBrowser *fb)
|
|
{
|
|
bonobo_ui_component_rm (uic, "/", NULL);
|
|
bonobo_ui_component_unset_container (uic);
|
|
|
|
if (fb->folder)
|
|
mail_sync_folder (fb->folder, NULL, NULL);
|
|
}
|
|
|
|
static void
|
|
control_activate_cb (BonoboControl *control,
|
|
gboolean activate,
|
|
gpointer user_data)
|
|
{
|
|
BonoboUIComponent *uic;
|
|
|
|
uic = bonobo_control_get_ui_component (control);
|
|
g_assert (uic != NULL);
|
|
|
|
if (activate)
|
|
control_activate (control, uic, user_data);
|
|
else
|
|
control_deactivate (control, uic, user_data);
|
|
}
|
|
|
|
static void
|
|
control_destroy_cb (BonoboControl *control,
|
|
GtkObject *folder_browser)
|
|
{
|
|
gtk_object_destroy (folder_browser);
|
|
}
|
|
|
|
static void
|
|
browser_destroy_cb (FolderBrowser *fb,
|
|
BonoboControl *control)
|
|
{
|
|
EIterator *it;
|
|
|
|
/* We do this from browser_destroy_cb rather than
|
|
* control_destroy_cb because currently, the controls
|
|
* don't seem to all get destroyed properly at quit
|
|
* time (but the widgets get destroyed by X). FIXME.
|
|
*/
|
|
|
|
for (it = e_list_get_iterator (control_list); e_iterator_is_valid (it); e_iterator_next (it)) {
|
|
if (e_iterator_get (it) == control) {
|
|
e_iterator_delete (it);
|
|
break;
|
|
}
|
|
}
|
|
gtk_object_unref (GTK_OBJECT (it));
|
|
}
|
|
|
|
BonoboControl *
|
|
folder_browser_factory_new_control (const char *uri,
|
|
const GNOME_Evolution_Shell shell)
|
|
{
|
|
BonoboControl *control;
|
|
GtkWidget *folder_browser;
|
|
|
|
folder_browser = folder_browser_new (shell);
|
|
if (folder_browser == NULL)
|
|
return NULL;
|
|
|
|
if (!folder_browser_set_uri (FOLDER_BROWSER (folder_browser), uri)) {
|
|
gtk_object_sink (GTK_OBJECT (folder_browser));
|
|
return NULL;
|
|
}
|
|
|
|
gtk_widget_show (folder_browser);
|
|
|
|
control = bonobo_control_new (folder_browser);
|
|
|
|
if (control == NULL) {
|
|
gtk_object_destroy (GTK_OBJECT (folder_browser));
|
|
return NULL;
|
|
}
|
|
|
|
gtk_signal_connect (GTK_OBJECT (control), "activate",
|
|
control_activate_cb, folder_browser);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (control), "destroy",
|
|
control_destroy_cb, folder_browser);
|
|
gtk_signal_connect (GTK_OBJECT (folder_browser), "destroy",
|
|
browser_destroy_cb, control);
|
|
|
|
if (!control_list)
|
|
control_list = e_list_new (NULL, NULL, NULL);
|
|
|
|
e_list_append (control_list, control);
|
|
|
|
return control;
|
|
}
|
|
|
|
EList *
|
|
folder_browser_factory_get_control_list (void)
|
|
{
|
|
if (!control_list)
|
|
control_list = e_list_new (NULL, NULL, NULL);
|
|
return control_list;
|
|
}
|