nheko/resources/qml/ImageButton.qml

31 lines
658 B
QML
Raw Normal View History

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