use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuTransactionHistory.
@FXML
private void mnuTransactionHistory(ActionEvent event) {
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToTransactionHistory(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuAdvancedSettings.
@FXML
private void mnuAdvancedSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabAdvanced");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuBank.
@FXML
private void mnuBank(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuGetMoney.
@FXML
private void mnuGetMoney(ActionEvent event) {
(new TabAccess()).setTabName("tabGetMoney");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method btnSignOut.
// /////////////////// Button Function ///////////////////////////
@FXML
private void btnSignOut(ActionEvent event) {
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSignIn(DashboardStage);
}
Aggregations