-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAjoutPoste.fxml
86 lines (84 loc) · 4 KB
/
AjoutPoste.fxml
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
<?xml version="1.0" encoding="UTF-8"?>
<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="386.0" prefWidth="506.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="projetbd2.AjoutPosteController">
<children>
<AnchorPane id="AnchorPane" layoutY="21.0" prefHeight="365.0" prefWidth="506.0" style="-fx-background-color: #8177AA;">
<children>
<Label layoutX="18.0" layoutY="77.0" text="Nom du Poste :">
<font>
<Font size="18.0" />
</font>
</Label>
<Pane layoutX="-1.0" layoutY="46.0" prefHeight="8.0" prefWidth="507.0" style="-fx-background-color: #3C295E;" />
<HBox alignment="CENTER" layoutY="-1.0" prefHeight="47.0" prefWidth="506.0">
<children>
<Label text="FORMULATION DE CREATION D'UN NOUVEAU POSTE" textFill="RED">
<font>
<Font name="System Bold" size="14.0" />
</font>
</Label>
</children>
</HBox>
<TextField fx:id="nomPoste_box" layoutX="290.0" layoutY="78.0" />
<Label layoutX="18.0" layoutY="128.0" text="Entrez le salaire associé :">
<font>
<Font size="18.0" />
</font>
</Label>
<TextField fx:id="salaire_box" layoutX="290.0" layoutY="129.0" />
<Label layoutX="18.0" layoutY="182.0" text="Breve Descrption :">
<font>
<Font size="18.0" />
</font>
</Label>
<TextArea fx:id="descrip_box" layoutX="290.0" layoutY="182.0" prefHeight="101.0" prefWidth="179.0" />
<Button layoutX="223.0" layoutY="326.0" mnemonicParsing="false" onAction="#ajouterPoste" text="Ajouter">
<font>
<Font name="System Bold" size="14.0" />
</font>
<graphic>
<FontAwesomeIcon fill="#0a06c6" glyphName="SAVE" size="1.5em" />
</graphic>
</Button>
<Label fx:id="lblSucces" layoutX="201.0" layoutY="300.0" opacity="0.0" text="Nouveau Poste crée avec succes" textFill="#f20000">
<font>
<Font name="System Bold" size="13.0" />
</font>
</Label>
<Label layoutX="439.0" layoutY="82.0" text="*" textFill="#e80000" />
<Label layoutY="250.0" text="* : Champ obligatoire" textFill="RED">
<font>
<Font name="System Bold Italic" size="12.0" />
</font>
</Label>
<Label fx:id="lblError" layoutX="203.0" layoutY="283.0" opacity="0.0" text="Erreur!!!!Veuillez reprendre" textFill="RED">
<font>
<Font name="System Bold" size="12.0" />
</font>
</Label>
</children>
</AnchorPane>
<Pane prefHeight="25.0" prefWidth="507.0" style="-fx-background-color: #ffffff;">
<children>
<Button layoutX="462.0" mnemonicParsing="false" onAction="#fermer" prefHeight="20.0" prefWidth="45.0" styleClass="button3" stylesheets="@../Styles/AccueilDirecteur.css">
<graphic>
<FontAwesomeIcon glyphName="REMOVE" size="1.25em" />
</graphic>
</Button>
<Label layoutX="21.0" layoutY="4.0" text="Création d'un nouveau poste">
<font>
<Font size="14.0" />
</font>
</Label>
</children>
</Pane>
</children>
</AnchorPane>