2012-11-30 00:07:59 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- 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/. -->
|
2012-12-18 07:11:27 -08:00
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" >
|
|
|
|
%toolboxDTD;
|
|
|
|
]>
|
2012-11-30 00:07:59 -08:00
|
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
|
|
|
|
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
2013-01-09 01:32:36 -08:00
|
|
|
|
2013-11-13 10:02:05 -08:00
|
|
|
<script type="application/javascript;version=1.8"
|
|
|
|
src="chrome://browser/content/devtools/theme-switching.js"/>
|
2013-01-09 01:32:36 -08:00
|
|
|
<script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
|
|
|
|
|
|
|
|
<commandset id="editMenuCommands"/>
|
|
|
|
<keyset id="editMenuKeys"/>
|
2013-04-15 05:34:48 -07:00
|
|
|
<keyset id="toolbox-keyset">
|
|
|
|
<key id="toolbox-options-key"
|
|
|
|
key="&toolboxOptionsButton.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="shift, accel"/>
|
2013-07-20 06:36:43 -07:00
|
|
|
<key id="toolbox-next-tool-key"
|
|
|
|
key="&toolboxNextTool.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="toolbox-previous-tool-key"
|
|
|
|
key="&toolboxPreviousTool.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
2013-09-14 23:26:18 -07:00
|
|
|
<key id="toolbox-zoom-in-key"
|
|
|
|
key="&toolboxZoomIn.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="toolbox-zoom-in-key2"
|
|
|
|
key="&toolboxZoomIn.key2;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="toolbox-zoom-out-key"
|
|
|
|
key="&toolboxZoomOut.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="toolbox-zoom-reset-key"
|
|
|
|
key="&toolboxZoomReset.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
2014-05-09 17:41:43 -07:00
|
|
|
<key id="toolbox-reload-key"
|
|
|
|
key="&toolboxReload.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
|
|
|
<key id="toolbox-force-reload-key"
|
|
|
|
key="&toolboxReload.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel shift"/>
|
|
|
|
<key id="toolbox-reload-key2"
|
|
|
|
keycode="VK_F5"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers=""/>
|
|
|
|
<key id="toolbox-force-reload-key2"
|
|
|
|
keycode="VK_F5"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="accel"/>
|
2013-04-15 05:34:48 -07:00
|
|
|
</keyset>
|
2013-01-09 01:32:36 -08:00
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
<notificationbox id="toolbox-notificationbox" flex="1">
|
|
|
|
<toolbar class="devtools-tabbar">
|
2014-05-28 07:11:33 -07:00
|
|
|
<hbox id="toolbox-picker-container" />
|
2014-07-07 22:42:00 -07:00
|
|
|
<hbox id="toolbox-tabs" flex="1" role="tablist" />
|
2013-03-13 16:10:15 -07:00
|
|
|
<hbox id="toolbox-buttons" pack="end"/>
|
2014-06-13 07:11:32 -07:00
|
|
|
<vbox id="toolbox-controls-separator" class="devtools-separator"/>
|
2014-05-28 07:11:33 -07:00
|
|
|
<hbox id="toolbox-option-container"/>
|
2012-12-13 10:37:03 -08:00
|
|
|
<hbox id="toolbox-controls">
|
|
|
|
<hbox id="toolbox-dock-buttons"/>
|
2012-12-18 07:11:27 -08:00
|
|
|
<toolbarbutton id="toolbox-close"
|
2013-06-21 09:24:35 -07:00
|
|
|
class="devtools-closebutton"
|
2012-12-18 07:11:27 -08:00
|
|
|
tooltiptext="&toolboxCloseButton.tooltip;"/>
|
2012-12-13 10:37:03 -08:00
|
|
|
</hbox>
|
2012-11-30 00:07:59 -08:00
|
|
|
</toolbar>
|
2013-11-11 13:13:28 -08:00
|
|
|
<vbox flex="1">
|
2014-07-31 10:33:23 -07:00
|
|
|
<!-- Set large flex to allow the toolbox-panel-webconsole to have a
|
|
|
|
height set to a small value without flexing to fill up extra
|
|
|
|
space. There must be a flex on both to ensure that the console
|
|
|
|
panel itself is sized properly -->
|
|
|
|
<deck id="toolbox-deck" flex="1000" minheight="75" />
|
2013-11-11 13:13:28 -08:00
|
|
|
<splitter id="toolbox-console-splitter" class="devtools-horizontal-splitter" hidden="true" />
|
|
|
|
<box minheight="75" flex="1" id="toolbox-panel-webconsole" collapsed="true" />
|
|
|
|
</vbox>
|
2012-11-30 00:07:59 -08:00
|
|
|
</notificationbox>
|
|
|
|
</window>
|