Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
EncryptionIndicator.qml 427 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.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
	}
}