Initial Commit
This commit is contained in:
commit
6ba5e8872f
53
src/application/Main.java
Normal file
53
src/application/Main.java
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
package application;
|
||||||
|
|
||||||
|
import javafx.application.Application;
|
||||||
|
import javafx.stage.Stage;
|
||||||
|
import javafx.scene.Scene;
|
||||||
|
import javafx.scene.control.Alert;
|
||||||
|
import javafx.scene.control.Alert.AlertType;
|
||||||
|
import javafx.scene.control.ButtonType;
|
||||||
|
|
||||||
|
public class Main extends Application
|
||||||
|
{
|
||||||
|
public void start(Stage primaryStage)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
RootBorderPane root = new RootBorderPane();
|
||||||
|
Scene scene = new Scene(root, 600, 250);
|
||||||
|
primaryStage.setScene(scene);
|
||||||
|
primaryStage.setTitle("Kontaktanfrage");
|
||||||
|
primaryStage.show();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
showAlert(AlertType.ERROR, e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void showAlert(AlertType alertType, String message)
|
||||||
|
{
|
||||||
|
if (message != null)
|
||||||
|
{
|
||||||
|
Alert alert = new Alert(alertType, message, ButtonType.OK);
|
||||||
|
alert.setHeaderText(null);
|
||||||
|
if (alertType == AlertType.WARNING)
|
||||||
|
alert.setTitle("Warnung");
|
||||||
|
else
|
||||||
|
alert.setTitle("Hinweis-Meldung");
|
||||||
|
alert.showAndWait();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Alert alert = new Alert(alertType, "Bitte waehlen Sie \"Weiter\" aus", ButtonType.NEXT);
|
||||||
|
alert.setHeaderText(null);
|
||||||
|
alert.setTitle("Hinweis-Meldung");
|
||||||
|
alert.showAndWait();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
launch(args);
|
||||||
|
}
|
||||||
|
}
|
112
src/application/RootBorderPane.java
Normal file
112
src/application/RootBorderPane.java
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
package application;
|
||||||
|
|
||||||
|
import javafx.application.Platform;
|
||||||
|
import javafx.geometry.HPos;
|
||||||
|
import javafx.geometry.Insets;
|
||||||
|
import javafx.geometry.Pos;
|
||||||
|
import javafx.geometry.VPos;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.CheckBox;
|
||||||
|
import javafx.scene.control.Label;
|
||||||
|
import javafx.scene.control.Menu;
|
||||||
|
import javafx.scene.control.MenuBar;
|
||||||
|
import javafx.scene.control.MenuItem;
|
||||||
|
import javafx.scene.control.RadioButton;
|
||||||
|
import javafx.scene.control.SeparatorMenuItem;
|
||||||
|
import javafx.scene.control.TextArea;
|
||||||
|
import javafx.scene.control.TextField;
|
||||||
|
import javafx.scene.control.ToggleGroup;
|
||||||
|
import javafx.scene.control.Alert.AlertType;
|
||||||
|
import javafx.scene.layout.BorderPane;
|
||||||
|
import javafx.scene.layout.GridPane;
|
||||||
|
import javafx.stage.FileChooser;
|
||||||
|
|
||||||
|
public class RootBorderPane extends BorderPane {
|
||||||
|
|
||||||
|
private MenuBar menuBar;
|
||||||
|
private Menu mDatei;
|
||||||
|
private MenuItem miBeenden;
|
||||||
|
private RadioButton rbPersoenlich, rbTelefonisch, rbEgal;
|
||||||
|
private CheckBox cbSofort;
|
||||||
|
private TextField tfName, tfTelefonnummer;
|
||||||
|
private Button btPruefen, btSpeichern;
|
||||||
|
private ToggleGroup tgRadios;
|
||||||
|
private GridPane gpZentrum;
|
||||||
|
|
||||||
|
public RootBorderPane() {
|
||||||
|
initComponents();
|
||||||
|
addComponents();
|
||||||
|
addHandler();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initComponents() {
|
||||||
|
|
||||||
|
menuBar = new MenuBar();
|
||||||
|
mDatei = new Menu("Datei");
|
||||||
|
miBeenden = new MenuItem("Beenden");
|
||||||
|
|
||||||
|
tfName = new TextField();
|
||||||
|
tfName.setPromptText("Bitte Ihren Namen eingeben");
|
||||||
|
tfTelefonnummer = new TextField();
|
||||||
|
tfTelefonnummer.setPromptText("Bitte Ihre Telefonnummer eingeben");
|
||||||
|
|
||||||
|
rbPersoenlich = new RadioButton("persoenlich");
|
||||||
|
rbTelefonisch = new RadioButton("telefonisch");
|
||||||
|
rbEgal = new RadioButton("egal");
|
||||||
|
|
||||||
|
cbSofort = new CheckBox();
|
||||||
|
|
||||||
|
gpZentrum = new GridPane();
|
||||||
|
gpZentrum.setHgap(10);
|
||||||
|
gpZentrum.setVgap(10);
|
||||||
|
gpZentrum.setPadding(new Insets(5));
|
||||||
|
|
||||||
|
btPruefen = new Button("Pruefen");
|
||||||
|
btSpeichern = new Button("Speichern und absenden");
|
||||||
|
|
||||||
|
tgRadios = new ToggleGroup();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addComponents() {
|
||||||
|
mDatei.getItems().addAll(miBeenden);
|
||||||
|
menuBar.getMenus().addAll(mDatei);
|
||||||
|
|
||||||
|
gpZentrum.add(new Label("Art der Kontaktaufnahme:"), 0, 0);
|
||||||
|
gpZentrum.add(new Label("Name:"), 0, 1);
|
||||||
|
gpZentrum.add(new Label("Telefonnummer:"), 0, 2);
|
||||||
|
gpZentrum.add(new Label("Sofortige Kontaktaufnahme:"), 0, 3);
|
||||||
|
gpZentrum.add(new Label("(binnen eines Tages)"), 2, 3);
|
||||||
|
|
||||||
|
gpZentrum.add(rbPersoenlich, 1, 0);
|
||||||
|
gpZentrum.add(rbTelefonisch, 2, 0);
|
||||||
|
gpZentrum.add(rbEgal, 3, 0);
|
||||||
|
gpZentrum.add(cbSofort, 1, 3);
|
||||||
|
|
||||||
|
gpZentrum.add(btPruefen, 0, 6);
|
||||||
|
gpZentrum.add(btSpeichern, 1, 6);
|
||||||
|
|
||||||
|
gpZentrum.add(tfName, 1, 1);
|
||||||
|
gpZentrum.add(tfTelefonnummer, 1, 2);
|
||||||
|
|
||||||
|
GridPane.setColumnSpan(tfName, 3);
|
||||||
|
GridPane.setColumnSpan(tfTelefonnummer, 3);
|
||||||
|
|
||||||
|
tgRadios.getToggles().addAll(rbPersoenlich, rbTelefonisch, rbEgal);
|
||||||
|
|
||||||
|
setTop(menuBar);
|
||||||
|
setCenter(gpZentrum);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addHandler() {
|
||||||
|
miBeenden.setOnAction(event -> beenden());
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------- handlers -----------------------
|
||||||
|
|
||||||
|
private void beenden() {
|
||||||
|
Platform.exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user