use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuSettings.
@FXML
private void mnuSettings(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 mnuSourceSettings.
@FXML
private void mnuSourceSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method btnTransactionHistory.
@FXML
private void btnTransactionHistory(ActionEvent event) {
Stage SettingsStage = (Stage) btnDashboard.getScene().getWindow();
(new GoToOperation()).goToTransactionHistory(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method btnSignOut.
@FXML
private void btnSignOut(ActionEvent event) {
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSignIn(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuAbout.
@FXML
private void mnuAbout(ActionEvent event) {
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToAbout(SettingsStage);
}
Aggregations