124 lines
4.1 KiB
QML
124 lines
4.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Material
|
|
import QtQuick.Layouts
|
|
|
|
import scheincommander
|
|
|
|
ColumnLayout {
|
|
Label {
|
|
text: qsTr("Device Types Settings")
|
|
}
|
|
RowLayout {
|
|
//Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
EditableListView {
|
|
id: listView
|
|
|
|
iconSourceRole: "iconUrl"
|
|
|
|
Layout.preferredWidth: 300
|
|
Layout.maximumWidth: 300
|
|
Layout.fillHeight: true
|
|
|
|
model: DeviceTypesModel {
|
|
id: deviceTypesModel
|
|
controller: __controller
|
|
}
|
|
|
|
onAddClicked: (index) => { const newIndex = index < 0 ? 0 : index + 1; if (deviceTypesModel.insertRow(newIndex)) currentIndex = newIndex; else console.warn('failed'); }
|
|
onRemoveClicked: (index) => {
|
|
const dialog = dialogComponent.createObject(Overlay.overlay);
|
|
dialog.index = index;
|
|
dialog.open();
|
|
}
|
|
|
|
Component {
|
|
id: dialogComponent
|
|
|
|
Dialog {
|
|
property int index
|
|
|
|
anchors.centerIn: parent
|
|
standardButtons: DialogButtonBox.Yes | DialogButtonBox.Cancel
|
|
modal: true
|
|
title: qsTr('Confirmation')
|
|
|
|
onAccepted: deviceTypesModel.removeRow(index)
|
|
|
|
Label {
|
|
id: textContainer
|
|
|
|
anchors.fill: parent
|
|
|
|
horizontalAlignment: Qt.AlignLeft
|
|
verticalAlignment: Qt.AlignTop
|
|
|
|
text: qsTr('Are you sure you want to remove row %0').arg(index)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
enabled: listView.currentIndex !== -1
|
|
|
|
GridLayout {
|
|
Layout.preferredWidth: 600
|
|
Layout.maximumWidth: 600
|
|
|
|
columns: 2
|
|
|
|
Label { text: qsTr("Id:") }
|
|
SpinBox {
|
|
enabled: false
|
|
Layout.fillWidth: true
|
|
value: listView.currentData ? listView.currentData.id : -1
|
|
onValueModified: if (listView.currentData) listView.currentData.id = value; else console.warn('discarded');
|
|
}
|
|
Label { text: qsTr("Name:") }
|
|
TextField {
|
|
Layout.fillWidth: true
|
|
text: listView.currentData ? listView.currentData.name : ''
|
|
onTextEdited: if (listView.currentData) listView.currentData.name = text; else console.warn('discarded');
|
|
}
|
|
Label { text: qsTr("Icon:") }
|
|
IconComboBox {
|
|
id: iconComboBox
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 64
|
|
|
|
textRole: "fileBaseName"
|
|
valueRole: "fileBaseName"
|
|
iconSourceRole: "fileUrl"
|
|
|
|
model: IconsModel {
|
|
id: iconsModel
|
|
}
|
|
|
|
currentIndex: listView.currentData ? iconComboBox.indexOfValue(listView.currentData.iconName) : -1
|
|
Component.onCompleted: {
|
|
iconsModel.onRowCountChanged.connect(function(){
|
|
currentIndex = Qt.binding(function() { return listView.currentData ? iconComboBox.indexOfValue(listView.currentData.iconName) : -1});
|
|
});
|
|
}
|
|
|
|
onActivated: if (listView.currentData) listView.currentData.iconName = currentValue; else console.warn('discarded');
|
|
}
|
|
Label { text: qsTr("Registers:") }
|
|
RegistersSettingsItem {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
deviceTypeId: listView.currentData ? listView.currentData.id : -1
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|
|
}
|