1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00
ScreenPlay/ScreenPlayWidget/qml/Widget.qml
2022-05-05 13:02:54 +02:00

189 lines
4.7 KiB
QML

import QtQuick
import QtQuick.Controls
import QtWebEngine
import ScreenPlayWidget
import ScreenPlay.Enums.InstalledType
Item {
id: mainWindow
anchors.fill: parent
Connections {
function onQmlExit() {
if (Qt.platform.os === "windows")
Widget.setWindowBlur(0)
animFadeOut.start()
}
function onQmlSceneValueReceived(key, value) {
var obj2 = 'import QtQuick; Item {Component.onCompleted: loader.item.'
+ key + ' = ' + value + '; }'
var newObject = Qt.createQmlObject(obj2.toString(), root, "err")
newObject.destroy(10000)
}
// Replace wallpaper with QML Scene
function onReloadQML(oldType) {
loader.sourceComponent = undefined
loader.source = ""
Widget.clearComponentCache()
loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute)
}
target: Widget
}
OpacityAnimator {
id: animFadeOut
from: 1
to: 0
target: parent
duration: 800
easing.type: Easing.InOutQuad
onFinished: Widget.destroyThis()
}
Rectangle {
id: bgColor
anchors.fill: parent
color: "white"
opacity: 0.15
}
Image {
id: bg
source: "qrc:/ScreenPlayWidget/assets/image/noisy-texture-3.png"
anchors.fill: parent
opacity: 0.05
fillMode: Image.Tile
}
Loader {
id: loader
anchors.fill: parent
asynchronous: true
Component.onCompleted: {
switch (Widget.type) {
case InstalledType.QMLWidget:
loader.source = Qt.resolvedUrl(Widget.projectSourceFileAbsolute)
break
case InstalledType.HTMLWidget:
loader.sourceComponent = webViewComponent
break
}
}
onStatusChanged: {
if (loader.status == Loader.Ready) {
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)
}
}
}
Component {
id: webViewComponent
WebEngineView {
id: webView
backgroundColor: "transparent"
anchors.fill: parent
onJavaScriptConsoleMessage: print(lineNumber, message)
Component.onCompleted: {
webView.url = Qt.resolvedUrl(Widget.sourcePath)
}
}
}
MouseArea {
id: mouseArea
property var clickPos
anchors.fill: parent
hoverEnabled: true
onPressed: function (mouse) {
clickPos = {
"x": mouse.x,
"y": mouse.y
}
}
onPositionChanged: {
if (mouseArea.pressed)
Widget.setPos(Widget.cursorPos().x - clickPos.x,
Widget.cursorPos().y - clickPos.y)
}
}
MouseArea {
id: mouseAreaClose
width: 20
height: width
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onEntered: imgClose.opacity = 1
onExited: imgClose.opacity = 0.15
onClicked: {
if (Qt.platform.os === "windows")
Widget.setWindowBlur(0)
animFadeOut.start()
}
anchors {
top: parent.top
right: parent.right
}
Image {
id: imgClose
source: "qrc:/ScreenPlayWidget/assets/icons/baseline-close-24px.svg"
anchors.centerIn: parent
opacity: 0.15
OpacityAnimator {
target: parent
duration: 300
}
}
}
MouseArea {
id: mouseAreaResize
property point clickPosition
width: 20
height: width
cursorShape: Qt.SizeFDiagCursor
onPressed: {
clickPosition = Qt.point(mouseX, mouseY)
}
onPositionChanged: {
if (mouseAreaResize.pressed)
Widget.setWidgetSize(clickPosition.x + mouseX,
clickPosition.y + mouseY)
}
anchors {
bottom: parent.bottom
right: parent.right
}
}
}