-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartingWindow.fxml
33 lines (32 loc) · 1.61 KB
/
StartingWindow.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane xmlns:fx="http://javafx.com/fxml/1" prefHeight="407.00007792968245" prefWidth="349.0"
xmlns="http://javafx.com/javafx/2.2" fx:controller="StartingWindow">
<children>
<TextField fx:id="sizeX" layoutX="114.0" layoutY="140.0" prefWidth="200.0" text="20"/>
<TextField fx:id="sizeY" layoutX="114.0" layoutY="193.0" prefWidth="200.0" text="20"/>
<CheckBox disable="true" layoutX="161.0" layoutY="92.0" mnemonicParsing="false" text="HEX map"/>
<Label layoutX="44.0" layoutY="143.0" text="width"/>
<Label layoutX="44.0" layoutY="196.0" text="height"/>
<Button fx:id="startButton" layoutX="57.0" layoutY="278.0" mnemonicParsing="false" prefHeight="45.0"
prefWidth="241.0" text="Start NEW GAME" textAlignment="LEFT">
<font>
<Font name="System Bold" size="19.0"/>
</font>
</Button>
<Label layoutX="32.0" layoutY="25.0" prefHeight="44.0" prefWidth="286.0" text="VIRTUAL WORLD"
textFill="#5200ff">
<font>
<Font name="System Bold Italic" size="33.0"/>
</font>
</Label>
<Button id="startButton" fx:id="LoadButton" layoutX="57.0" layoutY="335.0" mnemonicParsing="false"
prefHeight="45.0" prefWidth="241.0" text="Load" textAlignment="LEFT">
<font>
<Font name="System Italic" size="19.0"/>
</font>
</Button>
</children>
</AnchorPane>