summaryrefslogtreecommitdiffstats
path: root/comm/suite/base/content/viewZoomOverlay.xul
diff options
context:
space:
mode:
Diffstat (limited to 'comm/suite/base/content/viewZoomOverlay.xul')
-rw-r--r--comm/suite/base/content/viewZoomOverlay.xul55
1 files changed, 55 insertions, 0 deletions
diff --git a/comm/suite/base/content/viewZoomOverlay.xul b/comm/suite/base/content/viewZoomOverlay.xul
new file mode 100644
index 0000000000..a22c853e3e
--- /dev/null
+++ b/comm/suite/base/content/viewZoomOverlay.xul
@@ -0,0 +1,55 @@
+<?xml version="1.0"?>
+
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!DOCTYPE overlay SYSTEM "chrome://communicator/locale/viewZoomOverlay.dtd">
+
+<overlay id="viewZoomOverlay"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+ <script src="chrome://global/content/viewZoomOverlay.js"/>
+ <script src="chrome://communicator/content/viewZoomOverlay.js"/>
+
+ <stringbundle id="bundle_viewZoom" src="chrome://communicator/locale/viewZoomOverlay.properties"/>
+
+ <keyset id="viewZoomKeys">
+ <key id="key_zoomReduce" key="&zoomReduceCmd.commandkey;" command="cmd_zoomReduce" modifiers="accel"/>
+ <key id="key_zoomEnlarge" key="&zoomEnlargeCmd.commandkey;" command="cmd_zoomEnlarge" modifiers="accel"/>
+ <key key="&zoomEnlargeCmd.commandkey;" command="cmd_zoomEnlarge" modifiers="accel,shift"/>
+ <key key="&zoomEnlargeCmd.commandkey2;" command="cmd_zoomEnlarge" modifiers="accel"/>
+ <key id="key_zoomReset" key="&zoomResetCmd.commandkey;" command="cmd_zoomReset" modifiers="accel"/>
+ </keyset>
+
+ <commandset id="viewZoomCommands">
+ <command id="cmd_zoomReduce" oncommand="zoomReduce();"/>
+ <command id="cmd_zoomEnlarge" oncommand="zoomEnlarge();"/>
+ <command id="cmd_zoomReset" oncommand="zoomReset();"/>
+ <command id="cmd_zoomOther" oncommand="zoomSetOther();"/>
+ <command id="cmd_fullZoomToggle" oncommand="zoomToggle();"/>
+ </commandset>
+
+ <menu id="menu_zoom">
+ <menupopup id="menu_zoomPopup" onpopupshowing="updateZoomMenu();" oncommand="zoomSet(event.target.value / 100);">
+ <menuitem id="menu_zoomReduce"
+ key="key_zoomReduce"
+ label="&zoomReduceCmd.label;"
+ accesskey="&zoomReduceCmd.accesskey;"
+ command="cmd_zoomReduce"/>
+ <menuitem id="menu_zoomEnlarge"
+ key="key_zoomEnlarge"
+ label="&zoomEnlargeCmd.label;"
+ accesskey="&zoomEnlargeCmd.accesskey;"
+ command="cmd_zoomEnlarge"/>
+ <menuseparator/>
+ <menuseparator id="menu_zoomInsertBefore"/>
+ <menuitem id="menu_zoomOther"
+ type="radio"
+ name="zoom"
+ command="cmd_zoomOther"/>
+ </menupopup>
+ </menu>
+
+</overlay>