2021-09-10 12:45:15 +02:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtWebEngine
|
2022-05-05 13:02:54 +02:00
|
|
|
import ScreenPlayWidget
|
|
|
|
import ScreenPlay.Enums.InstalledType
|
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() {
|
2022-01-20 16:37:07 +01:00
|
|
|
if (Qt.platform.os === "windows")
|
|
|
|
Widget.setWindowBlur(0)
|
2021-09-04 14:04:08 +02:00
|
|
|
|
2022-01-20 16:37:07 +01:00
|
|
|
animFadeOut.start()
|
2020-01-10 15:26:53 +01:00
|
|
|
}
|
|
|
|
|
2020-07-18 20:48:24 +02:00
|
|
|
function onQmlSceneValueReceived(key, value) {
|
2022-01-20 16:37:07 +01:00
|
|
|
var obj2 = 'import QtQuick; 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) {
|
2022-01-20 16:37:07 +01: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
|
|
|
|
2022-04-23 14:32:36 +02:00
|
|
|
source: "qrc:/ScreenPlayWidget/assets/image/noisy-texture-3.png"
|
2018-10-26 19:28:40 +02:00
|
|
|
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:
|
2022-01-20 16:37:07 +01:00
|
|
|
loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute)
|
|
|
|
break
|
2021-05-14 12:50:22 +02:00
|
|
|
case InstalledType.HTMLWidget:
|
2022-01-20 16:37:07 +01: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)
|
2022-01-20 16:37:07 +01:00
|
|
|
bgColor.color = loader.item.widgetBackground
|
2021-05-16 19:37:55 +02:00
|
|
|
|
|
|
|
if (loader.item.widgetBackgroundOpacity !== undefined)
|
2022-01-20 16:37:07 +01:00
|
|
|
bgColor.opacity = loader.item.widgetBackgroundOpacity
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2022-01-20 16:37:07 +01:00
|
|
|
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: {
|
2022-01-20 16:37:07 +01:00
|
|
|
webView.url = Qt.resolvedUrl(Widget.sourcePath)
|
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
|
2022-01-20 16:37:07 +01:00
|
|
|
onPressed: function (mouse) {
|
2020-01-10 20:54:27 +01:00
|
|
|
clickPos = {
|
|
|
|
"x": mouse.x,
|
|
|
|
"y": mouse.y
|
2022-01-20 16:37:07 +01:00
|
|
|
}
|
2018-10-26 19:28:40 +02:00
|
|
|
}
|
|
|
|
onPositionChanged: {
|
2021-05-16 19:37:55 +02:00
|
|
|
if (mouseArea.pressed)
|
2022-01-20 16:37:07 +01:00
|
|
|
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: {
|
2022-01-20 16:37:07 +01:00
|
|
|
if (Qt.platform.os === "windows")
|
|
|
|
Widget.setWindowBlur(0)
|
|
|
|
animFadeOut.start()
|
2021-05-16 19:37:55 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-04-23 14:32:36 +02:00
|
|
|
source: "qrc:/ScreenPlayWidget/assets/icons/baseline-close-24px.svg"
|
2019-06-13 18:06:24 +02:00
|
|
|
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
|
|
|
|
}
|
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: {
|
2022-01-20 16:37:07 +01: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)
|
2022-01-20 16:37:07 +01:00
|
|
|
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
|
|
|
}
|
2018-03-08 22:03:05 +01:00
|
|
|
}
|