Alisa/native/ImageButton.qml

24 lines
407 B
QML
Raw Normal View History

2024-07-08 16:08:21 +02:00
import QtQuick
Image {
id: root
signal clicked()
width: buttonMouseArea.containsPress ? 49.5 : 50
height: buttonMouseArea.containsPress ? 49.5 : 50
opacity: buttonMouseArea.containsMouse ? 0.75 : 1
mipmap: true
MouseArea {
id: buttonMouseArea
anchors.fill: parent
hoverEnabled: true
onClicked: {
root.clicked()
}
}
}