-
Notifications
You must be signed in to change notification settings - Fork 24
/
OptionsWindow.fxml
36 lines (33 loc) · 1.24 KB
/
OptionsWindow.fxml
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
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.layout.*?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<VBox alignment="TOP_CENTER" spacing="10.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Label text="Default Note Volume" />
<Slider fx:id="defaultVolume" majorTickUnit="16.0" max="128.0" showTickLabels="true" showTickMarks="true" snapToTicks="true" value="96.0" />
<Label text="Increase Tempo by how many times?" />
<TextField fx:id="tempoMultiplier" />
<VBox alignment="CENTER" spacing="1.0">
<children>
<Label text="Current Soundfont" />
<ComboBox fx:id="currentSoundfont" prefWidth="150.0" />
<CheckBox fx:id="bindSoundfont" mnemonicParsing="false" text="Bind to Song">
<font>
<Font size="9.0" />
</font>
</CheckBox>
</children>
</VBox>
<FlowPane alignment="CENTER">
<children>
<Button fx:id="optionsOK" mnemonicParsing="false" text="OK" />
</children>
</FlowPane>
</children>
<padding>
<Insets top="10.0" />
</padding>
</VBox>