340 lines
9.5 KiB
QML
Raw Normal View History

2021-09-05 02:41:48 -05:00
/*
2023-01-22 23:51:35 -06:00
* Copyright (c) 2020-2023 Alex Spataru <https://github.com/alex-spataru>
2021-09-05 02:41:48 -05:00
*
* 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.
*/
2024-04-01 02:42:21 -05:00
import QtCore
2022-05-02 04:31:32 -05:00
import QtQuick
import QtQuick.Window
import QtQuick.Layouts
import QtQuick.Controls
2021-09-05 02:41:48 -05:00
import SerialStudio
2024-08-10 12:58:21 -05:00
import "Panes" as Panes
import "../Widgets" as Widgets
2024-11-07 22:54:25 -05:00
Widgets.SmartWindow {
2024-08-10 12:58:21 -05:00
id: root
2024-11-07 22:54:25 -05:00
category: "MainWindow"
minimumWidth: layout.implicitWidth
minimumHeight: layout.implicitHeight
2024-08-11 18:20:03 -05:00
title: qsTr("%1 - %2").arg(documentTitle).arg(Cpp_AppName)
//
// Custom properties
//
property int appLaunchCount: 0
2024-08-11 18:20:03 -05:00
property string documentTitle: ""
property bool firstValidFrame: false
property bool automaticUpdates: false
2024-08-11 18:20:03 -05:00
2024-11-07 22:54:25 -05:00
//
// Save settings
//
Settings {
property alias launchCount: root.appLaunchCount
property alias automaticUpdater: root.automaticUpdates
}
2024-08-11 18:20:03 -05:00
//
// Global properties
//
readonly property bool setupVisible: setup.visible
readonly property bool consoleVisible: terminal.visible
readonly property bool dashboardVisible: dashboard.visible
//
// Toolbar functions aliases
//
function showSetup() { toolbar.setupClicked() }
function showConsole() { toolbar.consoleClicked() }
function showDashboard() { dbTimer.start() }
//
2024-08-11 18:20:03 -05:00
// Obtain document title
//
2024-08-11 18:20:03 -05:00
function updateDocumentTitle() {
if (Cpp_JSON_FrameBuilder.operationMode == SerialStudio.DeviceSendsJSON)
2024-08-11 18:20:03 -05:00
documentTitle = qsTr("Device Defined Project")
else if (Cpp_JSON_FrameBuilder.operationMode == SerialStudio.QuickPlot)
documentTitle = qsTr("Quick Plot Mode")
else if (Cpp_JSON_FrameBuilder.jsonMapFilename.length > 0)
documentTitle = Cpp_JSON_ProjectModel.title
2024-08-11 18:20:03 -05:00
else
documentTitle = qsTr("Empty Project")
}
2024-08-11 18:20:03 -05:00
//
// Wait a little before showing the dashboard to avoid UI glitches and/or
// overloading the rendering engine
//
Timer {
id: dbTimer
interval: 500
onTriggered: toolbar.dashboardClicked()
}
2021-09-05 02:41:48 -05:00
2024-08-11 18:20:03 -05:00
//
// Update document title automatically
//
Connections {
target: Cpp_JSON_FrameBuilder
2024-11-07 22:54:25 -05:00
function onOperationModeChanged() { root.updateDocumentTitle() }
function onJsonFileMapChanged() { root.updateDocumentTitle() }
} Connections {
target: Cpp_JSON_ProjectModel
2024-11-07 22:54:25 -05:00
function onJsonFileChanged() { root.updateDocumentTitle() }
} Connections {
target: Cpp_Misc_Translator
2024-11-07 22:54:25 -05:00
function onLanguageChanged() { root.updateDocumentTitle() }
}
2024-08-11 18:20:03 -05:00
//
// Show console tab on serial disconnect
//
Connections {
target: Cpp_UI_Dashboard
2024-10-11 15:07:03 -05:00
2024-08-11 18:20:03 -05:00
function onDataReset() {
setup.show()
root.showConsole()
root.firstValidFrame = false
}
}
//
// Hide console & device manager when we receive first valid frame
//
Connections {
target: Cpp_UI_Dashboard
function onUpdated() {
if (root.firstValidFrame)
return
2024-10-11 15:07:03 -05:00
const frameValid = Cpp_UI_Dashboard.frameValid()
const deviceConnected = Cpp_IO_Manager.connected
const csvPlayerActive = Cpp_CSV_Player.isOpen
const mqttSubscribed = Cpp_MQTT_Client.isConnectedToHost && Cpp_MQTT_Client.clientMode === 1
const dataAvailable = deviceConnected || csvPlayerActive || mqttSubscribed
if (dataAvailable && frameValid) {
setup.hide()
root.showDashboard()
root.firstValidFrame = true
}
else {
setup.show()
root.showConsole()
root.firstValidFrame = false
}
2021-09-05 02:41:48 -05:00
}
}
2024-08-11 18:20:03 -05:00
//
// Loading code
//
Component.onCompleted: {
// Increment app launch count
++appLaunchCount
// Show donations dialog every 15 launches
2024-11-07 22:54:25 -05:00
if (root.appLaunchCount % 15 == 0)
2024-08-11 18:20:03 -05:00
donateDialog.showAutomatically()
// Ask user if he/she wants to enable automatic updates
if (root.appLaunchCount == 2 && Cpp_UpdaterEnabled) {
if (Cpp_Misc_Utilities.askAutomaticUpdates()) {
root.automaticUpdates = true
Cpp_Updater.checkForUpdates(Cpp_AppUpdaterUrl)
}
else
root.automaticUpdates = false
}
// Check for updates (if we are allowed)
if (root.automaticUpdates && Cpp_UpdaterEnabled)
Cpp_Updater.checkForUpdates(Cpp_AppUpdaterUrl)
// Obtain document title from JSON project editor & display the window
2024-11-07 22:54:25 -05:00
root.updateDocumentTitle()
root.displayWindow()
2024-08-11 18:20:03 -05:00
}
2024-08-30 23:15:37 -05:00
//
// Handle platform-specific window initialization code
//
onVisibleChanged: {
if (visible)
Cpp_NativeWindow.addWindow(root)
else
Cpp_NativeWindow.removeWindow(root)
}
//
2024-08-11 18:20:03 -05:00
// Load user interface component
//
Page {
anchors.fill: parent
2024-09-19 16:51:27 -05:00
palette.mid: Cpp_ThemeManager.colors["mid"]
palette.dark: Cpp_ThemeManager.colors["dark"]
2024-08-11 18:20:03 -05:00
palette.text: Cpp_ThemeManager.colors["text"]
2024-09-19 16:51:27 -05:00
palette.base: Cpp_ThemeManager.colors["base"]
palette.link: Cpp_ThemeManager.colors["link"]
palette.light: Cpp_ThemeManager.colors["light"]
2024-08-11 18:20:03 -05:00
palette.window: Cpp_ThemeManager.colors["window"]
2024-09-19 16:51:27 -05:00
palette.shadow: Cpp_ThemeManager.colors["shadow"]
palette.accent: Cpp_ThemeManager.colors["accent"]
palette.button: Cpp_ThemeManager.colors["button"]
palette.midlight: Cpp_ThemeManager.colors["midlight"]
2024-08-11 18:20:03 -05:00
palette.highlight: Cpp_ThemeManager.colors["highlight"]
2024-09-19 16:51:27 -05:00
palette.windowText: Cpp_ThemeManager.colors["window_text"]
palette.brightText: Cpp_ThemeManager.colors["bright_text"]
2024-08-11 18:20:03 -05:00
palette.buttonText: Cpp_ThemeManager.colors["button_text"]
2024-09-19 16:51:27 -05:00
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"]
2024-08-11 18:20:03 -05:00
palette.placeholderText: Cpp_ThemeManager.colors["placeholder_text"]
palette.highlightedText: Cpp_ThemeManager.colors["highlighted_text"]
2021-12-21 23:34:58 -05:00
ColumnLayout {
id: layout
spacing: 0
anchors.fill: parent
2021-11-09 20:18:51 -06:00
//
2024-08-11 18:20:03 -05:00
// Toolbar
//
2024-08-10 12:58:21 -05:00
Panes.Toolbar {
2024-08-11 18:20:03 -05:00
z: 2
id: toolbar
Layout.fillWidth: true
2024-08-11 18:20:03 -05:00
setupChecked: root.setupVisible
consoleChecked: root.consoleVisible
dashboardChecked: root.dashboardVisible
onStructureClicked: dashboard.toggleStructureTree()
onSetupClicked: setup.visible ? setup.hide() : setup.show()
structureChecked: dashboard.structureVisible && Cpp_UI_Dashboard.available
onDashboardClicked: {
if (Cpp_UI_Dashboard.available) {
consoleChecked = 0
dashboardChecked = 1
if (stack.currentItem != dashboard)
stack.push(dashboard)
}
else
root.showConsole()
2021-11-07 03:49:50 -06:00
}
onConsoleClicked: {
consoleChecked = 1
dashboardChecked = 0
stack.pop()
}
}
//
2024-08-11 18:20:03 -05:00
// User interface
//
RowLayout {
2024-08-11 18:20:03 -05:00
z: 1
spacing: 0
2024-08-11 18:20:03 -05:00
Layout.topMargin: -1
2024-08-11 18:20:03 -05:00
//
// Dashboard + Console view
//
StackView {
id: stack
clip: true
initialItem: terminal
Layout.fillWidth: true
Layout.fillHeight: true
Layout.minimumHeight: Math.max(dashboard.implicitHeight, terminal.implicitHeight, setup.implicitHeight)
Layout.minimumWidth: Math.max(dashboard.implicitWidth, terminal.implicitWidth) + (setup.visible ? 0 : setup.displayedWidth + 1)
data: [
2024-08-10 12:58:21 -05:00
Panes.Console {
id: terminal
visible: false
width: parent.width
height: parent.height
},
2024-08-10 12:58:21 -05:00
Panes.Dashboard {
id: dashboard
visible: false
width: parent.width
height: parent.height
2021-09-05 02:41:48 -05:00
}
]
2021-09-05 02:41:48 -05:00
}
2024-08-11 18:20:03 -05:00
//
// Panel border rectangle
//
Rectangle {
z: 2
2024-10-14 15:10:00 -05:00
implicitWidth: 1
visible: setup.visible
2024-08-11 18:20:03 -05:00
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"]
}
}
//
// Setup panel
//
2024-08-10 12:58:21 -05:00
Panes.Setup {
id: setup
Layout.fillHeight: true
Layout.rightMargin: setupMargin
Layout.minimumWidth: displayedWidth
Layout.maximumWidth: displayedWidth
}
}
}
2024-08-11 18:20:03 -05:00
//
// JSON project drop area
//
Widgets.JSONDropArea {
anchors.fill: parent
enabled: !Cpp_IO_Manager.connected
}
}
2021-09-05 02:41:48 -05:00
}