matrixion/resources/qml/ImageButton.qml

46 lines
1.3 KiB
QML
Raw Permalink Normal View History

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