2019-11-03 04:09:36 +03:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
|
|
|
|
Button {
|
2019-11-08 16:39:45 +03:00
|
|
|
property string image: undefined
|
2019-11-03 04:09:36 +03:00
|
|
|
|
|
|
|
id: button
|
|
|
|
|
|
|
|
flat: true
|
|
|
|
|
|
|
|
// disable background, because we don't want a border on hover
|
|
|
|
background: Item {
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: buttonImg
|
|
|
|
// Workaround, can't get icon.source working for now...
|
|
|
|
anchors.fill: parent
|
2019-11-08 16:39:45 +03:00
|
|
|
source: "image://colorimage/" + image + "?" + (button.hovered ? colors.highlight : colors.buttonText)
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea
|
|
|
|
{
|
|
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
|
|
|
onPressed: mouse.accepted = false
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
}
|
|
|
|
}
|