matrixion/resources/qml/ImageButton.qml

48 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 alias cursor: mouseArea.cursorShape
2020-10-08 22:11:21 +03:00
property string image: undefined
2021-05-13 09:23:56 +03:00
property color highlightColor: Nheko.colors.highlight
property color buttonTextColor: Nheko.colors.buttonText
property bool changeColorOnHover: true
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
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 15:14:23 +03:00
sourceSize.height: button.height
sourceSize.width: button.width
2021-06-13 04:18:31 +03:00
fillMode: Image.PreserveAspectFit
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 {
2022-01-09 02:28:03 +03:00
enabled: button.ripple
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
}
}