Skip to content
Snippets Groups Projects
schedBottomPanelManager.fxml 1.44 KiB
<?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="51.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 prefHeight="26.0" prefWidth="800.0">
         <children>
            <Button mnemonicParsing="false" onMouseClicked="#addShiftClicked" prefHeight="26.0" prefWidth="267.0" text="Add Shift" />
            <Button mnemonicParsing="false" prefHeight="26.0" prefWidth="266.0" text="Edit Shift" />
            <Button mnemonicParsing="false" prefHeight="26.0" prefWidth="266.0" text="Remove Shift" />
         </children>
      </HBox>
      <HBox prefHeight="25.0" prefWidth="800.0">
         <children>
            <Button mnemonicParsing="false" onMouseClicked="#prevButtonClicked" prefHeight="25.0" prefWidth="200.0" text="Previous" />
            <Label fx:id="currentDateText" prefHeight="25.0" prefWidth="200.0" text="Current: " />
            <Button mnemonicParsing="false" onMouseClicked="#jumpButtonClicked" prefHeight="25.0" prefWidth="200.0" text="Jump" />
            <Button mnemonicParsing="false" onMouseClicked="#nextButtonClicked" prefHeight="25.0" prefWidth="200.0" text="Next" />
         </children>
      </HBox>
   </children>
</VBox>