browser/devtools/framework/toolbox.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/devtools/framework/toolbox.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,81 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +<!DOCTYPE window [
     1.9 +<!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" >
    1.10 + %toolboxDTD;
    1.11 +]>
    1.12 +<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
    1.13 +<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
    1.14 +<?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
    1.15 +
    1.16 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    1.17 +
    1.18 +  <script type="application/javascript;version=1.8"
    1.19 +          src="chrome://browser/content/devtools/theme-switching.js"/>
    1.20 +  <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
    1.21 +
    1.22 +  <commandset id="editMenuCommands"/>
    1.23 +  <keyset id="editMenuKeys"/>
    1.24 +  <keyset id="toolbox-keyset">
    1.25 +    <key id="toolbox-options-key"
    1.26 +         key="&toolboxOptionsButton.key;"
    1.27 +         oncommand="void(0);"
    1.28 +         modifiers="shift, accel"/>
    1.29 +    <key id="toolbox-next-tool-key"
    1.30 +         key="&toolboxNextTool.key;"
    1.31 +         oncommand="void(0);"
    1.32 +         modifiers="accel"/>
    1.33 +    <key id="toolbox-previous-tool-key"
    1.34 +         key="&toolboxPreviousTool.key;"
    1.35 +         oncommand="void(0);"
    1.36 +         modifiers="accel"/>
    1.37 +    <key id="toolbox-zoom-in-key"
    1.38 +         key="&toolboxZoomIn.key;"
    1.39 +         oncommand="void(0);"
    1.40 +         modifiers="accel"/>
    1.41 +    <key id="toolbox-zoom-in-key2"
    1.42 +         key="&toolboxZoomIn.key2;"
    1.43 +         oncommand="void(0);"
    1.44 +         modifiers="accel"/>
    1.45 +    <key id="toolbox-zoom-out-key"
    1.46 +         key="&toolboxZoomOut.key;"
    1.47 +         oncommand="void(0);"
    1.48 +         modifiers="accel"/>
    1.49 +    <key id="toolbox-zoom-reset-key"
    1.50 +         key="&toolboxZoomReset.key;"
    1.51 +         oncommand="void(0);"
    1.52 +         modifiers="accel"/>
    1.53 +  </keyset>
    1.54 +
    1.55 +  <notificationbox id="toolbox-notificationbox" flex="1">
    1.56 +    <toolbar class="devtools-tabbar">
    1.57 +#ifdef XP_MACOSX
    1.58 +      <hbox id="toolbox-controls">
    1.59 +        <toolbarbutton id="toolbox-close"
    1.60 +                       class="devtools-closebutton"
    1.61 +                       tooltiptext="&toolboxCloseButton.tooltip;"/>
    1.62 +        <hbox id="toolbox-dock-buttons"/>
    1.63 +      </hbox>
    1.64 +#endif
    1.65 +      <hbox id="toolbox-tabs" flex="1">
    1.66 +      </hbox>
    1.67 +      <hbox id="toolbox-buttons" pack="end"/>
    1.68 +#ifndef XP_MACOSX
    1.69 +      <vbox id="toolbox-controls-separator"/>
    1.70 +      <hbox id="toolbox-controls">
    1.71 +        <hbox id="toolbox-dock-buttons"/>
    1.72 +        <toolbarbutton id="toolbox-close"
    1.73 +                       class="devtools-closebutton"
    1.74 +                       tooltiptext="&toolboxCloseButton.tooltip;"/>
    1.75 +      </hbox>
    1.76 +#endif
    1.77 +    </toolbar>
    1.78 +    <vbox flex="1">
    1.79 +      <deck id="toolbox-deck" flex="1" minheight="75" />
    1.80 +      <splitter id="toolbox-console-splitter" class="devtools-horizontal-splitter" hidden="true" />
    1.81 +      <box minheight="75" flex="1" id="toolbox-panel-webconsole" collapsed="true" />
    1.82 +    </vbox>
    1.83 +  </notificationbox>
    1.84 +</window>

mercurial