matrixion/qml/components/TextButton.qml

41 lines
1.2 KiB
QML
Raw Normal View History

2021-12-13 02:43:05 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-12-13 02:43:05 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import "../ui"
import QtQuick 2.15
import QtQuick.Controls 2.15
import im.nheko // for cursor shape
2021-12-13 02:43:05 +03:00
AbstractButton {
id: button
2022-04-16 03:13:01 +03:00
property color buttonTextColor: timelineRoot.palette.placeholderText
2021-12-13 02:43:05 +03:00
property alias cursor: mouseArea.cursorShape
2022-04-11 05:18:16 +03:00
property color highlightColor: timelineRoot.palette.highlight
2021-12-13 02:43:05 +03:00
focusPolicy: Qt.NoFocus
height: buttonText.implicitHeight
implicitHeight: buttonText.implicitHeight
2022-04-16 03:13:01 +03:00
implicitWidth: buttonText.implicitWidth
width: buttonText.implicitWidth
2021-12-13 02:43:05 +03:00
Label {
id: buttonText
anchors.centerIn: parent
color: button.hovered ? highlightColor : buttonTextColor
font: button.font
horizontalAlignment: Text.AlignHCenter
2022-04-16 03:13:01 +03:00
padding: 0
text: button.text
verticalAlignment: Text.AlignVCenter
2021-12-13 02:43:05 +03:00
}
NhekoCursorShape {
2021-12-13 02:43:05 +03:00
id: mouseArea
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Ripple {
color: Qt.rgba(buttonTextColor.r, buttonTextColor.g, buttonTextColor.b, 0.5)
}
}