nheko/resources/qml/ImageButton.qml

25 lines
481 B
QML
Raw Normal View History

import QtQuick 2.3
import QtQuick.Controls 2.3
2020-05-06 03:40:24 +02:00
AbstractButton {
property string image: undefined
2020-05-08 02:53:24 +02:00
width: 16
height: 16
id: button
Image {
id: buttonImg
// Workaround, can't get icon.source working for now...
anchors.fill: parent
source: "image://colorimage/" + image + "?" + (button.hovered ? colors.highlight : colors.buttonText)
}
MouseArea
{
id: mouseArea
anchors.fill: parent
onPressed: mouse.accepted = false
cursorShape: Qt.PointingHandCursor
}
}