Newer
Older
<?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>
philippe.verley_ird.fr
committed
<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="25.0">
<children>
<VBox spacing="10.0">
<children>
<HBox alignment="CENTER_LEFT" spacing="10.0">
<children>
<Label text="Voxel file" />
<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="false" spacing="10.0">
philippe.verley_ird.fr
committed
<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>
<HBox spacing="10.0" alignment="CENTER_LEFT" >
<children>
<Button fx:id="buttonOpen3DView" disable="true" mnemonicParsing="false" onAction="#onActionButtonVizualize" text="Open 3D viewer" />
<Button fx:id="buttonOpenNew3DView" disable="true" mnemonicParsing="false" onAction="#onActionButtonNewVisualization" text="Open new 3D viewer" />
</children>
</HBox>
</children>
</VBox>
</content>
</TitledPane>
</children>
</VBox>
</content>
</ScrollPane>
</children>
</AnchorPane>