2023-02-21 23:48:49 +01:00
// SPDX-FileCopyrightText: Nheko Contributors
2021-03-07 05:57:56 +01:00
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2023-10-26 01:51:45 +02:00
import QtQuick
import QtQuick . Controls
import QtQuick . Window
import im . nheko
2019-09-19 23:02:56 +02:00
2021-03-04 22:59:10 +01:00
Image {
id: stateImg
2020-10-08 21:11:21 +02:00
property bool encrypted: false
2023-02-26 04:58:18 +01:00
property bool hovered: ma . hovered
2021-11-14 02:23:10 +01:00
property string sourceUrl: {
2021-11-17 00:35:35 +01:00
if ( ! encrypted )
2023-06-02 01:45:24 +02:00
return "image://colorimage/" + unencryptedIcon + "?" ;
2021-11-17 00:35:35 +01:00
switch ( trust ) {
2023-06-02 01:45:24 +02:00
case Crypto.Verified:
2021-11-17 00:35:35 +01:00
return "image://colorimage/:/icons/icons/ui/shield-filled-checkmark.svg?" ;
2023-06-02 01:45:24 +02:00
case Crypto.TOFU:
2021-11-17 00:35:35 +01:00
return "image://colorimage/:/icons/icons/ui/shield-filled.svg?" ;
2023-06-02 01:45:24 +02:00
case Crypto.Unverified:
2023-11-19 20:09:38 +01:00
case Crypto.MessageUnverified:
2021-11-17 00:35:35 +01:00
return "image://colorimage/:/icons/icons/ui/shield-filled-exclamation-mark.svg?" ;
2023-06-02 01:45:24 +02:00
default:
2021-11-17 00:35:35 +01:00
return "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?" ;
}
2021-11-14 02:23:10 +01:00
}
2023-06-02 01:45:24 +02: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 02:23:10 +01:00
2023-06-02 01:45:24 +02: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." ) ;
2023-11-19 20:09:38 +01:00
case Crypto.MessageUnverified:
return qsTr ( "Key is from an untrusted source like forwarded from another user or the online key backup. For this reason we can't verify who sent the message." ) ;
2023-06-02 01:45:24 +02:00
default:
2023-11-19 20:09:38 +01:00
return qsTr ( "Encrypted by an unverified device." ) ;
2023-06-02 01:45:24 +02:00
}
}
ToolTip.visible: stateImg . hovered
2021-03-04 22:59:10 +01:00
height: 16
source: {
2021-05-07 12:19:46 +02:00
if ( encrypted ) {
switch ( trust ) {
case Crypto.Verified:
2021-12-26 19:58:08 +01:00
return sourceUrl + Nheko . theme . green ;
2021-05-07 12:19:46 +02:00
case Crypto.TOFU:
2023-06-02 01:29:05 +02:00
return sourceUrl + palette . buttonText ;
2021-05-07 12:19:46 +02:00
default:
2021-11-14 02:23:10 +01:00
return sourceUrl + Nheko . theme . error ;
2021-05-07 12:19:46 +02:00
}
} else {
2023-02-26 04:58:18 +01:00
return sourceUrl + ( stateImg . hovered ? unencryptedHoverColor : unencryptedColor ) ;
2021-05-07 12:19:46 +02:00
}
2020-10-08 21:11:21 +02:00
}
2023-06-02 01:45:24 +02:00
width: 16
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
2023-06-02 01:45:24 +02:00
}
2020-10-08 21:11:21 +02:00
}