|
@@ -217,7 +217,22 @@ public class MainController implements ViewController {
|
|
|
|
|
|
private void gracefulShutdown() {
|
|
|
vaults.filtered(Vault.NOT_LOCKED).forEach(Vault::prepareForShutdown);
|
|
|
- Platform.runLater(Platform::exit);
|
|
|
+ if (!vaults.filtered(Vault.NOT_LOCKED).isEmpty()) {
|
|
|
+ ButtonType tryAgainButtonType = new ButtonType(localization.getString("main.gracefulShutdown.button.tryAgain"));
|
|
|
+ ButtonType forceShutdownButtonType = new ButtonType(localization.getString("main.gracefulShutdown.button.forceShutdown"));
|
|
|
+ Alert gracefulShutdownDialog = DialogBuilderUtil.buildGracefulShutdownDialog(
|
|
|
+ localization.getString("main.gracefulShutdown.dialog.title"), localization.getString("main.gracefulShutdown.dialog.header"), localization.getString("main.gracefulShutdown.dialog.content"),
|
|
|
+ forceShutdownButtonType, forceShutdownButtonType, tryAgainButtonType);
|
|
|
+
|
|
|
+ Optional<ButtonType> choice = gracefulShutdownDialog.showAndWait();
|
|
|
+ choice.ifPresent(btnType -> {
|
|
|
+ if (tryAgainButtonType.equals(btnType)) {
|
|
|
+ gracefulShutdown();
|
|
|
+ } else if (forceShutdownButtonType.equals(btnType)) {
|
|
|
+ Platform.runLater(Platform::exit);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private void loadFont(String resourcePath) {
|