nheko/resources/qml/ImageButton.qml

49 lines
1.3 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
import "./ui"
import QtQuick 2.3
import QtQuick.Controls 2.3
2021-02-14 01:28:28 +01:00
import im.nheko 1.0 // for cursor shape
2020-05-06 03:40:24 +02:00
AbstractButton {
2020-10-08 21:11:21 +02:00
id: button
property alias cursor: mouseArea.cursorShape
2020-10-08 21:11:21 +02:00
property string image: undefined
2021-05-13 08:23:56 +02:00
property color highlightColor: Nheko.colors.highlight
property color buttonTextColor: Nheko.colors.buttonText
property bool changeColorOnHover: true
2022-01-09 00:28:03 +01:00
property bool ripple: true
2020-10-08 21:11:21 +02:00
focusPolicy: Qt.NoFocus
2020-10-08 21:11:21 +02:00
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)) : ""
2022-06-28 14:14:23 +02:00
sourceSize.height: button.height
sourceSize.width: button.width
2021-06-13 03:18:31 +02:00
fillMode: Image.PreserveAspectFit
2020-10-08 21:11:21 +02:00
}
2021-02-14 01:28:28 +01:00
CursorShape {
2020-10-08 21:11:21 +02:00
id: mouseArea
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Ripple {
2022-01-09 00:28:03 +01:00
enabled: button.ripple
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
}
}