1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/app-manager/content/index.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 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 % appMgrDTD SYSTEM "chrome://browser/locale/devtools/app-manager.dtd" > 1.10 + %appMgrDTD; 1.11 +]> 1.12 + 1.13 +<?xml-stylesheet href="chrome://global/skin/global.css"?> 1.14 +<?xml-stylesheet href="chrome://browser/skin/devtools/app-manager/index.css"?> 1.15 + 1.16 +<window id="app-manager-window" 1.17 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.18 + title="&index.title;" 1.19 + windowtype="devtools:app-manager" 1.20 + macanimationtype="document" 1.21 + fullscreenbutton="true" 1.22 + screenX="4" screenY="4" 1.23 + width="800" height="600" 1.24 + persist="screenX screenY width height sizemode"> 1.25 + 1.26 + <vbox id="root" flex="1"> 1.27 + <hbox id="content" flex="1"> 1.28 + <vbox id="tabs" onclick="UI.selectTabFromButton(event.target)"> 1.29 + <button class="button projects-button" panel="projects">&index.projects2;</button> 1.30 + <button class="button device-button" panel="device">&index.device2;</button> 1.31 + <vbox id="toolbox-tabs" flex="1"/> 1.32 + <button class="button help-button" panel="help">&index.help;</button> 1.33 + </vbox> 1.34 + <hbox id="tab-panels" flex="1"> 1.35 + <iframe flex="1" class="panel projects-panel" src="chrome://browser/content/devtools/app-manager/projects.xhtml"/> 1.36 + <iframe flex="1" class="panel device-panel" src="chrome://browser/content/devtools/app-manager/device.xhtml"/> 1.37 + <iframe flex="1" class="panel help-panel" src="chrome://browser/content/devtools/app-manager/help.xhtml"></iframe> 1.38 + </hbox> 1.39 + </hbox> 1.40 + <iframe id="connection-footer" src="chrome://browser/content/devtools/app-manager/connection-footer.xhtml"></iframe> 1.41 + </vbox> 1.42 + 1.43 + <script type="application/javascript;version=1.8" src="chrome://browser/content/devtools/app-manager/index.js"></script> 1.44 +</window>