nheko/resources/qml/ImageButton.qml

46 lines
1.3 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2023-06-19 21:33:10 +02:00
pragma ComponentBehavior: Bound
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 color buttonTextColor: palette.buttonText
property bool changeColorOnHover: true
2023-06-02 01:45:24 +02:00
property alias cursor: mouseArea.cursorShape
property color highlightColor: palette.highlight
property string image: undefined
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
height: 16
2023-06-02 01:45:24 +02:00
width: 16
2020-10-08 21:11:21 +02:00
Image {
id: buttonImg
// Workaround, can't get icon.source working for now...
anchors.fill: parent
2023-06-02 01:45:24 +02:00
fillMode: Image.PreserveAspectFit
2023-06-19 21:24:31 +02:00
source: button.image != "" ? ("image://colorimage/" + button.image + "?" + ((button.hovered && button.changeColorOnHover) ? button.highlightColor : button.buttonTextColor)) : ""
2022-06-28 14:14:23 +02:00
sourceSize.height: button.height
sourceSize.width: button.width
2020-10-08 21:11:21 +02:00
}
2023-06-19 01:38:40 +02:00
NhekoCursorShape {
2020-10-08 21:11:21 +02:00
id: mouseArea
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Ripple {
2023-06-19 21:24:31 +02:00
color: Qt.rgba(button.buttonTextColor.r, button.buttonTextColor.g, button.buttonTextColor.b, 0.5)
2023-06-02 01:45:24 +02:00
enabled: button.ripple
}
}