matrixion/resources/qml/EncryptionIndicator.qml

69 lines
2.1 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2023-10-26 02:51:45 +03:00
import QtQuick
import QtQuick.Controls
import QtQuick.Window
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
property bool hovered: ma.hovered
2021-11-14 04:23:10 +03:00
property string sourceUrl: {
if (!encrypted)
2023-06-02 02:45:24 +03:00
return "image://colorimage/" + unencryptedIcon + "?";
switch (trust) {
2023-06-02 02:45:24 +03:00
case Crypto.Verified:
return "image://colorimage/:/icons/icons/ui/shield-filled-checkmark.svg?";
2023-06-02 02:45:24 +03:00
case Crypto.TOFU:
return "image://colorimage/:/icons/icons/ui/shield-filled.svg?";
2023-06-02 02:45:24 +03:00
case Crypto.Unverified:
return "image://colorimage/:/icons/icons/ui/shield-filled-exclamation-mark.svg?";
2023-06-02 02:45:24 +03:00
default:
return "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?";
}
2021-11-14 04:23:10 +03:00
}
2023-06-02 02:45:24 +03:00
property int trust: Crypto.Unverified
property color unencryptedColor: Nheko.theme.error
property color unencryptedHoverColor: unencryptedColor
property string unencryptedIcon: ":/icons/icons/ui/shield-filled-cross.svg"
2021-11-14 04:23:10 +03:00
2023-06-02 02:45:24 +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: stateImg.hovered
height: 16
source: {
if (encrypted) {
switch (trust) {
case Crypto.Verified:
return sourceUrl + Nheko.theme.green;
case Crypto.TOFU:
return sourceUrl + palette.buttonText;
default:
2021-11-14 04:23:10 +03:00
return sourceUrl + Nheko.theme.error;
}
} else {
return sourceUrl + (stateImg.hovered ? unencryptedHoverColor : unencryptedColor);
}
2020-10-08 22:11:21 +03:00
}
2023-06-02 02:45:24 +03:00
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
2023-06-02 02:45:24 +03:00
}
2020-10-08 22:11:21 +03:00
}