Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Spinner?>
philippe.verley_ird.fr
committed
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.ToggleGroup?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
philippe.verley_ird.fr
committed
<?import javafx.scene.layout.AnchorPane?>
philippe.verley_ird.fr
committed
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<AnchorPane id="AnchorPane" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.65" fx:controller="fr.amap.lidar.amapvox.gui.VoxelSpaceCroppingFrameController">
<children>
<VBox alignment="TOP_LEFT" spacing="20.0" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="10.0" AnchorPane.bottomAnchor="10.0" fillWidth="true" >
<children>
<VBox spacing="10.0">
<children>
<Label text="Voxel file" />
<HBox spacing="10.0">
<children>
<TextField fx:id="textfieldInputVoxelFile" editable="false" prefHeight="26.0" prefWidth="400.0" HBox.hgrow="ALWAYS" />
<Button mnemonicParsing="false" onAction="#onActionButtonOpenVoxelFile" text="..." />
</children>
</HBox>
</children>
</VBox>
<HBox spacing="15.0">
<children>
<fx:define>
<ToggleGroup fx:id="cropToggleGroup" />
</fx:define>
<RadioButton fx:id="autoCropRadioButton" text="Automatic" toggleGroup="$cropToggleGroup" />
<RadioButton fx:id="manualCropRadioButton" text="Manual " toggleGroup="$cropToggleGroup" />
</children>
</HBox>
<VBox spacing="5.0">
<children>
<HBox spacing="20.0">
<children>
<HBox alignment="CENTER_LEFT" spacing="7.0">
<children>
<Label text="I min" />
<Spinner fx:id="spinnerEnterIMin" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
<HBox alignment="CENTER_LEFT" spacing="4.0">
<children>
<Label text="I max" />
<Spinner fx:id="spinnerEnterIMax" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
</children>
</HBox>
<HBox spacing="20.0">
<children>
<HBox alignment="CENTER_LEFT" spacing="7.0">
<children>
<Label text="J min" />
<Spinner fx:id="spinnerEnterJMin" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
<HBox alignment="CENTER_LEFT" spacing="4.0">
<children>
<Label text="J max" />
<Spinner fx:id="spinnerEnterJMax" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
</children>
</HBox>
<HBox spacing="20.0">
<children>
<HBox alignment="CENTER_LEFT" spacing="7.0">
<children>
<Label text="K min" />
<Spinner fx:id="spinnerEnterKMin" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
<HBox alignment="CENTER_LEFT" spacing="4.0">
<children>
<Label text="K max" />
<Spinner fx:id="spinnerEnterKMax" editable="true" prefHeight="26.0" prefWidth="92.0" />
</children>
</HBox>
</children>
</HBox>
</children>
<padding>
<Insets left="20.0" />
</padding>
</VBox>
<HBox spacing="10.0">
<children>
<Button mnemonicParsing="false" onAction="#onActionButtonAreaExtractingWriteNewFile" text="Save" />
<Button mnemonicParsing="false" onAction="#onActionButtonAreaExtractingWriteNewFile" text="Save as..." />
</children>
</HBox>
</children>
</VBox>
</children>
</AnchorPane>