<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<BorderPane fx:id="contentView" prefHeight="750.0" prefWidth="1200.0" stylesheets="@menue.css"
            xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1"
            fx:controller="com.bib.essensbestellungsverwaltung.WorkerMenuController">
    <left>
        <VBox alignment="TOP_CENTER" prefHeight="750.0" prefWidth="350.0" spacing="10.0"
              style="-fx-background-color: #69b6ff; -fx-padding: 20;" BorderPane.alignment="CENTER">
            <children>
                <Button fx:id="tagesbestellungButton" alignment="CENTER_LEFT" mnemonicParsing="false"
                        onMouseClicked="#onTagesbestellungenClick" prefHeight="60.0" prefWidth="250.0"
                        styleClass="sidebar-nav_button" text="Tagesbestellung">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/to-do-list.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
                <Button fx:id="monatsabrechnungButton" alignment="CENTER_LEFT" mnemonicParsing="false"
                        onMouseClicked="#onMonatsabrechnungClick" prefHeight="60.0" prefWidth="250.0"
                        styleClass="sidebar-nav_button" text="Monatsabrechnung">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/spreadsheet.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
                <Button fx:id="wochenplanButton" alignment="CENTER_LEFT" mnemonicParsing="false"
                        onMouseClicked="#onWochenplanClick" prefHeight="60.0" prefWidth="250.0"
                        styleClass="sidebar-nav_button" text="Wochenplan">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/calendar.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
                <Button fx:id="mahlzeitButton" alignment="CENTER_LEFT" mnemonicParsing="false"
                        onMouseClicked="#onMahlzeitClick" prefHeight="60.0" prefWidth="250.0"
                        styleClass="sidebar-nav_button" text="Mahlzeit">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/lunch.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
                <Button fx:id="mitarbeiterButton" alignment="CENTER_LEFT" mnemonicParsing="false"
                        onMouseClicked="#onMitarbeiterClick" prefHeight="60.0" prefWidth="250.0"
                        styleClass="sidebar-nav_button" text="Mitarbeiter">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/teamwork.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
                <Region style="-fx-padding: 20;" VBox.vgrow="ALWAYS">
                    <opaqueInsets>
                        <Insets/>
                    </opaqueInsets>
                </Region>
                <Button fx:id="einstellungenButton" alignment="CENTER_LEFT" layoutX="10.0" layoutY="130.0"
                        mnemonicParsing="false" onMouseClicked="#onEinstellungenClick" prefHeight="60.0"
                        prefWidth="250.0" styleClass="sidebar-nav_button" text="Einstellungen">
                    <font>
                        <Font size="20.0"/>
                    </font>
                    <graphic>
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                            <image>
                                <Image url="@pics/setting.png"/>
                            </image>
                        </ImageView>
                    </graphic>
                </Button>
            </children>
            <opaqueInsets>
                <Insets/>
            </opaqueInsets>
        </VBox>
    </left>
    <top>
        <HBox alignment="CENTER_RIGHT" prefHeight="50.0" prefWidth="1200.0" style="-fx-background-color: #69b6ff;"
              BorderPane.alignment="CENTER">
            <children>
                <Button mnemonicParsing="false" onMouseClicked="#onAusloggenClick" styleClass="sidebar-nav_button"
                        text="Ausloggen">
                    <opaqueInsets>
                        <Insets/>
                    </opaqueInsets>
                </Button>
            </children>
            <padding>
                <Insets right="20.0"/>
            </padding>
        </HBox>
    </top>
    <center>
        <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER"/>
    </center>
</BorderPane>