|
|
|
@ -2,8 +2,9 @@ import QtQuick 2.3 |
|
|
|
|
import QtQuick.Controls 2.3 |
|
|
|
|
|
|
|
|
|
AbstractButton { |
|
|
|
|
property string image |
|
|
|
|
property string src |
|
|
|
|
property string image: undefined |
|
|
|
|
property color highlightColor: colors.highlight |
|
|
|
|
property color buttonTextColor: colors.buttonText |
|
|
|
|
width: 16 |
|
|
|
|
height: 16 |
|
|
|
|
id: button |
|
|
|
@ -12,7 +13,7 @@ AbstractButton { |
|
|
|
|
id: buttonImg |
|
|
|
|
// Workaround, can't get icon.source working for now... |
|
|
|
|
anchors.fill: parent |
|
|
|
|
source: src ? src : ("image://colorimage/" + image + "?" + (button.hovered ? colors.highlight : colors.buttonText)) |
|
|
|
|
source: "image://colorimage/" + image + "?" + (button.hovered ? highlightColor : buttonTextColor) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
MouseArea |
|
|
|
|