nosignal-shell/modules/windowinfo/Buttons.qml
2 * r + 2 * t 8a3bb46db6 chore: remove unused import
See this is why I should use PRs .w.
2026-06-08 17:36:03 +10:00

176 lines
5.1 KiB
QML

pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import Caelestia.Config
import qs.components
import qs.services
ColumnLayout {
id: root
required property var client
property bool moveToWsExpanded
anchors.fill: parent
spacing: Tokens.spacing.small
RowLayout {
Layout.topMargin: Tokens.padding.large
Layout.leftMargin: Tokens.padding.large
Layout.rightMargin: Tokens.padding.large
spacing: Tokens.spacing.medium
StyledText {
Layout.fillWidth: true
text: qsTr("Move to workspace")
elide: Text.ElideRight
}
StyledRect {
color: Colours.palette.m3primary
radius: Tokens.rounding.medium
implicitWidth: moveToWsIcon.implicitWidth + Tokens.padding.small
implicitHeight: moveToWsIcon.implicitHeight + Tokens.padding.extraSmall
StateLayer {
color: Colours.palette.m3onPrimary
onClicked: root.moveToWsExpanded = !root.moveToWsExpanded
}
MaterialIcon {
id: moveToWsIcon
anchors.centerIn: parent
animate: true
text: root.moveToWsExpanded ? "expand_more" : "keyboard_arrow_right"
color: Colours.palette.m3onPrimary
fontStyle: Tokens.font.icon.large
}
}
}
GridLayout {
id: wsGrid
Layout.fillWidth: true
Layout.leftMargin: Tokens.padding.large
Layout.rightMargin: Tokens.padding.large
Layout.bottomMargin: root.moveToWsExpanded ? Tokens.spacing.medium : 0
Layout.preferredHeight: root.moveToWsExpanded ? implicitHeight : 0
opacity: root.moveToWsExpanded ? 1 : 0
clip: true
rowSpacing: Tokens.spacing.small
columnSpacing: Tokens.spacing.small
columns: 5
Behavior on Layout.bottomMargin {
Anim {
type: Anim.DefaultEffects
}
}
Behavior on Layout.preferredHeight {
Anim {
type: Anim.DefaultEffects
}
}
Behavior on opacity {
Anim {
type: Anim.DefaultEffects
}
}
Repeater {
model: 10
Button {
required property int index
readonly property int wsId: Math.floor((Hypr.activeWsId - 1) / 10) * 10 + index + 1
readonly property bool isCurrent: root.client?.workspace.id === wsId
onClicked: {
Hypr.dispatch(`movetoworkspace ${wsId},address:0x${root.client?.address}`);
}
color: isCurrent ? Colours.tPalette.m3surfaceContainerHighest : Colours.palette.m3tertiaryContainer
onColor: isCurrent ? Colours.palette.m3onSurface : Colours.palette.m3onTertiaryContainer
text: wsId
disabled: isCurrent
}
}
}
RowLayout {
Layout.fillWidth: true
Layout.leftMargin: Tokens.padding.large
Layout.rightMargin: Tokens.padding.large
Layout.bottomMargin: Tokens.padding.large
spacing: root.client?.lastIpcObject.floating ? Tokens.spacing.medium : Tokens.spacing.small
Button {
color: Colours.palette.m3secondaryContainer
onColor: Colours.palette.m3onSecondaryContainer
text: root.client?.lastIpcObject.floating ? qsTr("Tile") : qsTr("Float")
onClicked: Hypr.dispatch(`togglefloating address:0x${root.client?.address}`)
}
Loader {
asynchronous: true
active: root.client?.lastIpcObject.floating ?? false
Layout.fillWidth: active
Layout.leftMargin: active ? 0 : -parent.spacing
Layout.rightMargin: active ? 0 : -parent.spacing
sourceComponent: Button {
color: Colours.palette.m3secondaryContainer
onColor: Colours.palette.m3onSecondaryContainer
text: root.client?.lastIpcObject.pinned ? qsTr("Unpin") : qsTr("Pin")
onClicked: Hypr.dispatch(`pin address:0x${root.client?.address}`)
}
}
Button {
color: Colours.palette.m3errorContainer
onColor: Colours.palette.m3onErrorContainer
text: qsTr("Kill")
onClicked: Hypr.dispatch(`killwindow address:0x${root.client?.address}`)
}
}
component Button: StyledRect {
property color onColor: Colours.palette.m3onSurface
property alias disabled: stateLayer.disabled
property alias text: label.text
signal clicked
radius: Tokens.rounding.medium
Layout.fillWidth: true
implicitHeight: label.implicitHeight + Tokens.padding.small
StateLayer {
id: stateLayer
color: parent.onColor
onClicked: parent.clicked()
}
StyledText {
id: label
anchors.centerIn: parent
animate: true
color: parent.onColor
font: Tokens.font.body.medium
}
}
}