mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
855 B
38 lines
855 B
import "./ui"
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
|
|
AbstractButton {
|
|
id: button
|
|
|
|
property string image: undefined
|
|
property color highlightColor: colors.highlight
|
|
property color buttonTextColor: colors.buttonText
|
|
|
|
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 ? 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
|
|
}
|
|
|
|
}
|
|
|