4c2e52c2dc
Will fix an issue reported on the forum where a 2.7 dep crept it.
34 lines
523 B
QML
34 lines
523 B
QML
import QtQuick 2.4
|
|
|
|
Item {
|
|
id: root
|
|
signal clicked;
|
|
|
|
|
|
property alias arrow: img.source
|
|
|
|
implicitWidth: img.width + 4
|
|
implicitHeight: img.height + 4
|
|
|
|
Rectangle {
|
|
visible: mouse.containsMouse
|
|
radius: 3
|
|
anchors.fill: parent
|
|
color: "#1b7ad3"
|
|
}
|
|
|
|
Image {
|
|
id: img
|
|
anchors.centerIn: parent
|
|
}
|
|
|
|
MouseArea {
|
|
id: mouse
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
|
|
onClicked: {
|
|
root.clicked();
|
|
}
|
|
}
|
|
}
|