summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clock/Clock.qml
blob: 6064dd47a6a2bcf1ab9cf4da6053e426d431f36b (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import Qt 4.6

Item {
    id: Clock
    width: 200; height: 200
    property var time
    property var hours
    property var minutes
    property var seconds
    onTimeChanged: {
        var date = new Date;
        hours = date.getHours();
        minutes = date.getMinutes();
        seconds = date.getSeconds();
    }
    Timer {
        interval: 100; running: true; repeat: true; triggeredOnStart: true
        onTriggered: Clock.time = new Date()
    }

    Image { source: "background.png" }
    Image {
        x: 95
        y: 54
        source: "hour.png"
        smooth: true
        transform: Rotation {
            id: HourRotation
            origin.x: 4; origin.y: 45
            angle: 0
            angle: SpringFollow {
                spring: 2
                damping: .2
                source: Clock.hours * 50 * 3 + Clock.minutes / 2
            }
        }
    }
    Image {
        x: 95
        y: 30
        source: "minute.png"
        smooth: true
        transform: Rotation {
            id: MinuteRotation
            origin.x: 4; origin.y: 70
            angle: 0
            angle: SpringFollow {
                spring: 2
                damping: .2
                source: Clock.minutes * 6
            }
        }
    }
    Image {
        x: 96
        y: 40
        source: "second.png"
        smooth: true
        transform: Rotation {
            id: SecondRotation
            origin.x: 2; origin.y: 60
            angle: 0
            angle: SpringFollow {
                spring: 5
                damping: .25
                modulus: 360
                source: Clock.seconds * 6
            }
        }
    }

    Rectangle {
        x: 93
        y: 94
        width: 11
        height: 11
        radius: 5
        color: "black"
    }
}