/* * 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.Window 2.12 import QtQuick.Layouts 1.12 import QtQuick.Controls 2.12 import "../Widgets" as Widgets Control { id: root // // Reference to parent window to be able to drag it with the toolbar // property Window window // // Dummy string to increase width of buttons // readonly property string _btSpacer: " " // // Custom signals // signal setupClicked() signal consoleClicked() signal dashboardClicked() signal jsonEditorClicked() // // Aliases to button check status // property alias setupChecked: setupBt.checked property alias consoleChecked: consoleBt.checked property alias dashboardChecked: dashboardBt.checked // // Connections with mac touchbar // Connections { target: Cpp_Misc_MacExtras function onSetupClicked() { setupBt.clicked() Cpp_Misc_MacExtras.setSetupChecked(setupBt.checked) } function onConsoleClicked() { consoleBt.clicked() Cpp_Misc_MacExtras.setConsoleChecked(consoleBt.checked) } function onDashboardClicked() { dashboardBt.clicked() Cpp_Misc_MacExtras.setDashboardChecked(dashboardBt.checked) } } // // Toolbar shadow // Widgets.Shadow { anchors.fill: bg } // // Background gradient + border // Rectangle { id: bg anchors.fill: parent gradient: Gradient { GradientStop { position: 0; color: Cpp_ThemeManager.toolbarGradient1 } GradientStop { position: 1; color: Cpp_ThemeManager.toolbarGradient2 } } Rectangle { border.width: 1 anchors.fill: parent color: "transparent" visible: Cpp_ThemeManager.titlebarSeparator border.color: Qt.darker(Cpp_ThemeManager.toolbarGradient2, 1.5) } Rectangle { height: 1 visible: Cpp_ThemeManager.titlebarSeparator color: Qt.darker(Cpp_ThemeManager.toolbarGradient1, 1.5) anchors { left: parent.left right: parent.right bottom: parent.bottom } } } // // Toolbar icons // RowLayout { spacing: app.spacing anchors.fill: parent anchors.margins: app.spacing Button { id: setupBt flat: true icon.width: 24 icon.height: 24 Layout.fillHeight: true onClicked: root.setupClicked() text: qsTr("Setup") + _btSpacer icon.source: "qrc:/icons/settings.svg" icon.color: Cpp_ThemeManager.brightText palette.buttonText: Cpp_ThemeManager.brightText palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 onCheckedChanged: Cpp_Misc_MacExtras.setSetupChecked(checked) } Button { id: consoleBt flat: true icon.width: 24 icon.height: 24 Layout.fillHeight: true enabled: dashboardBt.enabled onClicked: root.consoleClicked() icon.source: "qrc:/icons/code.svg" text: qsTr("Console") + _btSpacer icon.color: Cpp_ThemeManager.brightText palette.buttonText: Cpp_ThemeManager.brightText palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 onCheckedChanged: Cpp_Misc_MacExtras.setConsoleChecked(checked) } Button { id: dashboardBt flat: true icon.width: 24 icon.height: 24 Layout.fillHeight: true opacity: enabled ? 1 : 0.5 onClicked: root.dashboardClicked() enabled: Cpp_UI_Dashboard.available text: qsTr("Dashboard") + _btSpacer icon.source: "qrc:/icons/dashboard.svg" icon.color: Cpp_ThemeManager.brightText palette.buttonText: Cpp_ThemeManager.brightText palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 onCheckedChanged: Cpp_Misc_MacExtras.setDashboardChecked(checked) onEnabledChanged: Cpp_Misc_MacExtras.setDashboardEnabled(enabled) } // // Window drag handler // Item { height: parent.height Layout.fillWidth: true DragHandler { grabPermissions: TapHandler.CanTakeOverFromAnything onActiveChanged: { if (active) window.startSystemMove() } } } Button { flat: true icon.width: 24 icon.height: 24 Layout.fillHeight: true icon.source: "qrc:/icons/json.svg" onClicked: root.jsonEditorClicked() text: qsTr("JSON Editor") + _btSpacer icon.color: Cpp_ThemeManager.brightText palette.buttonText: Cpp_ThemeManager.brightText palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 } Button { flat: true icon.width: 24 icon.height: 24 Layout.fillHeight: true opacity: enabled ? 1 : 0.5 enabled: !Cpp_CSV_Player.isOpen icon.source: "qrc:/icons/open.svg" text: qsTr("Open CSV") + _btSpacer icon.color: Cpp_ThemeManager.brightText palette.buttonText: Cpp_ThemeManager.brightText palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 onClicked: { if (Cpp_CSV_Export.isOpen) Cpp_CSV_Export.openCurrentCsv() else Cpp_CSV_Player.openFile() } } Button { id: connectBt // // Button properties // flat: true icon.width: 24 icon.height: 24 font.bold: true Layout.fillHeight: true // // Connection-dependent // checked: Cpp_IO_Manager.connected text: (checked ? qsTr("Disconnect") : qsTr("Connect")) + _btSpacer icon.source: checked ? "qrc:/icons/disconnect.svg" : "qrc:/icons/connect.svg" palette.button: Cpp_ThemeManager.toolbarGradient1 palette.window: Cpp_ThemeManager.toolbarGradient1 icon.color: checked ? Cpp_ThemeManager.connectButtonChecked : Cpp_ThemeManager.connectButtonUnchecked palette.buttonText: checked ? Cpp_ThemeManager.connectButtonChecked : Cpp_ThemeManager.connectButtonUnchecked // // Only enable button if it can be clicked // opacity: enabled ? 1 : 0.5 enabled: Cpp_IO_Manager.configurationOk // // Connect/disconnect device when button is clicked // onClicked: Cpp_IO_Manager.toggleConnection() } } }