<?xml version="1.0" encoding="UTF-8"?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.Label?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.VBox?> <VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="60.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.schedulerapp.Controller"> <children> <HBox maxHeight="-Infinity" prefHeight="25.0" prefWidth="600.0"> <children> <HBox maxHeight="-Infinity" prefHeight="25.0" prefWidth="300.0"> <children> <Label prefHeight="25.0" prefWidth="300.0" text="Staff:" /> </children> </HBox> <HBox alignment="CENTER_RIGHT" maxHeight="-Infinity" minHeight="-Infinity" prefHeight="25.0" prefWidth="600.0"> <children> <Button contentDisplay="CENTER" mnemonicParsing="false" prefHeight="25.0" prefWidth="75.0" text="Logout" onMouseClicked="#mangerLogoutClicked"/> </children> </HBox> </children> </HBox> <HBox alignment="CENTER" prefHeight="35.0" prefWidth="800.0"> <children> <Button alignment="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" prefHeight="35.0" prefWidth="200.0" text="Schedule" /> <Button maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" prefHeight="35.0" prefWidth="200.0" text="Payroll" /> <Button maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" onMouseClicked="#staffManagerClicked" prefHeight="35.0" prefWidth="200.0" text="Staff" /> <Button alignment="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" prefHeight="35.0" prefWidth="200.0" text="Requests" /> </children> </HBox> </children> </VBox>