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.
46 lines
1.2 KiB
46 lines
1.2 KiB
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import "./ui"
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import im.nheko
|
|
|
|
AbstractButton {
|
|
id: button
|
|
|
|
property alias cursor: mouseArea.cursorShape
|
|
property string image: undefined
|
|
property color highlightColor: timelineRoot.palette.highlight
|
|
property color buttonTextColor: timelineRoot.palette.buttonText
|
|
property bool changeColorOnHover: true
|
|
property bool ripple: 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 != "" ? ("image://colorimage/" + image + "?" + ((button.hovered && changeColorOnHover) ? highlightColor : buttonTextColor)) : ""
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
|
|
NhekoCursorShape {
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Ripple {
|
|
enabled: button.ripple
|
|
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
|
|
}
|
|
|
|
}
|
|
|