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
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-09-20 00:02:56 +03:00
|
|
|
|
|
|
|
Rectangle {
|
2020-10-08 22:11:21 +03:00
|
|
|
id: indicator
|
|
|
|
|
|
|
|
property bool encrypted: false
|
|
|
|
|
|
|
|
function getEncryptionImage() {
|
|
|
|
if (encrypted)
|
|
|
|
return "image://colorimage/:/icons/icons/ui/lock.png?" + colors.buttonText;
|
|
|
|
else
|
|
|
|
return "image://colorimage/:/icons/icons/ui/unlock.png?#dd3d3d";
|
|
|
|
}
|
|
|
|
|
|
|
|
function getEncryptionTooltip() {
|
|
|
|
if (encrypted)
|
|
|
|
return qsTr("Encrypted");
|
|
|
|
else
|
|
|
|
return qsTr("This message is not encrypted!");
|
|
|
|
}
|
|
|
|
|
|
|
|
color: "transparent"
|
|
|
|
width: 16
|
|
|
|
height: 16
|
2021-02-14 03:28:28 +03:00
|
|
|
ToolTip.visible: ma.hovered && indicator.visible
|
2020-10-08 22:11:21 +03:00
|
|
|
ToolTip.text: getEncryptionTooltip()
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: stateImg
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
source: getEncryptionImage()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|