<?xml version="1.0" encoding="UTF-8"?>
|
|
<?import javafx.geometry.Insets?>
|
<?import javafx.scene.control.Button?>
|
<?import javafx.scene.control.ComboBox?>
|
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.control.TextField?>
|
<?import javafx.scene.control.TitledPane?>
|
<?import javafx.scene.layout.AnchorPane?>
|
<?import javafx.scene.layout.HBox?>
|
<?import javafx.scene.layout.VBox?>
|
|
<AnchorPane id="AnchorPane" prefHeight="216.0" prefWidth="648.0" style="-fx-background-color: #fff;" styleClass="mainForm" stylesheets="@../../../../styles/CustomFormComponents.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.megatim.fdxconvert.forms.RawCsvDataEditFormController">
|
<children>
|
<VBox layoutX="-6.0" layoutY="7.0" prefHeight="271.0" prefWidth="665.0" spacing="5.0" AnchorPane.bottomAnchor="-7.0" AnchorPane.leftAnchor="-6.0" AnchorPane.rightAnchor="-11.0" AnchorPane.topAnchor="7.0">
|
<padding>
|
<Insets bottom="20.0" left="32.0" right="32.0" top="20.0" />
|
</padding>
|
<children>
|
<TitledPane collapsible="false" prefHeight="231.0" prefWidth="598.0" style="-fx-text-fill: #fff;" styleClass="text" text="Informations sur le fichier à importer">
|
<content>
|
<VBox spacing="20.0" style="-fx-background-color: #fff;">
|
<children>
|
<!-- <HBox alignment="CENTER_LEFT" spacing="10.0">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Format du fichier" />
|
<ComboBox fx:id="formatFichier" prefWidth="150.0" />
|
</children>
|
</HBox>-->
|
<HBox alignment="CENTER_LEFT" spacing="10.0">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Délimiteur de ligne" />
|
<ComboBox fx:id="delimiteurLigne" prefWidth="150.0" style="-fx-background-radius: 0%; -fx-background-color: #fff; -fx-border-color: #C9C9CC;" />
|
</children>
|
</HBox>
|
<HBox alignment="CENTER_LEFT" spacing="10.0">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Délimiteur colonne" />
|
<ComboBox fx:id="delimiteurColonne" prefWidth="150.0" style="-fx-background-radius: 0%; -fx-background-color: #fff; -fx-border-color: #C9C9CC;" />
|
</children>
|
</HBox>
|
<!-- <HBox alignment="CENTER_LEFT" spacing="10.0">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Type de fichier" />
|
<AbstractSelectionItem fx:id="typeFichierAbstractSelectItem" minWidth="330.0" prefWidth="330.0" />
|
</children>
|
</HBox>-->
|
<HBox alignment="CENTER_LEFT">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Fichier à importer" />
|
<TextField fx:id="fileToImportTextField" prefHeight="25.0" prefWidth="336.0" style="-fx-background-radius: 0%;">
|
<HBox.margin>
|
<Insets left="10.0" right="2.0" />
|
</HBox.margin>
|
</TextField>
|
<Button fx:id="importButton" maxWidth="25.0" minHeight="28.0" mnemonicParsing="false" onMousePressed="#importButtonOnClicked" prefHeight="28.0" prefWidth="25.0" style="-fx-background-radius: 0%; -fx-font-weight: bold; -fx-background-color: #fff; -fx-border-color: #C9C9CC;" text="...">
|
<HBox.margin>
|
<Insets right="10.0" />
|
</HBox.margin>
|
</Button>
|
</children>
|
</HBox>
|
<HBox alignment="CENTER_LEFT" layoutX="25.0" layoutY="115.0">
|
<children>
|
<Label alignment="CENTER_RIGHT" minWidth="205.0" text="Repertoire de dépôt du fichier txt" />
|
<TextField fx:id="OutDirTextField" prefHeight="25.0" prefWidth="336.0" style="-fx-background-radius: 0%;">
|
<HBox.margin>
|
<Insets left="10.0" right="2.0" />
|
</HBox.margin>
|
</TextField>
|
<Button fx:id="OutButton" maxHeight="28.0" minHeight="28.0" mnemonicParsing="false" onMousePressed="#outButtonOnClicked" prefHeight="28.0" style="-fx-background-radius: 0%; -fx-background-color: #fff; -fx-border-color: #C9C9CC; -fx-font-weight: bold;" text="...">
|
<HBox.margin>
|
<Insets right="10.0" />
|
</HBox.margin>
|
</Button>
|
</children>
|
</HBox>
|
</children>
|
<padding>
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
</padding>
|
</VBox>
|
</content>
|
</TitledPane>
|
</children>
|
</VBox>
|
</children>
|
</AnchorPane>
|