summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clocks/clocks.qml
blob: 22cf82072d5c81803fc1a1a22498a03228c30f14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7
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 }
    }
}