Added in the Raw Flight Data page which now appears as a new window something again we will need to fix, have updated the menu.fxml document to include the tags for the two menu buttons for flight. Have realized that I will have to rework the GUI so that it scales better.

main
Liam Beckett 9 years ago
parent 83ccf04d85
commit b7674fc8ea

@ -31,7 +31,6 @@ public class MenuController implements Initializable{
JOptionPane.showMessageDialog(null, "This is not Implemented yet");
}
@FXML
public void viewFlightSummary() {
Stage stage = new Stage();
@ -43,7 +42,20 @@ public class MenuController implements Initializable{
stage.setScene(scene);
stage.show();
//seng202.group9.Controller.App.primaryStage.setScene(scene);
//System.out.println("GOT HERE");
//seng202.group9.Controller.App.primaryStage.show();
}
public void viewFlightRawData() {
Stage stage = new Stage();
BorderPane root = new BorderPane(); //root panel
Scene scene = new Scene(root);
//create the Flight summary page
FlightRawData flightRawDataPage = new FlightRawData();
root.setTop(flightRawDataPage.getFlightRawData());
stage.setScene(scene);
stage.show();
//seng202.group9.Controller.App.primaryStage.setScene(scene);
//seng202.group9.Controller.App.primaryStage.show();
}

Loading…
Cancel
Save