2019-09-20 00:02:56 +03:00
|
|
|
import QtQuick 2.5
|
2019-10-06 12:08:13 +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 {
|
|
|
|
id: indicator
|
|
|
|
color: "transparent"
|
|
|
|
width: 16
|
|
|
|
height: 16
|
2020-02-02 02:27:28 +03:00
|
|
|
|
|
|
|
ToolTip.visible: ma.containsMouse && indicator.visible
|
|
|
|
ToolTip.text: qsTr("Encrypted")
|
|
|
|
|
2019-09-20 00:02:56 +03:00
|
|
|
MouseArea{
|
|
|
|
id: ma
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: stateImg
|
|
|
|
anchors.fill: parent
|
2019-11-08 16:39:45 +03:00
|
|
|
source: "image://colorimage/:/icons/icons/ui/lock.png?"+colors.buttonText
|
2019-09-20 00:02:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|