nheko/resources/qml/ImageButton.qml

26 lines
505 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-22 18:07:36 +02:00
property string image
property string src
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-22 18:07:36 +02:00
source: src ? src : ("image://colorimage/" + image + "?" + (button.hovered ? colors.highlight : colors.buttonText))
}
MouseArea
{
id: mouseArea
anchors.fill: parent
onPressed: mouse.accepted = false
cursorShape: Qt.PointingHandCursor
}
}