matrixion/resources/qml/EncryptionIndicator.qml

26 lines
546 B
QML
Raw Normal View History

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