summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clocks/clocks.qml
blob: c5aa1dc5299f364d7378c1b6d61fd5cdff0a74f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6
import "content"

Rectangle {
    width: 640; height: 240
    color: "#646464"

    Row {
        anchors.centerIn: parent
        Clock { city: "New York"; shift: -4 }
        Clock { city: "Mumbai"; shift: 5.5 }
        Clock { city: "Tokyo"; shift: 9 }
    }
}