diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-11-22 06:09:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-11-22 06:09:51 +0800 |
commit | 0fa1b87e9ee6b947b2706a44fc7429730655b3f9 (patch) | |
tree | 186d98fc1423fdd9d86a85a251c78230a2c3060c /mail/folder-browser-factory.c | |
parent | fb92b831ae35b70f52a9792422f610defa56517b (diff) | |
download | gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar.gz gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar.bz2 gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar.lz gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar.xz gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.tar.zst gsoc2013-evolution-0fa1b87e9ee6b947b2706a44fc7429730655b3f9.zip |
New function to return if user wants to view message source.
2000-11-21 Jeffrey Stedfast <fejj@helixcode.com>
* mail-config.c (mail_config_view_source): New function to return
if user wants to view message source.
(mail_config_set_view_source): New function to set whether the
view wants to view source.
* mail-ops.c (mail_do_view_message_sources): Removed. We're not
gonna view-source this way anymore.
* folder-browser-factory.c: Removed the ViewSource bonobo verb
from the Message menu.
(control_activate): Added ViewSource.
* folder-browser.c (on_right_click): Removed Message menu item to
view message source.
(folder_browser_toggle_view_source): New callback to set whether
or not the MailDisplay shows the raw message or the pretty-ified
message.
* mail-callbacks.c: Removed view_source.
* mail-display.c (redisplay): If toggle_raw is set then display
the raw message else display the pretty formatted message.
(mail_display_redisplay): New function to force the redisplay of a
message.
* mail-format.c (mail_format_raw_message): New function to
write the raw message data.
svn path=/trunk/; revision=6639
Diffstat (limited to 'mail/folder-browser-factory.c')
-rw-r--r-- | mail/folder-browser-factory.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c index 1ca2a2c906..07bd36d3fb 100644 --- a/mail/folder-browser-factory.c +++ b/mail/folder-browser-factory.c @@ -14,7 +14,7 @@ #include <bonobo/bonobo-main.h> #include <bonobo/bonobo-object.h> #include <bonobo/bonobo-generic-factory.h> -#include <bonobo/bonobo-control.h> +#include <bonobo/bonobo-control.h> #include <bonobo/bonobo-ui-component.h> #include <gal/util/e-util.h> @@ -80,8 +80,6 @@ BonoboUIVerb verbs [] = { BONOBO_UI_UNSAFE_VERB ("MessageFilterSndr", filter_sender), BONOBO_UI_UNSAFE_VERB ("MessageFilterRecip", filter_recipient), - BONOBO_UI_UNSAFE_VERB ("MessageViewSource", view_source), - /* Folder Menu */ BONOBO_UI_UNSAFE_VERB ("FolderExpunge", expunge_folder), BONOBO_UI_UNSAFE_VERB ("FolderConfig", configure_folder), @@ -157,11 +155,22 @@ control_activate (BonoboControl *control, else bonobo_ui_component_set_prop ( uic, "/commands/ViewThreaded", "state", "0", NULL); - + bonobo_ui_component_add_listener ( uic, "ViewThreaded", folder_browser_toggle_threads, folder_browser); - + + if (mail_config_view_source ()) + bonobo_ui_component_set_prop (uic, "/commands/ViewSource", + "state", "1", NULL); + else + bonobo_ui_component_set_prop (uic, "/commands/ViewSource", + "state", "0", NULL); + + bonobo_ui_component_add_listener (uic, "ViewSource", + folder_browser_toggle_view_source, + folder_browser); + update_pixmaps (uic); bonobo_ui_component_thaw (uic, NULL); |