feat/menus #7
@@ -0,0 +1,93 @@
 | 
				
			|||||||
 | 
					package com.bib.essensbestellungsverwaltung;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import javafx.fxml.FXML;
 | 
				
			||||||
 | 
					import javafx.fxml.FXMLLoader;
 | 
				
			||||||
 | 
					import javafx.scene.Parent;
 | 
				
			||||||
 | 
					import javafx.scene.control.Button;
 | 
				
			||||||
 | 
					import javafx.scene.input.ContextMenuEvent;
 | 
				
			||||||
 | 
					import javafx.scene.input.MouseEvent;
 | 
				
			||||||
 | 
					import javafx.scene.layout.BorderPane;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.io.IOException;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					public class WorkerMenuController {
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public BorderPane contentView;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button tagesbestellungButton;
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button wochenplanButton;
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button monatsabrechnungButton;
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button mitarbeiterButton;
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button mahlzeitButton;
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    Button einstellungenButton;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void initialize() {
 | 
				
			||||||
 | 
					        changePage("menue-view.fxml");
 | 
				
			||||||
 | 
					        setButtonActive(tagesbestellungButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onTagesbestellungenClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        changePage("menue-view.fxml");
 | 
				
			||||||
 | 
					        setButtonActive(tagesbestellungButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onWochenplanClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        setButtonActive(wochenplanButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onMonatsabrechnungClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        changePage("invoice-view.fxml");
 | 
				
			||||||
 | 
					        setButtonActive(monatsabrechnungButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onMitarbeiterClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        changePage("createCoworker-view.fxml");
 | 
				
			||||||
 | 
					        setButtonActive(mitarbeiterButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onMahlzeitClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        setButtonActive(mahlzeitButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public void onEinstellungenClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					        setButtonActive(einstellungenButton);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @FXML
 | 
				
			||||||
 | 
					    public void onAusloggenClick(MouseEvent mouseEvent) {
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private void changePage(String page) {
 | 
				
			||||||
 | 
					        try {
 | 
				
			||||||
 | 
					            Parent root = FXMLLoader.load(getClass().getResource(page));
 | 
				
			||||||
 | 
					            contentView.setCenter(root);
 | 
				
			||||||
 | 
					        } catch (IOException e) {
 | 
				
			||||||
 | 
					            throw new RuntimeException(e);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private void setButtonActive(Button b) {
 | 
				
			||||||
 | 
					        tagesbestellungButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        monatsabrechnungButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        wochenplanButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        mahlzeitButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        mitarbeiterButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        einstellungenButton.getStyleClass().remove("active");
 | 
				
			||||||
 | 
					        b.getStyleClass().add("active");
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -0,0 +1,111 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<?import javafx.geometry.*?>
 | 
				
			||||||
 | 
					<?import javafx.scene.control.*?>
 | 
				
			||||||
 | 
					<?import javafx.scene.image.*?>
 | 
				
			||||||
 | 
					<?import javafx.scene.layout.*?>
 | 
				
			||||||
 | 
					<?import javafx.scene.text.*?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<BorderPane fx:id="contentView" prefHeight="900.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="900.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="40.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>
 | 
				
			||||||
		Reference in New Issue
	
	Block a user