diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-11-16 08:36:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-11-16 08:36:07 +0800 |
commit | 64f95feb7da6e02faf8395f14a1329a133e367cd (patch) | |
tree | b0612e7e233e5b25eb0df5f680b8df786dec6022 /mail/folder-browser.c | |
parent | 302c05b4af296d2a412387717a47876aa6af290a (diff) | |
download | gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar.gz gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar.bz2 gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar.lz gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar.xz gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.tar.zst gsoc2013-evolution-64f95feb7da6e02faf8395f14a1329a133e367cd.zip |
Added a new Forward as Attachment bonobo menu item verb.
2000-11-15 Jeffrey Stedfast <fejj@helixcode.com>
* folder-browser-factory.c: Added a new Forward as Attachment
bonobo menu item verb.
* mail-view.c (view_forward_msg): Updated to reflect changes to
mail_do_forward_message(). It now forwards the message without
attaching it - is this what we want?
* mail-ops.c (mail_do_view_message_sources): New async function to
display message source dialog windows.
(setup_forward_messages): If we were asked not to forward the
message(s) as attachment(s) and the user chose more than a single
message, then default to making each message an attachment.
(cleanup_forward_messages): If we aren't forwarding the message as
an attachment, then quote the text and set the composer's body
with it.
* mail-callbacks.c (view_source): New callback to view the message
source of all messages that are currently selected.
(forward_attach): New callback to forward a message as an
attachment (forward_msg is now for forwarding a message without it
being an attachment).
(forward_message): Convenience function for forwarding messages.
svn path=/trunk/; revision=6585
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c index d8989cdbeb..f6c1b94963 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -466,7 +466,7 @@ on_right_click (ETableScrolled *table, gint row, gint col, GdkEvent *event, Fold { _("Reply to Sender"), NULL, GTK_SIGNAL_FUNC (reply_to_sender), NULL, 0 }, { _("Reply to All"), NULL, GTK_SIGNAL_FUNC (reply_to_all), NULL, 0 }, { _("Forward"), NULL, GTK_SIGNAL_FUNC (forward_msg), NULL, 0 }, - /*{ _("Forward as Attachment"), NULL, GTK_SIGNAL_FUNC (forward_msg), NULL, 0 },*/ + { _("Forward as Attachment"), NULL, GTK_SIGNAL_FUNC (forward_attach), NULL, 0 }, { "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 }, { _("Mark as Read"), NULL, GTK_SIGNAL_FUNC (mark_as_seen), NULL, 4 }, { _("Mark as Unread"), NULL, GTK_SIGNAL_FUNC (mark_as_unseen), NULL, 8 }, @@ -481,6 +481,8 @@ on_right_click (ETableScrolled *table, gint row, gint col, GdkEvent *event, Fold { _("Apply Filters"), NULL, GTK_SIGNAL_FUNC (apply_filters), NULL, 0 }, { "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 }, { _("Create Rule From Message"), NULL, GTK_SIGNAL_FUNC (NULL), filter_menu, 2 }, + { "", NULL, GTK_SIGNAL_FUNC (NULL), NULL, 0 }, + { _("View Message Source"), NULL, GTK_SIGNAL_FUNC (view_source), NULL, 0 }, { NULL, NULL, NULL, NULL, 0 } }; |