aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/signals/pytoqml1/view.qml
blob: af2d966be1bacf014f3db971e9f9aaf3917ef39d (plain)
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
// 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
                }
            }
        }
    }

}