diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-10 03:33:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-10 03:33:18 +0800 |
commit | 4bbaf023cbc4e7b4b8da21de2bc13234ff54d236 (patch) | |
tree | 8b4629c3d9f71a8fe06b630ca08e1386d1fe7c4b /mail | |
parent | 5d297a7ac9855e46e1792096698fa3091754ccc1 (diff) | |
download | gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar.gz gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar.bz2 gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar.lz gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar.xz gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.tar.zst gsoc2013-evolution-4bbaf023cbc4e7b4b8da21de2bc13234ff54d236.zip |
Nicify a little, add in a menu separator between VFolder and Filter stuff.
2000-08-09 Jeffrey Stedfast <fejj@helixcode.com>
* message-list.c (on_right_click): Nicify a little, add in a menu
separator between VFolder and Filter stuff.
svn path=/trunk/; revision=4657
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-ops.c | 5 | ||||
-rw-r--r-- | mail/message-list.c | 37 |
3 files changed, 25 insertions, 20 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 6de61ce4ce..33c925ccca 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2000-08-09 Jeffrey Stedfast <fejj@helixcode.com> + * message-list.c (on_right_click): Nicify a little, add in a menu + separator between VFolder and Filter stuff + * mail-ops.c (real_view_msg): Set the UID of the message that is being displayed diff --git a/mail/mail-ops.c b/mail/mail-ops.c index cd6f10f760..c8357a0a3a 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -2,8 +2,9 @@ /* mail-ops.c: callbacks for the mail toolbar/menus */ /* - * Author : - * Dan Winship <danw@helixcode.com> + * Authors: Dan Winship <danw@helixcode.com> + * Jeffrey Stedfast <fejj@helixcode.com> + * Peter Williams <peterw@helixcode.com> * * Copyright 2000 Helix Code, Inc. (http://www.helixcode.com) * diff --git a/mail/message-list.c b/mail/message-list.c index eac938bb36..e6f37d581b 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1027,24 +1027,25 @@ on_right_click (ETableScrolled *table, gint row, gint col, GdkEvent *event, Mess extern CamelFolder *drafts_folder; int enable_mask = 0; EPopupMenu menu[] = { - { "Open in New Window", NULL, GTK_SIGNAL_FUNC (view_msg), 0 }, - { "Edit Message", NULL, GTK_SIGNAL_FUNC (edit_msg), 1 }, - { "Print Message", NULL, GTK_SIGNAL_FUNC (print_msg), 0 }, - { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, - { "Reply to Sender", NULL, GTK_SIGNAL_FUNC (reply_to_sender), 0 }, - { "Reply to All", NULL, GTK_SIGNAL_FUNC (reply_to_all), 0 }, - { "Forward Message", NULL, GTK_SIGNAL_FUNC (forward_msg), 0 }, - { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, - { "Delete Message", NULL, GTK_SIGNAL_FUNC (delete_msg), 0 }, - { "Move Message", NULL, GTK_SIGNAL_FUNC (move_msg), 0 }, - { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, - { "Vfolder from Subject", NULL, GTK_SIGNAL_FUNC (vfolder_subject), 2 }, - { "Vfolder from Sender", NULL, GTK_SIGNAL_FUNC (vfolder_sender), 2 }, - { "Vfolder from Recipients", NULL, GTK_SIGNAL_FUNC (vfolder_recipient), 2 }, - { "Filter from Subject", NULL, GTK_SIGNAL_FUNC (filter_subject), 2 }, - { "Filter from Sender", NULL, GTK_SIGNAL_FUNC (filter_sender), 2 }, - { "Filter from Recipients", NULL, GTK_SIGNAL_FUNC (filter_recipient), 2 }, - { NULL, NULL, NULL, 0 } + { "Open in New Window", NULL, GTK_SIGNAL_FUNC (view_msg), 0 }, + { "Edit Message", NULL, GTK_SIGNAL_FUNC (edit_msg), 1 }, + { "Print Message", NULL, GTK_SIGNAL_FUNC (print_msg), 0 }, + { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, + { "Reply to Sender", NULL, GTK_SIGNAL_FUNC (reply_to_sender), 0 }, + { "Reply to All", NULL, GTK_SIGNAL_FUNC (reply_to_all), 0 }, + { "Forward Message", NULL, GTK_SIGNAL_FUNC (forward_msg), 0 }, + { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, + { "Delete Message", NULL, GTK_SIGNAL_FUNC (delete_msg), 0 }, + { "Move Message", NULL, GTK_SIGNAL_FUNC (move_msg), 0 }, + { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, + { "VFolder on Subject", NULL, GTK_SIGNAL_FUNC (vfolder_subject), 2 }, + { "VFolder on Sender", NULL, GTK_SIGNAL_FUNC (vfolder_sender), 2 }, + { "VFolder on Recipients", NULL, GTK_SIGNAL_FUNC (vfolder_recipient), 2 }, + { "", NULL, GTK_SIGNAL_FUNC (NULL), 0 }, + { "Filter on Subject", NULL, GTK_SIGNAL_FUNC (filter_subject), 2 }, + { "Filter on Sender", NULL, GTK_SIGNAL_FUNC (filter_sender), 2 }, + { "Filter on Recipients", NULL, GTK_SIGNAL_FUNC (filter_recipient), 2 }, + { NULL, NULL, NULL, 0 } }; if (fb->folder != drafts_folder) |