-
Notifications
You must be signed in to change notification settings - Fork 0
/
MicTesting.fxml
31 lines (29 loc) · 1.32 KB
/
MicTesting.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<BorderPane fx:id="_rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="800.0" styleClass="background" stylesheets="@application.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.MicTesting">
<top>
<Label styleClass="label-textsmall" text="Please speak into your microphone to test the levels" BorderPane.alignment="CENTER">
<BorderPane.margin>
<Insets top="10.0" />
</BorderPane.margin>
</Label>
</top>
<center>
<ProgressBar fx:id="progressBar" prefHeight="20.0" prefWidth="558.0" progress="0.0" BorderPane.alignment="CENTER" />
</center>
<bottom>
<Button fx:id="backButton" mnemonicParsing="false" onAction="#changeToMain" prefHeight="33.0" prefWidth="249.0" text="Back to Main Menu" BorderPane.alignment="CENTER">
<font>
<Font size="20.0" />
</font>
<BorderPane.margin>
<Insets bottom="50.0" />
</BorderPane.margin>
</Button>
</bottom>
</BorderPane>