92 lines
3.0 KiB
QML
92 lines
3.0 KiB
QML
import QtQuick
|
|
import QtQuick.Controls.Material
|
|
import QtQuick.Layouts
|
|
|
|
import com.büro 1.0
|
|
|
|
ColumnLayout {
|
|
Label {
|
|
text: qsTr("Device Types Settings")
|
|
}
|
|
Image {
|
|
height: 64
|
|
width: 64
|
|
source: ":/lightcontrol/icons/movinghead.png"
|
|
onStatusChanged: console.log(status)
|
|
Component.onCompleted: console.log(status)
|
|
}
|
|
|
|
RowLayout {
|
|
//Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
EditableListView {
|
|
id: listView
|
|
|
|
Layout.preferredWidth: 300
|
|
Layout.maximumWidth: 300
|
|
Layout.fillHeight: true
|
|
|
|
model: deviceTypesModel
|
|
|
|
onAddClicked: (index) => deviceTypesModel.insertRow(index < 0 ? 0 : index + 1);
|
|
onRemoveClicked: (index) => deviceTypesModel.removeRow(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.id
|
|
onValueModified: listView.currentData.id = value
|
|
}
|
|
Label { text: qsTr("Name:") }
|
|
TextField {
|
|
Layout.fillWidth: true
|
|
text: listView.currentData.name
|
|
onTextEdited: listView.currentData.name = text
|
|
}
|
|
Label { text: qsTr("Icon:") }
|
|
ComboBox {
|
|
Layout.fillWidth: true
|
|
id: iconCombobox
|
|
//textRole: "imageSource"
|
|
//valueRole: "imageSource"
|
|
//currentIndex: iconCombobox.indexOfValue(listView.currentData.deviceTypeId)
|
|
//onActivated: if (listView.currentData) listView.currentData.deviceTypeId = currentValue; else console.warn('discarded');
|
|
delegate: Image {
|
|
height: 64
|
|
fillMode: Image.PreserveAspectFit
|
|
source: imageSource
|
|
}
|
|
model: ListModel {
|
|
id: cbItems
|
|
ListElement { imageSource: ":/lightcontrol/icons/movinghead.png" }
|
|
ListElement { imageSource: ":/lightcontrol/icons/nebelmaschine.png" }
|
|
ListElement { imageSource: ":/lightcontrol/icons/rgbstrahler.png" }
|
|
}
|
|
}
|
|
Label { text: qsTr("Registers:") }
|
|
RegistersSettingsItem {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
deviceTypeId: listView.currentData.id
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|
|
}
|