|
@@ -11,7 +11,7 @@ import org.cryptomator.ui.mainwindow.MainWindowComponent;
|
|
|
import org.cryptomator.ui.preferences.PreferencesComponent;
|
|
|
import org.cryptomator.ui.preferences.SelectedPreferencesTab;
|
|
|
import org.cryptomator.ui.quit.QuitComponent;
|
|
|
-import org.cryptomator.ui.quitforced.QuitForcedComponent;
|
|
|
+
|
|
|
import org.cryptomator.ui.unlock.UnlockComponent;
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
import org.slf4j.Logger;
|
|
@@ -41,8 +41,10 @@ public class FxApplicationWindows {
|
|
|
private final Optional<TrayIntegrationProvider> trayIntegration;
|
|
|
private final Lazy<MainWindowComponent> mainWindow;
|
|
|
private final Lazy<PreferencesComponent> preferencesWindow;
|
|
|
- private final Lazy<QuitComponent> quitWindow;
|
|
|
- private final Lazy<QuitForcedComponent> quitForcedWindow;
|
|
|
+
|
|
|
+
|
|
|
+ private final QuitComponent.Builder quitWindowBuilder;
|
|
|
+
|
|
|
private final UnlockComponent.Factory unlockWorkflowFactory;
|
|
|
private final LockComponent.Factory lockWorkflowFactory;
|
|
|
private final ErrorComponent.Factory errorWindowFactory;
|
|
@@ -50,13 +52,13 @@ public class FxApplicationWindows {
|
|
|
private final FilteredList<Window> visibleWindows;
|
|
|
|
|
|
@Inject
|
|
|
- public FxApplicationWindows(@PrimaryStage Stage primaryStage, Optional<TrayIntegrationProvider> trayIntegration, Lazy<MainWindowComponent> mainWindow, Lazy<PreferencesComponent> preferencesWindow, Lazy<QuitComponent> quitWindow, Lazy<QuitForcedComponent> quitForcedWindow, UnlockComponent.Factory unlockWorkflowFactory, LockComponent.Factory lockWorkflowFactory, ErrorComponent.Factory errorWindowFactory, ExecutorService executor) {
|
|
|
+ public FxApplicationWindows(@PrimaryStage Stage primaryStage, Optional<TrayIntegrationProvider> trayIntegration, Lazy<MainWindowComponent> mainWindow, Lazy<PreferencesComponent> preferencesWindow, QuitComponent.Builder quitWindowBuilder, UnlockComponent.Factory unlockWorkflowFactory, LockComponent.Factory lockWorkflowFactory, ErrorComponent.Factory errorWindowFactory, ExecutorService executor) {
|
|
|
this.primaryStage = primaryStage;
|
|
|
this.trayIntegration = trayIntegration;
|
|
|
this.mainWindow = mainWindow;
|
|
|
this.preferencesWindow = preferencesWindow;
|
|
|
- this.quitWindow = quitWindow;
|
|
|
- this.quitForcedWindow = quitForcedWindow;
|
|
|
+
|
|
|
+ this.quitWindowBuilder = quitWindowBuilder;
|
|
|
this.unlockWorkflowFactory = unlockWorkflowFactory;
|
|
|
this.lockWorkflowFactory = lockWorkflowFactory;
|
|
|
this.errorWindowFactory = errorWindowFactory;
|
|
@@ -107,13 +109,10 @@ public class FxApplicationWindows {
|
|
|
return CompletableFuture.supplyAsync(() -> preferencesWindow.get().showPreferencesWindow(selectedTab), Platform::runLater).whenComplete(this::reportErrors);
|
|
|
}
|
|
|
|
|
|
- public CompletionStage<Stage> showQuitWindow(QuitResponse response) {
|
|
|
- return CompletableFuture.supplyAsync(() -> quitWindow.get().showQuitWindow(response), Platform::runLater).whenComplete(this::reportErrors);
|
|
|
+ public void showQuitWindow(QuitResponse response, boolean forced) {
|
|
|
+ CompletableFuture.runAsync(() -> quitWindowBuilder.build().showQuitWindow(response,forced), Platform::runLater);
|
|
|
}
|
|
|
|
|
|
- public CompletionStage<Stage> showQuitForcedWindow(QuitResponse response) {
|
|
|
- return CompletableFuture.supplyAsync(() -> quitForcedWindow.get().showQuitForcedWindow(response), Platform::runLater).whenComplete(this::reportErrors);
|
|
|
- }
|
|
|
|
|
|
public CompletionStage<Void> startUnlockWorkflow(Vault vault, @Nullable Stage owner) {
|
|
|
return CompletableFuture.supplyAsync(() -> {
|