summaryrefslogtreecommitdiffstats
path: root/devtools/client/webide/content/newapp.xul
blob: 7ff083519cb323e66a28a924e605b93afa8f5e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0"?>

<!-- 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 % webideDTD SYSTEM "chrome://devtools/locale/webide.dtd" >
  %webideDTD;
]>

<?xml-stylesheet href="chrome://global/skin/global.css"?>
<?xml-stylesheet href="chrome://webide/skin/newapp.css"?>

<dialog id="webide:newapp" title="&newAppWindowTitle;"
  width="600" height="400"
  buttons="accept,cancel"
  ondialogaccept="return doOK();"
  buttondisabledaccept="true"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

  <script type="application/javascript" src="newapp.js"></script>
  <label class="header-name" value="&newAppHeader;"/>

  <richlistbox id="templatelist" flex="1">
    <description>&newAppLoadingTemplate;</description>
  </richlistbox>
  <vbox>
    <label class="header-name" control="project-name" value="&newAppProjectName;"/>
    <textbox id="project-name"/>
  </vbox>

</dialog>