16 lines
209 B
QML
16 lines
209 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Image {
|
||
|
signal clicked()
|
||
|
|
||
|
MouseArea {
|
||
|
anchors.fill: parent
|
||
|
cursorShape: Qt.PointingHandCursor
|
||
|
|
||
|
onClicked: {
|
||
|
parent.clicked();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|