aboutsummaryrefslogtreecommitdiffstats
path: root/help/C/mail-attachments-sending.page
Commit message (Expand)AuthorAgeFilesLines
* User Docs: Mark names and emails as non-translatableAndre Klapper2012-02-201-3/+3
* Put new user documentation in placeAndre Klapper2011-08-041-0/+55
ef='#n43'>43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * folder-browser-ui.c: Sets up the Bonobo UI for FolderBrowsers
 *
 * Author:
 *   Peter Williams <peterw@ximian.com>
 *
 * (C) 2001 Ximian, Inc.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-util.h> /* gnome_util_prepend_user_home */

#include <bonobo/bonobo-ui-component.h>
#include <bonobo/bonobo-ui-util.h>

#include "widgets/menus/gal-view-menus.h" /* GalView stuff */
#include <gal/menus/gal-view-factory-etable.h>
#include <gal/menus/gal-view-etable.h>

#include "mail-callbacks.h" /* almost all the verbs */
#include "mail-session.h" /* mail_session_forget_passwords */

#include "folder-browser-ui.h"

#include "evolution-shell-component-utils.h" /* Pixmap stuff */
#include "camel/camel-vtrash-folder.h"       /* vtrash checking */

/*
 * Add with 'folder_browser'
 */

static BonoboUIVerb message_verbs [] = {
    BONOBO_UI_UNSAFE_VERB ("MailNext", next_msg),
    BONOBO_UI_UNSAFE_VERB ("MailNextFlagged", next_flagged_msg),
    BONOBO_UI_UNSAFE_VERB ("MailNextUnread", next_unread_msg),
/*  BONOBO_UI_UNSAFE_VERB ("MailNextThread", next_thread),*/
    BONOBO_UI_UNSAFE_VERB ("MailPrevious", previous_msg),
    BONOBO_UI_UNSAFE_VERB ("MailPreviousFlagged", previous_flagged_msg),
    BONOBO_UI_UNSAFE_VERB ("MailPreviousUnread", previous_unread_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageApplyFilters", apply_filters),
    BONOBO_UI_UNSAFE_VERB ("MessageCopy", copy_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageDelete", delete_msg),
    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 ("MessageMarkAsImportant", mark_as_important),*/
    BONOBO_UI_UNSAFE_VERB ("MessageMarkAsRead", mark_as_seen),
    BONOBO_UI_UNSAFE_VERB ("MessageMarkAsUnRead", mark_as_unseen),
    BONOBO_UI_UNSAFE_VERB ("MessageMove", move_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageOpen", open_message),
    BONOBO_UI_UNSAFE_VERB ("MessageReplyAll", reply_to_all),
    BONOBO_UI_UNSAFE_VERB ("MessageReplyList", reply_to_list),
    BONOBO_UI_UNSAFE_VERB ("MessageReplySender", reply_to_sender),
    BONOBO_UI_UNSAFE_VERB ("MessageResend", resend_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageSaveAs", save_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageSearch", search_msg),
    BONOBO_UI_UNSAFE_VERB ("MessageUndelete", undelete_msg),
    BONOBO_UI_UNSAFE_VERB ("PrintMessage", print_msg),
    BONOBO_UI_UNSAFE_VERB ("PrintPreviewMessage", print_preview_msg),
    BONOBO_UI_UNSAFE_VERB ("ToolsFilterMailingList", filter_mlist),
    BONOBO_UI_UNSAFE_VERB ("ToolsFilterRecipient", filter_recipient),
    BONOBO_UI_UNSAFE_VERB ("ToolsFilterSender", filter_sender),
    BONOBO_UI_UNSAFE_VERB ("ToolsFilterSubject", filter_subject),
    BONOBO_UI_UNSAFE_VERB ("ToolsVFolderMailingList", vfolder_mlist),
    BONOBO_UI_UNSAFE_VERB ("ToolsVFolderRecipient", vfolder_recipient),
    BONOBO_UI_UNSAFE_VERB ("ToolsVFolderSender", vfolder_sender),
    BONOBO_UI_UNSAFE_VERB ("ToolsVFolderSubject", vfolder_subject),
    BONOBO_UI_UNSAFE_VERB ("ViewLoadImages", load_images),
    /* ViewHeaders stuff is a radio */

    BONOBO_UI_VERB_END
};

static BonoboUIVerb list_verbs [] = {
    BONOBO_UI_UNSAFE_VERB ("EditCut", folder_browser_cut),
    BONOBO_UI_UNSAFE_VERB ("EditCopy", folder_browser_copy),
    BONOBO_UI_UNSAFE_VERB ("EditPaste", folder_browser_paste),
    BONOBO_UI_UNSAFE_VERB ("EditInvertSelection", invert_selection),
    BONOBO_UI_UNSAFE_VERB ("EditSelectAll", select_all),
/*      BONOBO_UI_UNSAFE_VERB ("EditSelectThread", select_thread),*/
    BONOBO_UI_UNSAFE_VERB ("ChangeFolderProperties", configure_folder),
    BONOBO_UI_UNSAFE_VERB ("FolderExpunge", expunge_folder),
    /* HideDeleted is a toggle */
    BONOBO_UI_UNSAFE_VERB ("MessageMarkAllAsRead", mark_all_as_seen),
    BONOBO_UI_UNSAFE_VERB ("ViewHideRead", hide_read),
    BONOBO_UI_UNSAFE_VERB ("ViewHideSelected", hide_selected),
    BONOBO_UI_UNSAFE_VERB ("ViewShowAll", hide_none),
    /* ViewThreaded is a toggle */

    BONOBO_UI_VERB_END
};

static BonoboUIVerb global_verbs [] = {
    BONOBO_UI_UNSAFE_VERB ("EmptyTrash", empty_trash),
    BONOBO_UI_UNSAFE_VERB ("ForgetPasswords", mail_session_forget_passwords),
    BONOBO_UI_UNSAFE_VERB ("MailCompose", compose_msg),
    BONOBO_UI_UNSAFE_VERB ("MailGetSend", send_receive_mail),
    BONOBO_UI_UNSAFE_VERB ("MailStop", stop_threads),
    BONOBO_UI_UNSAFE_VERB ("ToolsFilters", filter_edit),
    BONOBO_UI_UNSAFE_VERB ("ToolsSettings", providers_config),
    BONOBO_UI_UNSAFE_VERB ("ToolsSubscriptions", manage_subscriptions),
    BONOBO_UI_UNSAFE_VERB ("ToolsVFolders", vfolder_edit_vfolders),
    /* ViewPreview is a toggle */

    BONOBO_UI_VERB_END
};

static EPixmap message_pixcache [] = {
    E_PIXMAP ("/commands/PrintMessage", "print.xpm"),
    E_PIXMAP ("/commands/PrintPreviewMessage", "print-preview.xpm"),
    E_PIXMAP ("/commands/MessageDelete", "delete_message.xpm"),
    E_PIXMAP ("/commands/MessageUndelete", "undelete_message.xpm"),
    E_PIXMAP ("/commands/MessageCopy", "copy_16_message.xpm"),
    E_PIXMAP ("/commands/MessageMove", "move_message.xpm"),
    E_PIXMAP ("/commands/MessageReplyAll", "reply_to_all.xpm"),
    E_PIXMAP ("/commands/MessageReplySender", "reply.xpm"),
    E_PIXMAP ("/commands/MessageForward", "forward.xpm"),

    E_PIXMAP ("/Toolbar/MailMessageToolbar/MessageReplySender", "buttons/reply.png"),
    E_PIXMAP ("/Toolbar/MailMessageToolbar/MessageReplyAll", "buttons/reply-to-all.png"),
    E_PIXMAP ("/Toolbar/MailMessageToolbar/MessageForward", "buttons/forward.png"),
    E_PIXMAP ("/Toolbar/MailMessageToolbar/MessageMove", "buttons/move-message.png"),
    E_PIXMAP ("/Toolbar/MailMessageToolbar/MessageCopy", "buttons/copy-message.png"),

    E_PIXMAP_END
};

static EPixmap list_pixcache [] = {
    E_PIXMAP ("/commands/ChangeFolderProperties", "configure_16_folder.xpm"),
    E_PIXMAP ("/commands/ViewHideRead", "hide_read_messages.xpm"),
    E_PIXMAP ("/commands/ViewHideSelected", "hide_selected_messages.xpm"),
    E_PIXMAP ("/commands/ViewShowAll", "show_all_messages.xpm"),

    E_PIXMAP_END
};

static EPixmap global_pixcache [] = {
    E_PIXMAP ("/commands/MailCompose", "new-message.xpm"),
    E_PIXMAP ("/commands/MailGetSend", "send-receive.xpm"),
    E_PIXMAP ("/commands/ToolsSettings", "configure_16_mail.xpm"),
    
    E_PIXMAP ("/Toolbar/MailGetSend", "buttons/send-24-receive.png"),
    E_PIXMAP ("/Toolbar/MailCompose", "buttons/compose-message.png"),

    E_PIXMAP_END
};

static void ui_add (FolderBrowser *fb,
            const gchar *name,
            BonoboUIVerb verb[],
            EPixmap pixcache[])
{
    BonoboUIComponent *uic = fb->uicomp;
    gchar *file;

    bonobo_ui_component_add_verb_list_with_data (uic, verb, fb);

    bonobo_ui_component_freeze (uic, NULL);

    file = g_strconcat ("evolution-mail-", name, ".xml", NULL);
    bonobo_ui_util_set_ui (uic, EVOLUTION_DATADIR, file, "evolution-mail");
    g_free (file);

    e_pixmaps_update (uic, pixcache);
    
    bonobo_ui_component_thaw (uic, NULL);
}

/* unused args, for now... */

static void ui_rm (FolderBrowser *fb,
            const gchar *name,
            BonoboUIVerb verb[],
            EPixmap pixcache[])
{
    BonoboUIComponent *uic = fb->uicomp;

    bonobo_ui_component_rm (uic, "/", NULL);
    bonobo_ui_component_unset_container (uic);
}

/* more complex stuff */

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)
{
    GalViewFactory *factory;
    ETableSpecification *spec;
    char *local_dir;

    g_assert (fb->view_collection == NULL);
    g_assert (fb->view_menus == NULL);

    fb->view_collection = gal_view_collection_new();

    local_dir = gnome_util_prepend_user_home ("/evolution/views/mail/");
    gal_view_collection_set_storage_directories(
        fb->view_collection,
        EVOLUTION_DATADIR "/evolution/views/mail/",
        local_dir);
    g_free (local_dir);

    spec = e_table_specification_new();
    e_table_specification_load_from_file(spec, EVOLUTION_ETSPECDIR "/message-list.etspec");

    factory = gal_view_factory_etable_new (spec);
    gtk_object_unref (GTK_OBJECT (spec));
    gal_view_collection_add_factory (fb->view_collection, factory);
    gtk_object_unref (GTK_OBJECT (factory));

    gal_view_collection_load(fb->view_collection);

    fb->view_menus = gal_view_menus_new(fb->view_collection);
    gal_view_menus_apply(fb->view_menus, uic, NULL);
    gtk_signal_connect(GTK_OBJECT(fb->view_collection), "display_view",
               display_view, fb);
}

/* Gets rid of the view collection and view menus objects */
static void
folder_browser_discard_view_menus (FolderBrowser *fb)
{
    g_assert (fb->view_collection != NULL);
    g_assert (fb->view_menus != NULL);

    gtk_object_unref (GTK_OBJECT (fb->view_collection));
    fb->view_collection = NULL;

    gtk_object_unref (GTK_OBJECT (fb->view_menus));
    fb->view_menus = NULL;
}

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/ChangeFolderProperties",
        "label", name, NULL);
    g_free (name);
}

/* Must be in the same order as MailConfigDisplayStyle */
/* used in folder-browser.c as well (therefore not static) */
char *message_display_styles[] = {
    "/commands/ViewNormal",
    "/commands/ViewFullHeaders",
    "/commands/ViewSource"
};

/* public */

void 
folder_browser_ui_add_message (FolderBrowser *fb)
{
    int state;
    BonoboUIComponent *uic = fb->uicomp;

    ui_add (fb, "message", message_verbs, message_pixcache);

    /* Display Style */

    state = mail_config_get_message_display_style ();
    bonobo_ui_component_set_prop (uic, message_display_styles[state],
                      "state", "1", NULL);
    bonobo_ui_component_add_listener (uic, "ViewNormal", folder_browser_set_message_display_style, fb);
    bonobo_ui_component_add_listener (uic, "ViewFullHeaders", folder_browser_set_message_display_style, fb);
    bonobo_ui_component_add_listener (uic, "ViewSource", folder_browser_set_message_display_style, fb);
    /* FIXME: this kind of bypasses bonobo but seems the only way when we change components */
    folder_browser_set_message_display_style (uic, strrchr (message_display_styles[state], '/') + 1,
                          Bonobo_UIComponent_STATE_CHANGED, "1", fb);

    /* Resend Message */

    if (fb->folder && !folder_browser_is_sent (fb)) 
        bonobo_ui_component_set_prop (uic, "/commands/MessageResend", "sensitive", "0", NULL);  
}

void 
folder_browser_ui_rm_message (FolderBrowser *fb)
{
    ui_rm (fb, "message", message_verbs, message_pixcache);
}

void 
folder_browser_ui_add_list (FolderBrowser *fb)
{
    int state;
    BonoboUIComponent *uic = fb->uicomp;

    ui_add (fb, "list", list_verbs, list_pixcache);

    /* Hide Deleted */

    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,
                      fb);
    /* 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", fb);

    /* Threaded toggle */

    state = mail_config_get_thread_list (FOLDER_BROWSER (fb)->uri);
    bonobo_ui_component_set_prop (uic, "/commands/ViewThreaded", "state", state ? "1" : "0", NULL);
    bonobo_ui_component_add_listener (uic, "ViewThreaded", folder_browser_toggle_threads, fb);
    /* 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", fb);

    /* Property menu */

    folder_browser_setup_property_menu (fb, fb->uicomp);
}

void 
folder_browser_ui_rm_list (FolderBrowser *fb)
{
    ui_rm (fb, "list", list_verbs, list_pixcache);
}

void 
folder_browser_ui_add_global (FolderBrowser *fb)
{
    int state;
    BonoboUIComponent *uic = fb->uicomp;

    ui_add (fb, "global", global_verbs, global_pixcache);

    /* (Pre)view toggle */

    state = mail_config_get_show_preview (FOLDER_BROWSER (fb)->uri);
    bonobo_ui_component_set_prop (uic, "/commands/ViewPreview", "state", state ? "1" : "0", NULL);
    bonobo_ui_component_add_listener (uic, "ViewPreview", folder_browser_toggle_preview, fb);
    /* FIXME: this kind of bypasses bonobo but seems the only way when we change components */
    folder_browser_toggle_preview (uic, "", Bonobo_UIComponent_STATE_CHANGED, state ? "1" : "0", fb);
    
    /* Stop button */

    bonobo_ui_component_set_prop(uic, "/commands/MailStop", "sensitive", "0", NULL);

    /* View menu */

    folder_browser_setup_view_menus (fb, fb->uicomp);

}

void 
folder_browser_ui_rm_global (FolderBrowser *fb)
{
    ui_rm (fb, "global", global_verbs, global_pixcache);

    /* View menu */

    folder_browser_discard_view_menus (fb);
}