182 lines
5.1 KiB
QML
Raw Normal View History

2020-10-18 06:50:26 -05:00
/*
2023-01-22 23:51:35 -06:00
* Copyright (c) 2020-2023 Alex Spataru <https://github.com/alex-spataru>
2020-10-18 06:50:26 -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.
*/
2022-05-02 04:31:32 -05:00
import QtQuick
import QtQuick.Window
import QtQuick.Layouts
import QtQuick.Controls
2020-10-18 06:50:26 -05:00
2024-08-10 12:58:21 -05:00
Window {
id: root
//
// Custom properties
//
readonly property int year: new Date().getFullYear()
//
// Window options
//
title: qsTr("About")
width: minimumWidth
height: minimumHeight
x: (Screen.desktopAvailableWidth - width) / 2
y: (Screen.desktopAvailableHeight - height) / 2
2024-08-11 18:20:03 -05:00
minimumWidth: column.implicitWidth + 32
maximumWidth: column.implicitWidth + 32
minimumHeight: column.implicitHeight + 32
maximumHeight: column.implicitHeight + 32
Component.onCompleted: {
root.flags = Qt.Dialog |
Qt.WindowTitleHint |
Qt.WindowStaysOnTopHint |
Qt.WindowCloseButtonHint
}
//
// Use page item to set application palette
//
Page {
2024-08-10 12:58:21 -05:00
anchors.fill: parent
2024-08-11 18:20:03 -05:00
palette.base: Cpp_ThemeManager.colors["base"]
palette.text: Cpp_ThemeManager.colors["text"]
palette.button: Cpp_ThemeManager.colors["button"]
palette.window: Cpp_ThemeManager.colors["window"]
palette.windowText: Cpp_ThemeManager.colors["text"]
palette.buttonText: Cpp_ThemeManager.colors["button_text"]
palette.highlight: Cpp_ThemeManager.colors["switch_highlight"]
palette.placeholderText: Cpp_ThemeManager.colors["placeholder_text"]
palette.highlightedText: Cpp_ThemeManager.colors["highlighted_text"]
2020-10-18 06:50:26 -05:00
2020-12-26 01:30:18 -06:00
//
// Window controls
2020-12-26 01:30:18 -06:00
//
ColumnLayout {
id: column
2024-08-11 18:20:03 -05:00
spacing: 4
anchors.centerIn: parent
RowLayout {
2024-08-11 18:20:03 -05:00
spacing: 8
Layout.fillWidth: true
Image {
width: 128
height: 128
Layout.alignment: Qt.AlignVCenter
sourceSize: Qt.size(width, height)
source: {
if (Screen.pixelDensity >= 2)
return "qrc:/rcc/images/icon@2x.png"
return "qrc:/rcc/images/icon@1x.png"
}
}
2021-01-13 14:38:12 -05:00
ColumnLayout {
2024-08-11 18:20:03 -05:00
spacing: 8
Layout.fillWidth: true
Layout.alignment: Qt.AlignVCenter
Label {
text: Cpp_AppName
2024-08-10 12:58:21 -05:00
font: Cpp_Misc_CommonFonts.customUiFont(28, true)
}
Label {
opacity: 0.5
text: qsTr("Version %1").arg(Cpp_AppVersion)
2024-08-10 12:58:21 -05:00
font: Cpp_Misc_CommonFonts.customUiFont(16, false)
}
2020-10-18 06:50:26 -05:00
}
}
Label {
opacity: 0.8
Layout.fillWidth: true
Layout.maximumWidth: 320
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: 320
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
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 {
2024-08-11 18:20:03 -05:00
height: 8
}
Button {
Layout.fillWidth: true
text: qsTr("Website")
onClicked: Qt.openUrlExternally("https://serial-studio.github.io/")
}
Button {
Layout.fillWidth: true
text: qsTr("Check for Updates")
onClicked: app.checkForUpdates()
}
Button {
Layout.fillWidth: true
2024-08-11 18:20:03 -05:00
text: qsTr("Make a Donation")
onClicked: donateDialog.show()
}
Button {
Layout.fillWidth: true
2024-08-11 18:20:03 -05:00
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")
2024-08-11 18:20:03 -05:00
onClicked: app.showAcknowledgements()
}
Item {
2024-08-11 18:20:03 -05:00
height: 8
}
Button {
2024-08-11 18:20:03 -05:00
text: qsTr("Close")
Layout.fillWidth: true
onClicked: root.close()
}
2020-10-18 06:50:26 -05:00
}
}
2020-10-18 06:50:26 -05:00
}