nheko/resources/qml/ImageButton.qml

27 lines
577 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-09-25 18:09:22 +02:00
property string image: undefined
property color highlightColor: colors.highlight
property color buttonTextColor: colors.buttonText
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
2020-09-25 18:09:22 +02:00
source: "image://colorimage/" + image + "?" + (button.hovered ? highlightColor : buttonTextColor)
}
MouseArea
{
id: mouseArea
anchors.fill: parent
onPressed: mouse.accepted = false
cursorShape: Qt.PointingHandCursor
}
}