Search in sources :

Example 71 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class CashCalculateController method mnuBank.

@FXML
private void mnuBank(ActionEvent event) {
    (new TabAccess()).setTabName("tabBank");
    Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToMakeATransaction(CashCalculateStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 72 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class CashCalculateController method btnMakeATransaction.

@FXML
private void btnMakeATransaction(ActionEvent event) {
    (new TabAccess()).setTabName("tabExpense");
    Stage CashCalculateStage = (Stage) btnMakeATransaction.getScene().getWindow();
    goToMakeATransaction(CashCalculateStage);
}
Also used : Stage(javafx.stage.Stage) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 73 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class CashCalculateController method mnuGetMoney.

@FXML
private void mnuGetMoney(ActionEvent event) {
    // define which tab should open
    (new TabAccess()).setTabName("tabGetMoney");
    Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToMakeATransaction(CashCalculateStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 74 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class CashCalculateController method mnuUndo.

@FXML
private void mnuUndo(ActionEvent event) {
    Stage CashCalculateStage = (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(CashCalculateStage.getX() + 60);
    alert.setY(CashCalculateStage.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(CashCalculateStage);
    }
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) Alert(javafx.scene.control.Alert) TabAccess(tab.TabAccess) ButtonType(javafx.scene.control.ButtonType) FXML(javafx.fxml.FXML)

Example 75 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class CashCalculateController method mnuAdvancedSettings.

@FXML
private void mnuAdvancedSettings(ActionEvent event) {
    (new TabAccess()).setTabName("tabAdvanced");
    Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToSettings(CashCalculateStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Aggregations

FXML (javafx.fxml.FXML)100 TabAccess (tab.TabAccess)100 Stage (javafx.stage.Stage)99 GoToOperation (operation.GoToOperation)95 Alert (javafx.scene.control.Alert)7 ButtonType (javafx.scene.control.ButtonType)6 GoToRegistration (operation.GoToRegistration)2 KeyFrame (javafx.animation.KeyFrame)1 Timeline (javafx.animation.Timeline)1 ActionEvent (javafx.event.ActionEvent)1 EventHandler (javafx.event.EventHandler)1 Tooltip (javafx.scene.control.Tooltip)1 SignInModel (model.SignInModel)1