225 lines
7.2 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
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
2021-09-08 01:15:35 -05:00
x: (Screen.desktopAvailableWidth - width) / 2
y: (Screen.desktopAvailableHeight - height) / 2
extraFlags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
2021-11-09 15:01:30 -06:00
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
2020-10-18 06:50:26 -05:00
2020-12-26 01:30:18 -06:00
//
2021-01-13 14:38:12 -05:00
// Use page item to set application palette
2020-12-26 01:30:18 -06:00
//
2021-01-13 14:38:12 -05:00
Page {
anchors {
fill: parent
2021-11-09 15:01:30 -06:00
margins: root.shadowMargin
topMargin: titlebar.height + root.shadowMargin
}
2023-09-26 14:18:37 -05:00
palette.alternateBase: Cpp_ThemeManager.base
palette.base: Cpp_ThemeManager.base
palette.brightText: Cpp_ThemeManager.brightText
palette.button: Cpp_ThemeManager.button
palette.buttonText: Cpp_ThemeManager.buttonText
palette.highlight: Cpp_ThemeManager.highlight
palette.highlightedText: Cpp_ThemeManager.highlightedText
palette.link: Cpp_ThemeManager.link
palette.placeholderText: Cpp_ThemeManager.placeholderText
2021-09-05 02:41:48 -05:00
palette.text: Cpp_ThemeManager.text
2023-09-26 14:18:37 -05:00
palette.toolTipBase: Cpp_ThemeManager.tooltipBase
palette.toolTipText: Cpp_ThemeManager.tooltipText
palette.window: Cpp_ThemeManager.window
palette.windowText: Cpp_ThemeManager.windowText
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
2022-01-02 12:34:38 -05:00
MouseArea {
anchors.fill: parent
onPressedChanged: {
if (pressed)
root.startSystemMove()
}
}
}
2021-01-13 14:38:12 -05:00
//
// Window controls
//
ColumnLayout {
id: column
2020-10-18 09:50:51 -05:00
spacing: app.spacing
2021-01-13 14:38:12 -05:00
anchors.centerIn: parent
2020-10-18 09:50:51 -05:00
2021-01-13 14:38:12 -05:00
RowLayout {
2020-10-18 09:50:51 -05:00
spacing: app.spacing
Layout.fillWidth: true
2021-01-13 14:38:12 -05:00
Image {
width: 128
height: 128
2021-01-13 14:38:12 -05:00
Layout.alignment: Qt.AlignVCenter
sourceSize: Qt.size(width, height)
2022-01-06 01:59:40 -05:00
source: {
if (Screen.pixelDensity >= 2)
return "qrc:/images/icon@2x.png"
return "qrc:/images/icon@1x.png"
}
2020-10-18 09:50:51 -05:00
}
2021-01-13 14:38:12 -05:00
ColumnLayout {
spacing: app.spacing
Layout.fillWidth: true
Layout.alignment: Qt.AlignVCenter
Label {
font.bold: true
text: Cpp_AppName
2021-01-13 14:38:12 -05:00
font.pixelSize: 28
}
Label {
opacity: 0.5
font.pixelSize: 16
text: qsTr("Version %1").arg(Cpp_AppVersion)
2021-01-13 14:38:12 -05:00
}
2020-10-18 09:50:51 -05:00
}
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Label {
opacity: 0.8
Layout.fillWidth: true
Layout.maximumWidth: 320
2021-01-13 14:38:12 -05:00
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
text: qsTr("Copyright © 2020-%1 %2, released under the MIT License.").arg(root.year).arg(Cpp_AppOrganization)
2021-01-13 14:38:12 -05:00
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Label {
opacity: 0.8
font.pixelSize: 12
Layout.fillWidth: true
Layout.maximumWidth: 320
2021-01-13 14:38:12 -05:00
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
2021-09-05 15:37:11 -05:00
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.")
2021-01-13 14:38:12 -05:00
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Item {
height: app.spacing
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
2021-02-17 14:36:39 -05:00
text: qsTr("Website")
2021-10-25 12:05:50 -05:00
onClicked: Qt.openUrlExternally("https://serial-studio.github.io/")
2021-01-13 14:38:12 -05:00
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
2021-09-04 21:22:32 -05:00
text: qsTr("Make a donation")
onClicked: app.donateDialog.show()
2020-10-18 09:50:51 -05:00
}
2020-10-18 06:50:26 -05:00
2021-02-01 18:55:15 -05:00
Button {
Layout.fillWidth: true
2021-02-17 14:36:39 -05:00
text: qsTr("Report bug")
onClicked: Qt.openUrlExternally("https://github.com/Serial-Studio/Serial-Studio/issues")
2021-02-01 18:55:15 -05:00
}
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
text: qsTr("Documentation")
2021-01-13 14:38:12 -05:00
onClicked: Qt.openUrlExternally("https://github.com/Serial-Studio/Serial-Studio/wiki")
}
2020-10-18 06:50:26 -05:00
2021-02-25 18:56:57 -05:00
Button {
Layout.fillWidth: true
text: qsTr("Acknowledgements")
onClicked: acknowledgementsDialog.show()
2021-02-25 18:56:57 -05:00
}
2021-01-13 14:38:12 -05:00
Item {
height: app.spacing
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
onClicked: root.close()
text: qsTr("Close")
2021-01-13 14:38:12 -05:00
}
2020-10-18 06:50:26 -05:00
}
}
}