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

238 lines
7.8 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.
*/
2021-09-30 19:07:39 -05:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
2021-09-17 01:41:50 -05:00
import "../Widgets" as Widgets
Widgets.Window {
id: root
2021-09-17 19:44:59 -05:00
//
// Window properties
//
2021-09-17 01:41:50 -05:00
gradient: true
Layout.minimumHeight: height
headerDoubleClickEnabled: false
icon.source: "qrc:/icons/group.svg"
2021-10-06 16:58:35 -05:00
backgroundColor: Cpp_ThemeManager.paneWindowBackground
2021-09-17 01:41:50 -05:00
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
2021-09-17 19:44:59 -05:00
//
// Delete group button
//
altButtonEnabled: true
altButtonIcon.source: "qrc:/icons/delete-item.svg"
onAltButtonClicked: Cpp_JSON_Editor.deleteGroup(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
}
2021-10-07 20:51:47 -05:00
//
// Notes rectangle
//
Rectangle {
id: notes
radius: 16
Layout.fillWidth: true
color: Cpp_ThemeManager.highlight
Layout.minimumHeight: 32 + 2 * app.spacing
visible: widget.currentIndex === 1 || widget.currentIndex === 2
RowLayout {
spacing: app.spacing
anchors.centerIn: parent
Layout.alignment: Qt.AlignHCenter
visible: widget.currentIndex === 1
Widgets.Icon {
width: 32
height: 32
color: palette.highlightedText
Layout.alignment: Qt.AlignHCenter
source: "qrc:/icons/accelerometer.svg"
} Label {
font.pixelSize: 18
wrapMode: Label.WordWrap
color: palette.highlightedText
text: "<b>" + qsTr("Note:") + "</b> " + qsTr("The accelerometer widget expects values in m/s².")
}
}
RowLayout {
spacing: app.spacing
anchors.centerIn: parent
Layout.alignment: Qt.AlignHCenter
visible: widget.currentIndex === 2
Widgets.Icon {
width: 32
height: 32
source: "qrc:/icons/gyro.svg"
color: palette.highlightedText
Layout.alignment: Qt.AlignHCenter
} Label {
font.pixelSize: 18
wrapMode: Label.WordWrap
color: palette.highlightedText
text: "<b>" + qsTr("Note:") + "</b> " + qsTr("The gyroscope widget expects values in degrees (0° to 360°).")
}
}
}
2021-09-17 01:41:50 -05:00
//
// 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{}}
}
}
//
// 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)
2021-09-26 05:42:22 -05:00
Layout.minimumHeight: (repeater.model / columns) * 320
2021-09-17 17:45:05 -05:00
Repeater {
id: repeater
model: Cpp_JSON_Editor.datasetCount(group)
2021-10-07 03:12:37 -05:00
delegate: Item {
2021-09-17 17:45:05 -05:00
Layout.fillWidth: true
Layout.minimumWidth: 320
2021-10-21 22:37:23 -05:00
Layout.minimumHeight: 420 + 2 * app.spacing
2021-10-07 03:12:37 -05:00
JsonDatasetDelegate {
id: datasetDelegate
dataset: index
group: root.group
anchors.fill: parent
showGroupWidget: widget.currentIndex > 0 && widget.currentIndex !== 4
}
2021-09-17 17:45:05 -05:00
}
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"
2021-10-05 05:03:00 -05:00
icon.color: Cpp_ThemeManager.brightText
2021-09-17 17:45:05 -05:00
onClicked: Cpp_JSON_Editor.addDataset(group)
2021-10-05 05:03:00 -05:00
palette.buttonText: Cpp_ThemeManager.brightText
palette.button: Cpp_ThemeManager.toolbarGradient1
palette.window: Cpp_ThemeManager.toolbarGradient1
2021-10-07 02:23:56 -05:00
visible: widget.currentIndex === 0 || widget.currentIndex === 4
2021-09-17 01:41:50 -05:00
}
}
}