-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcomeView.fxml
More file actions
47 lines (45 loc) · 2.33 KB
/
WelcomeView.fxml
File metadata and controls
47 lines (45 loc) · 2.33 KB
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
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="557.0" prefWidth="866.0" xmlns="http://javafx.com/javafx/25" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Button fx:id="scanButton" alignment="CENTER" layoutX="392.0" layoutY="463.0" mnemonicParsing="false" onAction="#scan" text="Scan" textAlignment="CENTER">
<font>
<Font size="24.0" />
</font>
</Button>
<TextField fx:id="logFilesDirField" editable="false" layoutX="206.0" layoutY="164.0" prefHeight="25.0" prefWidth="455.0" />
<Label layoutX="378.0" layoutY="111.0" text="Log files dir*">
<font>
<Font size="20.0" />
</font>
</Label>
<TextField fx:id="reportDirField" editable="false" layoutX="206.0" layoutY="266.0" prefHeight="25.0" prefWidth="455.0" />
<Label layoutX="384.0" layoutY="221.0" text="Report dir*">
<font>
<Font size="20.0" />
</font>
</Label>
<Label fx:id="informationLabel" alignment="CENTER" layoutX="167.0" layoutY="403.0" prefHeight="51.0" prefWidth="533.0" text="Plaese enter data">
<font>
<Font size="22.0" />
</font>
</Label>
<Button fx:id="logFilesDirButton" layoutX="661.0" layoutY="164.0" mnemonicParsing="false" onAction="#chooseLogDir" text="..." />
<Button fx:id="reportDirButton" layoutX="661.0" layoutY="266.0" mnemonicParsing="false" onAction="#chooseReportDir" text="..." />
<CheckBox fx:id="appButton" layoutX="206.0" layoutY="340.0" mnemonicParsing="false" onAction="#appButtonON" prefHeight="45.0" prefWidth="150.0" text="APPLICATION" textAlignment="CENTER">
<font>
<Font size="18.0" />
</font>
</CheckBox>
<CheckBox fx:id="systemButton" layoutX="511.0" layoutY="340.0" mnemonicParsing="false" onAction="#systemButtonON" prefHeight="45.0" prefWidth="150.0" text="SYSTEM" textAlignment="CENTER">
<font>
<Font size="18.0" />
</font>
</CheckBox>
</children>
</AnchorPane>