use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuExpense.
@FXML
private void mnuExpense(ActionEvent event) {
(new TabAccess()).setTabName("tabExpense");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuCreateSource.
@FXML
private void mnuCreateSource(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuLend.
@FXML
private void mnuLend(ActionEvent event) {
(new TabAccess()).setTabName("tabLend");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuBankSettings.
@FXML
private void mnuBankSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuUndo.
@FXML
private void mnuUndo(ActionEvent event) {
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
Alert alert = new Alert(AlertType.CONFIRMATION);
alert.setTitle("Action Failed");
alert.setHeaderText("Undo Function Works Only From \"Make A Transaction\" and \"History\" Window");
alert.setContentText("Press \"OK\" to go to \"Make A Transaction\" window");
alert.setX(AboutStage.getX() + 60);
alert.setY(AboutStage.getY() + 170);
Optional<ButtonType> result = alert.showAndWait();
if (result.get() == ButtonType.OK) {
// name of which Tab should open
(new TabAccess()).setTabName("tabGetMoney");
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
}
Aggregations