feat/menus #7
@@ -3,16 +3,11 @@ package com.bib.essensbestellungsverwaltung;
 | 
				
			|||||||
import javafx.fxml.FXML;
 | 
					import javafx.fxml.FXML;
 | 
				
			||||||
import javafx.fxml.FXMLLoader;
 | 
					import javafx.fxml.FXMLLoader;
 | 
				
			||||||
import javafx.scene.Parent;
 | 
					import javafx.scene.Parent;
 | 
				
			||||||
import javafx.scene.Scene;
 | 
					 | 
				
			||||||
import javafx.scene.control.Button;
 | 
					import javafx.scene.control.Button;
 | 
				
			||||||
import javafx.scene.input.ContextMenuEvent;
 | 
					 | 
				
			||||||
import javafx.scene.input.MouseEvent;
 | 
					import javafx.scene.input.MouseEvent;
 | 
				
			||||||
import javafx.scene.layout.Background;
 | 
					 | 
				
			||||||
import javafx.scene.layout.BorderPane;
 | 
					import javafx.scene.layout.BorderPane;
 | 
				
			||||||
import javafx.stage.Stage;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
import java.io.IOException;
 | 
					import java.io.IOException;
 | 
				
			||||||
import java.util.Arrays;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class ParentMenuController {
 | 
					public class ParentMenuController {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -60,7 +55,7 @@ public class ParentMenuController {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @FXML
 | 
					    @FXML
 | 
				
			||||||
    public void onAusloggenClick(MouseEvent mouseEvent) throws IOException {
 | 
					    public void onAusloggenClick(MouseEvent mouseEvent) throws IOException {
 | 
				
			||||||
        Parent p = FXMLLoader.load(StartViewApplication.class.getResource("workerMenu.fxml"));
 | 
					        Parent p = FXMLLoader.load(StartViewApplication.class.getResource("workerMenu-view.fxml"));
 | 
				
			||||||
        StartViewApplication.primary.getScene().setRoot(p);
 | 
					        StartViewApplication.primary.getScene().setRoot(p);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -72,7 +67,8 @@ public class ParentMenuController {
 | 
				
			|||||||
            throw new RuntimeException(e);
 | 
					            throw new RuntimeException(e);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    private void setButtonActive(Button b){
 | 
					
 | 
				
			||||||
 | 
					    private void setButtonActive(Button b) {
 | 
				
			||||||
        einstellungenButton.getStyleClass().remove("active");
 | 
					        einstellungenButton.getStyleClass().remove("active");
 | 
				
			||||||
        kinderButton.getStyleClass().remove("active");
 | 
					        kinderButton.getStyleClass().remove("active");
 | 
				
			||||||
        bestellungButton.getStyleClass().remove("active");
 | 
					        bestellungButton.getStyleClass().remove("active");
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,12 +3,9 @@ package com.bib.essensbestellungsverwaltung;
 | 
				
			|||||||
import javafx.fxml.FXML;
 | 
					import javafx.fxml.FXML;
 | 
				
			||||||
import javafx.fxml.FXMLLoader;
 | 
					import javafx.fxml.FXMLLoader;
 | 
				
			||||||
import javafx.scene.Parent;
 | 
					import javafx.scene.Parent;
 | 
				
			||||||
import javafx.scene.Scene;
 | 
					 | 
				
			||||||
import javafx.scene.control.Button;
 | 
					import javafx.scene.control.Button;
 | 
				
			||||||
import javafx.scene.input.ContextMenuEvent;
 | 
					 | 
				
			||||||
import javafx.scene.input.MouseEvent;
 | 
					import javafx.scene.input.MouseEvent;
 | 
				
			||||||
import javafx.scene.layout.BorderPane;
 | 
					import javafx.scene.layout.BorderPane;
 | 
				
			||||||
import javafx.stage.Stage;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
import java.io.IOException;
 | 
					import java.io.IOException;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -72,7 +69,7 @@ public class WorkerMenuController {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @FXML
 | 
					    @FXML
 | 
				
			||||||
    public void onAusloggenClick(MouseEvent mouseEvent) throws IOException {
 | 
					    public void onAusloggenClick(MouseEvent mouseEvent) throws IOException {
 | 
				
			||||||
        Parent p = FXMLLoader.load(StartViewApplication.class.getResource("parentMenu.fxml"));
 | 
					        Parent p = FXMLLoader.load(StartViewApplication.class.getResource("parentMenu-view.fxml"));
 | 
				
			||||||
        StartViewApplication.primary.getScene().setRoot(p);
 | 
					        StartViewApplication.primary.getScene().setRoot(p);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,124 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<?import javafx.geometry.Insets?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.Button?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.Tab?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.TabPane?>
 | 
					 | 
				
			||||||
<?import javafx.scene.image.Image?>
 | 
					 | 
				
			||||||
<?import javafx.scene.image.ImageView?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.AnchorPane?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.HBox?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.VBox?>
 | 
					 | 
				
			||||||
<?import javafx.scene.text.Font?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<AnchorPane prefHeight="400.0" prefWidth="600.0" stylesheets="@adminMenue.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.AdminController">
 | 
					 | 
				
			||||||
   <children>
 | 
					 | 
				
			||||||
      <VBox id="optionsContainer" layoutY="25.0" prefHeight="400.0" prefWidth="175.0">
 | 
					 | 
				
			||||||
         <children>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER_LEFT" prefHeight="40.0" prefWidth="179.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/to-do-list.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="buttons" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="145.0" style="-fx-background-color: transparent;" text="Tagesbestellungen" textFill="WHITE">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="14.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
               <padding>
 | 
					 | 
				
			||||||
                  <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
 | 
					 | 
				
			||||||
               </padding>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER_LEFT" prefHeight="35.0" prefWidth="175.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/spreadsheet.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="buttons" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="145.0" style="-fx-background-color: transparent;" text="Monatsabrechnung" textFill="WHITE">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="14.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
               <padding>
 | 
					 | 
				
			||||||
                  <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
 | 
					 | 
				
			||||||
               </padding>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER_LEFT" prefHeight="23.0" prefWidth="175.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/calendar.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="buttons" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="145.0" style="-fx-background-color: transparent;" text="Wochenplan" textFill="WHITE">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="14.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
               <padding>
 | 
					 | 
				
			||||||
                  <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
 | 
					 | 
				
			||||||
               </padding>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER_LEFT" prefHeight="0.0" prefWidth="175.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/lunch.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="buttons" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="145.0" style="-fx-background-color: transparent;" text="Mahlzeit" textFill="WHITE">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="14.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
               <padding>
 | 
					 | 
				
			||||||
                  <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
 | 
					 | 
				
			||||||
               </padding>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER_LEFT" prefHeight="26.0" prefWidth="175.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="25.0" fitWidth="25.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/teamwork.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="buttons" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="145.0" style="-fx-background-color: transparent;" text="Mitarbeiter" textFill="WHITE">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="14.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
               <padding>
 | 
					 | 
				
			||||||
                  <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
 | 
					 | 
				
			||||||
               </padding>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
         </children>
 | 
					 | 
				
			||||||
      </VBox>
 | 
					 | 
				
			||||||
      <HBox id="optionsContainer" alignment="TOP_RIGHT" prefHeight="25.0" prefWidth="600.0" style="-fx-background-color: lightblue;">
 | 
					 | 
				
			||||||
         <children>
 | 
					 | 
				
			||||||
            <Button mnemonicParsing="false" style="-fx-background-color: transparent;" text="Hallo, [Nutzername]" textFill="WHITE" />
 | 
					 | 
				
			||||||
         </children></HBox>
 | 
					 | 
				
			||||||
      <TabPane layoutX="183.0" layoutY="31.0" prefHeight="378.0" prefWidth="408.0" tabClosingPolicy="UNAVAILABLE">
 | 
					 | 
				
			||||||
        <tabs>
 | 
					 | 
				
			||||||
          <Tab text="Untitled Tab 1">
 | 
					 | 
				
			||||||
            <content>
 | 
					 | 
				
			||||||
              <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
 | 
					 | 
				
			||||||
            </content>
 | 
					 | 
				
			||||||
          </Tab>
 | 
					 | 
				
			||||||
          <Tab text="Untitled Tab 2">
 | 
					 | 
				
			||||||
            <content>
 | 
					 | 
				
			||||||
              <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
 | 
					 | 
				
			||||||
            </content>
 | 
					 | 
				
			||||||
          </Tab>
 | 
					 | 
				
			||||||
        </tabs>
 | 
					 | 
				
			||||||
      </TabPane>
 | 
					 | 
				
			||||||
   </children>
 | 
					 | 
				
			||||||
</AnchorPane>
 | 
					 | 
				
			||||||
@@ -1,12 +0,0 @@
 | 
				
			|||||||
#buttons:hover{
 | 
					 | 
				
			||||||
    -fx-underline: true;
 | 
					 | 
				
			||||||
    -fx-background-color: rgba(85, 103, 136, 0.64);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#optionsContainer{
 | 
					 | 
				
			||||||
    -fx-background-color: lightblue;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#optionsContainer{
 | 
					 | 
				
			||||||
    -fx-background-color: darkblue;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -1,30 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<?import javafx.geometry.Insets?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.Label?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.Button?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.TextField?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.GridPane?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.PasswordField?>
 | 
					 | 
				
			||||||
<GridPane hgap="10.0" vgap="10.0"
 | 
					 | 
				
			||||||
          xmlns:fx="http://javafx.com/fxml/1"
 | 
					 | 
				
			||||||
          xmlns="http://javafx.com/javafx/11.0.2"
 | 
					 | 
				
			||||||
          fx:controller="com.bib.essensbestellungsverwaltung.HelloController">
 | 
					 | 
				
			||||||
    <padding>
 | 
					 | 
				
			||||||
        <Insets bottom="20.0" left="20.0" right="20.0" top="20.0"/>
 | 
					 | 
				
			||||||
    </padding>
 | 
					 | 
				
			||||||
    <Label text="Bitte geben Sie Ihre Anmeldedaten ein."
 | 
					 | 
				
			||||||
           GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="0" />
 | 
					 | 
				
			||||||
    <Label text="Benutzername:"
 | 
					 | 
				
			||||||
           GridPane.columnIndex="0" GridPane.rowIndex="1" />
 | 
					 | 
				
			||||||
    <TextField fx:id="unsernameEingabe"
 | 
					 | 
				
			||||||
               GridPane.columnIndex="1" GridPane.rowIndex="1"/>
 | 
					 | 
				
			||||||
    <Label text="Passwort:"
 | 
					 | 
				
			||||||
            GridPane.columnIndex="0" GridPane.rowIndex="2" />
 | 
					 | 
				
			||||||
    <PasswordField fx:id="passwortEingabe"
 | 
					 | 
				
			||||||
                   GridPane.columnIndex="1" GridPane.rowIndex="2"/>
 | 
					 | 
				
			||||||
    <Button text="LOGIN" onAction="#onLoginButtonClick"
 | 
					 | 
				
			||||||
            GridPane.columnIndex="1" GridPane.rowIndex="3" />
 | 
					 | 
				
			||||||
    <Label fx:id="lblAusgabe"
 | 
					 | 
				
			||||||
           GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="4"/>
 | 
					 | 
				
			||||||
</GridPane>
 | 
					 | 
				
			||||||
@@ -1,60 +1,70 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<?import javafx.geometry.*?>
 | 
					<?import javafx.geometry.Insets?>
 | 
				
			||||||
<?import javafx.scene.control.*?>
 | 
					<?import javafx.scene.control.*?>
 | 
				
			||||||
<?import javafx.scene.image.*?>
 | 
					<?import javafx.scene.image.*?>
 | 
				
			||||||
<?import javafx.scene.layout.*?>
 | 
					<?import javafx.scene.layout.*?>
 | 
				
			||||||
<?import javafx.scene.text.*?>
 | 
					<?import javafx.scene.text.Font?>
 | 
				
			||||||
 | 
					<BorderPane fx:id="contentView" prefHeight="750.0" prefWidth="1200.0" stylesheets="@menue.css"
 | 
				
			||||||
<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.ParentMenuController">
 | 
					            xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1"
 | 
				
			||||||
 | 
					            fx:controller="com.bib.essensbestellungsverwaltung.ParentMenuController">
 | 
				
			||||||
    <left>
 | 
					    <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">
 | 
					        <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>
 | 
					            <children>
 | 
				
			||||||
                <Button fx:id="essensplanButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onEssensplanClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Essensplan">
 | 
					                <Button fx:id="essensplanButton" alignment="CENTER_LEFT" mnemonicParsing="false"
 | 
				
			||||||
 | 
					                        onMouseClicked="#onEssensplanClick" prefHeight="60.0" prefWidth="250.0"
 | 
				
			||||||
 | 
					                        styleClass="sidebar-nav_button" text="Essensplan">
 | 
				
			||||||
                    <font>
 | 
					                    <font>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/menu.png" />
 | 
					                                <Image url="@pics/menu.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="kinderButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onKinderClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Kinder">
 | 
					                <Button fx:id="kinderButton" alignment="CENTER_LEFT" mnemonicParsing="false"
 | 
				
			||||||
 | 
					                        onMouseClicked="#onKinderClick" prefHeight="60.0" prefWidth="250.0"
 | 
				
			||||||
 | 
					                        styleClass="sidebar-nav_button" text="Kinder">
 | 
				
			||||||
                    <font>
 | 
					                    <font>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/little-kid.png" />
 | 
					                                <Image url="@pics/little-kid.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="bestellungButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onBestellungClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Bestellung">
 | 
					                <Button fx:id="bestellungButton" alignment="CENTER_LEFT" mnemonicParsing="false"
 | 
				
			||||||
 | 
					                        onMouseClicked="#onBestellungClick" prefHeight="60.0" prefWidth="250.0"
 | 
				
			||||||
 | 
					                        styleClass="sidebar-nav_button" text="Bestellung">
 | 
				
			||||||
                    <font>
 | 
					                    <font>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/shopping-list.png" />
 | 
					                                <Image url="@pics/shopping-list.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Region VBox.vgrow="ALWAYS" />
 | 
					                <Region VBox.vgrow="ALWAYS"/>
 | 
				
			||||||
                <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">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/setting.png" />
 | 
					                                <Image url="@pics/setting.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
@@ -63,19 +73,22 @@
 | 
				
			|||||||
        </VBox>
 | 
					        </VBox>
 | 
				
			||||||
    </left>
 | 
					    </left>
 | 
				
			||||||
    <top>
 | 
					    <top>
 | 
				
			||||||
        <HBox alignment="CENTER_RIGHT" prefHeight="50.0" prefWidth="1200.0" style="-fx-background-color: #69b6ff;" BorderPane.alignment="CENTER">
 | 
					        <HBox alignment="CENTER_RIGHT" prefHeight="50.0" prefWidth="1200.0" style="-fx-background-color: #69b6ff;"
 | 
				
			||||||
         <children>
 | 
					              BorderPane.alignment="CENTER">
 | 
				
			||||||
            <Button mnemonicParsing="false" onMouseClicked="#onAusloggenClick" styleClass="sidebar-nav_button" text="Ausloggen">
 | 
					            <children>
 | 
				
			||||||
               <opaqueInsets>
 | 
					                <Button mnemonicParsing="false" onMouseClicked="#onAusloggenClick" styleClass="sidebar-nav_button"
 | 
				
			||||||
                  <Insets />
 | 
					                        text="Ausloggen">
 | 
				
			||||||
               </opaqueInsets>
 | 
					                    <opaqueInsets>
 | 
				
			||||||
            </Button>
 | 
					                        <Insets/>
 | 
				
			||||||
         </children>
 | 
					                    </opaqueInsets>
 | 
				
			||||||
         <padding>
 | 
					                </Button>
 | 
				
			||||||
            <Insets right="20.0" />
 | 
					            </children>
 | 
				
			||||||
         </padding></HBox>
 | 
					            <padding>
 | 
				
			||||||
 | 
					                <Insets right="20.0"/>
 | 
				
			||||||
 | 
					            </padding>
 | 
				
			||||||
 | 
					        </HBox>
 | 
				
			||||||
    </top>
 | 
					    </top>
 | 
				
			||||||
    <center>
 | 
					    <center>
 | 
				
			||||||
        <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
 | 
					        <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER"/>
 | 
				
			||||||
    </center>
 | 
					    </center>
 | 
				
			||||||
</BorderPane>
 | 
					</BorderPane>
 | 
				
			||||||
@@ -1,82 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<?import javafx.geometry.Insets?>
 | 
					 | 
				
			||||||
<?import javafx.scene.control.Button?>
 | 
					 | 
				
			||||||
<?import javafx.scene.image.Image?>
 | 
					 | 
				
			||||||
<?import javafx.scene.image.ImageView?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.AnchorPane?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.HBox?>
 | 
					 | 
				
			||||||
<?import javafx.scene.layout.VBox?>
 | 
					 | 
				
			||||||
<?import javafx.scene.text.Font?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="1200.0" stylesheets="parentMenue.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
 | 
					 | 
				
			||||||
   <children>
 | 
					 | 
				
			||||||
      <VBox id="contentContainer" layoutY="-14.0" prefHeight="814.0" prefWidth="333.0" stylesheets="@parentMenue.css">
 | 
					 | 
				
			||||||
         <children>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER" prefHeight="100.0" prefWidth="327.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="60.0" fitWidth="60.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/menu.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="contentButton" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="260.0" text="Essensplan">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="25.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="60.0" fitWidth="60.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/little-kid.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="contentButton" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="25.0" prefWidth="260.0" text="Kind">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="25.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="60.0" fitWidth="60.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/shopping-list.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="contentButton" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="52.0" prefWidth="260.0" text="Bestellung">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="25.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
            <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
 | 
					 | 
				
			||||||
               <children>
 | 
					 | 
				
			||||||
                  <ImageView fitHeight="60.0" fitWidth="60.0" pickOnBounds="true" preserveRatio="true">
 | 
					 | 
				
			||||||
                     <image>
 | 
					 | 
				
			||||||
                        <Image url="@pics/setting.png" />
 | 
					 | 
				
			||||||
                     </image>
 | 
					 | 
				
			||||||
                  </ImageView>
 | 
					 | 
				
			||||||
                  <Button id="contentButton" alignment="BASELINE_LEFT" mnemonicParsing="false" prefHeight="52.0" prefWidth="260.0" text="Nutzereinstellungen">
 | 
					 | 
				
			||||||
                     <font>
 | 
					 | 
				
			||||||
                        <Font size="25.0" />
 | 
					 | 
				
			||||||
                     </font>
 | 
					 | 
				
			||||||
                  </Button>
 | 
					 | 
				
			||||||
               </children>
 | 
					 | 
				
			||||||
            </HBox>
 | 
					 | 
				
			||||||
         </children>
 | 
					 | 
				
			||||||
         <padding>
 | 
					 | 
				
			||||||
            <Insets top="50.0" />
 | 
					 | 
				
			||||||
         </padding></VBox>
 | 
					 | 
				
			||||||
      <HBox id="contentContainer2" alignment="CENTER_RIGHT" prefHeight="40.0" prefWidth="1200.0" stylesheets="@parentMenue.css">
 | 
					 | 
				
			||||||
         <children>
 | 
					 | 
				
			||||||
            <Button id="btLogOut" mnemonicParsing="false" text="Abmelden" />
 | 
					 | 
				
			||||||
         </children>
 | 
					 | 
				
			||||||
      </HBox>
 | 
					 | 
				
			||||||
   </children>
 | 
					 | 
				
			||||||
</AnchorPane>
 | 
					 | 
				
			||||||
@@ -1,26 +0,0 @@
 | 
				
			|||||||
#contentContainer{
 | 
					 | 
				
			||||||
    -fx-background-color: #add8e6;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#contentContainer2{
 | 
					 | 
				
			||||||
    -fx-background-color: lightblue;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#contentButton{
 | 
					 | 
				
			||||||
    -fx-background-color: transparent;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#contentButton:hover{
 | 
					 | 
				
			||||||
    -fx-underline: true;
 | 
					 | 
				
			||||||
    -fx-background-color: #78939d;
 | 
					 | 
				
			||||||
    -fx-text-fill: white;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#btLogOut{
 | 
					 | 
				
			||||||
    -fx-background-color: transparent;
 | 
					 | 
				
			||||||
    -fx-pref-height: 40px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#btLogOut:hover{
 | 
					 | 
				
			||||||
    -fx-underline: true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -1,111 +1,129 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<?import javafx.geometry.*?>
 | 
					<?import javafx.geometry.Insets?>
 | 
				
			||||||
<?import javafx.scene.control.*?>
 | 
					<?import javafx.scene.control.*?>
 | 
				
			||||||
<?import javafx.scene.image.*?>
 | 
					<?import javafx.scene.image.*?>
 | 
				
			||||||
<?import javafx.scene.layout.*?>
 | 
					<?import javafx.scene.layout.*?>
 | 
				
			||||||
<?import javafx.scene.text.*?>
 | 
					<?import javafx.scene.text.*?>
 | 
				
			||||||
 | 
					<BorderPane fx:id="contentView" prefHeight="750.0" prefWidth="1200.0" stylesheets="@menue.css"
 | 
				
			||||||
<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">
 | 
					            xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1"
 | 
				
			||||||
 | 
					            fx:controller="com.bib.essensbestellungsverwaltung.WorkerMenuController">
 | 
				
			||||||
    <left>
 | 
					    <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">
 | 
					        <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>
 | 
					            <children>
 | 
				
			||||||
                <Button fx:id="tagesbestellungButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onTagesbestellungenClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Tagesbestellung">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/to-do-list.png" />
 | 
					                                <Image url="@pics/to-do-list.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="monatsabrechnungButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onMonatsabrechnungClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Monatsabrechnung">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/spreadsheet.png" />
 | 
					                                <Image url="@pics/spreadsheet.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="wochenplanButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onWochenplanClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Wochenplan">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/calendar.png" />
 | 
					                                <Image url="@pics/calendar.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="mahlzeitButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onMahlzeitClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Mahlzeit">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/lunch.png" />
 | 
					                                <Image url="@pics/lunch.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Button fx:id="mitarbeiterButton" alignment="CENTER_LEFT" mnemonicParsing="false" onMouseClicked="#onMitarbeiterClick" prefHeight="60.0" prefWidth="250.0" styleClass="sidebar-nav_button" text="Mitarbeiter">
 | 
					                <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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/teamwork.png" />
 | 
					                                <Image url="@pics/teamwork.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
                <Region style="-fx-padding: 20;" VBox.vgrow="ALWAYS">
 | 
					                <Region style="-fx-padding: 20;" VBox.vgrow="ALWAYS">
 | 
				
			||||||
               <opaqueInsets>
 | 
					                    <opaqueInsets>
 | 
				
			||||||
                  <Insets />
 | 
					                        <Insets/>
 | 
				
			||||||
               </opaqueInsets></Region>
 | 
					                    </opaqueInsets>
 | 
				
			||||||
                <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">
 | 
					                </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>
 | 
				
			||||||
                        <Font size="20.0" />
 | 
					                        <Font size="20.0"/>
 | 
				
			||||||
                    </font>
 | 
					                    </font>
 | 
				
			||||||
                    <graphic>
 | 
					                    <graphic>
 | 
				
			||||||
                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
					                        <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
 | 
				
			||||||
                            <image>
 | 
					                            <image>
 | 
				
			||||||
                                <Image url="@pics/setting.png" />
 | 
					                                <Image url="@pics/setting.png"/>
 | 
				
			||||||
                            </image>
 | 
					                            </image>
 | 
				
			||||||
                        </ImageView>
 | 
					                        </ImageView>
 | 
				
			||||||
                    </graphic>
 | 
					                    </graphic>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
            </children>
 | 
					            </children>
 | 
				
			||||||
         <opaqueInsets>
 | 
					            <opaqueInsets>
 | 
				
			||||||
            <Insets />
 | 
					                <Insets/>
 | 
				
			||||||
         </opaqueInsets>
 | 
					            </opaqueInsets>
 | 
				
			||||||
        </VBox>
 | 
					        </VBox>
 | 
				
			||||||
    </left>
 | 
					    </left>
 | 
				
			||||||
    <top>
 | 
					    <top>
 | 
				
			||||||
        <HBox alignment="CENTER_RIGHT" prefHeight="50.0" prefWidth="1200.0" style="-fx-background-color: #69b6ff;" BorderPane.alignment="CENTER">
 | 
					        <HBox alignment="CENTER_RIGHT" prefHeight="50.0" prefWidth="1200.0" style="-fx-background-color: #69b6ff;"
 | 
				
			||||||
 | 
					              BorderPane.alignment="CENTER">
 | 
				
			||||||
            <children>
 | 
					            <children>
 | 
				
			||||||
                <Button mnemonicParsing="false" onMouseClicked="#onAusloggenClick" styleClass="sidebar-nav_button" text="Ausloggen">
 | 
					                <Button mnemonicParsing="false" onMouseClicked="#onAusloggenClick" styleClass="sidebar-nav_button"
 | 
				
			||||||
 | 
					                        text="Ausloggen">
 | 
				
			||||||
                    <opaqueInsets>
 | 
					                    <opaqueInsets>
 | 
				
			||||||
                        <Insets />
 | 
					                        <Insets/>
 | 
				
			||||||
                    </opaqueInsets>
 | 
					                    </opaqueInsets>
 | 
				
			||||||
                </Button>
 | 
					                </Button>
 | 
				
			||||||
            </children>
 | 
					            </children>
 | 
				
			||||||
            <padding>
 | 
					            <padding>
 | 
				
			||||||
                <Insets right="20.0" />
 | 
					                <Insets right="20.0"/>
 | 
				
			||||||
            </padding></HBox>
 | 
					            </padding>
 | 
				
			||||||
 | 
					        </HBox>
 | 
				
			||||||
    </top>
 | 
					    </top>
 | 
				
			||||||
    <center>
 | 
					    <center>
 | 
				
			||||||
        <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
 | 
					        <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER"/>
 | 
				
			||||||
    </center>
 | 
					    </center>
 | 
				
			||||||
</BorderPane>
 | 
					</BorderPane>
 | 
				
			||||||
		Reference in New Issue
	
	Block a user