summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview/dummydata/MyPetsModel.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-04-30 05:00:08 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-04-30 05:00:08 (GMT)
commit27b180804d506a734318edc7a6062d7fdd9dca6d (patch)
tree85ec4099faec108b33db4e473db3cd9ca37d4960 /examples/declarative/listview/dummydata/MyPetsModel.qml
parentf2fb6b63c6e5572d02245c64da652f13174588b9 (diff)
parent7e95bf13d72b28c87dab4b346fd96de6e8a4c046 (diff)
downloadQt-27b180804d506a734318edc7a6062d7fdd9dca6d.zip
Qt-27b180804d506a734318edc7a6062d7fdd9dca6d.tar.gz
Qt-27b180804d506a734318edc7a6062d7fdd9dca6d.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts: examples/declarative/follow/pong.qml examples/declarative/listview/dummydata/MyPetsModel.qml
Diffstat (limited to 'examples/declarative/listview/dummydata/MyPetsModel.qml')
-rw-r--r--examples/declarative/listview/dummydata/MyPetsModel.qml49
1 files changed, 29 insertions, 20 deletions
diff --git a/examples/declarative/listview/dummydata/MyPetsModel.qml b/examples/declarative/listview/dummydata/MyPetsModel.qml
index def8cf3..1c96b7f 100644
--- a/examples/declarative/listview/dummydata/MyPetsModel.qml
+++ b/examples/declarative/listview/dummydata/MyPetsModel.qml
@@ -1,50 +1,59 @@
// ListModel allows free form list models to be defined and populated.
// Be sure to name the file the same as the id.
ListModel2 {
- id: MyPetsModel
+ id: MyListElementsModel
ListElement {
- name: "Rover"
- type: "Dog"
- age: 5
+ name: "Polly"
+ type: "Parrot"
+ age: 12
+ size: "Small"
}
ListElement {
- name: "Whiskers"
- type: "Cat"
- age: 2
+ name: "Penny"
+ type: "Turtle"
+ age: 4
+ size: "Small"
}
ListElement {
name: "Warren"
type: "Rabbit"
age: 2
- }
- ListElement {
- name: "Polly"
- type: "Parrot"
- age: 12
+ size: "Small"
}
ListElement {
name: "Spot"
type: "Dog"
age: 9
+ size: "Medium"
}
ListElement {
- name: "Tiny"
- type: "Elephant"
- age: 15
- }
- ListElement {
- name: "Penny"
- type: "Turtle"
- age: 4
+ name: "Whiskers"
+ type: "Cat"
+ age: 2
+ size: "Medium"
}
ListElement {
name: "Joey"
type: "Kangaroo"
age: 1
+ size: "Medium"
}
ListElement {
name: "Kimba"
type: "Bunny"
age: 65
+ size: "Large"
+ }
+ ListElement {
+ name: "Rover"
+ type: "Dog"
+ age: 5
+ size: "Large"
+ }
+ ListElement {
+ name: "Tiny"
+ type: "Elephant"
+ age: 15
+ size: "Large"
}
}