/* * Serial Studio - https://serial-studio.github.io/ * * Copyright (C) 2020-2025 Alex Spataru * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * SPDX-License-Identifier: GPL-3.0-or-later OR Commercial */ import QtCore import QtQuick import QtQuick.Window import QtQuick.Layouts import QtQuick.Controls import SerialStudio import "Views" as Views import "Sections" as Sections import "../Widgets" as Widgets Widgets.SmartWindow { id: root // // Window options // category: "ProjectEditor" minimumWidth: layout.implicitWidth + 32 minimumHeight: layout.implicitHeight + 32 title: qsTr("%1 - Project Editor").arg(Cpp_JSON_ProjectModel.title + (Cpp_JSON_ProjectModel.modified ? " (" + qsTr("modified") + ")" : "")) // // Ask user to save changes when closing the dialog // onClosing: (close) => close.accepted = Cpp_JSON_ProjectModel.askSave() // // Ensure that current JSON file is shown // onVisibleChanged: { if (visible) { Cpp_NativeWindow.addWindow(root) Cpp_JSON_ProjectModel.openJsonFile(Cpp_JSON_FrameBuilder.jsonMapFilepath) } else Cpp_NativeWindow.removeWindow(root) } // // Load project file on start // Component.onCompleted: Cpp_JSON_ProjectModel.openJsonFile(Cpp_JSON_FrameBuilder.jsonMapFilepath) // // Dummy string to increase width of buttons // readonly property string _btSpacer: " " // // Shortcuts // Shortcut { sequences: [StandardKey.Open] onActivated: Cpp_JSON_ProjectModel.openJsonFile() } Shortcut { sequences: [StandardKey.New] onActivated: Cpp_JSON_ProjectModel.newJsonFile() } Shortcut { sequences: [StandardKey.Save] onActivated: Cpp_JSON_ProjectModel.saveJsonFile() } // // Use page item to set application palette // Page { anchors.fill: parent palette.mid: Cpp_ThemeManager.colors["mid"] palette.dark: Cpp_ThemeManager.colors["dark"] palette.text: Cpp_ThemeManager.colors["text"] palette.base: Cpp_ThemeManager.colors["base"] palette.link: Cpp_ThemeManager.colors["link"] palette.light: Cpp_ThemeManager.colors["light"] palette.window: Cpp_ThemeManager.colors["window"] palette.shadow: Cpp_ThemeManager.colors["shadow"] palette.accent: Cpp_ThemeManager.colors["accent"] palette.button: Cpp_ThemeManager.colors["button"] palette.midlight: Cpp_ThemeManager.colors["midlight"] palette.highlight: Cpp_ThemeManager.colors["highlight"] palette.windowText: Cpp_ThemeManager.colors["window_text"] palette.brightText: Cpp_ThemeManager.colors["bright_text"] palette.buttonText: Cpp_ThemeManager.colors["button_text"] palette.toolTipBase: Cpp_ThemeManager.colors["tooltip_base"] palette.toolTipText: Cpp_ThemeManager.colors["tooltip_text"] palette.linkVisited: Cpp_ThemeManager.colors["link_visited"] palette.alternateBase: Cpp_ThemeManager.colors["alternate_base"] palette.placeholderText: Cpp_ThemeManager.colors["placeholder_text"] palette.highlightedText: Cpp_ThemeManager.colors["highlighted_text"] ColumnLayout { id: layout spacing: 0 anchors.fill: parent // // Toolbar // Sections.Toolbar { z: 2 Layout.fillWidth: true } // // Main Layout // RowLayout { spacing: 0 Layout.topMargin: -1 Layout.fillWidth: true Layout.fillHeight: true Layout.minimumHeight: 540 // // Project structure // Sections.ProjectStructure { id: projectStructure Layout.fillHeight: true Layout.minimumWidth: 256 } // // Panel border // Rectangle { z: 2 implicitWidth: 1 Layout.fillHeight: true color: Cpp_ThemeManager.colors["setup_border"] Rectangle { width: 1 height: 32 anchors.top: parent.top anchors.left: parent.left color: Cpp_ThemeManager.colors["pane_caption_border"] } } // // Action view // Views.ActionView { Layout.fillWidth: true Layout.fillHeight: true visible: Cpp_JSON_ProjectModel.currentView === ProjectModel.ActionView } // // Project setup // Views.ProjectView { Layout.fillWidth: true Layout.fillHeight: true visible: Cpp_JSON_ProjectModel.currentView === ProjectModel.ProjectView } // // Group view // Views.GroupView { Layout.fillWidth: true Layout.fillHeight: true visible: Cpp_JSON_ProjectModel.currentView === ProjectModel.GroupView } // // Dataset view // Views.DatasetView { Layout.fillWidth: true Layout.fillHeight: true visible: Cpp_JSON_ProjectModel.currentView === ProjectModel.DatasetView } // // Frame parser function // Views.FrameParserView { Layout.fillWidth: true Layout.fillHeight: true visible: Cpp_JSON_ProjectModel.currentView === ProjectModel.FrameParserView } } } } }