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