~ubuntu-branches/ubuntu/saucy/qtdeclarative-opensource-src/saucy

« back to all changes in this revision

Viewing changes to examples/quick/demos/clocks/content/Clock.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the examples of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:BSD$
 
9
** You may use this file under the terms of the BSD license as follows:
 
10
**
 
11
** "Redistribution and use in source and binary forms, with or without
 
12
** modification, are permitted provided that the following conditions are
 
13
** met:
 
14
**   * Redistributions of source code must retain the above copyright
 
15
**     notice, this list of conditions and the following disclaimer.
 
16
**   * Redistributions in binary form must reproduce the above copyright
 
17
**     notice, this list of conditions and the following disclaimer in
 
18
**     the documentation and/or other materials provided with the
 
19
**     distribution.
 
20
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
24
**
 
25
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
26
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
27
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
28
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
29
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
30
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
31
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
32
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
33
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
34
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
35
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
36
**
 
37
** $QT_END_LICENSE$
 
38
**
 
39
****************************************************************************/
 
40
 
 
41
import QtQuick 2.0
 
42
 
 
43
Item {
 
44
    id : clock
 
45
    width: {
 
46
        if (ListView.view && ListView.view.width >= 200)
 
47
            return ListView.view.width / Math.floor(ListView.view.width / 200.0);
 
48
        else
 
49
            return 200;
 
50
    }
 
51
 
 
52
    height: {
 
53
        if (ListView.view && ListView.view.height >= 240)
 
54
            return ListView.view.height;
 
55
        else
 
56
            return 240;
 
57
    }
 
58
 
 
59
    property alias city: cityLabel.text
 
60
    property int hours
 
61
    property int minutes
 
62
    property int seconds
 
63
    property real shift
 
64
    property bool night: false
 
65
    property bool internationalTime: true //Unset for local time
 
66
 
 
67
    function timeChanged() {
 
68
        var date = new Date;
 
69
        hours = internationalTime ? date.getUTCHours() + Math.floor(clock.shift) : date.getHours()
 
70
        night = ( hours < 7 || hours > 19 )
 
71
        minutes = internationalTime ? date.getUTCMinutes() + ((clock.shift % 1) * 60) : date.getMinutes()
 
72
        seconds = date.getUTCSeconds();
 
73
    }
 
74
 
 
75
    Timer {
 
76
        interval: 100; running: true; repeat: true;
 
77
        onTriggered: clock.timeChanged()
 
78
    }
 
79
 
 
80
    Item {
 
81
        anchors.centerIn: parent
 
82
        width: 200; height: 240
 
83
 
 
84
        Image { id: background; source: "clock.png"; visible: clock.night == false }
 
85
        Image { source: "clock-night.png"; visible: clock.night == true }
 
86
 
 
87
 
 
88
        Image {
 
89
            x: 92.5; y: 27
 
90
            source: "hour.png"
 
91
            transform: Rotation {
 
92
                id: hourRotation
 
93
                origin.x: 7.5; origin.y: 73;
 
94
                angle: (clock.hours * 30) + (clock.minutes * 0.5)
 
95
                Behavior on angle {
 
96
                    SpringAnimation { spring: 2; damping: 0.2; modulus: 360 }
 
97
                }
 
98
            }
 
99
        }
 
100
 
 
101
        Image {
 
102
            x: 93.5; y: 17
 
103
            source: "minute.png"
 
104
            transform: Rotation {
 
105
                id: minuteRotation
 
106
                origin.x: 6.5; origin.y: 83;
 
107
                angle: clock.minutes * 6
 
108
                Behavior on angle {
 
109
                    SpringAnimation { spring: 2; damping: 0.2; modulus: 360 }
 
110
                }
 
111
            }
 
112
        }
 
113
 
 
114
        Image {
 
115
            x: 97.5; y: 20
 
116
            source: "second.png"
 
117
            transform: Rotation {
 
118
                id: secondRotation
 
119
                origin.x: 2.5; origin.y: 80;
 
120
                angle: clock.seconds * 6
 
121
                Behavior on angle {
 
122
                    SpringAnimation { spring: 2; damping: 0.2; modulus: 360 }
 
123
                }
 
124
            }
 
125
        }
 
126
 
 
127
        Image {
 
128
            anchors.centerIn: background; source: "center.png"
 
129
        }
 
130
 
 
131
        Text {
 
132
            id: cityLabel
 
133
            y: 210; anchors.horizontalCenter: parent.horizontalCenter
 
134
            color: "white"
 
135
            font.family: "Helvetica"
 
136
            font.bold: true; font.pixelSize: 16
 
137
            style: Text.Raised; styleColor: "black"
 
138
        }
 
139
    }
 
140
}