180 lines
5.9 KiB
QML
Raw Normal View History

2021-09-04 21:22:32 -05:00
/*
* 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.Window 2.0
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.12
2021-09-04 23:26:04 -05:00
2021-09-04 21:22:32 -05:00
import Qt.labs.settings 1.0
Window {
id: root
//
// Window options
//
title: qsTr("Donate")
minimumWidth: column.implicitWidth + 4 * app.spacing
maximumWidth: column.implicitWidth + 4 * app.spacing
minimumHeight: column.implicitHeight + 4 * app.spacing
maximumHeight: column.implicitHeight + 4 * app.spacing
flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
//
// Custom properties
//
property alias doNotShowAgain: doNotShowAgainCheck.checked
//
// Enables the "do not show again" checkbox and sets
// the text of the close button to "later".
//
// This is used when the window is shown automatically
// every now and then to the user.
//
function showAutomatically() {
doNotShowAgainCheck.visible = true
closeBt.text = qsTr("Later")
showNormal()
}
//
// Disables the "do not show again" checkbox and sets
// the text of the close button to "close".
//
// This is used when the user opens this dialog from
// the "about" window.
//
function show() {
doNotShowAgainCheck.visible = false
closeBt.text = qsTr("Close")
showNormal()
}
//
// Save settings
//
Settings {
property alias disableDonationsWindow: root.doNotShowAgain
}
//
// Use page item to set application palette
//
Page {
anchors.margins: 0
anchors.fill: parent
2021-09-05 02:41:48 -05:00
palette.text: Cpp_ThemeManager.text
palette.buttonText: Cpp_ThemeManager.text
palette.windowText: Cpp_ThemeManager.text
2021-09-05 17:05:17 -05:00
palette.window: Cpp_ThemeManager.dialogBackground
2021-09-04 21:22:32 -05:00
//
// Window controls
//
ColumnLayout {
id: column
anchors.centerIn: parent
spacing: app.spacing * 2
RowLayout {
Layout.fillWidth: true
Layout.fillHeight: true
spacing: app.spacing * 2
Image {
sourceSize: Qt.size(120, 120)
Layout.alignment: Qt.AlignVCenter
source: "qrc:/images/donate-qr.svg"
}
ColumnLayout {
spacing: 0
Layout.fillWidth: true
Layout.fillHeight: true
Label {
id: title
Layout.fillWidth: true
text: "<h3>" + qsTr("Support the development of %1!").arg(Cpp_AppName) + "</h3>"
}
Label {
Layout.fillWidth: true
Layout.maximumWidth: title.implicitWidth
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
text: qsTr("Serial Studio is free & open-source software supported by volunteers. " +
"Consider donating to support development efforts :)")
}
Item {
height: app.spacing * 2
}
Label {
opacity: 0.8
font.pixelSize: 12
Layout.fillWidth: true
Layout.maximumWidth: title.implicitWidth
wrapMode: Label.WrapAtWordBoundaryOrAnywhere
2021-09-05 15:37:11 -05:00
color: Cpp_ThemeManager.highlightedTextAlternative
2021-09-04 21:22:32 -05:00
text: qsTr("You can also support this project by sharing it, reporting bugs and proposing new features!")
}
}
}
RowLayout {
Layout.fillWidth: true
spacing: app.spacing
CheckBox {
id: doNotShowAgainCheck
Layout.leftMargin: -app.spacing
Layout.alignment: Qt.AlignVCenter
text: qsTr("Don't annoy me again!")
}
Item {
Layout.fillWidth: true
}
Button {
id: closeBt
onClicked: root.close()
Layout.alignment: Qt.AlignVCenter
}
Button {
highlighted: true
text: qsTr("Donate")
Keys.onEnterPressed: clicked()
Keys.onReturnPressed: clicked()
Layout.alignment: Qt.AlignVCenter
Component.onCompleted: forceActiveFocus()
onClicked: Qt.openUrlExternally("https://www.paypal.com/donate?hosted_button_id=XN68J47QJKYDE")
}
}
}
}
}