Kenmegne
6 days ago 908e81dd173f380879d5fabeb5794d5b7a76df0e
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
<?xml version="1.0" encoding="UTF-8"?>
 
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?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="294.0" prefWidth="679.0" 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.ConfigEditFormController">
    <children>
        <VBox prefHeight="400.0" prefWidth="100.0" spacing="10.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
            <children>
                <TitledPane collapsible="false" prefHeight="254.0" prefWidth="619.0" style="-fx-text-fill: #FFFFFF; -fx-background-color: #FFFFFF;" text="Informations sur l'élément tronqué">
                    <content>
                        <VBox prefHeight="225.0" prefWidth="492.0" spacing="20.0" style="-fx-background-color: #FFFFFF;">
                            <children>
                                <HBox alignment="CENTER_LEFT" layoutX="25.0" layoutY="115.0" prefHeight="25.0" prefWidth="474.0" spacing="5.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="117.0" prefHeight="15.0" prefWidth="117.0" text="Code du type fichier" />
                                        <TextField fx:id="codeTypeFichierTextfield" editable="false" minWidth="200.0" prefHeight="25.0" prefWidth="200.0" style="-fx-background-radius: 0%;">
                                            <HBox.margin>
                                                <Insets />
                                            </HBox.margin>
                                        </TextField>
                                    </children>
                                </HBox>
                                <HBox alignment="CENTER_LEFT" layoutX="25.0" layoutY="115.0" spacing="5.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="117.0" prefWidth="117.0" text="Code de la colonne" />
                                        <TextField fx:id="codeColonneTexfield" editable="false" minWidth="200.0" prefHeight="25.0" prefWidth="200.0" style="-fx-background-radius: 0%;">
                                            <HBox.margin>
                                                <Insets />
                                            </HBox.margin>
                                        </TextField>
                                    </children>
                                </HBox>
                                <HBox alignment="CENTER_LEFT" layoutX="25.0" layoutY="115.0" prefHeight="25.0" prefWidth="596.0" spacing="5.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="117.0" prefWidth="117.0" text="Donnée initiale" />
                              <TextArea fx:id="initialDataTextArea" minWidth="500.0" prefHeight="200.0" prefWidth="500.0" wrapText="true" />
                                    </children>
                                </HBox>
                        <HBox alignment="CENTER_LEFT" layoutX="20.0" layoutY="116.0" spacing="5.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" minWidth="117.0" prefWidth="117.0" text="Donnée finale" />
                              <TextArea fx:id="finalDataTextArea" minWidth="500.0" prefHeight="200.0" prefWidth="500.0" wrapText="true" />
                           </children>
                        </HBox>
                        <HBox alignment="CENTER_LEFT" layoutX="20.0" layoutY="155.0" spacing="5.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" minWidth="117.0" prefWidth="117.0" text="Chemin du fichier" />
                              <TextField fx:id="fileNameTextfield" editable="false" minWidth="500.0" prefHeight="25.0" prefWidth="500.0" style="-fx-background-radius: 0%;">
                                 <HBox.margin>
                                    <Insets />
                                 </HBox.margin>
                              </TextField>
                           </children>
                        </HBox>
                        <HBox alignment="CENTER_LEFT" layoutX="20.0" layoutY="200.0" spacing="5.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" minWidth="117.0" prefWidth="117.0" text="Date de l'action" />
                              <TextField fx:id="dateActionTextfield" editable="false" minWidth="200.0" prefHeight="25.0" prefWidth="200.0" style="-fx-background-radius: 0%;">
                                 <HBox.margin>
                                    <Insets />
                                 </HBox.margin>
                              </TextField>
                           </children>
                        </HBox>
                            </children>
                        </VBox>
                    </content>
               <VBox.margin>
                  <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
               </VBox.margin>
                </TitledPane>
            </children>
        </VBox>
    </children>
</AnchorPane>