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.
150 lines
8.6 KiB
150 lines
8.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ComboBox?>
|
|
<?import javafx.scene.control.ContextMenu?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.MenuItem?>
|
|
<?import javafx.scene.control.ScrollPane?>
|
|
<?import javafx.scene.control.TableColumn?>
|
|
<?import javafx.scene.control.TableView?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<GridPane 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.AirlineRDController">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="457.0" minHeight="10.0" prefHeight="403.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="129.0" minHeight="10.0" prefHeight="111.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Pane prefHeight="600.0" prefWidth="800.0" GridPane.columnSpan="2" GridPane.rowSpan="2">
|
|
<children>
|
|
<Label layoutX="14.0" layoutY="14.0" text="Airline Raw Data">
|
|
<font>
|
|
<Font size="29.0" />
|
|
</font>
|
|
</Label>
|
|
<Button layoutX="14.0" layoutY="526.0" mnemonicParsing="false" prefHeight="25.0" prefWidth="125.0" text="Analyse" />
|
|
<Button layoutX="654.0" layoutY="526.0" mnemonicParsing="false" onAction="#addAirlineSingle" prefHeight="25.0" prefWidth="125.0" text="Add" />
|
|
<Pane layoutX="14.0" layoutY="57.0" prefHeight="340.0" prefWidth="765.0">
|
|
<children>
|
|
<TableView fx:id="tableViewAirlineRD" layoutX="1.0" prefHeight="340.0" prefWidth="765.0">
|
|
<columns>
|
|
<TableColumn fx:id="airlIDcol" prefWidth="83.0" text="Airline ID" />
|
|
<TableColumn fx:id="airlNamecol" prefWidth="450.0" text="Name" />
|
|
<TableColumn fx:id="airlAliascol" minWidth="0.0" prefWidth="56.0" text="Alias" />
|
|
<TableColumn fx:id="airlIATAcol" minWidth="0.0" prefWidth="59.0" text="IATA" />
|
|
<TableColumn fx:id="airlICAOcol" minWidth="0.0" prefWidth="68.0" text="ICAO" />
|
|
<TableColumn fx:id="airlCallsigncol" minWidth="0.0" prefWidth="400.0" text="Callsign" />
|
|
<TableColumn fx:id="airlCountrycol" minWidth="0.0" prefWidth="200.0" text="Country" />
|
|
<TableColumn fx:id="airlActivecol" minWidth="8.0" prefWidth="66.0" text="Active" />
|
|
</columns>
|
|
<contextMenu>
|
|
<ContextMenu>
|
|
<items>
|
|
<MenuItem mnemonicParsing="false" onAction="#deleteAirline" text="Delete" />
|
|
</items>
|
|
</ContextMenu>
|
|
</contextMenu>
|
|
</TableView>
|
|
</children>
|
|
</Pane>
|
|
<ScrollPane layoutX="14.0" layoutY="467.0" prefHeight="56.0" prefWidth="765.0">
|
|
<content>
|
|
<Pane prefHeight="37.0" prefWidth="1436.0">
|
|
<children>
|
|
<TextField fx:id="airlNameBox" layoutX="97.0" layoutY="3.0" prefHeight="31.0" prefWidth="450.0" promptText="Name">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlAliasBox" layoutX="547.0" layoutY="3.0" prefHeight="31.0" prefWidth="56.0" promptText="Alias">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlIATABox" layoutX="603.0" layoutY="3.0" prefHeight="31.0" prefWidth="59.0" promptText="IATA">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlICAOBox" layoutX="662.0" layoutY="3.0" prefHeight="31.0" prefWidth="68.0" promptText="ICAO">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlCallsignBox" layoutX="730.0" layoutY="3.0" prefHeight="31.0" prefWidth="400.0" promptText="Callsign">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlCountryBox" layoutX="1130.0" layoutY="3.0" prefHeight="31.0" prefWidth="200.0" promptText="Country">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<Label layoutX="14.0" layoutY="6.0" prefHeight="25.0" prefWidth="84.0" text="Add Airline:" />
|
|
<ComboBox fx:id="airlActiveCBox" layoutX="1330.0" layoutY="3.0" prefHeight="31.0" prefWidth="102.0" promptText="Active" />
|
|
</children>
|
|
</Pane>
|
|
</content>
|
|
</ScrollPane>
|
|
<ScrollPane layoutX="14.0" layoutY="406.0" prefHeight="56.0" prefWidth="713.0">
|
|
<content>
|
|
<Pane prefHeight="37.0" prefWidth="1315.0">
|
|
<children>
|
|
<TextField fx:id="airlNameFilter" layoutX="57.0" layoutY="3.0" prefHeight="31.0" prefWidth="400.0" promptText="Name">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlAliasFilter" layoutX="457.0" layoutY="3.0" prefHeight="31.0" prefWidth="56.0" promptText="Alias">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlIATAFilter" layoutX="513.0" layoutY="3.0" prefHeight="31.0" prefWidth="59.0" promptText="IATA">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlICAOFilter" layoutX="572.0" layoutY="3.0" prefHeight="31.0" prefWidth="68.0" promptText="ICAO">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlCallsignFilter" layoutX="640.0" layoutY="3.0" prefHeight="31.0" prefWidth="400.0" promptText="Callsign">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<TextField fx:id="airlCountryFilter" layoutX="1040.0" layoutY="3.0" prefHeight="31.0" prefWidth="200.0" promptText="Country">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
<Label layoutX="10.0" layoutY="6.0" prefHeight="25.0" prefWidth="47.0" text="Filter :" />
|
|
<TextField fx:id="airlActiveFilter" layoutX="1240.0" layoutY="3.0" prefHeight="31.0" prefWidth="66.0" promptText="Active">
|
|
<padding>
|
|
<Insets left="2.0" right="2.0" />
|
|
</padding>
|
|
</TextField>
|
|
</children>
|
|
</Pane>
|
|
</content>
|
|
</ScrollPane>
|
|
<Button layoutX="733.0" layoutY="416.0" mnemonicParsing="false" onAction="#filterAirlines" prefHeight="31.0" prefWidth="40.0" text="Go" />
|
|
</children>
|
|
</Pane>
|
|
</children>
|
|
</GridPane>
|