-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcess.fxml
More file actions
88 lines (86 loc) · 4.12 KB
/
Copy pathProcess.fxml
File metadata and controls
88 lines (86 loc) · 4.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ProgressBar?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.VBox?>
<AnchorPane fx:id="process_ap" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wf.view.ProcessController">
<children>
<VBox fx:id="process_vb" spacing="10.0" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="5.0">
<children>
<AnchorPane fx:id="top_ap">
<children>
<Label fx:id="title_lb" text="Calculate" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="5.0">
<padding>
<Insets left="10.0" />
</padding></Label>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
</AnchorPane>
<Separator fx:id="north_sp" />
<GridPane fx:id="grid_gr" hgap="10.0" vgap="10.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" />
<ColumnConstraints hgrow="SOMETIMES" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Label fx:id="bgPoints_lb" text="Background Points">
<GridPane.margin>
<Insets left="5.0" />
</GridPane.margin></Label>
<Label fx:id="smoothingPoints_lb" text="Threshold Factor" GridPane.rowIndex="1">
<GridPane.margin>
<Insets left="5.0" />
</GridPane.margin></Label>
<TextField fx:id="bgPoints_tf" GridPane.columnIndex="1">
<GridPane.margin>
<Insets right="5.0" />
</GridPane.margin></TextField>
<ComboBox fx:id="smoothingPoints_cb" GridPane.columnIndex="1" GridPane.rowIndex="1">
<GridPane.margin>
<Insets right="5.0" />
</GridPane.margin></ComboBox>
</children>
<VBox.margin>
<Insets left="5.0" right="5.0" top="5.0" />
</VBox.margin>
</GridPane>
<Label fx:id="progressBar_lb" text="Label">
<VBox.margin>
<Insets left="10.0" top="100.0" />
</VBox.margin>
</Label>
<ProgressBar fx:id="progressBar_pb" progress="0.0">
<VBox.margin>
<Insets left="10.0" right="10.0" top="5.0" />
</VBox.margin>
</ProgressBar>
<Separator fx:id="south_sp" />
<AnchorPane fx:id="bottom_ap" nodeOrientation="RIGHT_TO_LEFT">
<children>
<ButtonBar fx:id="bar_bb" nodeOrientation="LEFT_TO_RIGHT" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0">
<buttons>
<Button fx:id="apply_bt" mnemonicParsing="false" onAction="#applyAction" prefWidth="140.0" text="Start" ButtonBar.buttonData="LEFT" />
<Button fx:id="close_bt" mnemonicParsing="false" onAction="#exitAction" prefWidth="140.0" text="Close" ButtonBar.buttonData="RIGHT" />
</buttons>
</ButtonBar>
</children>
</AnchorPane>
</children>
</VBox>
</children>
</AnchorPane>