summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clock/display.qml
blob: 927adfa7437e2382e64889f82e17ebb77b20200f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6

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

    Grid {
        columns: 3
        Clock { city: "New York"; shift: -4 }
        Clock { city: "London" }
        Clock { city: "Brisbane"; shift: 10 }
    }
}