diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-06 08:32:25 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-06 08:32:25 (GMT) |
commit | d641b621077d5cc81ce7b3de92af9a0f6d47f4d6 (patch) | |
tree | a6d367c55d3d2ec41cf8bf92a439c8cc14c717d8 /examples/declarative/extending/grouped/example.qml | |
parent | 6c7b88af807cbd2b4d824b8fca0f199ae1413432 (diff) | |
download | Qt-d641b621077d5cc81ce7b3de92af9a0f6d47f4d6.zip Qt-d641b621077d5cc81ce7b3de92af9a0f6d47f4d6.tar.gz Qt-d641b621077d5cc81ce7b3de92af9a0f6d47f4d6.tar.bz2 |
Doc
Diffstat (limited to 'examples/declarative/extending/grouped/example.qml')
-rw-r--r-- | examples/declarative/extending/grouped/example.qml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/declarative/extending/grouped/example.qml b/examples/declarative/extending/grouped/example.qml new file mode 100644 index 0000000..b9e5e6b --- /dev/null +++ b/examples/declarative/extending/grouped/example.qml @@ -0,0 +1,31 @@ +// ![0] +BirthdayParty { + celebrant: Boy { + name: "Bob Jones" + shoe { size: 12; color: "white"; brand: "Nike"; price: 90.0 } + } + + Boy { + name: "Joan Hodges" + shoe { size: 10; color: "black"; brand: "Reebok"; price: 59.95 } + } + // ![1] + Boy { + name: "Jack Smith" + shoe { + size: 8 + color: "blue" + brand: "Puma" + price: 19.95 + } + } + // ![1] + Girl { + name: "Anne Brown" + shoe.size: 7 + shoe.color: "red" + shoe.brand: "Marc Jacobs" + shoe.price: 699.99 + } +} +// ![0] |