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
<?xml version="1.0" encoding="UTF-8"?>
 
<?import javafx.geometry.Insets?>
<?import javafx.scene.Cursor?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuButton?>
<?import javafx.scene.control.MenuItem?>
<?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?>
 
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="533.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.megatim.fdxgenerator.controller.MainController">
   <children>
      <VBox fx:id="mainContainer" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: transparent;" stylesheets="@../../../../styles/main_screen.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
         <children>
            <HBox style="-fx-background-color: transparent;" stylesheets="@../../../../styles/main_screen.css">
               <children>
                  <HBox alignment="CENTER">
                     <children>
                        <ImageView fitHeight="48.0" fitWidth="190.0" pickOnBounds="true" preserveRatio="true">
                           <image>
                              <Image url="@../../../../images/icone_ins.png" />
                           </image>
                        </ImageView>
                     </children>
                     <padding>
                        <Insets right="30.0" />
                     </padding>
                  </HBox>
                  <HBox fx:id="myMenuBar">
                     <children>
                        <MenuButton contentDisplay="TOP" mnemonicParsing="false" text="Fichier">
                           <graphic>
                              <ImageView fitHeight="20.0" fitWidth="20.0" pickOnBounds="true" preserveRatio="true">
                                 <image>
                                    <Image url="@../../../../images/Fichier.png" />
                                 </image>
                              </ImageView>
                           </graphic>
                           <items>
                              <MenuItem mnemonicParsing="false" onAction="#quit" text="Quitter" />
                           </items>
                        </MenuButton>
                        <MenuButton contentDisplay="TOP" mnemonicParsing="false" text="Paramètres">
                           <graphic>
                              <ImageView fitHeight="20.0" fitWidth="20.0" pickOnBounds="true" preserveRatio="true">
                                 <image>
                                    <Image url="@../../../../images/143-02.png" />
                                 </image>
                              </ImageView>
                           </graphic>
                           <items>
                              <Menu mnemonicParsing="false" text="TypeFichier">
                                 <items>
                                    <MenuItem fx:id="validateurMenuItem" mnemonicParsing="false" onAction="#openImportTypeFichierDialog" text="Importer" />
                                    <MenuItem fx:id="typeFichMenuItem" mnemonicParsing="false" onAction="#openTypeFichierDialog" text="Consulter" />
                                 </items>
                              </Menu>
                              <MenuItem fx:id="configMenuItem" mnemonicParsing="false" onAction="#openConfigDialog" text="Configuration des repertoires" />
                              <MenuItem fx:id="validateurTypeFichMenuItem" mnemonicParsing="false" onAction="#openValidateurFichierDialog" text="Consulter les validateurs des typeFichier" />
                              <MenuItem fx:id="fichierValidationMenuItem1" mnemonicParsing="false" onAction="#openFichierValidationDialog" text="Générer les fichiers de validation" />
                           </items>
                        </MenuButton>
                        <MenuButton contentDisplay="TOP" disable="true" mnemonicParsing="false" text="Aide">
                           <graphic>
                              <ImageView disable="true" fitHeight="20.0" fitWidth="20.0" pickOnBounds="true" preserveRatio="true">
                                 <image>
                                    <Image url="@../../../../images/143-05.png" />
                                 </image>
                              </ImageView>
                           </graphic>
                           <items>
                              <MenuItem mnemonicParsing="false" text="A propos" />
                           </items>
                        </MenuButton>
                     </children>
                  </HBox>
               </children>
               <padding>
                  <Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
               </padding>
            </HBox>
            <HBox spacing="10.0" style="-fx-background-color: #fff; -fx-border-color: #dedfe0;">
               <padding>
                  <Insets bottom="5.0" left="15.0" right="5.0" top="5.0" />
               </padding>
               <children>
                  <HBox prefWidth="200.0" spacing="10.0">
                     <children>
                        <Button fx:id="btnGenValidateur" mnemonicParsing="false" onAction="#openFichierValidationDialog" styleClass="receive">
                           <cursor>
                              <Cursor fx:constant="HAND" />
                           </cursor>
                        </Button>
                     </children>
                  </HBox>
                  <HBox alignment="TOP_RIGHT" prefWidth="200.0" HBox.hgrow="ALWAYS" />
               </children>
            </HBox>
            <VBox prefHeight="437.0" prefWidth="928.0" style="-fx-background-color: transparent;" styleClass="main_screen" stylesheets="@../../../../styles/main_screen.css" VBox.vgrow="ALWAYS" />
         </children>
      </VBox>
   </children>
</AnchorPane>