Skip to content
Snippets Groups Projects
schedBottomPanelManager.fxml 1.21 KiB
Newer Older
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="51.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 prefHeight="26.0" prefWidth="800.0">
         <children>
ArktikHunter's avatar
ArktikHunter committed
            <Button alignment="CENTER" mnemonicParsing="false" onMouseClicked="#addShiftClicked" prefHeight="26.0" prefWidth="844.0" text="Add Shift" />
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
         </children>
      </HBox>
      <HBox prefHeight="25.0" prefWidth="800.0">
         <children>
ArktikHunter's avatar
ArktikHunter committed
            <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" />
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
         </children>
      </HBox>
   </children>
</VBox>