1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-07 09:47:07 +02:00
ScreenPlay/ScreenPlayWindow/main.qml

55 lines
1.1 KiB
QML
Raw Normal View History

import QtQuick 2.9
import net.aimber.screenplaysdk 1.0
Rectangle {
color: "gray"
anchors.fill: parent
ScreenPlaySDK {
contentType: "wallpaper"
onIncommingMessageError: {
name.text = msg
}
onSdkConnected: {
name.text = "connected"
}
onSdkDisconnected: {
name.text = "disconnected"
mainwindow.destroyThis()
}
}
Text {
id: name
text: qsTr("text")
anchors {
horizontalCenter: parent.horizontalCenter
}
y:-100
font.pixelSize: 36
SequentialAnimation {
loops: SequentialAnimation.Infinite
running: true
NumberAnimation {
target: name
property: "y"
duration: 2000
easing.type: Easing.InOutQuad
to:500
}
NumberAnimation {
target: name
property: "y"
duration: 2000
easing.type: Easing.InOutQuad
to:300
}
}
}
}