aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/signals/pytoqml1/view.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml/signals/pytoqml1/view.qml')
-rw-r--r--examples/qml/signals/pytoqml1/view.qml36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/qml/signals/pytoqml1/view.qml b/examples/qml/signals/pytoqml1/view.qml
new file mode 100644
index 000000000..af2d966be
--- /dev/null
+++ b/examples/qml/signals/pytoqml1/view.qml
@@ -0,0 +1,36 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+
+Rectangle {
+ id: page
+
+ function updateRotater() {
+ rotater.angle = rotater.angle + 45
+ }
+
+ width: 500; height: 200
+ color: "lightgray"
+
+ Rectangle {
+ id: rotater
+ property real angle : 0
+ x: 240
+ width: 100; height: 10
+ color: "black"
+ y: 95
+
+ transform: Rotation {
+ origin.x: 10; origin.y: 5
+ angle: rotater.angle
+ Behavior on angle {
+ SpringAnimation {
+ spring: 1.4
+ damping: .05
+ }
+ }
+ }
+ }
+
+}