Compare commits
8 Commits
svenNeuesG
...
4a97fee7e7
Author | SHA1 | Date | |
---|---|---|---|
4a97fee7e7 | |||
ea8c810f13 | |||
a34ae15b88 | |||
73416b60e0 | |||
b77e42914f | |||
33ebabe083 | |||
7eea5b2a50 | |||
e8d29f851c |
40
src/main/java/RestAPISchnittstelle/IRestAPI.java
Normal file
40
src/main/java/RestAPISchnittstelle/IRestAPI.java
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
/**
|
||||||
|
* @author Samuel Wolff
|
||||||
|
* noch nicht getestet
|
||||||
|
*
|
||||||
|
* TODO Json hinzufügen
|
||||||
|
*/
|
||||||
|
|
||||||
|
package RestAPISchnittstelle;
|
||||||
|
|
||||||
|
public interface IRestAPI {
|
||||||
|
|
||||||
|
// region Get
|
||||||
|
|
||||||
|
void get(String controllerName);
|
||||||
|
|
||||||
|
void get (String controllerName, int id);
|
||||||
|
|
||||||
|
void get (String controllerName, int id, boolean bezahlt);
|
||||||
|
|
||||||
|
//endregion
|
||||||
|
|
||||||
|
// region put
|
||||||
|
|
||||||
|
void put (String controllerName, int id, String jsonData);
|
||||||
|
|
||||||
|
// endregion
|
||||||
|
|
||||||
|
// region POST
|
||||||
|
|
||||||
|
void post (String controllerName, String jsonData);
|
||||||
|
|
||||||
|
// endregion
|
||||||
|
|
||||||
|
// region DELETE
|
||||||
|
|
||||||
|
void delete(String controllerName, int id);
|
||||||
|
|
||||||
|
// endregion
|
||||||
|
|
||||||
|
}
|
152
src/main/java/RestAPISchnittstelle/RestApiClient.java
Normal file
152
src/main/java/RestAPISchnittstelle/RestApiClient.java
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
/**
|
||||||
|
* @author Samuel Wolff
|
||||||
|
* noch nicht getestet
|
||||||
|
* TODO FERTIG MACHEN
|
||||||
|
*/
|
||||||
|
|
||||||
|
package RestAPISchnittstelle;
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.http.HttpClient;
|
||||||
|
import java.net.http.HttpRequest;
|
||||||
|
import java.net.http.HttpResponse;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
|
public class RestApiClient implements IRestAPI{
|
||||||
|
|
||||||
|
private final String urlBase = "https://pbg2h22awo.web.pb.bib.de/VPR_Schnittstelle/VPR_Schnittstelle/restAPI.php";
|
||||||
|
|
||||||
|
private final HttpClient client;
|
||||||
|
|
||||||
|
public RestApiClient(){
|
||||||
|
client = HttpClient.newHttpClient();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static void main(String[] args){
|
||||||
|
|
||||||
|
new RestApiClient().get("Kind", 2);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void get(String controllerName) {
|
||||||
|
URI apiUri = URI.create(String.format("%s/%s", urlBase, controllerName));
|
||||||
|
|
||||||
|
HttpRequest httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(apiUri)
|
||||||
|
.GET()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Send the request and get the response
|
||||||
|
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||||
|
|
||||||
|
// Print the response status code and body
|
||||||
|
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||||
|
System.out.println("Response Body: " + httpResponse.body());
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void get(String controllerName, int id) {
|
||||||
|
URI apiUri = URI.create(String.format("%s/%s/%s", urlBase, controllerName, id));
|
||||||
|
|
||||||
|
HttpRequest httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(apiUri)
|
||||||
|
.GET()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Send the request and get the response
|
||||||
|
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||||
|
|
||||||
|
// Print the response status code and body
|
||||||
|
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||||
|
System.out.println("Response Body: " + httpResponse.body());
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
* @param id
|
||||||
|
* @param bezahlt
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void get(String controllerName, int id, boolean bezahlt) {
|
||||||
|
URI apiUri = URI.create(String.format("%s/%s?%s&%s", urlBase, controllerName, id, bezahlt));
|
||||||
|
|
||||||
|
HttpRequest httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(apiUri)
|
||||||
|
.GET()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Send the request and get the response
|
||||||
|
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||||
|
|
||||||
|
// Print the response status code and body
|
||||||
|
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||||
|
System.out.println("Response Body: " + httpResponse.body());
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void put(String controllerName, int id, String jsonData) {
|
||||||
|
|
||||||
|
URI apiUri = URI.create(String.format("%s/%s/%s", urlBase,controllerName, id));
|
||||||
|
|
||||||
|
HttpRequest httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(apiUri)
|
||||||
|
.header("Content-Type", "application/json")
|
||||||
|
.PUT(HttpRequest.BodyPublishers.ofString(jsonData, StandardCharsets.UTF_8))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Send the request and get the response
|
||||||
|
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||||
|
|
||||||
|
// Print the response status code and body
|
||||||
|
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||||
|
System.out.println("Response Body: " + httpResponse.body());
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void post(String controllerName, String jsonData) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param controllerName
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void delete(String controllerName, int id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -49,55 +49,43 @@ public class AccounterstellungMitarbeiter {
|
|||||||
kindDaten.add(ueberschrift,0,0);
|
kindDaten.add(ueberschrift,0,0);
|
||||||
|
|
||||||
kindDaten.addRow(1);
|
kindDaten.addRow(1);
|
||||||
Label vname = new Label("Vorname:");
|
Label name = new Label("Name:");
|
||||||
kindDaten.add(vname, 0, 1);
|
kindDaten.add(name, 0, 1);
|
||||||
TextField vnameEingabe = new TextField();
|
TextField nameEingabe = new TextField();
|
||||||
kindDaten.add(vnameEingabe, 1, 1);
|
kindDaten.add(nameEingabe, 1, 1);
|
||||||
|
|
||||||
kindDaten.addRow(2);
|
kindDaten.addRow(2);
|
||||||
Label nname = new Label("Nachname:");
|
|
||||||
kindDaten.add(nname, 0, 2);
|
|
||||||
TextField nnameEingabe = new TextField();
|
|
||||||
kindDaten.add(nnameEingabe, 1, 2);
|
|
||||||
|
|
||||||
kindDaten.addRow(3);
|
|
||||||
Label geburtstag = new Label("Geburtstag: ");
|
Label geburtstag = new Label("Geburtstag: ");
|
||||||
kindDaten.add(geburtstag, 0, 3);
|
kindDaten.add(geburtstag, 0, 2);
|
||||||
DatePicker geburtstagEingabe = new DatePicker();
|
DatePicker geburtstagEingabe = new DatePicker();
|
||||||
geburtstagEingabe.setEditable(false);
|
geburtstagEingabe.setEditable(false);
|
||||||
kindDaten.add(geburtstagEingabe, 1, 3);
|
kindDaten.add(geburtstagEingabe, 1, 2);
|
||||||
|
|
||||||
|
kindDaten.addRow(3);
|
||||||
|
Button hinzufuegen = new Button("hinzufügen");
|
||||||
|
kindDaten.add(hinzufuegen, 1, 3);
|
||||||
|
|
||||||
kindDaten.addRow(4);
|
kindDaten.addRow(4);
|
||||||
Button hinzufuegen = new Button("hinzufügen");
|
|
||||||
kindDaten.add(hinzufuegen, 1, 4);
|
|
||||||
|
|
||||||
kindDaten.addRow(5);
|
|
||||||
hinzufuegen.setOnAction(e -> {
|
hinzufuegen.setOnAction(e -> {
|
||||||
Button neues = new Button(vnameEingabe.getText());
|
Button neues = new Button(nameEingabe.getText());
|
||||||
|
|
||||||
boolean vnameGueltig = false;
|
boolean nameGueltig = false;
|
||||||
boolean gebGueltig = false;
|
boolean gebGueltig = false;
|
||||||
boolean nnameGueltig = false;
|
|
||||||
|
|
||||||
if (!vnameEingabe.getText().equals("")) {
|
if (!nameEingabe.getText().equals("")) {
|
||||||
vnameGueltig = true;
|
nameGueltig = true;
|
||||||
}
|
|
||||||
|
|
||||||
if (!nnameEingabe.getText().equals("")) {
|
|
||||||
nnameGueltig = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!geburtstagEingabe.getEditor().getText().equals("")) {
|
if (!geburtstagEingabe.getEditor().getText().equals("")) {
|
||||||
gebGueltig = true;
|
gebGueltig = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vnameGueltig && gebGueltig && nnameGueltig) {
|
if (nameGueltig && gebGueltig) {
|
||||||
kindanzeige.getChildren().add(neues);
|
kindanzeige.getChildren().add(neues);
|
||||||
neues.setOnAction(a -> {
|
neues.setOnAction(a -> {
|
||||||
((HBox) neues.getParent()).getChildren().remove(neues);
|
((HBox) neues.getParent()).getChildren().remove(neues);
|
||||||
});
|
});
|
||||||
vnameEingabe.setText("");
|
nameEingabe.setText("");
|
||||||
nnameEingabe.setText("");
|
|
||||||
geburtstagEingabe.getEditor().setText("");
|
geburtstagEingabe.getEditor().setText("");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@@ -1,61 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app;
|
|
||||||
|
|
||||||
import javafx.event.ActionEvent;
|
|
||||||
import javafx.fxml.FXML;
|
|
||||||
import javafx.geometry.Pos;
|
|
||||||
import javafx.scene.Node;
|
|
||||||
import javafx.scene.control.Control;
|
|
||||||
import javafx.scene.layout.ColumnConstraints;
|
|
||||||
import javafx.scene.layout.GridPane;
|
|
||||||
import javafx.scene.layout.Priority;
|
|
||||||
import javafx.scene.layout.RowConstraints;
|
|
||||||
import javafx.stage.Modality;
|
|
||||||
import javafx.stage.Stage;
|
|
||||||
|
|
||||||
|
|
||||||
public class EssensverwaltungMitarbeiterView {
|
|
||||||
@FXML
|
|
||||||
private GridPane tagesplan;
|
|
||||||
|
|
||||||
public void initialize(){
|
|
||||||
for (int i = 0; i < tagesplan.getColumnCount(); i++) {
|
|
||||||
ColumnConstraints cc = new ColumnConstraints();
|
|
||||||
cc.setHgrow(Priority.ALWAYS);
|
|
||||||
cc.setFillWidth(true);
|
|
||||||
tagesplan.getColumnConstraints().add(cc);
|
|
||||||
}
|
|
||||||
VerwaltungApplication.responsiveBreiteGrid(tagesplan);
|
|
||||||
|
|
||||||
tagesplan.heightProperty().addListener((obs,oldValue,newValue) -> {
|
|
||||||
final int zeile = 1;
|
|
||||||
for (Node n : tagesplan.getChildren()){
|
|
||||||
if(n instanceof Control && GridPane.getRowIndex(n) == zeile){
|
|
||||||
((Control) n).setPrefHeight(newValue.floatValue());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
public void onAbmelden(ActionEvent actionEvent) {
|
|
||||||
VerwaltungApplication.sceneWechseln("login-view.fxml");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onFilter(ActionEvent actionEvent) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onHinzufuegen(ActionEvent actionEvent) {
|
|
||||||
Stage gerichterstellung = new Stage();
|
|
||||||
|
|
||||||
//solange das neu geöffnete Fenster offen ist, wird das Hauptfenster gesperrt
|
|
||||||
gerichterstellung.initModality(Modality.APPLICATION_MODAL);
|
|
||||||
|
|
||||||
VerwaltungApplication.sceneWechseln(gerichterstellung, 400, 530, "gerichterstellung_mitarbeiter-view.fxml");
|
|
||||||
|
|
||||||
gerichterstellung.minWidthProperty().set(400);
|
|
||||||
gerichterstellung.minHeightProperty().set(530);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onZurueck(ActionEvent actionEvent) {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,52 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app;
|
|
||||||
|
|
||||||
import de.subway_surfers.vpr_app.logik.Zutat;
|
|
||||||
import javafx.event.ActionEvent;
|
|
||||||
import javafx.fxml.FXML;
|
|
||||||
import javafx.scene.Node;
|
|
||||||
import javafx.scene.control.Button;
|
|
||||||
import javafx.scene.control.TextArea;
|
|
||||||
import javafx.scene.control.TextField;
|
|
||||||
import javafx.scene.layout.HBox;
|
|
||||||
import javafx.scene.layout.Pane;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
public class GerichterstellungMitarbeiterView {
|
|
||||||
private @FXML HBox anzeigeInhaltsstoffe;
|
|
||||||
private @FXML TextArea eingabeBeschreibung;
|
|
||||||
private @FXML TextField eingabeName;
|
|
||||||
private @FXML Button buttonInhaltsstoffe;
|
|
||||||
private @FXML TextField eingabeInhaltsstoffe;
|
|
||||||
|
|
||||||
private ArrayList<Zutat> zutaten;
|
|
||||||
|
|
||||||
public void initialize() {
|
|
||||||
zutaten = new ArrayList<>();
|
|
||||||
|
|
||||||
//wird das Fenster vergrößert, wird das Eingabefeld für Inhaltstoffe und den Hinzufügenbutton
|
|
||||||
// auf die volle breite vergrößert.
|
|
||||||
((Pane) eingabeInhaltsstoffe.getParent()).widthProperty().addListener((obs, oldValue, newValue) -> {
|
|
||||||
//eingabeName, da dieses Feld immer die gesamte breite der Stage haben.
|
|
||||||
eingabeInhaltsstoffe.setPrefWidth(eingabeName.getWidth() - buttonInhaltsstoffe.getPrefWidth());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onButtonInhaltsstoffeClick(ActionEvent actionEvent) {
|
|
||||||
String text = eingabeInhaltsstoffe.getText();
|
|
||||||
if (!text.equals("")) {
|
|
||||||
eingabeInhaltsstoffe.setText("");
|
|
||||||
|
|
||||||
Button neuerInhalt = new Button();
|
|
||||||
neuerInhalt.setText(text);
|
|
||||||
anzeigeInhaltsstoffe.getChildren().add(neuerInhalt);
|
|
||||||
|
|
||||||
Zutat neue = new Zutat(text);
|
|
||||||
zutaten.add(neue);
|
|
||||||
neuerInhalt.setOnAction(e -> {
|
|
||||||
((HBox) neuerInhalt.getParent()).getChildren().remove(neuerInhalt);
|
|
||||||
zutaten.remove(neue);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -8,11 +8,8 @@ public class HauptmenueMitarbeiterView {
|
|||||||
VerwaltungApplication.abmelden();
|
VerwaltungApplication.abmelden();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onAccountAnlegenClick(ActionEvent actionEvent) {
|
public void onAccountAnlegen(ActionEvent actionEvent) {
|
||||||
VerwaltungApplication.sceneWechseln("accounterstellung_mitarbeiter.fxml");
|
VerwaltungApplication.sceneWechseln("accounterstellung_mitarbeiter.fxml");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onSpeiseplanClick(ActionEvent actionEvent) {
|
|
||||||
VerwaltungApplication.sceneWechseln("essensverwaltung_mitarbeiter-view.fxml");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,32 @@
|
|||||||
|
/**
|
||||||
|
* @author Samuel Wolff
|
||||||
|
* noch nicht getestet
|
||||||
|
*/
|
||||||
|
// TODO Alle Zutaten einlesen und Listview mit zutatListView Objekten füllen
|
||||||
|
|
||||||
|
package de.subway_surfers.vpr_app;
|
||||||
|
|
||||||
|
import Logik.Kind;
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.CheckBox;
|
||||||
|
import javafx.scene.control.ListView;
|
||||||
|
|
||||||
|
public class InhaltsstoffeFilternController {
|
||||||
|
|
||||||
|
private @FXML ListView<zutatListViewController> zutatListView;
|
||||||
|
|
||||||
|
private @FXML CheckBox speichernCheckBox;
|
||||||
|
|
||||||
|
private @FXML Button abbrechenButton;
|
||||||
|
|
||||||
|
private @FXML Button fortfahrenButton;
|
||||||
|
|
||||||
|
public void initialize(){
|
||||||
|
|
||||||
|
// hier ListView füllen
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,32 @@
|
|||||||
|
/**
|
||||||
|
* @author Samuel Wolff
|
||||||
|
* noch nicht getestet
|
||||||
|
*/
|
||||||
|
// Noch nicht getestet
|
||||||
|
|
||||||
|
package de.subway_surfers.vpr_app;
|
||||||
|
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.RadioButton;
|
||||||
|
import javafx.scene.control.ToggleGroup;
|
||||||
|
|
||||||
|
public class RechnungFilterViewController {
|
||||||
|
|
||||||
|
private @FXML RadioButton alle;
|
||||||
|
private @FXML RadioButton nichtBezahlt;
|
||||||
|
private @FXML RadioButton bezahlt;
|
||||||
|
|
||||||
|
private ToggleGroup rButtons;
|
||||||
|
|
||||||
|
private @FXML Button abbrechenButton;
|
||||||
|
private @FXML Button fortfahrenButton;
|
||||||
|
|
||||||
|
public void initialize(){
|
||||||
|
rButtons = new ToggleGroup();
|
||||||
|
alle.setToggleGroup(rButtons);
|
||||||
|
nichtBezahlt.setToggleGroup(rButtons);
|
||||||
|
bezahlt.setToggleGroup(rButtons);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -2,11 +2,8 @@ package de.subway_surfers.vpr_app;
|
|||||||
|
|
||||||
import javafx.application.Application;
|
import javafx.application.Application;
|
||||||
import javafx.fxml.FXMLLoader;
|
import javafx.fxml.FXMLLoader;
|
||||||
import javafx.scene.Node;
|
|
||||||
import javafx.scene.Scene;
|
import javafx.scene.Scene;
|
||||||
import javafx.scene.control.Alert;
|
import javafx.scene.control.Alert;
|
||||||
import javafx.scene.control.Control;
|
|
||||||
import javafx.scene.layout.GridPane;
|
|
||||||
import javafx.stage.Stage;
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -95,12 +92,10 @@ public class VerwaltungApplication extends Application {
|
|||||||
Stage akt = VerwaltungApplication.getStage();
|
Stage akt = VerwaltungApplication.getStage();
|
||||||
//neue Scene wird auf eine neue Stage gesetzt
|
//neue Scene wird auf eine neue Stage gesetzt
|
||||||
try {
|
try {
|
||||||
Scene scene = new Scene(fxmlLoader.load());
|
Scene scene = new Scene(fxmlLoader.load(), width, height);
|
||||||
neue.setScene(scene);
|
neue.setScene(scene);
|
||||||
|
|
||||||
neue.show();
|
neue.show();
|
||||||
neue.setHeight(height);
|
|
||||||
neue.setWidth(width);
|
|
||||||
}
|
}
|
||||||
//wird die angegebene fxml Datei nicht gefunden, wird ein Alertfenster geöffnet
|
//wird die angegebene fxml Datei nicht gefunden, wird ein Alertfenster geöffnet
|
||||||
catch (IOException | RuntimeException e) {
|
catch (IOException | RuntimeException e) {
|
||||||
@@ -116,24 +111,6 @@ public class VerwaltungApplication extends Application {
|
|||||||
sceneWechseln("login-view.fxml");
|
sceneWechseln("login-view.fxml");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Methode zum automatischen vergrößern und verkleinern von Grids
|
|
||||||
*
|
|
||||||
* Geschrieben: Max Heer, Sven Alteköster
|
|
||||||
* Getestet
|
|
||||||
*
|
|
||||||
* @param grid das responsiv sein soll
|
|
||||||
*/
|
|
||||||
public static void responsiveBreiteGrid (GridPane grid) {
|
|
||||||
grid.widthProperty().addListener((obs, oldValue, newValue) -> {
|
|
||||||
for (Node n : grid.getChildren()) {
|
|
||||||
if (n instanceof Control) {
|
|
||||||
((Control) n).setPrefWidth(newValue.floatValue() / grid.getColumnCount());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
launch();
|
launch();
|
||||||
}
|
}
|
||||||
|
@@ -1,41 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app.logik;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
public class Kind {
|
|
||||||
private String name;
|
|
||||||
private String vorname;
|
|
||||||
private int id;
|
|
||||||
private ArrayList<Zutat> filter;
|
|
||||||
|
|
||||||
public Kind(String name, String vorname, int id) {
|
|
||||||
ArrayList<Zutat> filter = new ArrayList<>();
|
|
||||||
this.name = name;
|
|
||||||
this.vorname = vorname;
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getVorname() {
|
|
||||||
return vorname;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVorname(String vorname) {
|
|
||||||
this.vorname = vorname;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<Zutat> getFilter() {
|
|
||||||
return filter;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,34 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app.logik;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
public class Mahlzeit {
|
|
||||||
private String name;
|
|
||||||
private float preis;
|
|
||||||
private ArrayList<Zutat> zutaten;
|
|
||||||
private String beschreibung;
|
|
||||||
|
|
||||||
public Mahlzeit (String name, float preis, String beschreibung) {
|
|
||||||
this.name = name;
|
|
||||||
this.preis = preis;
|
|
||||||
this.beschreibung = beschreibung;
|
|
||||||
zutaten = new ArrayList<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public float getPreis() {
|
|
||||||
return preis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<Zutat> getZutaten() {
|
|
||||||
return zutaten;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getBeschreibung() {
|
|
||||||
return beschreibung;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,22 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app.logik;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
public class Tagesplan {
|
|
||||||
|
|
||||||
private ArrayList<Mahlzeit> gerichte;
|
|
||||||
private String datum;
|
|
||||||
|
|
||||||
public Tagesplan(String datum) {
|
|
||||||
this.datum = datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ArrayList<Mahlzeit> getGerichte() {
|
|
||||||
return gerichte;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDatum() {
|
|
||||||
return datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,12 +0,0 @@
|
|||||||
package de.subway_surfers.vpr_app.logik;
|
|
||||||
|
|
||||||
public class Zutat {
|
|
||||||
private String name;
|
|
||||||
public Zutat (String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName(){
|
|
||||||
return this.name;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -0,0 +1,32 @@
|
|||||||
|
// Programmiert von Samuel Wolff
|
||||||
|
/**
|
||||||
|
* @author Samuel Wolff
|
||||||
|
* noch nicht getestet
|
||||||
|
*/
|
||||||
|
// TODO Sobald Zutat-Klasse implementiert ist Kommentare entfernen
|
||||||
|
|
||||||
|
package de.subway_surfers.vpr_app;
|
||||||
|
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.scene.control.CheckBox;
|
||||||
|
import javafx.scene.control.Label;
|
||||||
|
|
||||||
|
public class zutatListViewController {
|
||||||
|
|
||||||
|
//private Zutat zutat;
|
||||||
|
|
||||||
|
private @FXML CheckBox isChecked;
|
||||||
|
|
||||||
|
private @FXML Label nameLabel;
|
||||||
|
|
||||||
|
/*public zutatListViewController(Zutat zutat){
|
||||||
|
this.zutat = zutat;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
|
||||||
|
public void initialize(){
|
||||||
|
nameLabel.setText("ZutatA");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@@ -1,6 +1,7 @@
|
|||||||
module de.subway_surfers.vpr_app {
|
module de.subway_surfers.vpr_app {
|
||||||
requires javafx.controls;
|
requires javafx.controls;
|
||||||
requires javafx.fxml;
|
requires javafx.fxml;
|
||||||
|
requires java.net.http;
|
||||||
|
|
||||||
|
|
||||||
opens de.subway_surfers.vpr_app to javafx.fxml;
|
opens de.subway_surfers.vpr_app to javafx.fxml;
|
||||||
|
@@ -1,65 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--Erstellt von Max Heer-->
|
|
||||||
|
|
||||||
<?import java.lang.*?>
|
|
||||||
<?import java.util.*?>
|
|
||||||
<?import javafx.scene.*?>
|
|
||||||
<?import javafx.scene.control.*?>
|
|
||||||
<?import javafx.scene.layout.*?>
|
|
||||||
|
|
||||||
<BorderPane xmlns="http://javafx.com/javafx"
|
|
||||||
xmlns:fx="http://javafx.com/fxml"
|
|
||||||
fx:controller="de.subway_surfers.vpr_app.EssensverwaltungMitarbeiterView"
|
|
||||||
prefHeight="400.0" prefWidth="600.0"
|
|
||||||
stylesheets="@layout.css">
|
|
||||||
<top>
|
|
||||||
<BorderPane styleClass="kopfzeile">
|
|
||||||
<right>
|
|
||||||
<Button text="Abmelden" onAction="#onAbmelden"/>
|
|
||||||
</right>
|
|
||||||
<left>
|
|
||||||
<Button text="Zurück" onAction="#onZurueck"/>
|
|
||||||
</left>
|
|
||||||
</BorderPane>
|
|
||||||
</top>
|
|
||||||
<center>
|
|
||||||
<BorderPane>
|
|
||||||
<top>
|
|
||||||
<BorderPane>
|
|
||||||
<left>
|
|
||||||
<HBox styleClass="test" spacing="10">
|
|
||||||
<Button text="Filter" onAction="#onFilter"/>
|
|
||||||
<Button text="Hinzufügen" onAction="#onHinzufuegen"/>
|
|
||||||
</HBox>
|
|
||||||
</left>
|
|
||||||
<right>
|
|
||||||
<HBox styleClass="test" spacing="10">
|
|
||||||
<Button styleClass="pfeil, links"/>
|
|
||||||
<Label text="Montag DD.MM.YY"/>
|
|
||||||
<Button styleClass="pfeil"/>
|
|
||||||
</HBox>
|
|
||||||
</right>
|
|
||||||
</BorderPane>
|
|
||||||
</top>
|
|
||||||
<center>
|
|
||||||
<AnchorPane>
|
|
||||||
<GridPane fx:id="tagesplan" AnchorPane.bottomAnchor="20" AnchorPane.rightAnchor="20" AnchorPane.leftAnchor="20" AnchorPane.topAnchor="20" styleClass="essensuebersicht_gridlines">
|
|
||||||
<Label text="GerichtName" GridPane.columnIndex="0" GridPane.rowIndex="0"/>
|
|
||||||
<Label GridPane.columnIndex="1" GridPane.rowIndex="0"/>
|
|
||||||
<Label GridPane.columnIndex="2" GridPane.rowIndex="0"/>
|
|
||||||
<Label GridPane.columnIndex="3" GridPane.rowIndex="0"/>
|
|
||||||
<Label GridPane.columnIndex="0" GridPane.rowIndex="1"/>
|
|
||||||
</GridPane>
|
|
||||||
</AnchorPane>
|
|
||||||
</center>
|
|
||||||
</BorderPane>
|
|
||||||
|
|
||||||
</center>
|
|
||||||
<bottom>
|
|
||||||
<BorderPane styleClass="button-untenrechts">
|
|
||||||
<right>
|
|
||||||
<Button text="Bestätigen" styleClass=".button"/>
|
|
||||||
</right>
|
|
||||||
</BorderPane>
|
|
||||||
</bottom>
|
|
||||||
</BorderPane>
|
|
@@ -1,34 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<?import java.lang.*?>
|
|
||||||
<?import java.util.*?>
|
|
||||||
<?import javafx.scene.*?>
|
|
||||||
<?import javafx.scene.control.*?>
|
|
||||||
<?import javafx.scene.layout.*?>
|
|
||||||
|
|
||||||
<BorderPane xmlns="http://javafx.com/javafx"
|
|
||||||
xmlns:fx="http://javafx.com/fxml"
|
|
||||||
fx:controller="de.subway_surfers.vpr_app.GerichterstellungMitarbeiterView"
|
|
||||||
prefHeight="400.0" prefWidth="600.0"
|
|
||||||
stylesheets="@layout.css" styleClass="main">
|
|
||||||
<center>
|
|
||||||
<VBox styleClass="gerichterstellung_felder">
|
|
||||||
<TextField fx:id="eingabeName" promptText="Name des Gerichtes" focusTraversable="false"/>
|
|
||||||
<TextArea fx:id="eingabeBeschreibung" promptText="Beschreibung" focusTraversable="false"/>
|
|
||||||
<HBox>
|
|
||||||
<TextField fx:id="eingabeInhaltsstoffe" promptText="Inhaltsstoffe" focusTraversable="false"/>
|
|
||||||
<Button fx:id="buttonInhaltsstoffe" onAction="#onButtonInhaltsstoffeClick" text="Hinzufügen"/>
|
|
||||||
</HBox>
|
|
||||||
<HBox fx:id="anzeigeInhaltsstoffe" />
|
|
||||||
</VBox>
|
|
||||||
</center>
|
|
||||||
<bottom>
|
|
||||||
<BorderPane>
|
|
||||||
<right>
|
|
||||||
<HBox styleClass="button_untenrechts">
|
|
||||||
<Button text="Speichern"/>
|
|
||||||
</HBox>
|
|
||||||
</right>
|
|
||||||
</BorderPane>
|
|
||||||
</bottom>
|
|
||||||
</BorderPane>
|
|
@@ -23,11 +23,11 @@
|
|||||||
<BorderPane styleClass="main">
|
<BorderPane styleClass="main">
|
||||||
<left>
|
<left>
|
||||||
<VBox styleClass="hauptmenue_buttons_links">
|
<VBox styleClass="hauptmenue_buttons_links">
|
||||||
<Button text="Speiseplan" onAction="#onSpeiseplanClick"/>
|
<Button text="Speiseplan"/>
|
||||||
<Button text="Alle Bestellungen anzeigen"/>
|
<Button text="Alle Bestellungen anzeigen"/>
|
||||||
<Button text="Rechnungen herunterladen"/>
|
<Button text="Rechnungen herunterladen"/>
|
||||||
<Button text="Daten importieren/Exportieren"/>
|
<Button text="Daten importieren/Exportieren"/>
|
||||||
<Button text="Account anlegen" onAction="#onAccountAnlegenClick"/>
|
<Button text="Account anlegen" onAction="#onAccountAnlegen"/>
|
||||||
</VBox>
|
</VBox>
|
||||||
</left>
|
</left>
|
||||||
<right>
|
<right>
|
||||||
|
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- @author Samuel Wolff
|
||||||
|
Noch nicht getestet
|
||||||
|
TODO Style einbauen
|
||||||
|
-->
|
||||||
|
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<VBox prefHeight="400.0" prefWidth="600.0" stylesheets="@layout.css" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.subway_surfers.vpr_app.InhaltsstoffeFilternController">
|
||||||
|
|
||||||
|
<Label text="Nach Inhaltsstoffen filtern" />
|
||||||
|
<ListView fx:id="zutatListView" />
|
||||||
|
|
||||||
|
<HBox prefHeight="128.0" prefWidth="600.0" styleClass="bottomHbox">
|
||||||
|
<CheckBox fx:id="speichernCheckBox" text="Auswahl für KindA speichern " />
|
||||||
|
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbrechen" />
|
||||||
|
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
|
||||||
|
</HBox>
|
||||||
|
</VBox>
|
@@ -18,7 +18,7 @@
|
|||||||
-fx-padding: 20;
|
-fx-padding: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hauptmenue_buttons_links, .gerichterstellung_felder{
|
.hauptmenue_buttons_links{
|
||||||
-fx-spacing: 20;
|
-fx-spacing: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -73,13 +73,6 @@
|
|||||||
-fx-vgap: 10;
|
-fx-vgap: 10;
|
||||||
-fx-hgap: 10;
|
-fx-hgap: 10;
|
||||||
}
|
}
|
||||||
.test {
|
|
||||||
-fx-padding: 10 20;
|
|
||||||
}
|
|
||||||
|
|
||||||
.essensuebersicht_gridlines {
|
|
||||||
-fx-grid-lines-visible: true;
|
|
||||||
}
|
|
||||||
|
|
||||||
.accounterstellung_links {
|
.accounterstellung_links {
|
||||||
-fx-spacing: 20;
|
-fx-spacing: 20;
|
||||||
@@ -89,18 +82,3 @@
|
|||||||
-fx-background-color: #FFDCDC;
|
-fx-background-color: #FFDCDC;
|
||||||
-fx-text-fill: #FFDCDC;
|
-fx-text-fill: #FFDCDC;
|
||||||
}
|
}
|
||||||
.essensuebersicht_gridlines > * {
|
|
||||||
-fx-alignment: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pfeil{
|
|
||||||
-fx-background-color: -fx-mark-highlight-color, -fx-mark-color;
|
|
||||||
-fx-background-insets: 0 0 -1 0, 0;
|
|
||||||
-fx-padding: 0.25em;
|
|
||||||
-fx-shape: "M 0 -3.5 v 7 l 4 -3.5 z";
|
|
||||||
-fx-pref-width: 25;
|
|
||||||
}
|
|
||||||
|
|
||||||
.links {
|
|
||||||
-fx-rotate: 180;
|
|
||||||
}
|
|
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
@author Samuel Wolff
|
||||||
|
Noch nicht getestet
|
||||||
|
TODO Style einbinden
|
||||||
|
-->
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<VBox xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="de.subway_surfers.vpr_app.RechnungFilterViewController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0"
|
||||||
|
stylesheets="@layout.css">
|
||||||
|
|
||||||
|
<RadioButton fx:id="alle" text="Alle anzeigen" />
|
||||||
|
<RadioButton fx:id="nichtBezahlt" text="Alle nicht bezahlten Anzeigen" />
|
||||||
|
<RadioButton fx:id="bezahlt" text="Alle bezahlten Anzeigen" />
|
||||||
|
|
||||||
|
<HBox>
|
||||||
|
<Button fx:id="abbrechenButton" text="Abbruch" />
|
||||||
|
<Button fx:id="fortfahrenButton" text="Fortfahren" />
|
||||||
|
</HBox>
|
||||||
|
|
||||||
|
</VBox>
|
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
@author Samuel Wolff
|
||||||
|
Noch nicht getestet
|
||||||
|
TODO Style einbauen
|
||||||
|
-->
|
||||||
|
|
||||||
|
<?import java.lang.*?>
|
||||||
|
<?import java.util.*?>
|
||||||
|
<?import javafx.scene.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
<HBox xmlns="http://javafx.com/javafx"
|
||||||
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
|
fx:controller="de.subway_surfers.vpr_app.zutatListViewController"
|
||||||
|
prefHeight="400.0" prefWidth="600.0"
|
||||||
|
stylesheets="@layout.css">
|
||||||
|
|
||||||
|
<CheckBox fx:id="isChecked" />
|
||||||
|
<Label fx:id="nameLabel" text="placeholder" />
|
||||||
|
|
||||||
|
</HBox>
|
Reference in New Issue
Block a user