summaryrefslogtreecommitdiff
path: root/modules/lock/Content.qml
blob: 15e1425d2c5eb7b3bc58e94bf802ddc4ba2b5eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
pragma ComponentBehavior: Bound

import qs.components
import qs.components.images
import qs.services
import qs.config
import qs.utils
import QtQuick
import QtQuick.Layouts

GridLayout {
    id: root

    required property var lock

    anchors.fill: parent
    anchors.margins: Appearance.padding.large

    rowSpacing: Appearance.spacing.large
    columnSpacing: Appearance.spacing.large

    rows: 2
    columns: 3

    StyledRect {
        Layout.row: 0
        Layout.column: 0
        Layout.fillWidth: true
        Layout.fillHeight: true

        radius: Appearance.rounding.small
        color: Colours.tPalette.m3surfaceContainer
    }

    StyledRect {
        Layout.row: 1
        Layout.column: 0
        Layout.fillWidth: true
        Layout.fillHeight: true

        radius: Appearance.rounding.small
        color: Colours.tPalette.m3surfaceContainer
    }

    StyledClippingRect {
        Layout.row: 0
        Layout.column: 1
        Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter

        implicitWidth: Config.lock.sizes.faceSize
        implicitHeight: Config.lock.sizes.faceSize

        radius: Appearance.rounding.large
        color: Colours.tPalette.m3surfaceContainer

        MaterialIcon {
            anchors.centerIn: parent

            text: "person"
            fill: 1
            grade: 200
            font.pointSize: Math.floor(Config.lock.sizes.faceSize / 2)
        }

        CachingImage {
            id: pfp

            anchors.fill: parent
            path: `${Paths.stringify(Paths.home)}/.face`
        }
    }

    Input {
        Layout.row: 1
        Layout.column: 1

        lock: root.lock
    }

    StyledRect {
        Layout.row: 0
        Layout.column: 2
        Layout.fillWidth: true
        Layout.fillHeight: true

        radius: Appearance.rounding.small
        color: Colours.tPalette.m3surfaceContainer
    }

    StyledRect {
        Layout.row: 1
        Layout.column: 2
        Layout.fillWidth: true
        Layout.fillHeight: true

        radius: Appearance.rounding.small
        color: Colours.tPalette.m3surfaceContainer
    }

    component Anim: NumberAnimation {
        duration: Appearance.anim.durations.normal
        easing.type: Easing.BezierSpline
        easing.bezierCurve: Appearance.anim.curves.standard
    }
}