nheko/resources/qml/EncryptionIndicator.qml

42 lines
857 B
QML
Raw Normal View History

2021-02-14 01:28:28 +01:00
import QtQuick 2.12
import QtQuick.Controls 2.1
import im.nheko 1.0
2019-09-19 23:02:56 +02:00
Rectangle {
2020-10-08 21:11:21 +02: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 01:28:28 +01:00
ToolTip.visible: ma.hovered && indicator.visible
2020-10-08 21:11:21 +02:00
ToolTip.text: getEncryptionTooltip()
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
}
Image {
id: stateImg
anchors.fill: parent
source: getEncryptionImage()
}
}