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
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
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.geometry.*?>
<?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.MenuButton?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.TitledPane?>
<?import javafx.scene.control.TreeView?>
<?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?>
<?import javafx.geometry.Insets?>
<AnchorPane id="AnchorPane" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.amap.lidar.amapvox.gui.viewer3d.Viewer3DPanelController">
<children>
<ScrollPane fitToWidth="true" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<content>
<VBox>
<children>
<TitledPane collapsible="false" text="Visualization">
<content>
<VBox spacing="10.0">
<children>
<Label text="Voxel file" />
<VBox spacing="10.0">
<children>
<HBox>
<children>
<TextField fx:id="textFieldVoxelFile" editable="false" prefHeight="25.0" prefWidth="350" />
<Button contentDisplay="CENTER" mnemonicParsing="false" onAction="#onActionButtonOpenVoxelFile" text="..." />
</children>
</HBox>
<HBox fx:id="hboxAttributeToView" alignment="CENTER_LEFT" disable="true" spacing="10.0">
<children>
<Label text="Attribute to view" />
<ComboBox fx:id="comboboxAttributeToView" prefHeight="25.0" prefWidth="150.0" />
</children>
</HBox>
</children>
<padding>
<Insets left="25.0" />
</padding>
</VBox>
<Label text="Raster file" />
<VBox spacing="10.0">
<children>
<HBox fx:id="hboxRasterFile" disable="true">
<children>
<TextField fx:id="textfieldRasterFilePath" editable="false" prefHeight="25.0" prefWidth="350.0" />
<Button mnemonicParsing="false" onAction="#onActionButtonOpenRasterFile" text="..." />
</children>
</HBox>
<VBox fx:id="vboxRasterProperties" disable="true" spacing="10.0">
<children>
<CheckBox fx:id="checkboxUseTransformationMatrix" mnemonicParsing="false" prefHeight="30.0" prefWidth="280.0">
<graphic>
<HBox alignment="CENTER_LEFT" spacing="10.0">
<children>
<Label text="Transformation" />
<Button fx:id="buttonSetTransformationMatrix" disable="true" 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>
<HBox alignment="CENTER_LEFT" spacing="10.0">
<children>
<CheckBox fx:id="checkboxFitRasterToVoxelSpace" mnemonicParsing="false" selected="true" text="Fit to voxel space" />
<Label text="Margin (cell number)" />
<TextField fx:id="textfieldRasterFittingMargin" prefHeight="25.0" prefWidth="60.0" text="0" />
</children>
</HBox>
</children>
</VBox>
</children>
<padding>
<Insets left="25.0" />
</padding>
</VBox>
</children>
</VBox>
</content>
</TitledPane>
</children>
</VBox>
</content>
</ScrollPane>
<Button fx:id="buttonOpen3DView" disable="true" mnemonicParsing="false" onAction="#onActionButtonVizualize" text="Open 3D viewer" AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="10.0" />
</children>
</AnchorPane>