diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 12:40:59 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 20:03:02 +0200 |
commit | 971c28f6563de35b1d66401d6919f86787af0611 (patch) | |
tree | 81ded50db137663acf6837e05e6df74507d346da /gui/qml/DonateDialog.qml | |
parent | 57b7f111c27f57085a2c64c37c5c5a94ee1d0f02 (diff) |
[feat] working donate dialog
Signed-off-by: kali kaneko (leap communications) <kali@leap.se>
Diffstat (limited to 'gui/qml/DonateDialog.qml')
-rw-r--r-- | gui/qml/DonateDialog.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gui/qml/DonateDialog.qml b/gui/qml/DonateDialog.qml new file mode 100644 index 0000000..b7431ab --- /dev/null +++ b/gui/qml/DonateDialog.qml @@ -0,0 +1,27 @@ +import QtQuick 2.0 +import QtQuick.Dialogs 1.2 + +MessageDialog { + standardButtons: StandardButton.No | StandardButton.Yes + title: "Donate" + icon: StandardIcon.Warning + text: getText() + + function getText() { + var _name = ctx ? ctx.appName : "vpn" + var donateTxt = qsTr( + "The %1 service is expensive to run. Because we don't want to store personal information about you, there are no accounts or billing for this service. But if you want the service to continue, donate at least $5 each month.\n\nDo you want to donate now?").arg(_name) + return donateTxt + } + + onAccepted: { + if (backend) { + backend.donateAccepted(true) + } + } + onRejected: { + if (backend) { + backend.donateAccepted(false) + } + } +} |