nheko/resources/qml/EncryptionIndicator.qml

73 lines
2.2 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-02-14 01:28:28 +01:00
import QtQuick 2.12
import QtQuick.Controls 2.1
import QtQuick.Window 2.15
import im.nheko 1.0
2019-09-19 23:02:56 +02:00
Image {
id: stateImg
2020-10-08 21:11:21 +02:00
property bool encrypted: false
property int trust: Crypto.Unverified
property string unencryptedIcon: ":/icons/icons/ui/shield-filled-cross.svg"
property color unencryptedColor: Nheko.theme.error
2020-10-08 21:11:21 +02:00
2021-11-14 02:23:10 +01:00
property string sourceUrl: {
if (!encrypted)
return "image://colorimage/"+unencryptedIcon+"?";
switch (trust) {
case Crypto.Verified:
return "image://colorimage/:/icons/icons/ui/shield-filled-checkmark.svg?";
case Crypto.TOFU:
return "image://colorimage/:/icons/icons/ui/shield-filled.svg?";
case Crypto.Unverified:
return "image://colorimage/:/icons/icons/ui/shield-filled-exclamation-mark.svg?";
default:
return "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?";
}
2021-11-14 02:23:10 +01:00
}
width: 16
height: 16
sourceSize.height: height * Screen.devicePixelRatio
sourceSize.width: width * Screen.devicePixelRatio
source: {
if (encrypted) {
switch (trust) {
case Crypto.Verified:
2021-11-14 02:23:10 +01:00
return sourceUrl + "green";
case Crypto.TOFU:
2021-11-14 02:23:10 +01:00
return sourceUrl + Nheko.colors.buttonText;
default:
2021-11-14 02:23:10 +01:00
return sourceUrl + Nheko.theme.error;
}
} else {
return sourceUrl + unencryptedColor;
}
2020-10-08 21:11:21 +02:00
}
ToolTip.visible: ma.hovered
ToolTip.text: {
if (!encrypted)
return qsTr("This message is not encrypted!");
switch (trust) {
case Crypto.Verified:
return qsTr("Encrypted by a verified device");
case Crypto.TOFU:
return qsTr("Encrypted by an unverified device, but you have trusted that user so far.");
default:
2021-08-17 03:23:51 +02:00
return qsTr("Encrypted by an unverified device or the key is from an untrusted source like the key backup.");
}
}
2019-09-19 23:02:56 +02:00
2021-02-14 01:28:28 +01:00
HoverHandler {
2020-10-08 21:11:21 +02:00
id: ma
}
}