|
@@ -9,17 +9,28 @@ KonvergoWindow
|
|
|
id: mainWindow
|
|
|
title: "Plex Media Player"
|
|
|
objectName: "mainWindow"
|
|
|
- visible: true
|
|
|
minimumHeight: 240
|
|
|
minimumWidth: 426
|
|
|
height: 720
|
|
|
width: 1280
|
|
|
|
|
|
- function getMaxHeightArg()
|
|
|
+ function getInitialScaleArg()
|
|
|
{
|
|
|
- if (webMaxHeight > 0)
|
|
|
- return "?maxHeight=" + (webMaxHeight / Screen.devicePixelRatio);
|
|
|
- return ""
|
|
|
+ return "?initialScale=" + webScale
|
|
|
+ }
|
|
|
+
|
|
|
+ function maxWebScale()
|
|
|
+ {
|
|
|
+ return webHeightMax ? ((webHeightMax / Screen.devicePixelRatio) / 720) : 10;
|
|
|
+ }
|
|
|
+
|
|
|
+ onWebScaleChanged:
|
|
|
+ {
|
|
|
+ if (web.url == "")
|
|
|
+ {
|
|
|
+ console.log("Loading web page")
|
|
|
+ web.url = components.settings.value("path", "startupurl") + getInitialScaleArg();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
MpvVideo
|
|
@@ -44,37 +55,24 @@ KonvergoWindow
|
|
|
|
|
|
width: Math.min((parent.height * 16) / 9, parent.width)
|
|
|
height: Math.min((parent.width * 9) / 16, parent.height)
|
|
|
-
|
|
|
- function getDesiredScale()
|
|
|
- {
|
|
|
- var verticalScale = height / 720;
|
|
|
- var horizontalScale = width / 1280;
|
|
|
-
|
|
|
- return Math.min(verticalScale, horizontalScale);
|
|
|
- }
|
|
|
-
|
|
|
+
|
|
|
scale:
|
|
|
{
|
|
|
- var desiredScale = getDesiredScale();
|
|
|
- var maximumScale = webMaxHeight ? ((webMaxHeight / Screen.devicePixelRatio) / 720) : 10;
|
|
|
-
|
|
|
- if (desiredScale < maximumScale) {
|
|
|
+ if (mainWindow.windowScale < mainWindow.maxWebScale()) {
|
|
|
// Web renders at windows scale, no scaling
|
|
|
return 1;
|
|
|
} else {
|
|
|
// Web should max out at maximum scaling
|
|
|
- return desiredScale / maximumScale;
|
|
|
+ return mainWindow.windowScale / mainWindow.maxWebScale();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
zoomFactor:
|
|
|
{
|
|
|
- var desiredScale = getDesiredScale();
|
|
|
-
|
|
|
- if (desiredScale < 1)
|
|
|
- return desiredScale;
|
|
|
+ if (mainWindow.windowScale < 1)
|
|
|
+ return mainWindow.windowScale
|
|
|
else
|
|
|
- return 1;
|
|
|
+ return 1;
|
|
|
}
|
|
|
|
|
|
Component.onCompleted:
|
|
@@ -84,8 +82,6 @@ KonvergoWindow
|
|
|
backgroundColor : "#111111"
|
|
|
forceActiveFocus()
|
|
|
mainWindow.reloadWebClient.connect(reload)
|
|
|
-
|
|
|
- url = components.settings.value("path", "startupurl") + getMaxHeightArg()
|
|
|
}
|
|
|
|
|
|
onLoadingChanged:
|
|
@@ -177,10 +173,9 @@ KonvergoWindow
|
|
|
var dbg = mainWindow.debugInfo + "Window and web\n";
|
|
|
dbg += " Window size: " + parent.width + "x" + parent.height + "\n";
|
|
|
dbg += " DevicePixel ratio: " + Screen.devicePixelRatio + "\n";
|
|
|
- dbg += " Web Max Height: " + (webMaxHeight / Screen.devicePixelRatio) + "\n";
|
|
|
- dbg += " Web scale: " + Math.round(web.scale * 100) / 100 + "\n";
|
|
|
- dbg += " Desired Scale: " + Math.round(web.getDesiredScale() * 100) / 100 + "\n";
|
|
|
- dbg += " Zoom Factor: " + Math.round(web.zoomFactor * 100) / 100 + "\n";
|
|
|
+ dbg += " Web Max Height: " + (webHeightMax / Screen.devicePixelRatio) + " / Max scale: " + mainWindow.maxWebScale() + "\n";
|
|
|
+ dbg += " Web scale: " + webScale + " / Window scale: " + windowScale + "\n";
|
|
|
+ dbg += " Scale applied: " + web.scale + " / Zoom: " + web.zoomFactor + "\n";
|
|
|
|
|
|
return dbg;
|
|
|
}
|
|
@@ -208,4 +203,4 @@ KonvergoWindow
|
|
|
}
|
|
|
|
|
|
property QtObject webChannel: web.webChannel
|
|
|
-}
|
|
|
+}
|