2012-11-30 08:07:59 +00: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 15:11:27 +00:00
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" >
|
|
|
|
%toolboxDTD;
|
|
|
|
]>
|
2012-11-30 08:07:59 +00:00
|
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/content/devtools/framework/toolbox.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/toolbox.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 09:32:36 +00:00
|
|
|
|
|
|
|
<script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
|
|
|
|
|
|
|
|
<commandset id="editMenuCommands"/>
|
|
|
|
<keyset id="editMenuKeys"/>
|
2013-04-15 12:34:48 +00:00
|
|
|
<keyset id="toolbox-keyset">
|
|
|
|
<key id="toolbox-options-key"
|
|
|
|
key="&toolboxOptionsButton.key;"
|
|
|
|
oncommand="void(0);"
|
|
|
|
modifiers="shift, accel"/>
|
2013-07-20 13:36:43 +00: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-04-15 12:34:48 +00:00
|
|
|
</keyset>
|
2013-01-09 09:32:36 +00:00
|
|
|
|
2012-11-30 08:07:59 +00:00
|
|
|
<notificationbox id="toolbox-notificationbox" flex="1">
|
|
|
|
<toolbar class="devtools-tabbar">
|
2012-12-13 18:37:03 +00:00
|
|
|
#ifdef XP_MACOSX
|
2012-11-30 08:07:59 +00:00
|
|
|
<hbox id="toolbox-controls">
|
2012-12-18 15:11:27 +00:00
|
|
|
<toolbarbutton id="toolbox-close"
|
2013-06-21 16:24:35 +00:00
|
|
|
class="devtools-closebutton"
|
2012-12-18 15:11:27 +00:00
|
|
|
tooltiptext="&toolboxCloseButton.tooltip;"/>
|
2012-11-30 08:07:59 +00:00
|
|
|
<hbox id="toolbox-dock-buttons"/>
|
|
|
|
</hbox>
|
2012-12-13 18:37:03 +00:00
|
|
|
#endif
|
2013-03-13 23:10:15 +00:00
|
|
|
<hbox id="toolbox-tabs" flex="1">
|
|
|
|
</hbox>
|
|
|
|
<hbox id="toolbox-buttons" pack="end"/>
|
2012-12-13 18:37:03 +00:00
|
|
|
#ifndef XP_MACOSX
|
2012-12-23 03:27:19 +00:00
|
|
|
<vbox id="toolbox-controls-separator"/>
|
2012-12-13 18:37:03 +00:00
|
|
|
<hbox id="toolbox-controls">
|
|
|
|
<hbox id="toolbox-dock-buttons"/>
|
2012-12-18 15:11:27 +00:00
|
|
|
<toolbarbutton id="toolbox-close"
|
2013-06-21 16:24:35 +00:00
|
|
|
class="devtools-closebutton"
|
2012-12-18 15:11:27 +00:00
|
|
|
tooltiptext="&toolboxCloseButton.tooltip;"/>
|
2012-12-13 18:37:03 +00:00
|
|
|
</hbox>
|
|
|
|
#endif
|
2012-11-30 08:07:59 +00:00
|
|
|
</toolbar>
|
|
|
|
<deck id="toolbox-deck" flex="1">
|
|
|
|
</deck>
|
|
|
|
</notificationbox>
|
|
|
|
</window>
|