You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import java.lang.*?>
|
|
<?import java.util.*?>
|
|
<?import javafx.scene.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<?import javafx.scene.shape.Rectangle?>
|
|
<BorderPane xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="FXML.VueJeu"
|
|
prefHeight="400.0" prefWidth="600.0">
|
|
<top>
|
|
<VBox>
|
|
<MenuBar>
|
|
<Menu text="File">
|
|
<MenuItem text="Open"/>
|
|
<MenuItem text="Save"/>
|
|
</Menu>
|
|
<Menu text="apropos">
|
|
<MenuItem text="License"/>
|
|
</Menu>
|
|
</MenuBar>
|
|
<HBox>
|
|
<Button>Play</Button>
|
|
<Button>Pause</Button>
|
|
<Button>Random</Button>
|
|
</HBox>
|
|
</VBox>
|
|
</top>
|
|
<right>
|
|
<VBox>
|
|
<Label>Color</Label>
|
|
<ColorPicker/>
|
|
<Label>Birth</Label>
|
|
<HBox>
|
|
<Label>1</Label> <CheckBox/>
|
|
<Label>2</Label> <CheckBox/>
|
|
<Label>3</Label> <CheckBox/>
|
|
<Label>4</Label> <CheckBox/>
|
|
</HBox>
|
|
<Label>Column</Label>
|
|
<Spinner fx:id="colGame" min="0" max="50"/>
|
|
<Label>Row</Label>
|
|
<Spinner fx:id="rowGame" min="0" max="50"/>
|
|
</VBox>
|
|
</right>
|
|
<center>
|
|
<GridPane fx:id="map" hgap="2" vgap="2">
|
|
</GridPane>
|
|
</center>
|
|
</BorderPane>
|