aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-05-16 02:41:40 +0800
committerDan Winship <danw@src.gnome.org>2001-05-16 02:41:40 +0800
commit7cc37466c122693397465b443811aa20d855c04f (patch)
tree54decc615039e2c8ae6618d56e588b32b48758d7
parentd1fe1c2d897e8f37d509db960739516275ec35f6 (diff)
downloadgsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar.gz
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar.bz2
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar.lz
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar.xz
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.tar.zst
gsoc2013-evolution-7cc37466c122693397465b443811aa20d855c04f.zip
Create a "Message Display" submenu in View, move source/full
* evolution-mail.xml: Create a "Message Display" submenu in View, move source/full headers/normal there and make it a radio group. Add "Load Images" there. svn path=/trunk/; revision=9819
-rw-r--r--ui/ChangeLog6
-rw-r--r--ui/evolution-mail.xml28
2 files changed, 28 insertions, 6 deletions
diff --git a/ui/ChangeLog b/ui/ChangeLog
index c88fdc1a0d..72e9e3e597 100644
--- a/ui/ChangeLog
+++ b/ui/ChangeLog
@@ -1,5 +1,11 @@
2001-05-15 Dan Winship <danw@ximian.com>
+ * evolution-mail.xml: Create a "Message Display" submenu in View,
+ move source/full headers/normal there and make it a radio group.
+ Add "Load Images" there.
+
+2001-05-15 Dan Winship <danw@ximian.com>
+
* evolution-mail.xml: Clean this up A LOT. In addition to cosmetic
changes, now every command appears in the <commands> section, and
has a tooltip. Also, move "Search" to the "Edit" menu for
diff --git a/ui/evolution-mail.xml b/ui/evolution-mail.xml
index 18ce99bba9..ae115563a0 100644
--- a/ui/evolution-mail.xml
+++ b/ui/evolution-mail.xml
@@ -174,7 +174,8 @@
_tip="Create a virtual folder for this subject"/>
<cmd name="ViewFullHeaders"
- _tip="Show all message headers in the displayed message"/>
+ _tip="Show message with all email headers"
+ type="radio" group="message_display"/>
<cmd name="ViewHideRead"
_tip="Temporarily hide all messages that have already been read"
@@ -184,13 +185,20 @@
_tip="Temporarily hide the selected messages"
pixtype="pixbuf"/>
+ <cmd name="ViewLoadImages"
+ _tip="Force images in HTML mail to be loaded"/>
+
+ <cmd name="ViewNormal"
+ _tip="Show message in the normal style"
+ type="radio" group="message_display"/>
+
<cmd name="ViewShowAll"
_tip="Show messages that have been temporarily hidden"
pixtype="pixbuf"/>
<cmd name="ViewSource"
- _tip="View Raw Message Source"
- type="toggle" />
+ _tip="Show the raw email source of the message"
+ type="radio" group="message_display"/>
<cmd name="ViewThreaded"
_tip="Threaded Message list"
@@ -258,11 +266,19 @@
<submenu name="View">
<separator/>
- <menuitem name="ViewThreaded" verb="" _label="_Threaded"/>
- <menuitem name="ViewFullHeaders" verb="" _label="Full _Headers"/>
- <menuitem name="ViewSource" verb="" _label="Source"/>
+ <menuitem name="ViewThreaded" verb="" _label="_Threaded Message List"/>
<menuitem name="HideDeleted" verb="" _label="Hide _Deleted Messages"/>
+ <submenu name="MessageDisplay" _label="_Message Display">
+ <menuitem name="ViewLoadImages" verb="" _label="Load _Images"/>
+
+ <separator/>
+
+ <menuitem name="ViewNormal" verb="" _label="_Normal Display"/>
+ <menuitem name="ViewFullHeaders" verb="" _label="Show Full _Headers"/>
+ <menuitem name="ViewSource" verb="" _label="Show Email _Source"/>
+ </submenu>
+
<separator/>
<menuitem name="ViewShowAll" verb="" _label="Show _All"/>