diff options
| author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-05-05 16:28:09 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-05-08 12:35:33 +0200 | 
| commit | 4e9bbe5134b2efd9e3eab277a92366fe0ba38d4e (patch) | |
| tree | 4faac074301092dc59ae4c11446a5afb24de7e97 /src/main/resources/fxml | |
| parent | d1be1e7dc30f11084f4d7054612d02a230271514 (diff) | |
| download | sepm-groupproject-4e9bbe5134b2efd9e3eab277a92366fe0ba38d4e.tar.gz sepm-groupproject-4e9bbe5134b2efd9e3eab277a92366fe0ba38d4e.tar.xz sepm-groupproject-4e9bbe5134b2efd9e3eab277a92366fe0ba38d4e.zip  | |
VehiclePane FXML
Diffstat (limited to 'src/main/resources/fxml')
| -rw-r--r-- | src/main/resources/fxml/vehiclePane.fxml | 78 | 
1 files changed, 67 insertions, 11 deletions
diff --git a/src/main/resources/fxml/vehiclePane.fxml b/src/main/resources/fxml/vehiclePane.fxml index f6824dc..6014c72 100644 --- a/src/main/resources/fxml/vehiclePane.fxml +++ b/src/main/resources/fxml/vehiclePane.fxml @@ -1,14 +1,70 @@  <?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.geometry.Insets?> +<?import javafx.scene.image.Image?> +<?import javafx.scene.image.ImageView?> +<?import javafx.scene.layout.ColumnConstraints?> +<?import javafx.scene.layout.GridPane?> +<?import javafx.scene.layout.RowConstraints?> +<?import javafx.scene.text.Font?> +<?import javafx.scene.text.Text?> +<?import javafx.scene.text.TextFlow?> -<AnchorPane xmlns="http://javafx.com/javafx" -  xmlns:fx="http://javafx.com/fxml" -  fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.ui.vehiclePane.VehiclePaneController" -  prefHeight="400.0" prefWidth="600.0"> - -</AnchorPane> +<GridPane hgap="6.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.ui.vehiclePane.VehiclePaneController"> +  <columnConstraints> +    <ColumnConstraints /> +    <ColumnConstraints /> +    <ColumnConstraints /> +    <ColumnConstraints /> +  </columnConstraints> +  <rowConstraints> +    <RowConstraints /> +    <RowConstraints /> +    <RowConstraints /> +    <RowConstraints /> +  </rowConstraints> +  <padding> +    <Insets bottom="6.0" left="6.0" right="6.0" top="6.0" /> +  </padding> +  <children> +    <TextFlow GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="0"> +      <Text text="RTW" fx:id="txtType"> +        <font> +          <Font name="System Bold" size="18.0" /> +        </font> +      </Text> +      <Text text="-10003" fx:id="txtNumber"> +        <font> +          <Font size="16.0" /> +        </font> +      </Text> +    </TextFlow> +    <ImageView fx:id="ivNEF" fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true" +      GridPane.columnIndex="0" GridPane.rowIndex="1"> +      <Image url="@../images/NotNEF.png"/> +    </ImageView> +    <Text fx:id="txtNEF" text="keine NEF-Halterung" GridPane.columnIndex="1" GridPane.rowIndex="1"> +      <font> +        <Font size="14.0" /> +      </font> +    </Text> +    <ImageView fx:id="ivQualification" fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true" +      GridPane.columnIndex="0" GridPane.rowIndex="2"> +      <Image url="@../images/Qualification.png"/> +    </ImageView> +    <Text fx:id="txtQualification" text="Notarzt" GridPane.columnIndex="1" GridPane.rowIndex="2"> +      <font> +        <Font size="14.0" /> +      </font> +    </Text> +    <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true" +      GridPane.columnIndex="0" GridPane.rowIndex="3"> +      <Image url="@../images/Vehicle.png"/> +    </ImageView> +    <Text fx:id="txtRooftype" text="Hochdach" GridPane.columnIndex="1" GridPane.rowIndex="3"> +      <font> +        <Font size="14.0" /> +      </font> +    </Text> +  </children> +</GridPane>  | 
