diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-30 01:50:47 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-30 01:50:47 (GMT) |
commit | 72932c6683729071c1acb3f4832c5dc53a561bdd (patch) | |
tree | 3faaf9cae46f67e52108beb5902cab9c272b155e /examples/declarative/clocks/clocks.qml | |
parent | ff1a4e75056b200b7eb9117ddfd5b6cd27f4e92e (diff) | |
download | Qt-72932c6683729071c1acb3f4832c5dc53a561bdd.zip Qt-72932c6683729071c1acb3f4832c5dc53a561bdd.tar.gz Qt-72932c6683729071c1acb3f4832c5dc53a561bdd.tar.bz2 |
cleanup
Diffstat (limited to 'examples/declarative/clocks/clocks.qml')
-rw-r--r-- | examples/declarative/clocks/clocks.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/declarative/clocks/clocks.qml b/examples/declarative/clocks/clocks.qml new file mode 100644 index 0000000..3235153 --- /dev/null +++ b/examples/declarative/clocks/clocks.qml @@ -0,0 +1,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 } + } +} |