mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
89 lines
2.7 KiB
QML
89 lines
2.7 KiB
QML
import ".."
|
|
import qs.services
|
|
import qs.config
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
StyledRect {
|
|
id: root
|
|
|
|
enum Type {
|
|
Filled,
|
|
Tonal,
|
|
Text
|
|
}
|
|
|
|
property alias icon: iconLabel.text
|
|
property alias text: label.text
|
|
property bool checked
|
|
property bool toggle
|
|
property real horizontalPadding: Appearance.padding.normal
|
|
property real verticalPadding: Appearance.padding.smaller
|
|
property alias font: label.font
|
|
property int type: IconTextButton.Filled
|
|
|
|
property alias stateLayer: stateLayer
|
|
property alias iconLabel: iconLabel
|
|
property alias label: label
|
|
|
|
property bool internalChecked
|
|
property color activeColour: type === IconTextButton.Filled ? Colours.palette.m3primary : Colours.palette.m3secondary
|
|
property color inactiveColour: type === IconTextButton.Filled ? Colours.tPalette.m3surfaceContainer : Colours.palette.m3secondaryContainer
|
|
property color activeOnColour: type === IconTextButton.Filled ? Colours.palette.m3onPrimary : Colours.palette.m3onSecondary
|
|
property color inactiveOnColour: type === IconTextButton.Filled ? Colours.palette.m3onSurface : Colours.palette.m3onSecondaryContainer
|
|
|
|
signal clicked
|
|
|
|
onCheckedChanged: internalChecked = checked
|
|
|
|
radius: internalChecked ? Appearance.rounding.small : implicitHeight / 2 * Math.min(1, Appearance.rounding.scale)
|
|
color: type === IconTextButton.Text ? "transparent" : internalChecked ? activeColour : inactiveColour
|
|
|
|
implicitWidth: row.implicitWidth + horizontalPadding * 2
|
|
implicitHeight: row.implicitHeight + verticalPadding * 2
|
|
|
|
StateLayer {
|
|
id: stateLayer
|
|
|
|
color: root.internalChecked ? root.activeOnColour : root.inactiveOnColour
|
|
|
|
function onClicked(): void {
|
|
if (root.toggle)
|
|
root.internalChecked = !root.internalChecked;
|
|
root.clicked();
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
id: row
|
|
|
|
anchors.centerIn: parent
|
|
spacing: Appearance.spacing.small
|
|
|
|
MaterialIcon {
|
|
id: iconLabel
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.topMargin: Math.round(fontInfo.pointSize * 0.0575)
|
|
color: root.internalChecked ? root.activeOnColour : root.inactiveOnColour
|
|
fill: root.internalChecked ? 1 : 0
|
|
|
|
Behavior on fill {
|
|
Anim {}
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
id: label
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.topMargin: -Math.round(iconLabel.fontInfo.pointSize * 0.0575)
|
|
color: root.internalChecked ? root.activeOnColour : root.inactiveOnColour
|
|
}
|
|
}
|
|
|
|
Behavior on radius {
|
|
Anim {}
|
|
}
|
|
}
|