mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
2.0 KiB
XML
42 lines
2.0 KiB
XML
<?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">
|
|
|
|
<vbox id="root" flex="1">
|
|
<hbox id="content" flex="1">
|
|
<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>
|
|
</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"/>
|
|
<iframe flex="1" class="panel help-panel" src="chrome://browser/content/devtools/app-manager/help.xhtml"></iframe>
|
|
</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>
|