/usr/share/qtmir/qtmir-demo-client/MovingRect.qml is in qtmir-tests 0.4.8+16.04.20160330-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import QtQuick 2.0
Rectangle {
id: movingRect
width: 80
height: 80
color: "red"
property real maxX: parent.width - width
property real targetX: maxX
function flipTargetX() {
if (targetX == 0) {
targetX = maxX
} else {
targetX = 0
}
}
Timer {
property real step: 4
repeat: true
running: true
interval: 1000 / 60
onTriggered: {
if (x < targetX) {
if (x + step > targetX) {
x = targetX;
} else {
x += step;
}
} else {
if (x - step < targetX) {
x = targetX;
} else {
x -= step;
}
}
}
}
onXChanged: {
if (x == targetX) {
flipTargetX();
}
}
onWidthChanged: {
if (targetX > 0) {
targetX = maxX;
}
}
MouseArea {
anchors.fill: parent
onPressed: {
parent.flipTargetX();
}
}
}
|