matrixion/resources/qml/components/NhekoTabButton.qml

30 lines
732 B
QML
Raw Permalink Normal View History

2023-02-24 04:55:56 +03:00
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2023-02-24 04:40:14 +03:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import im.nheko 1.0
TabButton {
id: control
contentItem: Text {
text: control.text
font: control.font
opacity: enabled ? 1.0 : 0.3
color: control.down ? palette.highlightedText : palette.text
2023-02-24 04:40:14 +03:00
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}
background: Rectangle {
border.color: control.down ? palette.highlight : Nheko.theme.separator
color: control.checked ? palette.highlight : palette.base
2023-02-24 04:40:14 +03:00
border.width: 1
radius: 2
}
}