blob: 0394ca737362766bcd519abd1bc9d4b3fd88e925 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ChoiceBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="600.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.controller.RegistrationWindowController">
<children>
<AnchorPane prefHeight="135.0" prefWidth="600.0">
<children>
<Label layoutX="14.0" layoutY="14.0" text="Neue Anmeldung" />
<Label layoutX="14.0" layoutY="44.0" text="von" />
<Label layoutX="133.0" layoutY="44.0" text="bis" />
<ChoiceBox fx:id="cbStart" layoutX="42.0" layoutY="40.0" prefWidth="80.0" />
<ChoiceBox fx:id="cbEnd" layoutX="159.0" layoutY="40.0" prefWidth="80.0" />
<Label layoutX="10.0" layoutY="82.0" text="Fahrzeug" />
<Label fx:id="lVehicles" layoutX="10.0" layoutY="108.0" text="Fahrzeugname" />
<Label layoutX="216.0" layoutY="82.0" text="Personen" />
<Label fx:id="lEmployees" layoutX="216.0" layoutY="108.0" text="Namen" />
</children>
</AnchorPane>
<SplitPane dividerPositions="0.35" prefWidth="200.0">
<items>
<VBox prefHeight="200.0" prefWidth="100.0">
<children>
<Label text="Fahrzeugsuche" />
<TextField fx:id="tfVehicleSearch" />
<TableView fx:id="tvVehicles" prefHeight="200.0" prefWidth="200.0">
<columns>
<TableColumn fx:id="tcVehicles" prefWidth="75.0" text="Fahrzeuge" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</children>
</VBox>
<VBox prefHeight="200.0" prefWidth="100.0">
<children>
<Label text="Personensuche" />
<TextField fx:id="tfEmployeeSearch" />
<TableView fx:id="tvEmployees" prefHeight="200.0" prefWidth="200.0">
<columns>
<TableColumn fx:id="tcEmployees" prefWidth="75.0" text="Personen" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</children>
</VBox>
</items>
</SplitPane>
<HBox alignment="CENTER" prefWidth="200.0">
<children>
<Button mnemonicParsing="false" onAction="#cancel" text="Abbrechen">
<HBox.margin>
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0" />
</HBox.margin>
</Button>
<Button mnemonicParsing="false" onAction="#create" text="Erstellen">
<HBox.margin>
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0" />
</HBox.margin>
</Button>
</children></HBox>
</children>
</VBox>
|