mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
8f7ca298bc
Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de>
39 lines
921 B
QML
39 lines
921 B
QML
import "./ui"
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
|
|
AbstractButton {
|
|
id: button
|
|
|
|
property string image: undefined
|
|
property color highlightColor: colors.highlight
|
|
property color buttonTextColor: colors.buttonText
|
|
property bool changeColorOnHover: true
|
|
|
|
focusPolicy: Qt.NoFocus
|
|
width: 16
|
|
height: 16
|
|
|
|
Image {
|
|
id: buttonImg
|
|
|
|
// Workaround, can't get icon.source working for now...
|
|
anchors.fill: parent
|
|
source: "image://colorimage/" + image + "?" + ((button.hovered && changeColorOnHover) ? highlightColor : buttonTextColor)
|
|
}
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
|
onPressed: mouse.accepted = false
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Ripple {
|
|
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
|
|
clip: false
|
|
rippleTarget: button
|
|
}
|
|
|
|
}
|