Search in sources :

Example 21 with TabAccess

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);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 22 with TabAccess

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);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 23 with TabAccess

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);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 24 with TabAccess

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);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 25 with TabAccess

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);
}
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