2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2021-11-11 15:36:38 +00:00
|
|
|
import QtQuick
|
2022-01-29 19:59:33 +00:00
|
|
|
import QtQuick.Controls
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//![0]
|
|
|
|
ListView {
|
2022-01-29 19:59:33 +00:00
|
|
|
id: listview
|
|
|
|
width: 200; height: 320
|
2019-09-17 16:10:59 +00:00
|
|
|
required model
|
2022-01-29 19:59:33 +00:00
|
|
|
ScrollBar.vertical: ScrollBar { }
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
delegate: Rectangle {
|
2022-01-29 19:59:33 +00:00
|
|
|
width: listview.width; height: 25
|
|
|
|
|
2019-09-17 16:10:59 +00:00
|
|
|
required color
|
|
|
|
required property string name
|
|
|
|
|
|
|
|
Text { text: parent.name }
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//![0]
|