summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/binding/example.qml
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-14 23:08:01 (GMT)
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-14 23:08:01 (GMT)
commit2d23e45c94b6115db2b1efadfe77841f481545ca (patch)
tree0e6ff89dbcc410dd2ef5b0e873473971f3dd1b07 /examples/declarative/extending/binding/example.qml
parent65e0628bd0cdcb43226dad05582a97a6ef218124 (diff)
parent42dda19d82ceea48f19d356cfaf2b26acb763df8 (diff)
downloadQt-2d23e45c94b6115db2b1efadfe77841f481545ca.zip
Qt-2d23e45c94b6115db2b1efadfe77841f481545ca.tar.gz
Qt-2d23e45c94b6115db2b1efadfe77841f481545ca.tar.bz2
Merge remote branch 'origin/master' into bearermanagement/integration
Conflicts: tests/auto/qlineedit/tst_qlineedit.cpp
Diffstat (limited to 'examples/declarative/extending/binding/example.qml')
-rw-r--r--examples/declarative/extending/binding/example.qml37
1 files changed, 37 insertions, 0 deletions
diff --git a/examples/declarative/extending/binding/example.qml b/examples/declarative/extending/binding/example.qml
new file mode 100644
index 0000000..b66bc86
--- /dev/null
+++ b/examples/declarative/extending/binding/example.qml
@@ -0,0 +1,37 @@
+import People 1.0
+
+// ![0]
+BirthdayParty {
+ id: theParty
+
+ speaker: HappyBirthday { name: theParty.celebrant.name }
+
+ celebrant: Boy {
+ name: "Bob Jones"
+ shoe { size: 12; color: "white"; brand: "Nike"; price: 90.0 }
+ }
+// ![0]
+ onPartyStarted: console.log("This party started rockin' at " + time);
+
+
+ Boy {
+ name: "Joan Hodges"
+ BirthdayParty.rsvp: "2009-07-06"
+ shoe { size: 10; color: "black"; brand: "Reebok"; price: 59.95 }
+ }
+ Boy {
+ name: "Jack Smith"
+ shoe { size: 8; color: "blue"; brand: "Puma"; price: 19.95 }
+ }
+ Girl {
+ name: "Anne Brown"
+ BirthdayParty.rsvp: "2009-07-01"
+ shoe.size: 7
+ shoe.color: "red"
+ shoe.brand: "Marc Jacobs"
+ shoe.price: 699.99
+ }
+
+// ![1]
+}
+// ![1]