use of tab.TabAccess in project Money-Manager by krHasan.
the class MakeATransactionController method mnuSettings.
@FXML
private void mnuSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage MakeATransactionStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(MakeATransactionStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class MakeATransactionController method gmSettingBtn.
@FXML
public void gmSettingBtn(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage MakeATransactionStage = (Stage) gmbtnSettings.getScene().getWindow();
(new GoToOperation()).goToSettings(MakeATransactionStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class MakeATransactionController method mnuSourceSettings.
@FXML
private void mnuSourceSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage MakeATransactionStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(MakeATransactionStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class CashCalculateController method mnuSettings.
@FXML
private void mnuSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(CashCalculateStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class CashCalculateController method mnuExpense.
@FXML
private void mnuExpense(ActionEvent event) {
(new TabAccess()).setTabName("tabExpense");
Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(CashCalculateStage);
}
Aggregations