43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||
|
|
||
|
<!DOCTYPE window>
|
||
|
|
||
|
<!-- To edit this file I recommend you to use:
|
||
|
http://xulfr.org/outils/xulediteur.xul
|
||
|
-->
|
||
|
|
||
|
<window
|
||
|
id = "nixos-gui"
|
||
|
title = "NixOS gui"
|
||
|
width = "800"
|
||
|
height = "600"
|
||
|
xmlns = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||
|
<script src="jquery-1.3.2.js"/>
|
||
|
<script src="io.js"/>
|
||
|
<script src="nixos.js"/>
|
||
|
<script src="optionView.js"/>
|
||
|
<script src="main.js"/>
|
||
|
<columns height="580">
|
||
|
<column width = "300">
|
||
|
<tree flex="1" id="option-tree" persist="height" onselect="gOptionView.selectionChanged()">
|
||
|
<treecols>
|
||
|
<treecol persist="hidden width" flex="1" id="opt-name"
|
||
|
label="Option" primary="true"/>
|
||
|
<!-- Uncomment the following column to see the number of option
|
||
|
printed below each options. -->
|
||
|
<!--
|
||
|
<treecol persist="hidden width" flex="1" id="dbg-size"
|
||
|
label="Size"/>
|
||
|
-->
|
||
|
</treecols>
|
||
|
<treechildren id="first-child" flex="1"/>
|
||
|
</tree>
|
||
|
</column>
|
||
|
<column flex="1">
|
||
|
<description id="option-desc" hidden="false"></description>
|
||
|
</column>
|
||
|
</columns>
|
||
|
<!-- <progressmeter id="progress-bar" value="0%"/> -->
|
||
|
</window>
|