<?xml version="1.0" encoding="UTF-8"?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.Label?> <?import javafx.scene.control.ToggleButton?> <?import javafx.scene.control.ToggleGroup?> <?import javafx.scene.layout.BorderPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.VBox?> <BorderPane fx:id="myBorderPane" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="500.0" minWidth="500.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.schedulerapp.Controller"> <top> <HBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" BorderPane.alignment="CENTER"> <children> <ToggleButton maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" onMouseClicked="#scheduleButtonClicked" text="Schedule" HBox.hgrow="ALWAYS"> <toggleGroup> <ToggleGroup fx:id="toggleGroup1" /> </toggleGroup> </ToggleButton> <ToggleButton maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" onMouseClicked="#paystubButtonClicked" selected="true" text="Paystub" toggleGroup="$toggleGroup1" HBox.hgrow="ALWAYS" /> <ToggleButton maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" onMouseClicked="#availabilityButtonClicked" selected="true" text="Availability" toggleGroup="$toggleGroup1" HBox.hgrow="ALWAYS" /> <ToggleButton maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" onMouseClicked="#timeoffButtonClicked" selected="true" text="Time Off / Vacation" toggleGroup="$toggleGroup1" HBox.hgrow="ALWAYS" /> </children> </HBox> </top> <left> <VBox fx:id="leftSideButtons" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" BorderPane.alignment="CENTER"> <children> <ToggleButton maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#dailyScheduleButtonClicked" text="Daily" VBox.vgrow="ALWAYS"> <toggleGroup> <ToggleGroup fx:id="toggleGroup2" /> </toggleGroup> </ToggleButton> <ToggleButton layoutX="10.0" layoutY="10.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#weeklyScheduleButtonClicked" text="Weekly" toggleGroup="$toggleGroup2" VBox.vgrow="ALWAYS" /> <ToggleButton layoutX="10.0" layoutY="36.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#pickupsButtonClicked" text="Pickups" toggleGroup="$toggleGroup2" VBox.vgrow="ALWAYS" /> </children></VBox> </left> <bottom> <HBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" scaleShape="false" BorderPane.alignment="CENTER"> <children> <Button maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#prevButtonClicked" text="Prev" HBox.hgrow="ALWAYS" /> <Label maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" text="Current: " HBox.hgrow="ALWAYS" /> <Button layoutX="62.0" layoutY="10.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#jumpButtonClicked" text="Jump" HBox.hgrow="ALWAYS" /> <Button layoutX="114.0" layoutY="10.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" mnemonicParsing="false" onMouseClicked="#nextButtonClicked" text="Next" HBox.hgrow="ALWAYS" /> </children> </HBox> </bottom> </BorderPane>