summaryrefslogtreecommitdiffstats
path: root/examples/declarative/clocks/clocks.qml
blob: 3235153bf6d8818eadccf00cc23f1b4d96379ebe (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: "London" }
        Clock { city: "Brisbane"; shift: 10 }
    }
}