matrixion/resources/qml/ImageButton.qml

45 lines
1.2 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
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
source: image != "" ? ("image://colorimage/" + image + "?" + ((button.hovered && changeColorOnHover) ? highlightColor : 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
}
2021-02-14 03:28:28 +03:00
CursorShape {
2020-10-08 22:11:21 +03:00
id: mouseArea
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Ripple {
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
2023-06-02 02:45:24 +03:00
enabled: button.ripple
}
}