use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuCashCalculate.
@FXML
private void mnuCashCalculate(ActionEvent event) {
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToCashCalculate(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuBankSettings.
@FXML
private void mnuBankSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuSystemSettings.
@FXML
private void mnuSystemSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSystem");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuLend.
@FXML
private void mnuLend(ActionEvent event) {
(new TabAccess()).setTabName("tabLend");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuSectorSettings.
@FXML
private void mnuSectorSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSector");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(SettingsStage);
}
Aggregations