2013-09-05 06:15:37 -07: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/. -->
|
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % appMgrDTD SYSTEM "chrome://browser/locale/devtools/app-manager.dtd" >
|
|
|
|
%appMgrDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/global.css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/app-manager/index.css"?>
|
|
|
|
|
|
|
|
<window id="app-manager-window"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
title="&index.title;"
|
|
|
|
windowtype="devtools:app-manager"
|
|
|
|
macanimationtype="document"
|
|
|
|
fullscreenbutton="true"
|
|
|
|
screenX="4" screenY="4"
|
|
|
|
width="800" height="600"
|
|
|
|
persist="screenX screenY width height sizemode">
|
|
|
|
|
2013-09-13 19:49:00 -07:00
|
|
|
<vbox id="root" flex="1">
|
2013-09-05 06:15:37 -07:00
|
|
|
<hbox id="content" flex="1">
|
2013-11-15 18:47:00 -08:00
|
|
|
<vbox id="tabs" onclick="UI.selectTabFromButton(event.target)">
|
|
|
|
<button class="button projects-button" panel="projects">&index.projects2;</button>
|
|
|
|
<button class="button device-button" panel="device">&index.device2;</button>
|
|
|
|
<vbox id="toolbox-tabs" flex="1"/>
|
|
|
|
<button class="button help-button" panel="help">&index.help;</button>
|
2013-09-05 06:15:37 -07:00
|
|
|
</vbox>
|
|
|
|
<hbox id="tab-panels" flex="1">
|
|
|
|
<iframe flex="1" class="panel projects-panel" src="chrome://browser/content/devtools/app-manager/projects.xhtml"/>
|
|
|
|
<iframe flex="1" class="panel device-panel" src="chrome://browser/content/devtools/app-manager/device.xhtml"/>
|
2013-09-13 19:49:00 -07:00
|
|
|
<iframe flex="1" class="panel help-panel" src="chrome://browser/content/devtools/app-manager/help.xhtml"></iframe>
|
2013-09-05 06:15:37 -07:00
|
|
|
</hbox>
|
|
|
|
</hbox>
|
|
|
|
<iframe id="connection-footer" src="chrome://browser/content/devtools/app-manager/connection-footer.xhtml"></iframe>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
<script type="application/javascript;version=1.8" src="chrome://browser/content/devtools/app-manager/index.js"></script>
|
|
|
|
</window>
|