2019-02-15 12:07:29 +01:00
|
|
|
import QtQuick 2.12
|
2018-04-18 18:39:25 +02:00
|
|
|
import QtQuick.Controls 2.3
|
2020-01-10 15:26:25 +01:00
|
|
|
import QtWebEngine 1.8
|
|
|
|
import ScreenPlayWidget 1.0
|
2021-05-14 12:50:22 +02:00
|
|
|
import ScreenPlay.Enums.InstalledType 1.0
|
2018-03-08 22:03:05 +01:00
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
Item {
|
2018-03-08 22:03:05 +01:00
|
|
|
id: mainWindow
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-01-10 15:26:25 +01:00
|
|
|
Connections {
|
2020-03-25 21:29:01 +01:00
|
|
|
function onQmlExit() {
|
2021-09-04 14:04:08 +02:00
|
|
|
if(Qt.platform.os === "windows")
|
|
|
|
Widget.setWindowBlur(0);
|
|
|
|
|
2021-05-16 19:37:55 +02:00
|
|
|
animFadeOut.start();
|
2020-01-10 15:26:53 +01:00
|
|
|
}
|
|
|
|
|
2020-07-18 20:48:24 +02:00
|
|
|
function onQmlSceneValueReceived(key, value) {
|
2021-05-16 19:37:55 +02:00
|
|
|
var obj2 = 'import QtQuick 2.14; Item {Component.onCompleted: loader.item.' + key + ' = ' + value + '; }';
|
|
|
|
var newObject = Qt.createQmlObject(obj2.toString(), root, "err");
|
|
|
|
newObject.destroy(10000);
|
2020-01-10 15:26:25 +01:00
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2021-05-14 13:11:12 +02:00
|
|
|
// Replace wallpaper with QML Scene
|
|
|
|
function onReloadQML(oldType) {
|
2021-05-16 19:37:55 +02:00
|
|
|
loader.sourceComponent = undefined;
|
|
|
|
loader.source = "";
|
|
|
|
Widget.clearComponentCache();
|
|
|
|
loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute);
|
2020-01-23 09:48:48 +01:00
|
|
|
}
|
2021-05-14 13:11:12 +02:00
|
|
|
|
2021-05-16 19:37:55 +02:00
|
|
|
target: Widget
|
2020-01-23 09:48:48 +01:00
|
|
|
}
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
OpacityAnimator {
|
|
|
|
id: animFadeOut
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
from: 1
|
|
|
|
to: 0
|
|
|
|
target: parent
|
|
|
|
duration: 800
|
|
|
|
easing.type: Easing.InOutQuad
|
2020-01-10 15:26:25 +01:00
|
|
|
onFinished: Widget.destroyThis()
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
Rectangle {
|
2018-11-24 14:28:02 +01:00
|
|
|
id: bgColor
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
color: "white"
|
2021-05-16 19:37:55 +02:00
|
|
|
opacity: 0.15
|
2018-10-26 19:28:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: bg
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
source: "qrc:/assets/image/noisy-texture-3.png"
|
|
|
|
anchors.fill: parent
|
2021-05-16 19:37:55 +02:00
|
|
|
opacity: 0.05
|
2018-10-26 19:28:40 +02:00
|
|
|
fillMode: Image.Tile
|
|
|
|
}
|
2020-01-10 15:26:25 +01:00
|
|
|
|
2019-03-27 18:38:36 +01:00
|
|
|
Loader {
|
|
|
|
id: loader
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-03-27 18:38:36 +01:00
|
|
|
anchors.fill: parent
|
|
|
|
asynchronous: true
|
2020-01-10 15:26:25 +01:00
|
|
|
Component.onCompleted: {
|
2021-05-14 12:50:22 +02:00
|
|
|
switch (Widget.type) {
|
|
|
|
case InstalledType.QMLWidget:
|
2021-05-16 19:37:55 +02:00
|
|
|
loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute);
|
|
|
|
break;
|
2021-05-14 12:50:22 +02:00
|
|
|
case InstalledType.HTMLWidget:
|
2021-05-16 19:37:55 +02:00
|
|
|
loader.sourceComponent = webViewComponent;
|
|
|
|
break;
|
2020-01-10 15:26:25 +01:00
|
|
|
}
|
2019-03-27 18:38:36 +01:00
|
|
|
}
|
2020-01-26 10:59:52 +01:00
|
|
|
onStatusChanged: {
|
|
|
|
if (loader.status == Loader.Ready) {
|
2021-05-16 19:37:55 +02:00
|
|
|
if (loader.item.widgetBackground !== undefined)
|
|
|
|
bgColor.color = loader.item.widgetBackground;
|
|
|
|
|
|
|
|
if (loader.item.widgetBackgroundOpacity !== undefined)
|
|
|
|
bgColor.opacity = loader.item.widgetBackgroundOpacity;
|
|
|
|
|
|
|
|
if (loader.item.widgetWidth !== undefined && loader.item.widgetHeight !== undefined)
|
|
|
|
Widget.setWidgetSize(loader.item.widgetWidth, loader.item.widgetHeight);
|
|
|
|
|
2020-01-26 10:59:52 +01:00
|
|
|
}
|
2020-01-10 15:26:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: webViewComponent
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2020-01-10 15:26:25 +01:00
|
|
|
WebEngineView {
|
|
|
|
id: webView
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2020-01-10 15:26:25 +01:00
|
|
|
backgroundColor: "transparent"
|
|
|
|
anchors.fill: parent
|
|
|
|
onJavaScriptConsoleMessage: print(lineNumber, message)
|
|
|
|
Component.onCompleted: {
|
2021-05-16 19:37:55 +02:00
|
|
|
webView.url = Qt.resolvedUrl(Widget.sourcePath);
|
2019-03-27 18:38:36 +01:00
|
|
|
}
|
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-03-27 18:38:36 +01:00
|
|
|
}
|
2018-10-26 19:28:40 +02:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: mouseArea
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2020-01-10 20:54:27 +01:00
|
|
|
property var clickPos
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2018-10-26 19:28:40 +02:00
|
|
|
anchors.fill: parent
|
2019-06-13 18:06:24 +02:00
|
|
|
hoverEnabled: true
|
2018-10-26 19:28:40 +02:00
|
|
|
onPressed: {
|
2020-01-10 20:54:27 +01:00
|
|
|
clickPos = {
|
|
|
|
"x": mouse.x,
|
|
|
|
"y": mouse.y
|
2021-05-16 19:37:55 +02:00
|
|
|
};
|
2018-10-26 19:28:40 +02:00
|
|
|
}
|
|
|
|
onPositionChanged: {
|
2021-05-16 19:37:55 +02:00
|
|
|
if (mouseArea.pressed)
|
|
|
|
Widget.setPos(Widget.cursorPos().x - clickPos.x, Widget.cursorPos().y - clickPos.y);
|
|
|
|
|
2018-11-24 14:28:02 +01:00
|
|
|
}
|
2018-03-21 18:56:58 +01:00
|
|
|
}
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
MouseArea {
|
|
|
|
id: mouseAreaClose
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
width: 20
|
|
|
|
height: width
|
2021-05-16 19:37:55 +02:00
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: imgClose.opacity = 1
|
|
|
|
onExited: imgClose.opacity = 0.15
|
|
|
|
onClicked: {
|
2021-09-04 14:04:08 +02:00
|
|
|
if(Qt.platform.os === "windows")
|
|
|
|
Widget.setWindowBlur(0);
|
2021-05-16 19:37:55 +02:00
|
|
|
animFadeOut.start();
|
|
|
|
}
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
2020-01-10 15:26:25 +01:00
|
|
|
id: imgClose
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
source: "qrc:/assets/icons/baseline-close-24px.svg"
|
|
|
|
anchors.centerIn: parent
|
2021-05-16 19:37:55 +02:00
|
|
|
opacity: 0.15
|
|
|
|
|
2020-01-10 15:26:25 +01:00
|
|
|
OpacityAnimator {
|
|
|
|
target: parent
|
|
|
|
duration: 300
|
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
2020-01-10 15:26:25 +01:00
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
MouseArea {
|
|
|
|
id: mouseAreaResize
|
2021-05-16 19:37:55 +02:00
|
|
|
|
|
|
|
property point clickPosition
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
width: 20
|
|
|
|
height: width
|
|
|
|
cursorShape: Qt.SizeFDiagCursor
|
|
|
|
onPressed: {
|
2021-05-16 19:37:55 +02:00
|
|
|
clickPosition = Qt.point(mouseX, mouseY);
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
|
|
|
onPositionChanged: {
|
2021-05-16 19:37:55 +02:00
|
|
|
if (mouseAreaResize.pressed)
|
|
|
|
Widget.setWidgetSize(clickPosition.x + mouseX, clickPosition.y + mouseY);
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
|
|
|
anchors {
|
|
|
|
bottom: parent.bottom
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
|
2019-06-13 18:06:24 +02:00
|
|
|
}
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2018-03-08 22:03:05 +01:00
|
|
|
}
|