Kenmegne
7 days ago 494d349fb67be74da49caae2794fda702f595fb4
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0" encoding="UTF-8"?>
 
<?import com.megatimfx.common.customcontrols.AbstractSelectionItem?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.TitledPane?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.layout.VBox?>
 
<AnchorPane id="AnchorPane" prefHeight="249.0" prefWidth="648.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.megatim.fdxgenerator.forms.FichierValidationEditFormController">
    <children>
        <VBox spacing="5.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
            <padding>
                <Insets bottom="20.0" left="32.0" right="32.0" top="20.0" />
            </padding>
            <children>
                <TitledPane collapsible="false" text="Informations sur le fichier de validation">
                    <content>
                        <VBox spacing="5.0">
                            <children>
                                <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="327.0">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin></AbstractSelectionItem>
                                    </children>
                                </HBox>
                        <HBox layoutX="25.0" layoutY="87.0" prefHeight="100.0" prefWidth="200.0" spacing="10.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" prefWidth="205.0" text="Protéger fichier de validation ?" />
                              <CheckBox fx:id="isProtegeCheckBox" layoutX="235.0" layoutY="10.0" mnemonicParsing="false" text="Oui">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin>
                              </CheckBox>
                           </children>
                        </HBox>
                        <HBox prefHeight="100.0" prefWidth="200.0" spacing="10.0">
                           <children>
                              <Label alignment="TOP_RIGHT" prefWidth="205.0" text="Clé de cryptage" />
                              <StackPane minWidth="328.0" prefHeight="150.0" prefWidth="200.0">
                                 <children>
                                    <TextField fx:id="showKeyToEncrypt" prefWidth="328.0" style="-fx-background-radius: 0%;" />
                                    <PasswordField fx:id="keyToEncryptField" />
                                    <ImageView fx:id="imageView" fitHeight="15.0" fitWidth="15.0" onMousePressed="#eyeOnMousePressed" pickOnBounds="true" preserveRatio="true" StackPane.alignment="CENTER_RIGHT">
                                       <StackPane.margin>
                                          <Insets right="5.0" />
                                       </StackPane.margin>
                                       <image>
                                          <Image url="@../../../../images/oeil.png" />
                                       </image>
                                    </ImageView>
                                 </children>
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin>
                              </StackPane>
                           </children>
                        </HBox>
                        <HBox layoutX="25.0" layoutY="57.0" prefHeight="100.0" prefWidth="200.0" spacing="10.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" prefWidth="205.0" text="Confirmation de la clé" />
                              <PasswordField fx:id="keyConfirmationField" minWidth="328.0">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin>
                              </PasswordField>
                           </children>
                        </HBox>
                        <HBox layoutX="25.0" layoutY="117.0" prefHeight="100.0" prefWidth="200.0" spacing="10.0">
                           <children>
                              <Label alignment="CENTER_RIGHT" prefWidth="205.0" text="Valider nom du fichier ?" />
                              <CheckBox fx:id="validateFileNameCheckBox" layoutX="235.0" layoutY="10.0" mnemonicParsing="false" text="Oui">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin>
                              </CheckBox>
                           </children>
                        </HBox>
<!--                                <HBox alignment="CENTER_LEFT">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="205.0" text="Repertoire de sortie" />
                                        <TextField fx:id="OutDirTextField" prefHeight="25.0" prefWidth="336.0">
                                            <HBox.margin>
                                                <Insets left="10.0" right="2.0" />
                                            </HBox.margin>
                                        </TextField>
                                        <Button fx:id="OutButton" mnemonicParsing="false" onMousePressed="#outButtonOnClicked" prefHeight="25.0" prefWidth="31.0" 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>
                <TitledPane fx:id="fileNameTitledPane" collapsible="false" text="Informations sur le nom du fichier à valider">
                    <content>
                        <VBox spacing="5.0">
                            <children>
                                <HBox alignment="CENTER_LEFT" spacing="10.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="205.0" text="Format de la date" />
                                         <ComboBox fx:id="formatDate" prefWidth="327.0" style="-fx-background-radius: 0%;">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin></ComboBox>
                                    </children>
                                </HBox>
<!--                                <HBox alignment="CENTER_LEFT" spacing="10.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="205.0" text="Extension du fichier" />
                              <ComboBox fx:id="extensionFichier" prefWidth="327.0" style="-fx-background-radius: 0%;">
                                 <HBox.margin>
                                    <Insets left="10.0" />
                                 </HBox.margin>
                              </ComboBox>
                                    </children>
                                </HBox>-->
                                <HBox alignment="CENTER_LEFT" spacing="10.0">
                                    <children>
                                        <Label alignment="CENTER_RIGHT" minWidth="205.0" text="Valeur maximale des tierces" />
                                        <TextField fx:id="MaxValueTierceTextField" prefHeight="25.0" prefWidth="124.0" style="-fx-background-radius: 0%;">
                                            <HBox.margin>
                                                <Insets left="10.0" />
                                            </HBox.margin>
                                        </TextField>
                                    </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>