Search in sources :

Example 66 with GoToOperation

use of operation.GoToOperation in project Money-Manager by krHasan.

the class AboutController method mnuCashCalculate.

@FXML
private void mnuCashCalculate(ActionEvent event) {
    Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToCashCalculate(AboutStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) FXML(javafx.fxml.FXML)

Example 67 with GoToOperation

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

Example 68 with GoToOperation

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

Example 69 with GoToOperation

use of operation.GoToOperation in project Money-Manager by krHasan.

the class DashboardController method mnuAbout.

@FXML
private void mnuAbout(ActionEvent event) {
    Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToAbout(DashboardStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) FXML(javafx.fxml.FXML)

Example 70 with GoToOperation

use of operation.GoToOperation in project Money-Manager by krHasan.

the class DashboardController method mnuTransactionHistory.

@FXML
private void mnuTransactionHistory(ActionEvent event) {
    Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToTransactionHistory(DashboardStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) FXML(javafx.fxml.FXML)

Aggregations

FXML (javafx.fxml.FXML)152 Stage (javafx.stage.Stage)152 GoToOperation (operation.GoToOperation)152 TabAccess (tab.TabAccess)95 Alert (javafx.scene.control.Alert)11 KeyFrame (javafx.animation.KeyFrame)6 Timeline (javafx.animation.Timeline)6 ActionEvent (javafx.event.ActionEvent)6 EventHandler (javafx.event.EventHandler)5 ButtonType (javafx.scene.control.ButtonType)5 HashMap (java.util.HashMap)1 Label (javafx.scene.control.Label)1 TextField (javafx.scene.control.TextField)1 ComboboxList (operation.ComboboxList)1 DateFormatManager (system.DateFormatManager)1 DeleteUserCredentials (system.DeleteUserCredentials)1 Bkash (tab.Bkash)1 GetMoney (tab.GetMoney)1 Rocket (tab.Rocket)1