summaryrefslogtreecommitdiff
path: root/modules/lock/Center.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-10 19:37:34 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-10 19:37:34 +1000
commit31cc51b6e97b70002c1a6cff0cce6739d5a9cfeb (patch)
treeda0e748baed2a8e0f0a5931e17a7429cd979dd80 /modules/lock/Center.qml
parentlock: input field + separate pam (diff)
downloadcaelestia-shell-31cc51b6e97b70002c1a6cff0cce6739d5a9cfeb.tar.gz
caelestia-shell-31cc51b6e97b70002c1a6cff0cce6739d5a9cfeb.tar.bz2
caelestia-shell-31cc51b6e97b70002c1a6cff0cce6739d5a9cfeb.zip
lock: add placeholder + manual focus
Diffstat (limited to 'modules/lock/Center.qml')
-rw-r--r--modules/lock/Center.qml110
1 files changed, 71 insertions, 39 deletions
diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml
index 9610da2..bcc5130 100644
--- a/modules/lock/Center.qml
+++ b/modules/lock/Center.qml
@@ -110,6 +110,15 @@ ColumnLayout {
Keys.onPressed: event => root.lock.pam.handleKey(event)
+ StateLayer {
+ hoverEnabled: false
+ cursorShape: Qt.IBeamCursor
+
+ function onClicked(): void {
+ parent.forceActiveFocus();
+ }
+ }
+
RowLayout {
id: input
@@ -122,58 +131,81 @@ ColumnLayout {
text: "lock"
}
- ListView {
- id: passwordList
-
+ Item {
Layout.fillWidth: true
- implicitHeight: Appearance.font.size.normal
+ Layout.fillHeight: true
- orientation: Qt.Horizontal
- clip: true
- spacing: Appearance.spacing.small / 2
- highlightRangeMode: ListView.StrictlyEnforceRange
- preferredHighlightBegin: 0
- preferredHighlightEnd: count ? width - implicitHeight * 2 : 0
- currentIndex: count - 1
+ ListView {
+ id: passwordList
- model: ScriptModel {
- values: root.lock.pam.buffer
- }
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.verticalCenter: parent.verticalCenter
+ implicitHeight: Appearance.font.size.normal
- delegate: StyledRect {
- implicitWidth: implicitHeight
- implicitHeight: passwordList.implicitHeight
+ orientation: Qt.Horizontal
+ clip: true
+ interactive: false
+ spacing: Appearance.spacing.small / 2
+ highlightRangeMode: ListView.StrictlyEnforceRange
+ preferredHighlightBegin: 0
+ preferredHighlightEnd: count ? width - implicitHeight * 2 : 0
+ currentIndex: count - 1
- color: Colours.palette.m3onSurface
- radius: Appearance.rounding.small / 2
- }
+ model: ScriptModel {
+ values: root.lock.pam.buffer
+ }
+
+ delegate: StyledRect {
+ implicitWidth: implicitHeight
+ implicitHeight: passwordList.implicitHeight
- add: Transition {
- Anim {
- property: "scale"
- from: 0
- to: 1
- duration: Appearance.anim.durations.expressiveFastSpatial
- easing.bezierCurve: Appearance.anim.curves.expressiveFastSpatial
+ color: Colours.palette.m3onSurface
+ radius: Appearance.rounding.small / 2
+ }
+
+ add: Transition {
+ Anim {
+ property: "scale"
+ from: 0
+ to: 1
+ duration: Appearance.anim.durations.expressiveFastSpatial
+ easing.bezierCurve: Appearance.anim.curves.expressiveFastSpatial
+ }
}
- }
- remove: Transition {
- Anim {
- property: "scale"
- to: 0.5
+ remove: Transition {
+ Anim {
+ property: "scale"
+ to: 0.5
+ }
+ Anim {
+ property: "opacity"
+ to: 0
+ }
}
- Anim {
- property: "opacity"
- to: 0
+
+ highlightFollowsCurrentItem: false
+ highlight: Item {
+ x: passwordList.currentItem?.x ?? 0
+
+ Behavior on x {
+ Anim {}
+ }
}
}
- highlightFollowsCurrentItem: false
- highlight: Item {
- x: passwordList.currentItem?.x ?? 0
+ StyledText {
+ anchors.centerIn: parent
+
+ text: qsTr("Enter your password")
+ color: Colours.palette.m3outline
+ font.pointSize: Appearance.font.size.normal
+ font.family: Appearance.font.family.mono
+
+ opacity: root.lock.pam.buffer ? 0 : 1
- Behavior on x {
+ Behavior on opacity {
Anim {}
}
}