This file is indexed.

/usr/share/unity8/Components/PinLockscreen.qml is in unity8-common 8.12+16.04.20160401-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*
 * Copyright (C) 2013 Canonical, Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.ListItems 1.3
import "../Components"

FocusScope {
    id: root
    focus: true

    property string infoText
    property string retryText
    property string errorText
    property int minPinLength: -1
    property int maxPinLength: -1
    property bool showCancelButton: true
    property color foregroundColor: "#000000"

    readonly property string passphrase: pinentryField.text

    signal entered(string passphrase)
    signal cancel()

    property bool entryEnabled: true

    function clear(showAnimation) {
        pinentryField.text = "";
        if (showAnimation) {
            pinentryField.incorrectOverride = true;
            wrongPasswordAnimation.start();
        }
    }

    Keys.onPressed: {
        if (pinentryField.text.length == root.maxPinLength)
            return;

        if (event.key === Qt.Key_Backspace) {
            pinentryField.backspace();
        } else if (event.key === Qt.Key_Delete || event.key === Qt.Key_Escape) {
            closeButton.clicked()
        } else if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
            confirmButton.clicked()
        } else {
            var digit = parseInt(event.text);
            if (!isNaN(digit) && typeof digit == "number") {
                pinentryField.appendNumber(digit);
            }
        }
    }

    Column {
        anchors {
            left: parent.left;
            right: parent.right;
            verticalCenter: parent.verticalCenter;
            verticalCenterOffset: Math.max(-units.gu(10), -(root.height - height) / 2) + units.gu(4)
        }
        spacing: units.gu(4)

        Column {
            id: shakeContainer
            anchors.horizontalCenter: parent.horizontalCenter
            width: parent.width
            spacing: units.gu(1)

            Label {
                id: infoField
                objectName: "infoTextLabel"
                fontSize: "large"
                color: root.foregroundColor
                anchors.horizontalCenter: parent.horizontalCenter
                text: root.infoText
            }

            Item {
                id: pinContainer
                anchors { left: parent.left; right: parent.right; margins: units.gu(2) }
                height: units.gu(4)

                Row {
                    id: pinentryField
                    objectName: "pinentryField"
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.verticalCenter: parent.verticalCenter
                    spacing: Math.max(0, Math.min(units.gu(3), (parent.width / root.maxPinLength) - units.gu(3)))

                    property string text
                    property bool incorrectOverride: false

                    Repeater {
                        model: pinentryField.text.length
                        delegate: Rectangle {
                            color: root.foregroundColor
                            width: Math.min(units.gu(2), (pinContainer.width - pinContainer.height*2 ) / (root.maxPinLength >= 0 ? root.maxPinLength : 16))
                            height: width
                            radius: width / 2
                        }
                    }

                    function appendNumber(number) {
                        if (incorrectOverride) {
                            incorrectOverride = false;
                        }

                        pinentryField.text = pinentryField.text + number

                        if (root.minPinLength > 0 && root.maxPinLength > 0
                                && root.minPinLength == root.maxPinLength && pinentryField.text.length == root.minPinLength) {
                            root.entered(pinentryField.text)
                        }
                    }

                    function backspace() {
                        pinentryField.text = pinentryField.text.substring(0, pinentryField.text.length-1)
                    }
                }
                Label {
                    id: wrongNoticeLabel
                    objectName: "wrongNoticeLabel"
                    fontSize: "x-large"
                    color: root.foregroundColor
                    anchors.horizontalCenter: parent.horizontalCenter
                    horizontalAlignment: Text.AlignHCenter
                    text: root.errorText
                    visible: pinentryField.incorrectOverride
                    scale: Math.min(1, parent.width / width)
                }

                AbstractButton {
                    objectName: "backspaceIcon"
                    anchors { right: parent.right; top: parent.top; bottom: parent.bottom }
                    width: height
                    enabled: root.entryEnabled

                    Icon {
                        anchors.fill: parent
                        name: "erase"
                        color: root.foregroundColor
                    }

                    opacity: (pinentryField.text.length > 0 && !pinentryField.incorrectOverride) ? 1 : 0

                    Behavior on opacity {
                        UbuntuNumberAnimation {}
                    }

                    onClicked: pinentryField.backspace()
                }
            }

            Label {
                objectName: "retryLabel"
                fontSize: "x-small"
                color: root.foregroundColor
                anchors.horizontalCenter: parent.horizontalCenter
                text: root.retryText || " "
            }
        }

        Grid {
            id: numbersGrid
            objectName: "numbersGrid"
            anchors { horizontalCenter: parent.horizontalCenter }
            columns: 3

            property int maxWidth: Math.min(units.gu(50), root.width - units.gu(8))
            property int buttonWidth: maxWidth / 3
            property int buttonHeight: buttonWidth * 2 / 3

            Repeater {
                model: 9

                PinPadButton {
                    objectName: "pinPadButton" + text
                    text: index + 1
                    height: numbersGrid.buttonHeight
                    width: numbersGrid.buttonWidth
                    foregroundColor: root.foregroundColor
                    enabled: root.entryEnabled && (root.maxPinLength == -1 ||
                             pinentryField.text.length < root.maxPinLength ||
                             pinentryField.incorrectOverride)

                    onClicked: {
                        pinentryField.appendNumber(index + 1)
                    }
                }
            }
            Item {
                height: numbersGrid.buttonHeight
                width: numbersGrid.buttonWidth
            }
            PinPadButton {
                text: "0"
                height: numbersGrid.buttonHeight
                width: numbersGrid.buttonWidth
                foregroundColor: root.foregroundColor
                enabled: root.entryEnabled && (root.maxPinLength == -1 ||
                         pinentryField.text.length < root.maxPinLength ||
                         pinentryField.incorrectOverride)

                onClicked: {
                    pinentryField.appendNumber(0)
                }
            }
            Item {
                height: numbersGrid.buttonHeight
                width: numbersGrid.buttonWidth
            }
            PinPadButton {
                id: closeButton
                iconName: "close"
                height: units.gu(5) // visual spec has this row a little closer in
                width: numbersGrid.buttonWidth
                foregroundColor: root.foregroundColor
                onClicked: root.cancel()
                visible: root.showCancelButton
            }
            Item {
                height: units.gu(5)
                width: numbersGrid.buttonWidth
            }
            PinPadButton {
                id: confirmButton
                iconName: "tick"
                objectName: "confirmButton"
                height: units.gu(5)
                width: numbersGrid.buttonWidth
                foregroundColor: root.foregroundColor
                enabled: root.enabled && pinentryField.text.length >= root.minPinLength
                visible: root.minPinLength == -1 || root.minPinLength !== root.maxPinLength

                onClicked: root.entered(pinentryField.text)
            }
        }
        WrongPasswordAnimation {
            id: wrongPasswordAnimation
            objectName: "wrongPasswordAnimation"
            target: shakeContainer
        }
    }
}