mirror of
https://github.com/muesli/telephant
synced 2024-11-26 13:20:18 +00:00
17 lines
298 B
QML
17 lines
298 B
QML
|
import QtQuick 2.5
|
||
|
import QtQuick.Controls 2.1
|
||
|
|
||
|
Label {
|
||
|
id: label
|
||
|
property var onClicked: function () {}
|
||
|
|
||
|
MouseArea {
|
||
|
id: mouseArea
|
||
|
anchors.fill: parent
|
||
|
hoverEnabled: true
|
||
|
cursorShape: Qt.PointingHandCursor
|
||
|
|
||
|
onClicked: parent.onClicked()
|
||
|
}
|
||
|
}
|