forked from Shinonome/dots-hyprland
41 lines
1.3 KiB
QML
41 lines
1.3 KiB
QML
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell.Io
|
|
|
|
TabButton {
|
|
id: button
|
|
property string buttonText
|
|
property string buttonIcon
|
|
property bool selected: false
|
|
height: buttonBackground.height
|
|
|
|
background: Rectangle {
|
|
id: buttonBackground
|
|
radius: Appearance.rounding.small
|
|
implicitHeight: 37
|
|
color: (button.down ? Appearance.colors.colLayer1Active : button.hovered ? Appearance.colors.colLayer1Hover : Appearance.transparentize(Appearance.colors.colLayer1Hover, 1))
|
|
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Appearance.animation.elementDecel.duration
|
|
easing.type: Appearance.animation.elementDecel.type
|
|
}
|
|
}
|
|
}
|
|
contentItem: StyledText {
|
|
id: buttonTextWidget
|
|
anchors.centerIn: buttonBackground
|
|
horizontalAlignment: Text.AlignHCenter
|
|
text: buttonText
|
|
color: selected ? Appearance.m3colors.m3primary : Appearance.colors.colOnLayer1
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Appearance.animation.elementDecel.duration
|
|
easing.type: Appearance.animation.elementDecel.type
|
|
}
|
|
}
|
|
}
|
|
} |