Serial-Studio/assets/qml/JsonEditor/JsonGroupDelegate.qml

175 lines
5.6 KiB
QML
Raw Normal View History

2021-09-17 01:41:50 -05:00
/*
* Copyright (c) 2020-2021 Alex Spataru <https://github.com/alex-spataru>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
import QtQuick 2.12
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.12
import "../Widgets" as Widgets
Widgets.Window {
id: root
gradient: true
Layout.minimumHeight: height
headerDoubleClickEnabled: false
icon.source: "qrc:/icons/group.svg"
backgroundColor: Cpp_ThemeManager.embeddedWindowBackground
height: column.implicitHeight + headerHeight + 4 * app.spacing
2021-09-17 17:45:05 -05:00
title: qsTr("Group %1 - %2").arg(group + 1).arg(Cpp_JSON_Editor.groupTitle(group))
2021-09-17 01:41:50 -05:00
//
// Custom properties
//
2021-09-17 17:45:05 -05:00
property int group
//
// Connections with JSON editor
//
Connections {
target: Cpp_JSON_Editor
function onGroupChanged(id) {
if (id === group) {
repeater.model = 0
repeater.model = Cpp_JSON_Editor.datasetCount(group)
}
}
}
2021-09-17 01:41:50 -05:00
//
// Main layout
//
ColumnLayout {
id: column
spacing: app.spacing
anchors {
left: parent.left
right: parent.right
margins: 2 * app.spacing
verticalCenter: parent.verticalCenter
}
//
// Group title
//
RowLayout {
spacing: app.spacing
Layout.fillWidth: true
TextField {
Layout.fillWidth: true
placeholderText: qsTr("Title")
2021-09-17 17:45:05 -05:00
text: Cpp_JSON_Editor.groupTitle(group)
onTextChanged: {
Cpp_JSON_Editor.setGroupTitle(group, text)
root.title = qsTr("Group %1 - %2").arg(group + 1).arg(Cpp_JSON_Editor.groupTitle(group))
}
2021-09-17 01:41:50 -05:00
}
ComboBox {
id: widget
Layout.minimumWidth: 180
2021-09-17 17:45:05 -05:00
model: Cpp_JSON_Editor.availableGroupLevelWidgets()
currentIndex: Cpp_JSON_Editor.groupWidgetIndex(group)
onCurrentIndexChanged: {
var prevIndex = Cpp_JSON_Editor.groupWidgetIndex(group)
if (currentIndex !== prevIndex) {
if (!Cpp_JSON_Editor.setGroupWidget(group, currentIndex))
currentIndex = prevIndex
}
}
2021-09-17 01:41:50 -05:00
}
RoundButton {
icon.width: 18
icon.height: 18
2021-09-17 17:45:05 -05:00
enabled: group > 0
2021-09-17 01:41:50 -05:00
opacity: enabled ? 1 : 0.5
icon.source: "qrc:/icons/up.svg"
2021-09-17 17:45:05 -05:00
icon.color: Cpp_ThemeManager.text
onClicked: Cpp_JSON_Editor.moveGroupUp(group)
2021-09-17 01:41:50 -05:00
Behavior on opacity {NumberAnimation{}}
}
RoundButton {
icon.width: 18
icon.height: 18
opacity: enabled ? 1 : 0.5
icon.color: Cpp_ThemeManager.text
icon.source: "qrc:/icons/down.svg"
2021-09-17 17:45:05 -05:00
enabled: group < Cpp_JSON_Editor.groupCount - 1
onClicked: Cpp_JSON_Editor.moveGroupDown(group)
2021-09-17 01:41:50 -05:00
Behavior on opacity {NumberAnimation{}}
}
RoundButton {
icon.width: 18
icon.height: 18
icon.color: Cpp_ThemeManager.text
icon.source: "qrc:/icons/delete.svg"
2021-09-17 17:45:05 -05:00
onClicked: Cpp_JSON_Editor.deleteGroup(group)
2021-09-17 01:41:50 -05:00
}
}
//
// Datasets
//
2021-09-17 17:45:05 -05:00
GridLayout {
Layout.fillWidth: true
rowSpacing: app.spacing
columnSpacing: app.spacing
Layout.fillHeight: repeater.model > 0
columns: Math.floor(column.width / 320)
Layout.minimumHeight: (repeater.model / columns) * 300
Repeater {
id: repeater
model: Cpp_JSON_Editor.datasetCount(group)
delegate: JsonDatasetDelegate {
dataset: index
group: root.group
Layout.fillWidth: true
Layout.minimumWidth: 320
Layout.minimumHeight: 300
showGroupWidget: widget.currentIndex > 0
}
2021-09-17 01:41:50 -05:00
}
}
//
// Add dataset button
//
Button {
icon.width: 24
icon.height: 24
Layout.fillWidth: true
text: qsTr("Add dataset")
icon.source: "qrc:/icons/add.svg"
icon.color: Cpp_ThemeManager.text
visible: widget.currentIndex == 0
2021-09-17 17:45:05 -05:00
onClicked: Cpp_JSON_Editor.addDataset(group)
2021-09-17 01:41:50 -05:00
}
}
}