2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import People
|
|
|
|
import QtQuick // For QColor
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// ![0]
|
|
|
|
BirthdayParty {
|
|
|
|
host: Boy {
|
|
|
|
name: "Bob Jones"
|
2012-02-09 16:31:02 +00:00
|
|
|
shoe { size: 12; color: "white"; brand: "Bikey"; price: 90.0 }
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-09 16:31:02 +00:00
|
|
|
Boy {
|
|
|
|
name: "Leo Hodges"
|
|
|
|
//![grouped]
|
|
|
|
shoe { size: 10; color: "black"; brand: "Thebok"; price: 59.95 }
|
|
|
|
//![grouped]
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
// ![1]
|
2012-02-09 16:31:02 +00:00
|
|
|
Boy {
|
|
|
|
name: "Jack Smith"
|
|
|
|
shoe {
|
2011-04-27 10:05:43 +00:00
|
|
|
size: 8
|
|
|
|
color: "blue"
|
2012-02-09 16:31:02 +00:00
|
|
|
brand: "Luma"
|
|
|
|
price: 19.95
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ![1]
|
2012-02-09 16:31:02 +00:00
|
|
|
Girl {
|
|
|
|
name: "Anne Brown"
|
|
|
|
//![ungrouped]
|
2011-04-27 10:05:43 +00:00
|
|
|
shoe.size: 7
|
|
|
|
shoe.color: "red"
|
2012-02-09 16:31:02 +00:00
|
|
|
shoe.brand: "Job Macobs"
|
|
|
|
shoe.price: 699.99
|
|
|
|
//![ungrouped]
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ![0]
|