mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-15 05:22:53 +08:00
209 lines
6.5 KiB
QML
209 lines
6.5 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
|
|
import QtQuick.Window
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
import "../FramelessWindow" as FramelessWindow
|
|
|
|
FramelessWindow.CustomWindow {
|
|
id: root
|
|
|
|
//
|
|
// Custom properties
|
|
//
|
|
readonly property int year: new Date().getFullYear()
|
|
|
|
//
|
|
// Window options
|
|
//
|
|
title: qsTr("About")
|
|
width: minimumWidth
|
|
height: minimumHeight
|
|
extraFlags: Qt.WindowStaysOnTopHint
|
|
x: (Screen.desktopAvailableWidth - width) / 2
|
|
y: (Screen.desktopAvailableHeight - height) / 2
|
|
minimumWidth: column.implicitWidth + 4 * app.spacing + 2 * root.shadowMargin
|
|
maximumWidth: column.implicitWidth + 4 * app.spacing + 2 * root.shadowMargin
|
|
minimumHeight: column.implicitHeight + 4 * app.spacing + titlebar.height + 2 * root.shadowMargin
|
|
maximumHeight: column.implicitHeight + 4 * app.spacing + titlebar.height + 2 * root.shadowMargin
|
|
|
|
//
|
|
// Titlebar options
|
|
//
|
|
minimizeEnabled: false
|
|
maximizeEnabled: false
|
|
titlebarText: Cpp_ThemeManager.text
|
|
titlebarColor: Cpp_ThemeManager.dialogBackground
|
|
backgroundColor: Cpp_ThemeManager.dialogBackground
|
|
|
|
//
|
|
// Use page item to set application palette
|
|
//
|
|
Page {
|
|
anchors {
|
|
fill: parent
|
|
margins: root.shadowMargin
|
|
topMargin: titlebar.height + root.shadowMargin
|
|
}
|
|
|
|
palette.text: Cpp_ThemeManager.text
|
|
palette.buttonText: Cpp_ThemeManager.text
|
|
palette.windowText: Cpp_ThemeManager.text
|
|
palette.window: Cpp_ThemeManager.dialogBackground
|
|
background: Rectangle {
|
|
radius: root.radius
|
|
color: root.backgroundColor
|
|
|
|
Rectangle {
|
|
height: root.radius
|
|
color: root.backgroundColor
|
|
|
|
anchors {
|
|
top: parent.top
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Window drag handler
|
|
//
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
DragHandler {
|
|
grabPermissions: TapHandler.CanTakeOverFromAnything
|
|
onActiveChanged: {
|
|
if (active)
|
|
root.startSystemMove()
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Window controls
|
|
//
|
|
ColumnLayout {
|
|
id: column
|
|
spacing: app.spacing
|
|
anchors.centerIn: parent
|
|
|
|
RowLayout {
|
|
spacing: app.spacing
|
|
Layout.fillWidth: true
|
|
|
|
Image {
|
|
width: 96
|
|
height: 96
|
|
source: "qrc:/images/icon.svg"
|
|
Layout.alignment: Qt.AlignVCenter
|
|
sourceSize: Qt.size(width, height)
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: app.spacing
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
Label {
|
|
font.bold: true
|
|
text: Cpp_AppName
|
|
font.pixelSize: 28
|
|
}
|
|
|
|
Label {
|
|
opacity: 0.5
|
|
font.pixelSize: 16
|
|
text: qsTr("Version %1").arg(Cpp_AppVersion)
|
|
}
|
|
}
|
|
}
|
|
|
|
Label {
|
|
opacity: 0.8
|
|
Layout.fillWidth: true
|
|
Layout.maximumWidth: 288
|
|
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
|
|
text: qsTr("Copyright © 2020-%1 %2, released under the MIT License.").arg(root.year).arg(Cpp_AppOrganization)
|
|
}
|
|
|
|
Label {
|
|
opacity: 0.8
|
|
font.pixelSize: 12
|
|
Layout.fillWidth: true
|
|
Layout.maximumWidth: 288
|
|
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
|
|
color: Cpp_ThemeManager.highlightedTextAlternative
|
|
text: qsTr("The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.")
|
|
}
|
|
|
|
Item {
|
|
height: app.spacing
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Website")
|
|
onClicked: Qt.openUrlExternally("https://serial-studio.github.io/")
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Make a donation")
|
|
onClicked: app.donateDialog.show()
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Report bug")
|
|
onClicked: Qt.openUrlExternally("https://github.com/Serial-Studio/Serial-Studio/issues")
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Documentation")
|
|
onClicked: Qt.openUrlExternally("https://github.com/Serial-Studio/Serial-Studio/wiki")
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Acknowledgements")
|
|
onClicked: acknowledgementsDialog.show()
|
|
}
|
|
|
|
Item {
|
|
height: app.spacing
|
|
}
|
|
|
|
Button {
|
|
Layout.fillWidth: true
|
|
onClicked: root.close()
|
|
text: qsTr("Close")
|
|
}
|
|
}
|
|
}
|
|
}
|