32 lines
1.2 KiB
XML
Executable File
32 lines
1.2 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<dialog id="addDifficultyDialog" width="300" height="200" title="Add Variation">
|
|
<vbox width="100%" height="100%">
|
|
<form id="difficultyForm" width="100%" height="100%">
|
|
<vbox width="100%" height="100%">
|
|
<grid columns="2" width="100%">
|
|
<label text="Difficulty Name:" verticalAlign="center" horizontalAlign="right" />
|
|
<textfield id="dialogDifficultyName" placeholder="Difficulty name..." width="100%" validator="required" />
|
|
<label text="Variation:" verticalAlign="center" horizontalAlign="right" />
|
|
<dropdown id="dialogVariation" text="Variation..." horizontalAlign="right" width="100%">
|
|
<validator type="required" />
|
|
<validator type="dropdown-not-empty" />
|
|
<data>
|
|
<item id="none" text="" />
|
|
<item id="default" text="Default" />
|
|
</data>
|
|
</dropdown>
|
|
<label id="labelScrollSpeed" text="Scroll Speed: 1.0x" />
|
|
<spacer />
|
|
<slider id="inputScrollSpeed" pos="1.0" step="0.1" precision="1" min="0.5" max="5.0" />
|
|
<spacer />
|
|
</grid>
|
|
</vbox>
|
|
</form>
|
|
<hbox width="100%">
|
|
<button text="Cancel" id="dialogCancel" />
|
|
<spacer width="100%" />
|
|
<button text="Add" id="dialogAdd" horizontalAlign="right" />
|
|
</hbox>
|
|
</vbox>
|
|
</dialog>
|