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.
87 lines
4.6 KiB
87 lines
4.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ContextMenu?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.MenuItem?>
|
|
<?import javafx.scene.control.TableColumn?>
|
|
<?import javafx.scene.control.TableView?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<GridPane alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="568.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng202.group9.GUI.AirportRDController">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="50.0" minHeight="0.0" prefHeight="50.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="450.0" minHeight="10.0" prefHeight="450.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="68.0" minHeight="0.0" prefHeight="68.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Label text="Airport Raw Data" GridPane.halignment="LEFT" GridPane.valignment="TOP">
|
|
<font>
|
|
<Font size="36.0" />
|
|
</font>
|
|
<GridPane.margin>
|
|
<Insets left="15.0" />
|
|
</GridPane.margin>
|
|
</Label>
|
|
<TableView fx:id="tableViewAirportRD" prefHeight="200.0" prefWidth="908.0" GridPane.columnSpan="2" GridPane.rowIndex="1">
|
|
<GridPane.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" />
|
|
</GridPane.margin>
|
|
<contextMenu>
|
|
<ContextMenu>
|
|
<items>
|
|
<MenuItem mnemonicParsing="false" onAction="#deleteAirport" text="Delete" />
|
|
</items>
|
|
</ContextMenu>
|
|
</contextMenu>
|
|
<columns>
|
|
<TableColumn fx:id="airpIDCol" prefWidth="81.00003051757812" text="Airport ID" />
|
|
<TableColumn fx:id="airpNameCol" prefWidth="350.0" text="Name" />
|
|
<TableColumn fx:id="airpCityCol" minWidth="0.0" prefWidth="200.0" text="City" />
|
|
<TableColumn fx:id="airpCountryCol" minWidth="0.0" prefWidth="200.0" text="Country" />
|
|
<TableColumn fx:id="airpIATAFFACol" minWidth="0.0" text="IATA/FAA" />
|
|
<TableColumn fx:id="airpICAOCol" minWidth="0.0" prefWidth="58.0" text="ICAO" />
|
|
<TableColumn fx:id="airpLatitudeCol" minWidth="0.0" prefWidth="100.0" text="Latitude" />
|
|
<TableColumn fx:id="airpLongitudeCol" minWidth="8.0" prefWidth="100.0" text="Longitude" />
|
|
<TableColumn fx:id="airpAltitudeCol" minWidth="0.0" prefWidth="75.0" text="Altitude" />
|
|
<TableColumn fx:id="airpTimezoneCol" minWidth="0.0" prefWidth="100.0" text="Timezone" />
|
|
<TableColumn fx:id="airpDSTCol" prefWidth="55.0" text="DST" />
|
|
<TableColumn fx:id="airpTzCol" minWidth="0.0" prefWidth="200.0" text="Tz database time zone" />
|
|
</columns>
|
|
</TableView>
|
|
<HBox prefHeight="100.0" prefWidth="200.0" GridPane.columnSpan="2" GridPane.halignment="RIGHT" GridPane.rowIndex="2" GridPane.valignment="BASELINE">
|
|
<children>
|
|
<Button mnemonicParsing="false" onAction="#analyse_Button" text="Analyse Airport Data">
|
|
<HBox.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
<Button mnemonicParsing="false" onAction="#openFilter" text="Filter Airport Data">
|
|
<HBox.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
<Button mnemonicParsing="false" nodeOrientation="LEFT_TO_RIGHT" onAction="#openAdd" text="Add New Airport">
|
|
<HBox.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
</children>
|
|
</HBox>
|
|
<Button mnemonicParsing="false" nodeOrientation="LEFT_TO_RIGHT" onAction="#airportSummaryButton" text="Back to Airport Summary" GridPane.columnIndex="1" GridPane.halignment="RIGHT" GridPane.rowIndex="2" GridPane.valignment="TOP">
|
|
<GridPane.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
</GridPane.margin>
|
|
</Button>
|
|
</children>
|
|
</GridPane>
|