|
@@ -1,41 +1,100 @@
|
|
|
package org.cryptomator.ui.mainwindow;
|
|
|
|
|
|
+import org.cryptomator.common.settings.Settings;
|
|
|
import org.cryptomator.ui.common.FxController;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
+import javafx.beans.binding.Bindings;
|
|
|
+import javafx.beans.binding.BooleanBinding;
|
|
|
+import javafx.collections.ObservableList;
|
|
|
import javafx.fxml.FXML;
|
|
|
+import javafx.geometry.Rectangle2D;
|
|
|
import javafx.scene.input.MouseEvent;
|
|
|
import javafx.scene.layout.Region;
|
|
|
+import javafx.stage.Screen;
|
|
|
import javafx.stage.Stage;
|
|
|
|
|
|
@MainWindow
|
|
|
public class ResizeController implements FxController {
|
|
|
|
|
|
+ private static final Logger LOG = LoggerFactory.getLogger(ResizeController.class);
|
|
|
+
|
|
|
private final Stage window;
|
|
|
|
|
|
public Region tlResizer;
|
|
|
public Region trResizer;
|
|
|
public Region blResizer;
|
|
|
public Region brResizer;
|
|
|
+ public Region tResizer;
|
|
|
+ public Region rResizer;
|
|
|
+ public Region bResizer;
|
|
|
+ public Region lResizer;
|
|
|
+ public Region lDefaultRegion;
|
|
|
+ public Region tDefaultRegion;
|
|
|
+ public Region rDefaultRegion;
|
|
|
+ public Region bDefaultRegion;
|
|
|
|
|
|
private double origX, origY, origW, origH;
|
|
|
|
|
|
+ private final Settings settings;
|
|
|
+
|
|
|
+ private final BooleanBinding showResizingArrows;
|
|
|
+
|
|
|
@Inject
|
|
|
- ResizeController(@MainWindow Stage window) {
|
|
|
+ ResizeController(@MainWindow Stage window, Settings settings) {
|
|
|
this.window = window;
|
|
|
- // TODO inject settings and save current position and size
|
|
|
+ this.settings = settings;
|
|
|
+ this.showResizingArrows = Bindings.createBooleanBinding(this::isShowResizingArrows, window.fullScreenProperty());
|
|
|
}
|
|
|
|
|
|
@FXML
|
|
|
public void initialize() {
|
|
|
- tlResizer.setOnMousePressed(this::startResize);
|
|
|
- trResizer.setOnMousePressed(this::startResize);
|
|
|
- blResizer.setOnMousePressed(this::startResize);
|
|
|
- brResizer.setOnMousePressed(this::startResize);
|
|
|
- tlResizer.setOnMouseDragged(this::resizeTopLeft);
|
|
|
- trResizer.setOnMouseDragged(this::resizeTopRight);
|
|
|
- blResizer.setOnMouseDragged(this::resizeBottomLeft);
|
|
|
- brResizer.setOnMouseDragged(this::resizeBottomRight);
|
|
|
+ LOG.trace("init ResizeController");
|
|
|
+
|
|
|
+ if (neverTouched()) {
|
|
|
+ settings.displayConfigurationProperty().setValue(getMonitorSizes());
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ if (didDisplayConfigurationChange()) {
|
|
|
+ //If the position is illegal, then the window appears on the main screen in the middle of the window.
|
|
|
+ Rectangle2D primaryScreenBounds = Screen.getPrimary().getBounds();
|
|
|
+ window.setX((primaryScreenBounds.getWidth() - window.getMinWidth()) / 2);
|
|
|
+ window.setY((primaryScreenBounds.getHeight() - window.getMinHeight()) / 2);
|
|
|
+ window.setWidth(window.getMinWidth());
|
|
|
+ window.setHeight(window.getMinHeight());
|
|
|
+ } else {
|
|
|
+ window.setHeight(settings.windowHeightProperty().get() > window.getMinHeight() ? settings.windowHeightProperty().get() : window.getMinHeight());
|
|
|
+ window.setWidth(settings.windowWidthProperty().get() > window.getMinWidth() ? settings.windowWidthProperty().get() : window.getMinWidth());
|
|
|
+ window.setX(settings.windowXPositionProperty().get());
|
|
|
+ window.setY(settings.windowYPositionProperty().get());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ savePositionalSettings();
|
|
|
+ }
|
|
|
+
|
|
|
+ private boolean neverTouched() {
|
|
|
+ return (settings.windowHeightProperty().get() == 0) && (settings.windowWidthProperty().get() == 0) && (settings.windowXPositionProperty().get() == 0) && (settings.windowYPositionProperty().get() == 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ private boolean didDisplayConfigurationChange() {
|
|
|
+ String currentDisplayConfiguration = getMonitorSizes();
|
|
|
+ String settingsDisplayConfiguration = settings.displayConfigurationProperty().get();
|
|
|
+ boolean configurationHasChanged = !settingsDisplayConfiguration.equals(currentDisplayConfiguration);
|
|
|
+ if (configurationHasChanged) settings.displayConfigurationProperty().setValue(currentDisplayConfiguration);
|
|
|
+ return configurationHasChanged;
|
|
|
+ }
|
|
|
+
|
|
|
+ private String getMonitorSizes() {
|
|
|
+ ObservableList<Screen> screens = Screen.getScreens();
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+ for (int i = 0; i < screens.size(); i++) {
|
|
|
+ Rectangle2D screenBounds = screens.get(i).getBounds();
|
|
|
+ if (!sb.isEmpty()) sb.append(" ");
|
|
|
+ sb.append("displayId: " + i + ", " + screenBounds.getWidth() + "x" + screenBounds.getHeight() + ";");
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
}
|
|
|
|
|
|
private void startResize(MouseEvent evt) {
|
|
@@ -45,27 +104,33 @@ public class ResizeController implements FxController {
|
|
|
origH = window.getHeight();
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeTopLeft(MouseEvent evt) {
|
|
|
resizeTop(evt);
|
|
|
resizeLeft(evt);
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeTopRight(MouseEvent evt) {
|
|
|
resizeTop(evt);
|
|
|
resizeRight(evt);
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeBottomLeft(MouseEvent evt) {
|
|
|
resizeBottom(evt);
|
|
|
resizeLeft(evt);
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeBottomRight(MouseEvent evt) {
|
|
|
resizeBottom(evt);
|
|
|
resizeRight(evt);
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeTop(MouseEvent evt) {
|
|
|
+ startResize(evt);
|
|
|
double newY = evt.getScreenY();
|
|
|
double dy = newY - origY;
|
|
|
double newH = origH - dy;
|
|
@@ -75,7 +140,9 @@ public class ResizeController implements FxController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeLeft(MouseEvent evt) {
|
|
|
+ startResize(evt);
|
|
|
double newX = evt.getScreenX();
|
|
|
double dx = newX - origX;
|
|
|
double newW = origW - dx;
|
|
@@ -85,6 +152,7 @@ public class ResizeController implements FxController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeBottom(MouseEvent evt) {
|
|
|
double newH = evt.getSceneY();
|
|
|
if (newH < window.getMaxHeight() && newH > window.getMinHeight()) {
|
|
@@ -92,6 +160,7 @@ public class ResizeController implements FxController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @FXML
|
|
|
private void resizeRight(MouseEvent evt) {
|
|
|
double newW = evt.getSceneX();
|
|
|
if (newW < window.getMaxWidth() && newW > window.getMinWidth()) {
|
|
@@ -99,4 +168,21 @@ public class ResizeController implements FxController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+ @FXML
|
|
|
+ public void savePositionalSettings() {
|
|
|
+ settings.windowHeightProperty().setValue(window.getHeight());
|
|
|
+ settings.windowWidthProperty().setValue(window.getWidth());
|
|
|
+ settings.windowYPositionProperty().setValue(window.getY());
|
|
|
+ settings.windowXPositionProperty().setValue(window.getX());
|
|
|
+ }
|
|
|
+
|
|
|
+ public BooleanBinding showResizingArrowsProperty() {
|
|
|
+ return showResizingArrows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isShowResizingArrows() {
|
|
|
+ //If in fullscreen resizing is not be possible;
|
|
|
+ return !window.isFullScreen();
|
|
|
+ }
|
|
|
+
|
|
|
+}
|