aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2018-05-04 15:14:56 +0200
committerTharre <tharre3@gmail.com>2018-05-04 15:14:56 +0200
commit7e113639279dff8d39e45cae44d4c2dcbc7614b6 (patch)
treef5d5c1779e73a577e1dbe30658aec6cf38e1e6b6 /src/main/resources
parent7077b817bff797c769191046f0019508ddb20eba (diff)
parent2a57412e33ecb3d87a0181b0c6b3b57f6ef10c83 (diff)
downloadsepm-groupproject-7e113639279dff8d39e45cae44d4c2dcbc7614b6.tar.gz
sepm-groupproject-7e113639279dff8d39e45cae44d4c2dcbc7614b6.tar.xz
sepm-groupproject-7e113639279dff8d39e45cae44d4c2dcbc7614b6.zip
Merge branch 'review_create_new_employee' into develop
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/fxml/createNewEmployee.fxml24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/fxml/createNewEmployee.fxml b/src/main/resources/fxml/createNewEmployee.fxml
new file mode 100644
index 0000000..5fa1ca9
--- /dev/null
+++ b/src/main/resources/fxml/createNewEmployee.fxml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.Button?>
+<?import javafx.scene.control.CheckBox?>
+<?import javafx.scene.control.ChoiceBox?>
+<?import javafx.scene.control.Hyperlink?>
+<?import javafx.scene.control.Label?>
+<?import javafx.scene.control.TextField?>
+<?import javafx.scene.layout.AnchorPane?>
+
+
+<AnchorPane prefHeight="114.0" 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.CreateNewEmployeeController">
+ <children>
+ <Label layoutX="14.0" layoutY="14.0" text="Neue Person erstellen" />
+ <Label layoutX="14.0" layoutY="38.0" text="Name" />
+ <Label layoutX="206.0" layoutY="38.0" text="Qualifikation" />
+ <CheckBox fx:id="inputIsDriver" layoutX="343.0" layoutY="37.0" mnemonicParsing="false" text="Fahrer" />
+ <CheckBox fx:id="inputIsPilot" layoutX="343.0" layoutY="62.0" mnemonicParsing="false" text="Pilot" />
+ <Hyperlink fx:id="btnCancel" layoutX="441.0" layoutY="31.0" onAction="#onCancelClicked" text="abbrechen" />
+ <Button fx:id="btnCreate" layoutX="441.0" layoutY="55.0" mnemonicParsing="false" onAction="#onCreateClicked" text="Erstellen" />
+ <TextField fx:id="inputName" layoutX="14.0" layoutY="57.0" prefHeight="25.0" prefWidth="179.0" />
+ <ChoiceBox fx:id="inputQualification" layoutX="199.0" layoutY="57.0" prefHeight="25.0" prefWidth="128.0" />
+ </children>
+</AnchorPane>