blob: 088a45c86a7875df4b2513e34689e0c27033f44c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?qtfx namespacepath:http://nokia.com/qml/Chronos=. ?>
<Image id="clock" src="pics/clockface.png" xmlns:This="http://nokia.com/qml/Chronos">
<properties>
<Property name="hours" value="0"/>
<Property name="minutes" value="0"/>
<Property name="seconds" value="0"/>
</properties>
<DateTimeFormatter id="format" time="{clock.time}"/>
<Item x="{clock.width/2}" y="{clock.height/2}">
<This:Hand id="hour" length="{clock.height/4}" rotation="{clock.hours*30+clock.minutes/2+clock.seconds/120}"/>
<This:Hand id="minute" length="{clock.height/3}" thickness="3" rotation="{clock.minutes*6+clock.seconds/10}"/>
<This:Hand id="second" length="{clock.height/2.5}" thickness="1" rotation="{clock.seconds*6}"/>
</Item>
</Image>
|