1 | <?xml version="1.0"?> |
---|
2 | <?xml-stylesheet href="chrome://dspam/skin/dspam.css" type="text/css"?> |
---|
3 | <!DOCTYPE overlay SYSTEM "chrome://dspam/locale/dspam.dtd"> |
---|
4 | |
---|
5 | <overlay id="dspamTbOverlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
---|
6 | |
---|
7 | <script type="application/x-javascript" src="chrome://dspam/content/dspam.js"/> |
---|
8 | |
---|
9 | <commandset id="mailCommands"> |
---|
10 | <command id="cmd_dspam_reportspam" |
---|
11 | label="&dspam.spamreportbutton.label;" |
---|
12 | tooltiptext="&dspam.spamreportbutton.tooltiptext;" |
---|
13 | oncommand="dspamReportSpam();"/> |
---|
14 | <command id="cmd_dspam_reportham" |
---|
15 | label="&dspam.hamreportbutton.label;" |
---|
16 | tooltiptext="&dspam.hamreportbutton.tooltiptext;" |
---|
17 | oncommand="dspamReportHam();"/> |
---|
18 | </commandset> |
---|
19 | |
---|
20 | <keyset id="mailKeys"> |
---|
21 | <key id="key_dspam_reportspam" modifiers="shift,alt,control,accel" keycode="VK_SCROLL_LOCK" command="cmd_dspam_reportspam"/> |
---|
22 | <key id="key_dspam_reportham" modifiers="shift,alt,control,accel" keycode="VK_SCROLL_LOCK" command="cmd_dspam_reportham"/> |
---|
23 | </keyset> |
---|
24 | |
---|
25 | <toolbarpalette id="MailToolbarPalette"> |
---|
26 | <toolbaritem id="toolbarbuttongroup"> |
---|
27 | <toolbarbutton class="toolbarbutton-1 dspamButtons" id="bReportSpam" |
---|
28 | command="cmd_dspam_reportspam"/> |
---|
29 | <toolbarbutton class="toolbarbutton-1 dspamButtons" id="bReportHam" |
---|
30 | command="cmd_dspam_reportham"/> |
---|
31 | </toolbaritem> |
---|
32 | </toolbarpalette> |
---|
33 | |
---|
34 | </overlay> |
---|
35 | |
---|