LogarithmPlotter/qml/ListSetting.qml

159 lines
4.8 KiB
QML
Raw Normal View History

import QtQuick 2.12
2020-12-25 23:59:57 +00:00
import QtQuick.Controls 2.12
import QtQml.Models 2.12
2020-12-25 23:59:57 +00:00
Column {
id: control
signal changed()
2020-12-25 23:59:57 +00:00
property string label: ''
property bool dictionaryMode: false
2020-12-25 23:59:57 +00:00
property string keyType: "string"
property string valueType: "string"
property string preKeyLabel: ""
property string postKeyLabel: ": "
property var keyRegexp: /^.+$/
property var valueRegexp: /^.+$/
2020-12-25 23:59:57 +00:00
property bool forbidAdding: false
2020-12-25 23:59:57 +00:00
property alias model: repeater.model
2020-12-25 23:59:57 +00:00
Text {
id: labelItem
height: 30
2020-12-25 23:59:57 +00:00
verticalAlignment: TextInput.AlignVCenter
color: sysPalette.windowText
text: control.label +": "
}
Repeater {
id: repeater
width: control.width
2020-12-25 23:59:57 +00:00
model: ListModel {}
2020-12-25 23:59:57 +00:00
Row {
id: defRow
height: addEntryBtn.height
width: parent.width
Text {
id: preKeyText
height: parent.height
verticalAlignment: TextInput.AlignVCenter
color: sysPalette.windowText
text: control.preKeyLabel
}
2020-12-25 23:59:57 +00:00
TextField {
id: keyInput
visible: control.dictionaryMode
height: parent.height
width: visible ? 50 : 0
validator: RegExpValidator {
regExp: control.keyRegexp
}
2020-12-25 23:59:57 +00:00
verticalAlignment: TextInput.AlignVCenter
horizontalAlignment: TextInput.AlignHCenter
color: sysPalette.windowText
text: visible ? control.model.get(index).key : false
selectByMouse: true
onEditingFinished: {
var value = text
if(control.keyType == 'int') {
value = parseInt(value)
if(value.toString()=="NaN")
value = ""
}
if(control.keyType == 'double') {
value = parseFloat(value)
if(value.toString()=="NaN")
value = ""
}
if(value != "" && valueInput.acceptableInput) {
control.model.setProperty(index, 'key', value)
control.changed()
}
}
}
2020-12-25 23:59:57 +00:00
Text {
id: postKeyText
visible: control.dictionaryMode
height: parent.height
verticalAlignment: TextInput.AlignVCenter
color: sysPalette.windowText
text: control.postKeyLabel
}
2020-12-25 23:59:57 +00:00
TextField {
id: valueInput
height: parent.height
width: parent.width - x
validator: RegExpValidator {
regExp: control.valueRegexp
}
2020-12-25 23:59:57 +00:00
verticalAlignment: TextInput.AlignVCenter
horizontalAlignment: TextInput.AlignHCenter
color: sysPalette.windowText
text: visible ? control.model.get(index).key : false
selectByMouse: true
onEditingFinished: {
var value = text
if(control.valueType == 'int') {
value = parseInt(value)
if(value.toString()=="NaN")
value = ""
}
if(control.valueType == 'double') {
value = parseFloat(value)
if(value.toString()=="NaN")
value = ""
}
if(value != "" && keyInput.acceptableInput) {
control.model.setProperty(index, 'value', value)
control.changed()
}
}
}
}
}
2020-12-25 23:59:57 +00:00
Button {
id: addEntryBtn
2020-12-25 23:59:57 +00:00
visible: !control.forbidAdding
text: '+ Add Entry'
width: control.width
onClicked: {
control.model.append({
key: "",
value: ""
})
}
}
2020-12-25 23:59:57 +00:00
function importModel(importer) {
model.clear()
2020-12-25 23:59:57 +00:00
for(var key in importer)
model.append({
key: key,
2020-12-25 23:59:57 +00:00
value: importer[key]
})
}
2020-12-25 23:59:57 +00:00
function exportModel() {
if(dictionaryMode) {
var ret = {}
for(var i = 0; i < model.count; i++)
ret[model.get(i).key] = model.get(i).value
return ret
} else {
var ret = []
for(var i = 0; i < model.count; i++)
ret.push(model.get(i).value)
}
}
}