Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | <!DOCTYPE window [ |
michael@0 | 6 | <!ENTITY % appMgrDTD SYSTEM "chrome://browser/locale/devtools/app-manager.dtd" > |
michael@0 | 7 | %appMgrDTD; |
michael@0 | 8 | ]> |
michael@0 | 9 | |
michael@0 | 10 | <?xml-stylesheet href="chrome://global/skin/global.css"?> |
michael@0 | 11 | <?xml-stylesheet href="chrome://browser/skin/devtools/app-manager/index.css"?> |
michael@0 | 12 | |
michael@0 | 13 | <window id="app-manager-window" |
michael@0 | 14 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 15 | title="&index.title;" |
michael@0 | 16 | windowtype="devtools:app-manager" |
michael@0 | 17 | macanimationtype="document" |
michael@0 | 18 | fullscreenbutton="true" |
michael@0 | 19 | screenX="4" screenY="4" |
michael@0 | 20 | width="800" height="600" |
michael@0 | 21 | persist="screenX screenY width height sizemode"> |
michael@0 | 22 | |
michael@0 | 23 | <vbox id="root" flex="1"> |
michael@0 | 24 | <hbox id="content" flex="1"> |
michael@0 | 25 | <vbox id="tabs" onclick="UI.selectTabFromButton(event.target)"> |
michael@0 | 26 | <button class="button projects-button" panel="projects">&index.projects2;</button> |
michael@0 | 27 | <button class="button device-button" panel="device">&index.device2;</button> |
michael@0 | 28 | <vbox id="toolbox-tabs" flex="1"/> |
michael@0 | 29 | <button class="button help-button" panel="help">&index.help;</button> |
michael@0 | 30 | </vbox> |
michael@0 | 31 | <hbox id="tab-panels" flex="1"> |
michael@0 | 32 | <iframe flex="1" class="panel projects-panel" src="chrome://browser/content/devtools/app-manager/projects.xhtml"/> |
michael@0 | 33 | <iframe flex="1" class="panel device-panel" src="chrome://browser/content/devtools/app-manager/device.xhtml"/> |
michael@0 | 34 | <iframe flex="1" class="panel help-panel" src="chrome://browser/content/devtools/app-manager/help.xhtml"></iframe> |
michael@0 | 35 | </hbox> |
michael@0 | 36 | </hbox> |
michael@0 | 37 | <iframe id="connection-footer" src="chrome://browser/content/devtools/app-manager/connection-footer.xhtml"></iframe> |
michael@0 | 38 | </vbox> |
michael@0 | 39 | |
michael@0 | 40 | <script type="application/javascript;version=1.8" src="chrome://browser/content/devtools/app-manager/index.js"></script> |
michael@0 | 41 | </window> |