mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
47 lines
1.2 KiB
QML
47 lines
1.2 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import "./ui"
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import im.nheko 1.0 // for cursor shape
|
|
|
|
AbstractButton {
|
|
id: button
|
|
|
|
property alias cursor: mouseArea.cursorShape
|
|
property string image: undefined
|
|
property color highlightColor: Nheko.colors.highlight
|
|
property color buttonTextColor: Nheko.colors.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)) : ""
|
|
sourceSize.height: button.height
|
|
sourceSize.width: button.width
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
|
|
CursorShape {
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Ripple {
|
|
enabled: button.ripple
|
|
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
|
|
}
|
|
|
|
}
|