use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method mnuBank.
@FXML
private void mnuBank(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(DashboardStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method mnuSourceSettings.
@FXML
private void mnuSourceSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method goToMakeAtransaction.
@FXML
private void goToMakeAtransaction(ActionEvent event) {
(new TabAccess()).setTabName("tabGetMoney");
Stage DashboardStage = (Stage) btnMakeATransaction.getScene().getWindow();
goToMakeATransaction(DashboardStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method mnuGetMoney.
@FXML
private void mnuGetMoney(ActionEvent event) {
// define which tab should open
(new TabAccess()).setTabName("tabGetMoney");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(DashboardStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method mnuCreateSource.
@FXML
private void mnuCreateSource(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
Aggregations