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.
48 lines
2.8 KiB
48 lines
2.8 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.text.*?>
|
|
<?import javafx.scene.canvas.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import java.lang.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng302.Controllers.RaceController">
|
|
<children>
|
|
<SplitPane dividerPositions="0.65" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<items>
|
|
<AnchorPane fx:id="canvasBase" prefHeight="581.0" prefWidth="537.0">
|
|
<children>
|
|
<Label fx:id="timer" layoutX="45.0" layoutY="146.0" text="0:0" AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0" />
|
|
<GridPane fx:id="startScreen" prefHeight="600.0" prefWidth="780.0">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="241.0" minHeight="10.0" prefHeight="215.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="213.0" minHeight="10.0" prefHeight="213.0" vgrow="SOMETIMES" />
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Select Your Race Duration" />
|
|
<Button mnemonicParsing="false" onAction="#startRace" text="1 min" GridPane.rowIndex="1" />
|
|
</children>
|
|
</GridPane>
|
|
</children></AnchorPane>
|
|
<AnchorPane layoutX="450.0" minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="200.0" GridPane.columnIndex="1">
|
|
<children>
|
|
<TableView fx:id="boatInfoTable" layoutX="-2.0" prefHeight="600.0" prefWidth="264.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="-2.0" AnchorPane.rightAnchor="-62.0" AnchorPane.topAnchor="0.0">
|
|
<columns>
|
|
<TableColumn fx:id="boatPlacingColumn" prefWidth="50.0" text="Place" />
|
|
<TableColumn fx:id="boatTeamColumn" prefWidth="100.0" text="Team" />
|
|
<TableColumn fx:id="boatMarkColumn" prefWidth="130.0" text="Mark" />
|
|
<TableColumn fx:id="boatSpeedColumn" prefWidth="75.0" text="Speed" />
|
|
</columns>
|
|
</TableView>
|
|
</children>
|
|
</AnchorPane>
|
|
</items>
|
|
</SplitPane>
|
|
</children>
|
|
</AnchorPane>
|