2019-11-03 04:09:36 +03:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
|
2020-05-06 04:40:24 +03:00
|
|
|
AbstractButton {
|
2020-09-22 19:07:36 +03:00
|
|
|
property string image
|
|
|
|
property string src
|
2020-05-08 03:53:24 +03:00
|
|
|
width: 16
|
|
|
|
height: 16
|
2019-11-03 04:09:36 +03:00
|
|
|
id: button
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: buttonImg
|
|
|
|
// Workaround, can't get icon.source working for now...
|
|
|
|
anchors.fill: parent
|
2020-09-22 19:07:36 +03:00
|
|
|
source: src ? src : ("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
|
|
|
|
}
|
|
|
|
}
|