2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
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
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Controls 2.1
|
2021-12-13 21:09:03 +03:00
|
|
|
import QtQuick.Window 2.15
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-09-20 00:02:56 +03:00
|
|
|
|
2021-03-05 00:59:10 +03:00
|
|
|
Image {
|
|
|
|
id: stateImg
|
2020-10-08 22:11:21 +03:00
|
|
|
|
|
|
|
property bool encrypted: false
|
2021-05-07 13:19:46 +03:00
|
|
|
property int trust: Crypto.Unverified
|
2022-07-16 13:58:17 +03:00
|
|
|
property string unencryptedIcon: ":/icons/icons/ui/shield-filled-cross.svg"
|
|
|
|
property color unencryptedColor: Nheko.theme.error
|
2023-02-26 06:58:18 +03:00
|
|
|
property color unencryptedHoverColor: unencryptedColor
|
|
|
|
property bool hovered: ma.hovered
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2021-11-14 04:23:10 +03:00
|
|
|
property string sourceUrl: {
|
2021-11-17 02:35:35 +03:00
|
|
|
if (!encrypted)
|
2023-02-26 06:58:18 +03:00
|
|
|
return "image://colorimage/" + unencryptedIcon + "?";
|
2021-11-17 02:35:35 +03:00
|
|
|
|
|
|
|
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 04:23:10 +03:00
|
|
|
}
|
|
|
|
|
2021-03-05 00:59:10 +03:00
|
|
|
width: 16
|
|
|
|
height: 16
|
2022-12-05 20:49:42 +03:00
|
|
|
sourceSize.height: height
|
|
|
|
sourceSize.width: width
|
2021-03-05 00:59:10 +03:00
|
|
|
source: {
|
2021-05-07 13:19:46 +03:00
|
|
|
if (encrypted) {
|
|
|
|
switch (trust) {
|
|
|
|
case Crypto.Verified:
|
2021-12-26 21:58:08 +03:00
|
|
|
return sourceUrl + Nheko.theme.green;
|
2021-05-07 13:19:46 +03:00
|
|
|
case Crypto.TOFU:
|
2021-11-14 04:23:10 +03:00
|
|
|
return sourceUrl + Nheko.colors.buttonText;
|
2021-05-07 13:19:46 +03:00
|
|
|
default:
|
2021-11-14 04:23:10 +03:00
|
|
|
return sourceUrl + Nheko.theme.error;
|
2021-05-07 13:19:46 +03:00
|
|
|
}
|
|
|
|
} else {
|
2023-02-26 06:58:18 +03:00
|
|
|
return sourceUrl + (stateImg.hovered ? unencryptedHoverColor : unencryptedColor);
|
2021-05-07 13:19:46 +03:00
|
|
|
}
|
2020-10-08 22:11:21 +03:00
|
|
|
}
|
2023-02-26 06:58:18 +03:00
|
|
|
ToolTip.visible: stateImg.hovered
|
2021-05-07 13:19:46 +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:
|
2021-08-17 04:23:51 +03:00
|
|
|
return qsTr("Encrypted by an unverified device or the key is from an untrusted source like the key backup.");
|
2021-05-07 13:19:46 +03:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|