mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
445 B
27 lines
445 B
import QtQuick 2.5
|
|
import QtQuick.Controls 2.1
|
|
import im.nheko 1.0
|
|
|
|
Rectangle {
|
|
id: indicator
|
|
color: "transparent"
|
|
width: 16
|
|
height: 16
|
|
ToolTip {
|
|
palette: colors
|
|
visible: ma.containsMouse && indicator.visible
|
|
text: qsTr("Encrypted")
|
|
}
|
|
MouseArea{
|
|
id: ma
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
}
|
|
|
|
Image {
|
|
id: stateImg
|
|
anchors.fill: parent
|
|
source: "image://colorimage/:/icons/icons/ui/lock.png?"+colors.buttonText
|
|
}
|
|
}
|
|
|
|
|