nheko/resources/qml/EncryptionIndicator.qml

42 lines
765 B
QML
Raw Normal View History

2019-09-19 23:02:56 +02:00
import QtQuick 2.5
import QtQuick.Controls 2.1
import im.nheko 1.0
2019-09-19 23:02:56 +02:00
Rectangle {
property bool encrypted: false
2019-09-19 23:02:56 +02:00
id: indicator
color: "transparent"
width: 16
height: 16
ToolTip.visible: ma.containsMouse && indicator.visible
ToolTip.text: getEncryptionTooltip()
2019-09-19 23:02:56 +02:00
MouseArea{
id: ma
anchors.fill: parent
hoverEnabled: true
}
Image {
id: stateImg
anchors.fill: parent
source: getEncryptionImage()
}
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!")
2019-09-19 23:02:56 +02:00
}
}