summary refs log tree commit diff
path: root/resources/qml/EncryptionIndicator.qml
blob: 00fe2ee41ff50d43052221cb8d47586c78df42a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import QtQuick 2.5
import QtQuick.Controls 2.1
import im.nheko 1.0

Rectangle {
	id: indicator
	color: "transparent"
	width: 16
	height: 16

	ToolTip.visible: ma.containsMouse && indicator.visible
	ToolTip.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
	}
}