diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-06-06 22:05:38 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-07 17:51:20 +0200 |
commit | 5ce2c8943e7c47be60659662bdf4f73e8b606206 (patch) | |
tree | 2dab3f6091886e69c6207d9f2d42396728e9ad56 /src/main/resources/fxml/manageEmployees.fxml | |
parent | 812f94aa2979d3199ebfd361d2a5b366bd44547e (diff) | |
download | sepm-groupproject-5ce2c8943e7c47be60659662bdf4f73e8b606206.tar.gz sepm-groupproject-5ce2c8943e7c47be60659662bdf4f73e8b606206.tar.xz sepm-groupproject-5ce2c8943e7c47be60659662bdf4f73e8b606206.zip |
Rename ListEmployeesController to ManageEmployeesController [#25963]
because later, a new Controller EmployeeListController will be created, which just lists employees and the current ListEmployeesController actually not only lists employees but also allows them to edit, create => manage
Diffstat (limited to 'src/main/resources/fxml/manageEmployees.fxml')
-rw-r--r-- | src/main/resources/fxml/manageEmployees.fxml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/main/resources/fxml/manageEmployees.fxml b/src/main/resources/fxml/manageEmployees.fxml new file mode 100644 index 0000000..e6efb89 --- /dev/null +++ b/src/main/resources/fxml/manageEmployees.fxml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.geometry.Insets?> +<?import javafx.scene.control.Hyperlink?> +<?import javafx.scene.control.Label?> +<?import javafx.scene.control.ScrollPane?> +<?import javafx.scene.layout.AnchorPane?> +<?import javafx.scene.layout.VBox?> +<?import javafx.scene.text.Font?> +<AnchorPane fx:id="listEmployeesAP" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="536.0" prefWidth="816.0" style="-fx-background-color: #EFEBE8;" visible="false" 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.ManageEmployeesController"> + <children> + <AnchorPane prefHeight="118.0" prefWidth="816.0" style="-fx-background-color: #C55A11;"> + <children> + <Label layoutX="39.0" layoutY="23.0" text="Personen" textFill="WHITE"> + <font> + <Font name="Calibri Bold" size="22.0" /> + </font> + </Label> + <Hyperlink onAction="#backToMain" layoutX="702.0" layoutY="15.0" prefHeight="42.0" prefWidth="86.0" text="Zurück" textFill="WHITE"> + <font> + <Font name="System Bold" size="16.0" /> + </font> + </Hyperlink> + </children> + </AnchorPane> + <VBox layoutX="37.0" layoutY="60.0" prefHeight="454.0" prefWidth="742.0"> + <children> + <AnchorPane fx:id="containerHeader" prefHeight="86.0" prefWidth="740.0" style="-fx-background-color: white; -fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 10, 0, 0, 5);" /> + <ScrollPane hbarPolicy="NEVER" style="-fx-background-color: #EFEBE8;" vbarPolicy="NEVER"> + <VBox.margin> + <Insets top="20.0" /> + </VBox.margin> + <content> + <FlowPane fx:id="flowPaneEmployeeList" prefHeight="346.0" prefWidth="742.0" style="-fx-background-color: #EFEBE8;" /> + </content> + </ScrollPane> + </children> + </VBox> + </children> +</AnchorPane> |