Initial commit

This commit is contained in:
2025-10-30 12:59:45 +01:00
commit 5683322bb7
1627 changed files with 111341 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.Group?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<?import javafx.scene.text.TextFlow?>
<AnchorPane fx:id="PaneDialog" style="-fx-background-color: rgba(0,0,0,0.6);" stylesheets="@../../Public/CSS/StylePrincipal.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" xmlns="http://javafx.com/javafx/13" xmlns:fx="http://javafx.com/fxml/1">
<children>
<StackPane layoutX="10.0" layoutY="10.0" prefHeight="231.0" prefWidth="497.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<Group>
<children>
<Pane prefHeight="231.0" prefWidth="497.0" style="-fx-background-color: #ffffff; -fx-border-color: #212121; -fx-border-radius: 10 10 0 0; -fx-background-radius: 10 10 0 0;">
<children>
<Pane layoutX="1.0" prefHeight="40.0" prefWidth="495.0" style="-fx-background-color: linear-gradient(to bottom, #585858, #333333); -fx-background-radius: 10 10 0 0;">
<children>
<Text fill="WHITE" layoutX="17.0" layoutY="24.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Dialog succés d'enregistement">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</Text>
</children>
</Pane>
<Button fx:id="Valider" layoutX="189.0" layoutY="159.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="122.0" styleClass="btn-success" text="Valider">
<font>
<Font name="Arial" size="22.0" />
</font></Button>
<TextFlow layoutX="120.0" layoutY="105.0" prefHeight="48.0" prefWidth="342.0" textAlignment="JUSTIFY">
<children>
<Text fx:id="Message" strokeType="OUTSIDE" strokeWidth="0.0" text="L'enregistrement a été effectuée avec succès" wrappingWidth="385.0546875">
<font>
<Font name="Arial" size="16.0" />
</font>
</Text>
</children>
</TextFlow>
<ImageView fitHeight="69.0" fitWidth="72.0" layoutX="14.0" layoutY="80.0">
<image>
<Image url="@../../Public/icon/successfully.png" />
</image>
</ImageView>
<Text layoutX="120.0" layoutY="81.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Succés">
<font>
<Font name="Arial" size="28.0" />
</font>
</Text>
</children>
</Pane>
</children>
</Group>
</children>
</StackPane>
</children>
</AnchorPane>