diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/fxml/ArchiveOperation.fxml | 2 | ||||
| -rw-r--r-- | src/main/resources/fxml/DetailArchiveOperation.fxml | 17 | 
2 files changed, 19 insertions, 0 deletions
diff --git a/src/main/resources/fxml/ArchiveOperation.fxml b/src/main/resources/fxml/ArchiveOperation.fxml index 0e4e3d7..13dbd12 100644 --- a/src/main/resources/fxml/ArchiveOperation.fxml +++ b/src/main/resources/fxml/ArchiveOperation.fxml @@ -4,6 +4,7 @@  <?import javafx.scene.control.Hyperlink?>  <?import javafx.scene.control.Label?>  <?import javafx.scene.control.ScrollPane?> +<?import javafx.scene.image.ImageView?>  <?import javafx.scene.layout.AnchorPane?>  <?import javafx.scene.layout.ColumnConstraints?>  <?import javafx.scene.layout.FlowPane?> @@ -63,6 +64,7 @@                          <Font name="System Bold" size="18.0" />                       </font>                    </Label> +                  <ImageView fx:id="imvVehicleDetail" fitHeight="34.0" fitWidth="34.0" layoutX="14.0" layoutY="97.0" pickOnBounds="true" preserveRatio="true" />                 </children>              </AnchorPane>              <ScrollPane fitToWidth="true" prefHeight="410.0" prefWidth="840.0" AnchorPane.leftAnchor="82.0" AnchorPane.topAnchor="225.0"> diff --git a/src/main/resources/fxml/DetailArchiveOperation.fxml b/src/main/resources/fxml/DetailArchiveOperation.fxml new file mode 100644 index 0000000..29bdeb7 --- /dev/null +++ b/src/main/resources/fxml/DetailArchiveOperation.fxml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.layout.AnchorPane?> +<?import javafx.scene.layout.HBox?> +<?import javafx.scene.layout.VBox?> + + +<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.DetailArchiveOperationController" minWidth="-Infinity" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1"> +   <children> +      <HBox prefHeight="100.0" prefWidth="200.0"> +         <children> +            <VBox fx:id="vBoxVehicle" prefHeight="200.0" prefWidth="100.0" /> +            <VBox fx:id="vBoxPeople" prefHeight="200.0" prefWidth="100.0" /> +         </children> +      </HBox> +   </children> +</AnchorPane>  | 
