From df1cef295b8a9cda45ae4d784a1b56647967214b Mon Sep 17 00:00:00 2001 From: Georg-Notebook Date: Wed, 17 Mar 2021 15:30:20 +0100 Subject: [PATCH] Beenden Knopf --- log/log4j/log.out | 4 ++ src/tourplaner/tourplaner.fxml | 48 +++------------------ src/tourplaner/ui/TourplanerController.java | 33 ++++++++++++-- 3 files changed, 40 insertions(+), 45 deletions(-) diff --git a/log/log4j/log.out b/log/log4j/log.out index 48a00c1..7a04477 100644 --- a/log/log4j/log.out +++ b/log/log4j/log.out @@ -91,3 +91,7 @@ App started 2021-03-17 14:48:46 INFO PostgresHelper:15 - User Table created 2021-03-17 14:48:48 ERROR PSQLException:33 - Connection to 192.168.1.116:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections. 2021-03-17 14:48:48 ERROR NullPointerException:33 - +2021-03-17 15:20:09 INFO TourPlaner:15 - Tour Planer App gestartet +2021-03-17 15:20:09 INFO PostgresHelper:15 - User Table created +2021-03-17 15:20:11 ERROR PSQLException:33 - Connection to 192.168.1.116:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections. +2021-03-17 15:20:11 ERROR NullPointerException:33 - diff --git a/src/tourplaner/tourplaner.fxml b/src/tourplaner/tourplaner.fxml index a09b8b2..e36d8ad 100644 --- a/src/tourplaner/tourplaner.fxml +++ b/src/tourplaner/tourplaner.fxml @@ -39,7 +39,6 @@ - @@ -58,51 +57,16 @@ - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + diff --git a/src/tourplaner/ui/TourplanerController.java b/src/tourplaner/ui/TourplanerController.java index effdeee..b516554 100644 --- a/src/tourplaner/ui/TourplanerController.java +++ b/src/tourplaner/ui/TourplanerController.java @@ -26,6 +26,10 @@ public class TourplanerController implements Initializable { public TableColumn startCol, zielCol, dauerCol, streckeCol, nameCol; public TextField titleTextView; + /** + * Wird gestartet wenn eine Tour in der Tour listView ausgewählt wird + * @param mouseEvent Triggered Event + */ @FXML private void tourListSelectedItem(MouseEvent mouseEvent){ String selectedItem = TourListView.getSelectionModel().getSelectedItem(); @@ -40,11 +44,28 @@ public class TourplanerController implements Initializable { nameCol.setCellValueFactory(new PropertyValueFactory("name")); } + /** + * Beendet die App + * Verbunden mit dem Menu -> Datei -> Beenden + */ + @FXML + private void quitApp(){ + System.exit(0); + } + + /** + * Fügt eine Tour hinzu + * Verbunden mit Button -> Tour -> + + */ @FXML private void addTour(){ this.viewModel.addTour(); } + /** + * Entfernt eine ausgewählte Tour + * Verbunden mit Button -> Tour -> - + */ @FXML private void delTour(){ this.beschreibungTableView.getItems().removeIf(s -> true); //löscht alles aus der tabelle @@ -52,14 +73,20 @@ public class TourplanerController implements Initializable { this.viewModel.delTour(); } + /** + * Sucht eine Tour + * Verbunden mit Button -> Suche + */ @FXML private void suche(){ this.viewModel.suche(); } - @FXML - private WebView mapView; - + /** + * Wird beim Start ausgeführt + * @param url + * @param resourceBundle + */ @Override public void initialize(URL url, ResourceBundle resourceBundle) { TourListView.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);