mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
25 lines
546 B
QML
25 lines
546 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.1
|
|
import im.nheko 1.0
|
|
|
|
Image {
|
|
id: stateImg
|
|
|
|
property bool encrypted: false
|
|
|
|
width: 16
|
|
height: 16
|
|
source: {
|
|
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!")
|
|
|
|
HoverHandler {
|
|
id: ma
|
|
}
|
|
|
|
}
|