Search in sources :

Example 41 with GoToOperation

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

the class CashCalculateController method mnuDashboard.

// ////////////////////////////////////////// Menu Function ////////////////////////////////////////////
// ---------------------------------------------------------------------------------------------------//
// all menu function
@FXML
private void mnuDashboard(ActionEvent event) {
    // create this stage object
    Stage CashCalculateStage = (Stage) btnSignOut.getScene().getWindow();
    // open expected stage
    (new GoToOperation()).goToDashboard(CashCalculateStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) FXML(javafx.fxml.FXML)

Example 42 with GoToOperation

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

the class CashCalculateController method mnuLend.

@FXML
private void mnuLend(ActionEvent event) {
    (new TabAccess()).setTabName("tabLend");
    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 43 with GoToOperation

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

the class CashCalculateController method mnuSourceSettings.

@FXML
private void mnuSourceSettings(ActionEvent event) {
    (new TabAccess()).setTabName("tabSource");
    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 44 with GoToOperation

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

the class CashCalculateController method mnuSectorSettings.

@FXML
private void mnuSectorSettings(ActionEvent event) {
    (new TabAccess()).setTabName("tabSector");
    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 45 with GoToOperation

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

the class CashCalculateController method mnuBankSettings.

@FXML
private void mnuBankSettings(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)

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