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

Rectangle {
    width: childrenRect.width
    height: childrenRect.height
    color: "#646464"

    Grid {
        columns: 3
        Clock { city: "New York"; shift: -4 }
        Clock { city: "Mumbai"; shift: 5.5 }
        Clock { city: "Tokyo"; shift: 9 }
    }
}