You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
639 B
28 lines
639 B
7 years ago
|
import QtQuick 2.10
|
||
|
import QtQuick.Controls 2.3
|
||
|
|
||
|
ListView {
|
||
|
id: _edit
|
||
|
property var inputValue
|
||
|
property alias listElements: _edit.model
|
||
|
readonly property bool isExtended: Boolean(model[0] && model[0].name)
|
||
|
|
||
|
implicitHeight: dummyDelegate.height * model.length
|
||
|
|
||
|
ScrollBar.vertical: ScrollBar {}
|
||
|
|
||
|
delegate: RadioDelegate {
|
||
|
width: parent.width
|
||
|
text: isExtended ? _edit.model[index].name : modelData
|
||
|
|
||
|
checked: (isExtended ? _edit.model[index].value : modelData) == inputValue
|
||
|
onClicked: inputValue = (isExtended ? _edit.model[index].value : modelData)
|
||
|
}
|
||
|
|
||
|
RadioDelegate {
|
||
|
id:dummyDelegate
|
||
|
visible: false
|
||
|
text: "dummy"
|
||
|
}
|
||
|
}
|