Skip to content
Snippets Groups Projects
headerManager.fxml 1.96 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
    <?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" >
    
    Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
       <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>
    
    Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
                      <Button contentDisplay="CENTER" mnemonicParsing="false" onMouseClicked="#mangerLogoutClicked" prefHeight="25.0" prefWidth="75.0" text="Logout" />
    
    Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
                   </children>
                </HBox>
             </children>
          </HBox>
          <HBox alignment="CENTER" prefHeight="35.0" prefWidth="800.0">
             <children>
    
                <Button alignment="CENTER" contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" onMouseClicked="#managerScheduleClicked" prefHeight="35.0" prefWidth="200.0" text="Schedule" />
    
    Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
                <Button contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" prefHeight="35.0" prefWidth="200.0" text="Payroll" />
                <Button contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" onMouseClicked="#staffManagerClicked" prefHeight="35.0" prefWidth="200.0" text="Staff" />
                <Button alignment="CENTER" contentDisplay="CENTER" maxHeight="-Infinity" minHeight="-Infinity" mnemonicParsing="false" prefHeight="35.0" prefWidth="200.0" text="Requests" />
    
    Mitch Cumpstone (cmc408)'s avatar
    Mitch Cumpstone (cmc408) committed
             </children>
          </HBox>
       </children>
    </VBox>