Compare commits
8 Commits
ec2d3b581d
...
b97fe83f40
Author | SHA1 | Date | |
---|---|---|---|
b97fe83f40 | |||
27710e92af | |||
a3c3ee0fe0 | |||
|
dd69909b16 | ||
a7bcaf13ce | |||
f8673ca92a | |||
400ffb0e98 | |||
3bb141fb52 |
@ -0,0 +1,4 @@
|
|||||||
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
|
public class AdminController {
|
||||||
|
}
|
@ -1,3 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* @autor: Reshad Meher
|
||||||
|
* Fenstergrößer
|
||||||
|
* Fenstertitle
|
||||||
|
*/
|
||||||
package com.bib.essensbestellungsverwaltung;
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
import javafx.application.Application;
|
import javafx.application.Application;
|
||||||
@ -8,18 +13,17 @@ import javafx.stage.Stage;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
public class HelloApplication extends Application {
|
public class HelloApplication extends Application {
|
||||||
|
public static Stage primary;
|
||||||
@Override
|
@Override
|
||||||
public void start(Stage stage) throws IOException {
|
public void start(Stage stage) throws IOException {
|
||||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
|
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("login-view.fxml"));
|
||||||
/**
|
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||||
* @autor: Reshad Meher
|
//stage = primary;
|
||||||
* Fenstergrößer
|
|
||||||
* Fenstertitle
|
|
||||||
*/
|
|
||||||
Scene scene = new Scene(fxmlLoader.load(), 480, 280);
|
|
||||||
stage.setTitle("Essen Bestellung im Kindergarten");
|
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||||
stage.setScene(scene);
|
stage.setScene(scene);
|
||||||
stage.show();
|
stage.show();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
@ -0,0 +1,55 @@
|
|||||||
|
/*Richard Reiswich*/
|
||||||
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
|
import javafx.beans.NamedArg;
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.fxml.FXMLLoader;
|
||||||
|
import javafx.scene.Scene;
|
||||||
|
import javafx.scene.control.Alert;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.PasswordField;
|
||||||
|
import javafx.scene.control.TextField;
|
||||||
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
public class LoginController {
|
||||||
|
@FXML
|
||||||
|
private TextField tfEmail;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private PasswordField pfPassword;
|
||||||
|
|
||||||
|
HashMap<String,String> benutzerMap = new HashMap<String,String>();
|
||||||
|
@FXML
|
||||||
|
protected void onBtLoginClick() throws IOException {
|
||||||
|
benutzerMap.put("Reshad","1234");
|
||||||
|
String email = tfEmail.getText();
|
||||||
|
String password = pfPassword.getText();
|
||||||
|
if(benutzerMap.containsKey(email) && benutzerMap.containsValue(password)){
|
||||||
|
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("menue-view.fxml"));
|
||||||
|
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||||
|
Stage stage = new Stage();
|
||||||
|
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||||
|
stage.setScene(scene);
|
||||||
|
stage.show();
|
||||||
|
}else {
|
||||||
|
Alert alert = new Alert(Alert.AlertType.ERROR,"Email oder Passwort ist falsch");
|
||||||
|
alert.showAndWait();
|
||||||
|
}
|
||||||
|
|
||||||
|
tfEmail.setText("");
|
||||||
|
pfPassword.setText("");
|
||||||
|
}
|
||||||
|
@FXML
|
||||||
|
protected void changeToSignUp() throws IOException {
|
||||||
|
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("signUp-view.fxml"));
|
||||||
|
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||||
|
Stage stage = new Stage();
|
||||||
|
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||||
|
stage.setScene(scene);
|
||||||
|
stage.show();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,25 @@
|
|||||||
|
/**
|
||||||
|
* Author: Reshad Meher
|
||||||
|
* Startseite
|
||||||
|
* fxml: menue-view.fxml
|
||||||
|
*/
|
||||||
|
|
||||||
package com.bib.essensbestellungsverwaltung;
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
import javafx.event.ActionEvent;
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.fxml.FXMLLoader;
|
||||||
|
import javafx.scene.Parent;
|
||||||
|
import javafx.scene.Scene;
|
||||||
|
import javafx.scene.control.Alert;
|
||||||
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
public class MenueController {
|
public class MenueController {
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private void onBtLoginClick(){
|
||||||
|
Alert alert = new Alert(Alert.AlertType.ERROR, "Hi");
|
||||||
|
alert.showAndWait();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
|
public class ParentController{
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
|
import javafx.fxml.FXMLLoader;
|
||||||
|
import javafx.scene.Parent;
|
||||||
|
import javafx.scene.Scene;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
public class SceneController {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.bib.essensbestellungsverwaltung;
|
||||||
|
|
||||||
|
public class StartPageController {
|
||||||
|
}
|
@ -0,0 +1,124 @@
|
|||||||
|
<?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>
|
@ -0,0 +1,12 @@
|
|||||||
|
#buttons:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-background-color: rgba(85, 103, 136, 0.64);
|
||||||
|
}
|
||||||
|
|
||||||
|
#optionsContainer{
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
#optionsContainer{
|
||||||
|
-fx-background-color: darkblue;
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<AnchorPane xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="com.bib.essensbestellungsverwaltung.AdminController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0">
|
||||||
|
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,177 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.ListView?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
|
<?import javafx.scene.layout.HBox?>
|
||||||
|
<?import javafx.scene.layout.VBox?>
|
||||||
|
<?import javafx.scene.text.Font?>
|
||||||
|
<?import javafx.scene.text.Text?>
|
||||||
|
|
||||||
|
|
||||||
|
<AnchorPane prefHeight="760.0" prefWidth="867.0" stylesheets="@child.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.ParentController">
|
||||||
|
<children>
|
||||||
|
<Text layoutX="51.0" layoutY="90.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kinder">
|
||||||
|
<font>
|
||||||
|
<Font size="58.0" />
|
||||||
|
</font>
|
||||||
|
</Text>
|
||||||
|
<HBox id="contentContainer" alignment="CENTER" layoutX="49.0" layoutY="170.0" prefHeight="250.0" prefWidth="770.0">
|
||||||
|
<children>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Alter">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField prefWidth="97.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Gruppe">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Geburtsdatum">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField prefWidth="97.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Sonstiges">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Alergien">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<ListView prefHeight="144.0" prefWidth="227.0" />
|
||||||
|
<TextField id="tfAddAllergy" promptText="Allergie hinzufügen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<Text layoutX="49.0" layoutY="152.0" strokeType="OUTSIDE" strokeWidth="0.0" text="[Name des Kindes]" wrappingWidth="99.03515625" />
|
||||||
|
<HBox id="contentContainer" alignment="CENTER" layoutX="49.0" layoutY="464.0" prefHeight="250.0" prefWidth="770.0">
|
||||||
|
<children>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Alter">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField prefWidth="97.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Gruppe">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Geburtsdatum">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField prefWidth="97.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Sonstiges">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<TextField>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
||||||
|
<children>
|
||||||
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Allergien">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</Text>
|
||||||
|
<ListView prefHeight="200.0" prefWidth="200.0" />
|
||||||
|
<TextField id="tfAddAllergy" promptText="Allergie hinzufügen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="15.0" right="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</VBox>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<Text layoutX="49.0" layoutY="433.0" strokeType="OUTSIDE" strokeWidth="0.0" text="[Name des Kindes]" wrappingWidth="99.03515625" />
|
||||||
|
<Button id="btAddChild" layoutX="382.0" layoutY="721.0" mnemonicParsing="false" text="Kind hinzufügen" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,5 @@
|
|||||||
|
#btAddChild{
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-border-color: transparent;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
}
|
@ -0,0 +1,156 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.Label?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?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="479.0" prefWidth="719.0" stylesheets="@createCoworker.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
|
<children>
|
||||||
|
<Label layoutX="301.0" layoutY="49.0" />
|
||||||
|
<Label layoutX="230.0" layoutY="30.0" prefHeight="28.0" prefWidth="220.0" text="Mitarbeiter hinzufügen">
|
||||||
|
<font>
|
||||||
|
<Font size="18.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<VBox layoutX="119.0" layoutY="95.0" prefHeight="317.0" prefWidth="331.0">
|
||||||
|
<children>
|
||||||
|
<HBox prefHeight="43.0" prefWidth="331.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="116.0" text="Nachname">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="194.0" />
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="60.0" prefWidth="331.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="35.0" prefWidth="118.0" text="Vorname">
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="193.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="35.0" prefWidth="116.0" text="Straße">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="195.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="25.0" prefWidth="118.0" text="Hausnummer">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="87.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="24.0" prefWidth="331.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="25.0" prefWidth="118.0" text="PLZ">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="87.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="35.0" prefWidth="120.0" text="Stadt">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="13.0" prefWidth="194.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="35.0" prefWidth="117.0" text="Email">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="196.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="35.0" prefWidth="122.0" text="Passwort">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
<padding>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField prefHeight="25.0" prefWidth="194.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="10.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
</children>
|
||||||
|
</VBox>
|
||||||
|
<Button id="btCreateCoworker" layoutX="119.0" layoutY="412.0" mnemonicParsing="false" prefHeight="44.0" prefWidth="158.0" text="Mitarbeiter hinzufügen" />
|
||||||
|
<Button id="btCancelCoworker" layoutX="357.0" layoutY="412.0" mnemonicParsing="false" prefHeight="44.0" prefWidth="158.0" text="Abbrechen" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,18 @@
|
|||||||
|
#btCreateCoworker {
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCreateCoworker:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelCoworker{
|
||||||
|
-fx-background-color: transparent;
|
||||||
|
-fx-underline: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelCoworker:hover{
|
||||||
|
-fx-text-fill: lightblue;
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.Label?>
|
||||||
|
<?import javafx.scene.control.RadioButton?>
|
||||||
|
<?import javafx.scene.control.TextArea?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?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="521.0" prefWidth="731.0" stylesheets="@createFood.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
|
<children>
|
||||||
|
<Label alignment="CENTER" layoutX="234.0" layoutY="29.0" prefHeight="44.0" prefWidth="237.0" text="Gericht hinzufügen">
|
||||||
|
<font>
|
||||||
|
<Font size="18.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<VBox layoutX="112.0" layoutY="73.0" prefHeight="389.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<HBox prefHeight="75.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="33.0" prefWidth="121.0" text="Name des Gerichts" />
|
||||||
|
<TextField prefHeight="25.0" prefWidth="290.0">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="75.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="33.0" prefWidth="121.0" text="Beschreibung" />
|
||||||
|
<TextArea prefHeight="75.0" prefWidth="290.0" />
|
||||||
|
</children>
|
||||||
|
<padding>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</padding>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="75.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<Label text="Art des Gerichts">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</Label>
|
||||||
|
<RadioButton mnemonicParsing="false" text="Dessert">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="35.0" top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</RadioButton>
|
||||||
|
<RadioButton mnemonicParsing="false" text="Kein Dessert">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="50.0" top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</RadioButton>
|
||||||
|
</children>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</padding>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="75.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<Label text="Typ">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</Label>
|
||||||
|
<RadioButton mnemonicParsing="false" prefHeight="17.0" prefWidth="91.0" text="Vegetarisch">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="100.0" top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</RadioButton>
|
||||||
|
<RadioButton mnemonicParsing="false" text="Vegan">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="20.0" top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</RadioButton>
|
||||||
|
<RadioButton mnemonicParsing="false" text="Fleisch">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets left="40.0" top="20.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</RadioButton>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="76.0" prefWidth="459.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="41.0" prefWidth="171.0" text="Allergien mit Komma getrennt" />
|
||||||
|
<TextArea prefHeight="76.0" prefWidth="246.0" />
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
</children>
|
||||||
|
</VBox>
|
||||||
|
<Button id="btCreateFood" layoutX="106.0" layoutY="457.0" mnemonicParsing="false" prefHeight="50.0" prefWidth="145.0" text="Hinzufügen" />
|
||||||
|
<Button id="btCancelFood" layoutX="366.0" layoutY="457.0" mnemonicParsing="false" prefHeight="50.0" prefWidth="162.0" text="Abbrechen" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,18 @@
|
|||||||
|
#btCreateFood {
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCreateFood:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelFood{
|
||||||
|
-fx-background-color: transparent;
|
||||||
|
-fx-underline: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelFood:hover{
|
||||||
|
-fx-text-fill: lightblue;
|
||||||
|
}
|
@ -0,0 +1,87 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.Label?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?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="599.0" prefWidth="900.0" stylesheets="@createFoodplan.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
|
<children>
|
||||||
|
<Label layoutX="359.0" layoutY="36.0" text="Essensplan erstellen">
|
||||||
|
<font>
|
||||||
|
<Font size="18.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<VBox layoutX="134.0" layoutY="124.0" prefHeight="327.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<HBox prefHeight="50.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="133.0" text="Datum JJJJ-MMM-TT">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</Label>
|
||||||
|
<TextField />
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="50.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="133.0" text="Veganes Hauptgericht">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</Label>
|
||||||
|
<TextField>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="50.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="133.0" text="Zweites Hauptgericht">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</HBox.margin>
|
||||||
|
</Label>
|
||||||
|
<TextField>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</HBox.margin>
|
||||||
|
</TextField>
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="50.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="133.0" text="Veganes Dessert">
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</HBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField />
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<HBox prefHeight="50.0" prefWidth="632.0">
|
||||||
|
<children>
|
||||||
|
<Label prefHeight="17.0" prefWidth="133.0" text="Zweites Dessert">
|
||||||
|
<padding>
|
||||||
|
<Insets top="5.0" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<TextField />
|
||||||
|
</children>
|
||||||
|
</HBox>
|
||||||
|
</children>
|
||||||
|
</VBox>
|
||||||
|
<Button id="btCreateFoodplan" layoutX="112.0" layoutY="427.0" mnemonicParsing="false" prefHeight="68.0" prefWidth="133.0" text="Plan erstellen" />
|
||||||
|
<Button id="btCancelFoodplan" layoutX="299.0" layoutY="427.0" mnemonicParsing="false" prefHeight="68.0" prefWidth="133.0" text="Abbrechen" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,18 @@
|
|||||||
|
#btCreateFoodplan {
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCreateFoodplan:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelFoodplan{
|
||||||
|
-fx-background-color: transparent;
|
||||||
|
-fx-underline: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btCancelFoodplan:hover{
|
||||||
|
-fx-text-fill: lightblue;
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<AnchorPane xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="com.bib.essensbestellungsverwaltung.AdminController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0">
|
||||||
|
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.image.Image?>
|
||||||
|
<?import javafx.scene.image.ImageView?>
|
||||||
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
|
<?import javafx.scene.text.Font?>
|
||||||
|
<?import javafx.scene.text.Text?>
|
||||||
|
|
||||||
|
|
||||||
|
<AnchorPane prefHeight="400.0" prefWidth="600.0" stylesheets="@deleteChild.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.ParentController">
|
||||||
|
<children>
|
||||||
|
<Text layoutX="253.0" layoutY="180.0" strokeType="OUTSIDE" strokeWidth="0.0" text="[Name vom Kind] löschen?" wrappingWidth="274.130859375">
|
||||||
|
<font>
|
||||||
|
<Font size="23.0" />
|
||||||
|
</font>
|
||||||
|
</Text>
|
||||||
|
<ImageView fitHeight="150.0" fitWidth="200.0" layoutX="66.0" layoutY="97.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<image>
|
||||||
|
<Image url="@pics/trash-can.png" />
|
||||||
|
</image>
|
||||||
|
</ImageView>
|
||||||
|
<Button id="btDeletConfim" layoutX="390.0" layoutY="315.0" mnemonicParsing="false" prefHeight="53.0" prefWidth="141.0" text="Bestätigen" />
|
||||||
|
<Button id="btDeleteDeny" layoutX="71.0" layoutY="315.0" mnemonicParsing="false" prefHeight="53.0" prefWidth="141.0" text="zurück" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
@ -0,0 +1,18 @@
|
|||||||
|
#btDeletConfim{
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btDeletConfim:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btDeleteDeny{
|
||||||
|
-fx-background-color: transparent;
|
||||||
|
-fx-underline: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btDeleteDeny:hover{
|
||||||
|
-fx-text-fill: lightblue;
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<AnchorPane xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="com.bib.essensbestellungsverwaltung.AdminController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0">
|
||||||
|
|
||||||
|
</AnchorPane>
|
@ -12,11 +12,11 @@
|
|||||||
<?import javafx.scene.text.Font?>
|
<?import javafx.scene.text.Font?>
|
||||||
<?import javafx.scene.text.Text?>
|
<?import javafx.scene.text.Text?>
|
||||||
|
|
||||||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
|
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.LoginController">
|
||||||
<children>
|
<children>
|
||||||
<VBox alignment="CENTER" prefHeight="400.0" prefWidth="265.0" style="-fx-background-color: lightblue;">
|
<VBox alignment="CENTER" prefHeight="400.0" prefWidth="265.0" style="-fx-background-color: lightblue;">
|
||||||
<children>
|
<children>
|
||||||
<Text fill="WHITE" strokeType="OUTSIDE" strokeWidth="0.0" text="Essenbestellung">
|
<Text fill="WHITE" strokeType="OUTSIDE" strokeWidth="0.0" text="Essensbestellung">
|
||||||
<font>
|
<font>
|
||||||
<Font name="Yu Gothic Light" size="26.0" />
|
<Font name="Yu Gothic Light" size="26.0" />
|
||||||
</font>
|
</font>
|
||||||
@ -31,7 +31,7 @@
|
|||||||
<Circle fill="#93c4f23d" layoutY="258.0" radius="106.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
<Circle fill="#93c4f23d" layoutY="258.0" radius="106.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
<VBox alignment="CENTER" layoutX="263.0" prefHeight="400.0" prefWidth="338.0" style="-fx-background-color: white;">
|
<VBox alignment="CENTER" layoutX="263.0" prefHeight="400.0" prefWidth="338.0" style="-fx-background-color: white;">
|
||||||
<children>
|
<children>
|
||||||
<TextField promptText="Email" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;">
|
<TextField promptText="Email" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="tfEmail">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets bottom="15.0" left="25.0" right="25.0" top="25.0" />
|
<Insets bottom="15.0" left="25.0" right="25.0" top="25.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
@ -42,7 +42,7 @@
|
|||||||
<Font name="Microsoft Tai Le" size="12.0" />
|
<Font name="Microsoft Tai Le" size="12.0" />
|
||||||
</font>
|
</font>
|
||||||
</TextField>
|
</TextField>
|
||||||
<PasswordField promptText="Passwort" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;">
|
<PasswordField promptText="Passwort" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="pfPassword">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets bottom="25.0" left="25.0" right="25.0" top="15.0" />
|
<Insets bottom="25.0" left="25.0" right="25.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
@ -52,11 +52,11 @@
|
|||||||
</PasswordField>
|
</PasswordField>
|
||||||
<HBox alignment="CENTER" prefHeight="30.0" prefWidth="238.0">
|
<HBox alignment="CENTER" prefHeight="30.0" prefWidth="238.0">
|
||||||
<children>
|
<children>
|
||||||
<Button mnemonicParsing="false" prefHeight="25.0" prefWidth="106.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Login" textFill="WHITE">
|
<Button mnemonicParsing="false" prefHeight="25.0" prefWidth="106.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Login" textFill="WHITE" onAction="#onBtLoginClick">
|
||||||
<font>
|
<font>
|
||||||
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
</font></Button>
|
</font></Button>
|
||||||
<Button id="btSignUp" mnemonicParsing="false" prefHeight="25.0" prefWidth="101.0" style="-fx-background-color: tranparent;" text="Sign up" textFill="#7c7b7b" underline="true" />
|
<Button id="btSignUp" mnemonicParsing="false" prefHeight="25.0" prefWidth="101.0" style="-fx-background-color: tranparent;" text="Sign up" textFill="#7c7b7b" underline="true" onAction="#changeToSignUp" />
|
||||||
</children>
|
</children>
|
||||||
</HBox>
|
</HBox>
|
||||||
</children>
|
</children>
|
||||||
|
@ -2,146 +2,325 @@
|
|||||||
|
|
||||||
<?import javafx.geometry.Insets?>
|
<?import javafx.geometry.Insets?>
|
||||||
<?import javafx.scene.control.Button?>
|
<?import javafx.scene.control.Button?>
|
||||||
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.control.ComboBox?>
|
||||||
<?import javafx.scene.layout.AnchorPane?>
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
|
<?import javafx.scene.layout.HBox?>
|
||||||
<?import javafx.scene.layout.VBox?>
|
<?import javafx.scene.layout.VBox?>
|
||||||
<?import javafx.scene.text.Font?>
|
<?import javafx.scene.text.Font?>
|
||||||
|
<?import javafx.scene.text.Text?>
|
||||||
|
|
||||||
<AnchorPane prefHeight="536.0" prefWidth="929.0" style="-fx-background-color: lightblue;" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.MenueController">
|
<AnchorPane prefHeight="760.0" prefWidth="867.0" stylesheets="@menue.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.MenueController">
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" layoutX="14.0" layoutY="14.0" prefHeight="35.0" prefWidth="895.0" text="Essenbestellung">
|
<HBox alignment="CENTER" layoutX="50.0" layoutY="27.0" prefHeight="648.0" prefWidth="791.0">
|
||||||
<font>
|
|
||||||
<Font size="28.0"/>
|
|
||||||
</font>
|
|
||||||
</Label>
|
|
||||||
<Button alignment="CENTER" layoutX="868.0" layoutY="61.0" mnemonicParsing="false" style="-fx-background-color: white;" text="Login" />
|
|
||||||
<VBox layoutX="14.0" layoutY="100.0" prefHeight="350.0" prefWidth="180.0" style="-fx-background-color: transparent; -fx-padding: 5;">
|
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" contentDisplay="TOP" prefHeight="23.0" prefWidth="196.0" style="-fx-background-color: lightdarkblue;" text="Montag" textAlignment="CENTER">
|
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="135.0">
|
||||||
<VBox.margin>
|
<children>
|
||||||
<Insets bottom="10.0" />
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Montag" textAlignment="CENTER" wrappingWidth="120.0">
|
||||||
</VBox.margin>
|
|
||||||
<font>
|
|
||||||
<Font size="18.0" />
|
|
||||||
</font>
|
|
||||||
</Label>
|
|
||||||
<Label prefHeight="18.0" prefWidth="180.0" text="Hauptgericht" />
|
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="170.0" text="Button">
|
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets />
|
<Insets />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
|
<font>
|
||||||
|
<Font size="23.0" />
|
||||||
|
</font>
|
||||||
|
</Text>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
</Button>
|
</Button>
|
||||||
<Label prefHeight="18.0" prefWidth="174.0" text="Dessert">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 2">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="170.0" text="Button" />
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="55.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 2">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
<VBox layoutX="194.0" layoutY="100.0" prefHeight="350.0" prefWidth="180.0" style="-fx-background-color: transparent; -fx-padding: 5;">
|
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="135.0">
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" prefHeight="18.0" prefWidth="210.0" text="Dienstag">
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Dienstag" textAlignment="CENTER" wrappingWidth="120.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
<font>
|
<font>
|
||||||
<Font size="18.0" />
|
<Font size="23.0" />
|
||||||
</font>
|
</font>
|
||||||
</Label>
|
</Text>
|
||||||
<Label prefHeight="18.0" prefWidth="182.0" text="Hauptgericht">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 1">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="170.0" text="Button" />
|
</Button>
|
||||||
<Label prefHeight="18.0" prefWidth="183.0" text="Dessert">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 2">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="170.0" text="Button" />
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="55.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 2">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
<VBox layoutX="554.0" layoutY="100.0" prefHeight="350.0" prefWidth="180.0" style="-fx-background-color: transparent; -fx-padding: 5;">
|
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="135.0">
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" prefHeight="18.0" prefWidth="214.0" text="Donnerstag">
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Mittwoch" textAlignment="CENTER" wrappingWidth="120.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
<font>
|
<font>
|
||||||
<Font size="18.0" />
|
<Font size="23.0" />
|
||||||
</font>
|
</font>
|
||||||
</Label>
|
</Text>
|
||||||
<Label prefHeight="18.0" prefWidth="178.0" text="Hauptgericht">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 1">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
<Label prefHeight="18.0" prefWidth="186.0" text="Dessert">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 2">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="55.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 2">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
<VBox layoutX="374.0" layoutY="100.0" prefHeight="350.0" prefWidth="180.0" style="-fx-background-color: transparent; -fx-padding: 5;">
|
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="135.0">
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" prefHeight="18.0" prefWidth="212.0" text="Mittwoch">
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Donnerstag" textAlignment="CENTER" wrappingWidth="120.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
<font>
|
<font>
|
||||||
<Font size="18.0" />
|
<Font size="23.0" />
|
||||||
</font>
|
</font>
|
||||||
</Label>
|
</Text>
|
||||||
<Label prefHeight="18.0" prefWidth="176.0" text="Hauptgericht">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 1">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
<Label prefHeight="18.0" prefWidth="177.0" text="Dessert">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 2">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="55.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 2">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
<VBox layoutX="734.0" layoutY="100.0" prefHeight="350.0" prefWidth="180.0" style="-fx-background-color: transparent; -fx-padding: 5;">
|
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="135.0">
|
||||||
<children>
|
<children>
|
||||||
<Label alignment="CENTER" prefHeight="18.0" prefWidth="200.0" text="Freitag">
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Freitag" textAlignment="CENTER" wrappingWidth="120.0">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets />
|
||||||
|
</VBox.margin>
|
||||||
<font>
|
<font>
|
||||||
<Font size="18.0" />
|
<Font size="23.0" />
|
||||||
</font>
|
</font>
|
||||||
</Label>
|
</Text>
|
||||||
<Label prefHeight="18.0" prefWidth="190.0" text="Hauptgericht">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 1">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
<Label prefHeight="18.0" prefWidth="190.0" text="Dessert">
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Gericht 2">
|
||||||
<VBox.margin>
|
<VBox.margin>
|
||||||
<Insets top="10.0" />
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
</VBox.margin>
|
</VBox.margin>
|
||||||
</Label>
|
<padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="78.0" prefWidth="218.0" text="Button" />
|
</padding>
|
||||||
<Button alignment="CENTER" mnemonicParsing="false" prefHeight="20.0" prefWidth="218.0" text="Button" />
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="55.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 1">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="Dessert 2">
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="25.0" left="20.0" right="20.0" top="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
|
<Button id="btFoodChoice" mnemonicParsing="false" text="ablehen">
|
||||||
|
<padding>
|
||||||
|
<Insets left="25.0" right="25.0" />
|
||||||
|
</padding>
|
||||||
|
</Button>
|
||||||
</children>
|
</children>
|
||||||
|
<HBox.margin>
|
||||||
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
||||||
|
</HBox.margin>
|
||||||
</VBox>
|
</VBox>
|
||||||
</children>
|
</children>
|
||||||
|
</HBox>
|
||||||
|
<Button id="btPlaceOrder" layoutX="378.0" layoutY="675.0" mnemonicParsing="false" prefHeight="53.0" prefWidth="134.0" text="Jetzt Bestellen" />
|
||||||
|
<ComboBox id="cbChooseChild" layoutX="63.0" layoutY="689.0" prefWidth="150.0" promptText="Kind auswählen" />
|
||||||
|
<Text layoutX="650.0" layoutY="711.0" strokeType="OUTSIDE" strokeWidth="0.0" text="[Gesambetrag]" wrappingWidth="168.0">
|
||||||
|
<font>
|
||||||
|
<Font size="24.0" />
|
||||||
|
</font>
|
||||||
|
</Text>
|
||||||
|
</children>
|
||||||
</AnchorPane>
|
</AnchorPane>
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
#btFoodChoice{
|
||||||
|
-fx-background-color: transparent;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#btFoodChoice:hover{
|
||||||
|
-fx-underline: true;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
}
|
||||||
|
#btPlaceOrder{
|
||||||
|
-fx-background-color: lightblue;
|
||||||
|
-fx-text-fill: white;
|
||||||
|
-fx-background-radius: 25;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#btPlaceOrder:hover{
|
||||||
|
-fx-border-width: 0;
|
||||||
|
-fx-text-fill: black;
|
||||||
|
-fx-underline: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cbChooseChild{
|
||||||
|
-fx-background-color: lightgray;
|
||||||
|
}
|
@ -0,0 +1,82 @@
|
|||||||
|
<?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>
|
@ -0,0 +1,26 @@
|
|||||||
|
#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;
|
||||||
|
}
|
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 7.8 KiB |
@ -0,0 +1,107 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.PasswordField?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?import javafx.scene.effect.Blend?>
|
||||||
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
|
<?import javafx.scene.layout.HBox?>
|
||||||
|
<?import javafx.scene.layout.VBox?>
|
||||||
|
<?import javafx.scene.shape.Circle?>
|
||||||
|
<?import javafx.scene.text.Font?>
|
||||||
|
<?import javafx.scene.text.Text?>
|
||||||
|
|
||||||
|
<AnchorPane maxHeight="-400" maxWidth="-600" minHeight="-400" minWidth="-600" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.SingUpController">
|
||||||
|
<children>
|
||||||
|
<VBox alignment="CENTER" prefHeight="400.0" prefWidth="265.0" style="-fx-background-color: lightblue;">
|
||||||
|
<children>
|
||||||
|
<Text fill="WHITE" strokeType="OUTSIDE" strokeWidth="0.0" text="Essensbestellung">
|
||||||
|
<font>
|
||||||
|
<Font name="Yu Gothic Light" size="26.0" />
|
||||||
|
</font>
|
||||||
|
</Text>
|
||||||
|
</children>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="150.0" />
|
||||||
|
</padding>
|
||||||
|
</VBox>
|
||||||
|
<Circle fill="#67b5ff2e" layoutX="-23.0" layoutY="368.0" radius="100.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
|
<Circle fill="#69b6ffb0" layoutX="235.0" layoutY="310.0" radius="158.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
|
<Circle fill="#93c4f23d" layoutY="258.0" radius="106.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
|
<VBox alignment="CENTER" layoutX="263.0" prefHeight="400.0" prefWidth="338.0" style="-fx-background-color: white;">
|
||||||
|
<children>
|
||||||
|
<TextField promptText="Email" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="tfEmail">
|
||||||
|
<effect>
|
||||||
|
<Blend />
|
||||||
|
</effect>
|
||||||
|
<font>
|
||||||
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
|
</font>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<TextField promptText="Email bestätigen" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="tfBestätigungEmail">
|
||||||
|
<effect>
|
||||||
|
<Blend />
|
||||||
|
</effect>
|
||||||
|
<font>
|
||||||
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
|
</font>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</TextField>
|
||||||
|
<PasswordField promptText="Passwort" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="pfPasswort">
|
||||||
|
<font>
|
||||||
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
|
</font>
|
||||||
|
<opaqueInsets>
|
||||||
|
<Insets />
|
||||||
|
</opaqueInsets>
|
||||||
|
<effect>
|
||||||
|
<Blend />
|
||||||
|
</effect>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</PasswordField>
|
||||||
|
<PasswordField promptText="Passwort bestätigen" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;" fx:id="pfBestätigungPassowrt">
|
||||||
|
<font>
|
||||||
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
|
</font>
|
||||||
|
<opaqueInsets>
|
||||||
|
<Insets />
|
||||||
|
</opaqueInsets>
|
||||||
|
<effect>
|
||||||
|
<Blend />
|
||||||
|
</effect>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</PasswordField>
|
||||||
|
<HBox alignment="CENTER" prefHeight="30.0" prefWidth="238.0">
|
||||||
|
<children>
|
||||||
|
<Button mnemonicParsing="false" prefHeight="25.0" prefWidth="106.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Konto erstellen" textFill="WHITE" onAction="#onKontoErstellenBtClick">
|
||||||
|
<font>
|
||||||
|
<Font name="Microsoft Tai Le Bold" size="12.0" />
|
||||||
|
</font></Button>
|
||||||
|
<Button id="btSignUp" mnemonicParsing="false" prefHeight="25.0" prefWidth="101.0" style="-fx-background-color: tranparent;" text="Anmelden" textFill="#7c7b7b" underline="true" onAction="#onAnmeldenBtClick"/>
|
||||||
|
</children>
|
||||||
|
<opaqueInsets>
|
||||||
|
<Insets top="15.0" />
|
||||||
|
</opaqueInsets>
|
||||||
|
<VBox.margin>
|
||||||
|
<Insets top="15.0" />
|
||||||
|
</VBox.margin>
|
||||||
|
</HBox>
|
||||||
|
</children>
|
||||||
|
<padding>
|
||||||
|
<Insets bottom="65.0" left="45.0" right="45.0" top="45.0" />
|
||||||
|
</padding>
|
||||||
|
</VBox>
|
||||||
|
<Circle fill="#1469b895" layoutX="133.0" layoutY="368.0" radius="106.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
|
<Circle fill="#0088ff82" layoutX="77.0" layoutY="276.0" radius="53.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|