use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuSectorSettings.
@FXML
private void mnuSectorSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSector");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuBank.
@FXML
private void mnuBank(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class DashboardController method btnSettings.
@FXML
private void btnSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage DashboardStage = (Stage) btnSettings.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class TransactionHistoryController method mnuGetMoney.
@FXML
private void mnuGetMoney(ActionEvent event) {
(new TabAccess()).setTabName("tabGetMoney");
Stage TransactionHistoryStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(TransactionHistoryStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class TransactionHistoryController method mnuExpense.
@FXML
private void mnuExpense(ActionEvent event) {
(new TabAccess()).setTabName("tabExpense");
Stage TransactionHistoryStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(TransactionHistoryStage);
}
Aggregations