1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webaudioeditor/webaudioeditor.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,70 @@ 1.4 +<?xml version="1.0"?> 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 +<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?> 1.9 +<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?> 1.10 +<?xml-stylesheet href="chrome://browser/skin/devtools/widgets.css" type="text/css"?> 1.11 +<?xml-stylesheet href="chrome://browser/skin/devtools/webaudioeditor.css" type="text/css"?> 1.12 +<?xml-stylesheet href="chrome://browser/content/devtools/widgets.css" type="text/css"?> 1.13 +<!DOCTYPE window [ 1.14 + <!ENTITY % debuggerDTD SYSTEM "chrome://browser/locale/devtools/webaudioeditor.dtd"> 1.15 + %debuggerDTD; 1.16 +]> 1.17 + 1.18 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 1.19 + 1.20 + <script type="application/javascript;version=1.8" 1.21 + src="chrome://browser/content/devtools/theme-switching.js"/> 1.22 + 1.23 + <script type="application/javascript" src="d3.js"/> 1.24 + <script type="application/javascript" src="dagre-d3.js"/> 1.25 + <script type="application/javascript" src="webaudioeditor-controller.js"/> 1.26 + <script type="application/javascript" src="webaudioeditor-view.js"/> 1.27 + 1.28 + <vbox class="theme-body" flex="1"> 1.29 + <hbox id="reload-notice" 1.30 + class="notice-container" 1.31 + align="center" 1.32 + pack="center" 1.33 + flex="1"> 1.34 + <button id="requests-menu-reload-notice-button" 1.35 + class="devtools-toolbarbutton" 1.36 + label="&webAudioEditorUI.reloadNotice1;" 1.37 + oncommand="gFront.setup({ reload: true });"/> 1.38 + <label id="requests-menu-reload-notice-label" 1.39 + class="plain" 1.40 + value="&webAudioEditorUI.reloadNotice2;"/> 1.41 + </hbox> 1.42 + <hbox id="waiting-notice" 1.43 + class="notice-container" 1.44 + align="center" 1.45 + pack="center" 1.46 + flex="1" 1.47 + hidden="true"> 1.48 + <label id="requests-menu-waiting-notice-label" 1.49 + class="plain" 1.50 + value="&webAudioEditorUI.emptyNotice;"/> 1.51 + </hbox> 1.52 + 1.53 + <box id="content" 1.54 + class="devtools-responsive-container" 1.55 + flex="1" 1.56 + hidden="true"> 1.57 + <vbox id="web-audio-inspector"> 1.58 + <vbox id="web-audio-inspector-content" flex="1"></vbox> 1.59 + </vbox> 1.60 + <splitter class="devtools-side-splitter"/> 1.61 + <box id="web-audio-graph" class="devtools-responsive-container" flex="1"> 1.62 + <vbox flex="1"> 1.63 + <svg id="graph-svg" flex="1" viewBox="0 0 1000 500" 1.64 + xmlns="http://www.w3.org/2000/svg" 1.65 + xmlns:xlink="http://www.w3.org/1999/xlink"> 1.66 + <g id="graph-target" transform="translate(20,20)"/> 1.67 + </svg> 1.68 + </vbox> 1.69 + </box> 1.70 + </box> 1.71 + </vbox> 1.72 + 1.73 +</window>