52 lines
2.5 KiB
XML
52 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<AnchorPane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="1280.0" styleClass="background" stylesheets="@style/plateau.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.ReglesControlleurPause">
|
|
<children>
|
|
<VBox alignment="CENTER" layoutX="-3.0" layoutY="-7.0" prefHeight="802.0" prefWidth="1290.0">
|
|
<children>
|
|
<ImageView fx:id="imageRegles" fitHeight="654.0" fitWidth="528.0" pickOnBounds="true" preserveRatio="true">
|
|
<VBox.margin>
|
|
<Insets />
|
|
</VBox.margin>
|
|
</ImageView>
|
|
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
|
|
<children>
|
|
<Button fx:id="precedent" layoutX="519.0" layoutY="31.0" mnemonicParsing="false" onMouseClicked="#pagePrecedente" prefHeight="59.0" prefWidth="225.0" styleClass="bouton" text="Page précédente">
|
|
<font>
|
|
<Font size="24.0" />
|
|
</font>
|
|
<HBox.margin>
|
|
<Insets right="20.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
<Button mnemonicParsing="false" onMouseClicked="#retourEnJeu" prefHeight="59.0" prefWidth="117.0" styleClass="bouton" text="Retour">
|
|
<font>
|
|
<Font size="24.0" />
|
|
</font>
|
|
<HBox.margin>
|
|
<Insets left="20.0" right="20.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
<Button fx:id="suivant" mnemonicParsing="false" onMouseClicked="#pageSuivante" prefHeight="59.0" prefWidth="195.0" styleClass="bouton" text="Page suivante">
|
|
<font>
|
|
<Font size="24.0" />
|
|
</font>
|
|
<HBox.margin>
|
|
<Insets left="20.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
</children>
|
|
</HBox>
|
|
</children>
|
|
</VBox>
|
|
</children>
|
|
</AnchorPane>
|