matrixion/qml/EncryptionIndicator.qml

65 lines
2.1 KiB
QML
Raw Permalink Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-02-14 03:28:28 +03:00
import QtQuick 2.12
import QtQuick.Controls 2.1
import QtQuick.Window 2.15
import im.nheko
2019-09-20 00:02:56 +03:00
Image {
id: stateImg
2020-10-08 22:11:21 +03:00
property bool encrypted: false
2021-11-14 04:23:10 +03:00
property string sourceUrl: {
if (!encrypted)
2022-04-16 03:13:01 +03:00
return "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?";
switch (trust) {
2022-04-16 03:13:01 +03:00
case Crypto.Verified:
return "image://colorimage/:/icons/icons/ui/shield-filled-checkmark.svg?";
2022-04-16 03:13:01 +03:00
case Crypto.TOFU:
return "image://colorimage/:/icons/icons/ui/shield-filled.svg?";
2022-04-16 03:13:01 +03:00
case Crypto.Unverified:
return "image://colorimage/:/icons/icons/ui/shield-filled-exclamation-mark.svg?";
2022-04-16 03:13:01 +03:00
default:
return "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?";
}
2021-11-14 04:23:10 +03:00
}
2022-04-16 03:13:01 +03:00
property int trust: Crypto.Unverified
2021-11-14 04:23:10 +03:00
2022-04-16 03:13:01 +03:00
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:
return qsTr("Encrypted by an unverified device or the key is from an untrusted source like the key backup.");
}
}
ToolTip.visible: ma.hovered
height: 16
source: {
if (encrypted) {
switch (trust) {
case Crypto.Verified:
2021-11-14 04:23:10 +03:00
return sourceUrl + "green";
case Crypto.TOFU:
2022-04-15 06:53:41 +03:00
return sourceUrl + timelineRoot.palette.placeholderText;
default:
2021-11-14 04:23:10 +03:00
return sourceUrl + Nheko.theme.error;
}
} else {
2021-11-14 04:23:10 +03:00
return sourceUrl + Nheko.theme.error;
}
2020-10-08 22:11:21 +03:00
}
2022-04-16 03:13:01 +03:00
sourceSize.height: height * Screen.devicePixelRatio
sourceSize.width: width * Screen.devicePixelRatio
width: 16
2019-09-20 00:02:56 +03:00
2021-02-14 03:28:28 +03:00
HoverHandler {
2020-10-08 22:11:21 +03:00
id: ma
}
}