Newer
Older
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
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<AnchorPane id="AnchorPane" prefHeight="215.0" prefWidth="473.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.amap.lidar.amapvox.gui.AsciiGridFileExtractorController">
<children>
<VBox layoutX="14.0" layoutY="14.0" spacing="10.0">
<children>
<VBox>
<children>
<HBox alignment="CENTER_LEFT" spacing="10.0">
<children>
<Label text="Raster" />
<TextField fx:id="textfieldRasterFilePath" editable="false" prefHeight="25.0" prefWidth="316.0" />
<Button mnemonicParsing="false" onAction="#onActionButtonSelectRasterFile" text="Select" />
</children>
</HBox>
</children>
</VBox>
<VBox spacing="10.0">
<children>
<CheckBox fx:id="checkboxUseTransformationMatrix" mnemonicParsing="false" onAction="#onActionCheckboxUseTransformationMatrix" prefHeight="30.0" prefWidth="184.0">
<graphic>
<HBox alignment="CENTER" spacing="10.0">
<children>
<Label text="Transformation" />
<Button fx:id="buttonSetTransformationMatrix" mnemonicParsing="false" onAction="#onActionButtonSetTransformationMatrix">
<graphic>
<ImageView fitHeight="20.0" fitWidth="20.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@icons/Interaction_Transformation.png" />
</image>
</ImageView>
</graphic>
</Button>
</children>
</HBox>
</graphic>
</CheckBox>
<VBox alignment="CENTER_LEFT" spacing="5.0">
<children>
<HBox alignment="CENTER_LEFT" spacing="20.0">
<children>
<CheckBox fx:id="checkboxFitRasterToVoxelSpace" mnemonicParsing="false" text="Fit to voxel space" />
</children>
</HBox>
<HBox fx:id="hboxFitToVoxelSpaceParams" alignment="CENTER_LEFT" disable="true" spacing="5.0">
<children>
<Label text="Voxel space" />
<ComboBox fx:id="comboboxSelectVoxelSpaceToFitTo" prefHeight="26.0" prefWidth="142.0" />
<Label text="Margin (cell number)" />
<TextField fx:id="textfieldRasterFittingMargin" prefHeight="25.0" prefWidth="60.0" text="0" />
</children>
</HBox>
</children>
</VBox>
<CheckBox fx:id="checkboxBuildOctree" mnemonicParsing="false" selected="true" text="Build octree" />
</children>
</VBox>
</children>
</VBox>
<Button layoutX="524.0" layoutY="205.0" mnemonicParsing="false" onAction="#onActionButtonImport" text="Import" AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="10.0" />
</children>
</AnchorPane>