2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-01-12 01:50:26 +03:00
|
|
|
import "./ui"
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.3
|
2019-11-03 04:09:36 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2021-02-14 03:28:28 +03:00
|
|
|
import im.nheko 1.0 // for cursor shape
|
2019-11-03 04:09:36 +03:00
|
|
|
|
2020-05-06 04:40:24 +03:00
|
|
|
AbstractButton {
|
2020-10-08 22:11:21 +03:00
|
|
|
id: button
|
|
|
|
|
2021-01-17 03:55:50 +03:00
|
|
|
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
|
2021-01-16 18:02:55 +03:00
|
|
|
property bool changeColorOnHover: true
|
2022-01-09 02:28:03 +03:00
|
|
|
property bool ripple: true
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2020-11-25 19:38:06 +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
|
2021-01-16 19:52:58 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-01-12 01:50:26 +03:00
|
|
|
Ripple {
|
2022-01-09 02:28:03 +03:00
|
|
|
enabled: button.ripple
|
2021-01-12 01:50:26 +03:00
|
|
|
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
|
|
|
|
}
|
|
|
|
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|