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 | |
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')
-rw-r--r-- | src/main/resources/fxml/CreateOperationController.fxml | 2 | ||||
-rw-r--r-- | src/main/resources/fxml/manageEmployees.fxml (renamed from src/main/resources/fxml/listEmployees.fxml) | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/main/resources/fxml/CreateOperationController.fxml b/src/main/resources/fxml/CreateOperationController.fxml index 79c0a51..d22dc45 100644 --- a/src/main/resources/fxml/CreateOperationController.fxml +++ b/src/main/resources/fxml/CreateOperationController.fxml @@ -84,7 +84,7 @@ style="-fx-background-color: rgba(0,0,0,0.7);" visible="false"/> <fx:include fx:id="operationDetails" source="/fxml/OperationDetails.fxml" AnchorPane.leftAnchor="54.0" AnchorPane.topAnchor="50.0"/> - <fx:include AnchorPane.leftAnchor="192.0" AnchorPane.topAnchor="57.0" fx:id="listEmployees" source="/fxml/listEmployees.fxml"/> + <fx:include AnchorPane.leftAnchor="192.0" AnchorPane.topAnchor="57.0" fx:id="manageEmployees" source="/fxml/manageEmployees.fxml"/> <fx:include AnchorPane.leftAnchor="300" AnchorPane.topAnchor="135.4" source="/fxml/RegistrationWindow.fxml" fx:id="registrationWindow"/> <fx:include AnchorPane.leftAnchor="300.0" AnchorPane.topAnchor="125.0" source="/fxml/createCar.fxml" fx:id="createCar"/> <fx:include AnchorPane.leftAnchor="100.0" source="/fxml/ArchiveOperation.fxml" fx:id="archiveOperation"/> diff --git a/src/main/resources/fxml/listEmployees.fxml b/src/main/resources/fxml/manageEmployees.fxml index 7f9e638..e6efb89 100644 --- a/src/main/resources/fxml/listEmployees.fxml +++ b/src/main/resources/fxml/manageEmployees.fxml @@ -5,11 +5,9 @@ <?import javafx.scene.control.Label?> <?import javafx.scene.control.ScrollPane?> <?import javafx.scene.layout.AnchorPane?> -<?import javafx.scene.layout.FlowPane?> <?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.ListEmployeesController"> +<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> |