/* * Copyright (c) 2020-2021 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 title: qsTr("Group %1 - %2").arg(group + 1).arg(Cpp_JSON_Editor.groupTitle(group)) // // Custom properties // 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) } } } // // 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") 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)) } } ComboBox { id: widget Layout.minimumWidth: 180 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 } } } RoundButton { icon.width: 18 icon.height: 18 enabled: group > 0 opacity: enabled ? 1 : 0.5 icon.source: "qrc:/icons/up.svg" icon.color: Cpp_ThemeManager.text onClicked: Cpp_JSON_Editor.moveGroupUp(group) 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" enabled: group < Cpp_JSON_Editor.groupCount - 1 onClicked: Cpp_JSON_Editor.moveGroupDown(group) Behavior on opacity {NumberAnimation{}} } RoundButton { icon.width: 18 icon.height: 18 icon.color: Cpp_ThemeManager.text icon.source: "qrc:/icons/delete.svg" onClicked: Cpp_JSON_Editor.deleteGroup(group) } } // // Datasets // 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 } } } // // 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 onClicked: Cpp_JSON_Editor.addDataset(group) } } }