diff options
Diffstat (limited to 'comm/suite/editor/base/content/editorTasksOverlay.xhtml')
-rw-r--r-- | comm/suite/editor/base/content/editorTasksOverlay.xhtml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/comm/suite/editor/base/content/editorTasksOverlay.xhtml b/comm/suite/editor/base/content/editorTasksOverlay.xhtml new file mode 100644 index 0000000000..d3fcb2d4b2 --- /dev/null +++ b/comm/suite/editor/base/content/editorTasksOverlay.xhtml @@ -0,0 +1,31 @@ +<?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/tasksOverlay.dtd"> + +<overlay id="editorTasksOverlay" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"> + + <script src="chrome://editor/content/editorApplicationOverlay.js"/> + + <keyset id="tasksKeys"> + <key id="key_editor" key="&editorCmd.commandkey;" command="Tasks:Editor" modifiers="accel"/> + </keyset> + + <commandset id="tasksCommands"> + <command id="Tasks:Editor" oncommand="toEditor();"/> + </commandset> + + <hbox id="component-bar" class="statusbarpanel"> + <toolbarbutton class="taskbutton" id="mini-comp" command="Tasks:Editor" + tooltiptext="&taskComposer.tooltip;" insertafter="mini-nav"/> + </hbox> + + <menupopup id="windowPopup"> + <menuitem label="&editorCmd.label;" accesskey="&editorCmd.accesskey;" key="key_editor" command="Tasks:Editor" id="tasksMenuEditor" insertafter="IMMenuItem,tasksMenuNavigator" class="menuitem-iconic icon-composer16 menu-iconic"/> + </menupopup> + +</overlay> + |