mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-15 05:22:53 +08:00
215 lines
6.1 KiB
QML
215 lines
6.1 KiB
QML
/*
|
|
* 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.
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Control {
|
|
id: root
|
|
|
|
//
|
|
// Dummy string to increase width of buttons
|
|
//
|
|
readonly property string _btSpacer: " "
|
|
|
|
//
|
|
// Custom signals
|
|
//
|
|
signal dataClicked()
|
|
signal aboutClicked()
|
|
signal setupClicked()
|
|
signal consoleClicked()
|
|
signal widgetsClicked()
|
|
|
|
//
|
|
// Aliases to button check status
|
|
//
|
|
property alias dataChecked: dataBt.checked
|
|
property alias aboutChecked: aboutBt.checked
|
|
property alias setupChecked: setupBt.checked
|
|
property alias consoleChecked: consoleBt.checked
|
|
property alias widgetsChecked: widgetsBt.checked
|
|
|
|
//
|
|
// Background gradient
|
|
//
|
|
Rectangle {
|
|
border.width: 1
|
|
border.color: palette.midlight
|
|
|
|
gradient: Gradient {
|
|
GradientStop { position: 0; color: "#21373f" }
|
|
GradientStop { position: 1; color: "#11272f" }
|
|
}
|
|
|
|
anchors {
|
|
fill: parent
|
|
topMargin: -border.width
|
|
leftMargin: -border.width * 10
|
|
rightMargin: -border.width * 10
|
|
}
|
|
}
|
|
|
|
//
|
|
// 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
|
|
icon.color: palette.text
|
|
onClicked: root.setupClicked()
|
|
icon.source: "qrc:/icons/settings.svg"
|
|
text: qsTr("Setup") + _btSpacer
|
|
}
|
|
|
|
Button {
|
|
id: consoleBt
|
|
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
Layout.fillHeight: true
|
|
icon.color: palette.text
|
|
onClicked: root.consoleClicked()
|
|
icon.source: "qrc:/icons/code.svg"
|
|
enabled: dataBt.enabled || widgetsBt.enabled
|
|
text: qsTr("Console") + _btSpacer
|
|
}
|
|
|
|
Button {
|
|
id: dataBt
|
|
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
Layout.fillHeight: true
|
|
icon.color: palette.text
|
|
onClicked: root.dataClicked()
|
|
enabled: Cpp_UI_Provider.groupCount > 0
|
|
icon.source: "qrc:/icons/equalizer.svg"
|
|
text: qsTr("Dashboard") + _btSpacer
|
|
|
|
opacity: enabled ? 1 : 0.5
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
|
|
Button {
|
|
id: widgetsBt
|
|
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
Layout.fillHeight: true
|
|
icon.color: palette.text
|
|
onClicked: root.widgetsClicked()
|
|
icon.source: "qrc:/icons/chart.svg"
|
|
enabled: Cpp_UI_WidgetProvider.totalWidgetCount > 0
|
|
text: qsTr("Widgets") + _btSpacer
|
|
|
|
opacity: enabled ? 1 : 0.5
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
|
|
Button {
|
|
id: aboutBt
|
|
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
Layout.fillHeight: true
|
|
icon.color: palette.text
|
|
onClicked: root.aboutClicked()
|
|
icon.source: "qrc:/icons/info.svg"
|
|
text: qsTr("About")
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Button {
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
Layout.fillHeight: true
|
|
icon.color: palette.text
|
|
opacity: enabled ? 1 : 0.5
|
|
enabled: !Cpp_CSV_Player.isOpen
|
|
icon.source: "qrc:/icons/open.svg"
|
|
text: qsTr("Open CSV") + _btSpacer
|
|
|
|
onClicked: {
|
|
if (Cpp_CSV_Export.isOpen)
|
|
Cpp_CSV_Export.openCurrentCsv()
|
|
else
|
|
Cpp_CSV_Player.openFile()
|
|
}
|
|
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
|
|
Button {
|
|
id: connectBt
|
|
|
|
//
|
|
// Button properties
|
|
//
|
|
flat: true
|
|
icon.width: 24
|
|
icon.height: 24
|
|
font.bold: true
|
|
Layout.fillHeight: true
|
|
icon.color: palette.buttonText
|
|
|
|
//
|
|
// Connection-dependent
|
|
//
|
|
checked: Cpp_IO_Manager.connected
|
|
palette.buttonText: checked ? "#d72d60" : "#2eed5c"
|
|
text: (checked ? qsTr("Disconnect") : qsTr("Connect")) + _btSpacer
|
|
icon.source: checked ? "qrc:/icons/disconnect.svg" : "qrc:/icons/connect.svg"
|
|
|
|
//
|
|
// Only enable button if it can be clicked
|
|
//
|
|
opacity: enabled ? 1 : 0.5
|
|
Behavior on opacity {NumberAnimation{}}
|
|
enabled: Cpp_IO_Manager.configurationOk
|
|
|
|
//
|
|
// Connect/disconnect device when button is clicked
|
|
//
|
|
onClicked: Cpp_IO_Manager.toggleConnection()
|
|
}
|
|
}
|
|
}
|