2020-10-18 06:50:26 -05:00
/ *
2021-01-05 22:48:49 -05:00
* Copyright ( c ) 2020 - 2021 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 .
* /
import QtQuick 2.12
2021-01-13 14:38:12 -05:00
import QtQuick . Window 2.0
2020-10-18 06:50:26 -05:00
import QtQuick . Layouts 1.12
import QtQuick . Controls 2.12
2021-01-13 14:38:12 -05:00
Window {
2021-01-01 17:25:52 -05:00
id: root
//
// Custom properties
//
readonly property int year: new Date ( ) . getFullYear ( )
//
// Window options
//
2021-02-05 09:34:28 -05:00
title: qsTr ( "About" )
2021-01-13 14:38:12 -05:00
minimumWidth: column . implicitWidth + 4 * app . spacing
maximumWidth: column . implicitWidth + 4 * app . spacing
minimumHeight: column . implicitHeight + 4 * app . spacing
maximumHeight: column . implicitHeight + 4 * app . spacing
2021-01-15 18:02:18 -05:00
flags: Qt . Dialog | Qt . WindowCloseButtonHint | Qt . WindowTitleHint
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.margins: 0
2020-10-18 06:50:26 -05:00
anchors.fill: parent
2021-01-13 14:38:12 -05:00
palette.text: "#fff"
palette.buttonText: "#fff"
palette.windowText: "#fff"
palette.window: app . windowBackgroundColor
//
// 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: 96
height: 96
source: "qrc:/images/icon.png"
Layout.alignment: Qt . AlignVCenter
sourceSize: Qt . size ( width , height )
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
2021-02-04 16:44:54 -05:00
text: Cpp_AppName
2021-01-13 14:38:12 -05:00
font.pixelSize: 28
}
Label {
opacity: 0.5
font.pixelSize: 16
2021-02-05 09:34:28 -05:00
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: 288
wrapMode: Label . WrapAtWordBoundaryOrAnywhere
2021-02-05 09:34:28 -05:00
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: 288
color: palette . highlightedText
wrapMode: Label . WrapAtWordBoundaryOrAnywhere
2021-02-05 09:34:28 -05:00
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-05 09:34:28 -05:00
text: qsTr ( "Contact author" )
2021-01-13 14:38:12 -05:00
onClicked: Qt . openUrlExternally ( "mailto:alex_spataru@outlook.com" )
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
2021-02-05 09:34:28 -05:00
text: qsTr ( "Report bug" )
2021-01-13 14:38:12 -05:00
onClicked: Qt . openUrlExternally ( "https://github.com/Serial-Studio/Serial-Studio/issues" )
}
2020-10-18 06:50:26 -05:00
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
2021-02-05 08:34:47 -05:00
visible: Cpp_UpdaterEnabled
enabled: Cpp_UpdaterEnabled
2021-02-05 09:34:28 -05:00
text: qsTr ( "Check for updates" )
2021-01-13 14:38:12 -05:00
onClicked: {
2021-02-05 08:34:47 -05:00
Cpp_Updater . setNotifyOnFinish ( Cpp_AppUpdaterUrl , true )
Cpp_Updater . checkForUpdates ( Cpp_AppUpdaterUrl )
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-02-01 18:55:15 -05:00
Button {
Layout.fillWidth: true
2021-02-04 16:44:54 -05:00
onClicked: Cpp_CSV_Export . openLogFile ( )
2021-02-05 09:34:28 -05:00
text: qsTr ( "Open log file" )
2021-02-01 18:55:15 -05:00
}
2021-01-13 14:38:12 -05:00
Button {
Layout.fillWidth: true
2021-02-05 09:34:28 -05:00
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-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 ( )
2021-02-05 09:34:28 -05:00
text: qsTr ( "Close" )
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
}
}
}