Merge pull request 'samu_masken' (#7) from samu_masken into master

Reviewed-on: #7 Der Fehler war eine Leerzeile am Ende
This commit is contained in:
2023-12-14 08:59:58 +01:00
6 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Programmiert von 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>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Programmiert von 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>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Programmiert von 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>