chore: initial commit
This commit is contained in:
commit
67c7ccd66b
11102 changed files with 455009 additions and 0 deletions
|
@ -0,0 +1,139 @@
|
|||
/*
|
||||
* Copyright 2016 David Edmundson <davidedmundson@kde.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Library General Public License as
|
||||
* published by the Free Software Foundation; either version 2 or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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 Library General Public
|
||||
* License along with this program; if not, write to the
|
||||
* Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
import QtQuick 2.8
|
||||
import QtQuick.Layouts 1.2
|
||||
import QtQuick.Controls 2.4
|
||||
import QtQuick.Controls.Styles 1.4
|
||||
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||||
|
||||
import "../components"
|
||||
|
||||
SessionManagementScreen {
|
||||
|
||||
property Item mainPasswordBox: passwordBox
|
||||
property bool lockScreenUiVisible: false
|
||||
|
||||
//the y position that should be ensured visible when the on screen keyboard is visible
|
||||
property int visibleBoundary: mapFromItem(loginButton, 0, 0).y
|
||||
onHeightChanged: visibleBoundary = mapFromItem(loginButton, 0, 0).y + loginButton.height + units.smallSpacing
|
||||
/*
|
||||
* Login has been requested with the following username and password
|
||||
* If username field is visible, it will be taken from that, otherwise from the "name" property of the currentIndex
|
||||
*/
|
||||
signal loginRequest(string password)
|
||||
|
||||
function startLogin() {
|
||||
var password = passwordBox.text
|
||||
|
||||
//this is partly because it looks nicer
|
||||
//but more importantly it works round a Qt bug that can trigger if the app is closed with a TextField focused
|
||||
//See https://bugreports.qt.io/browse/QTBUG-55460
|
||||
loginButton.forceActiveFocus();
|
||||
loginRequest(password);
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
Layout.fillWidth: true
|
||||
|
||||
TextField {
|
||||
id: passwordBox
|
||||
font.pointSize: theme.defaultFont.pointSize + 1
|
||||
Layout.fillWidth: true
|
||||
placeholderText: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Password")
|
||||
focus: true
|
||||
echoMode: TextInput.Password
|
||||
inputMethodHints: Qt.ImhHiddenText | Qt.ImhSensitiveData | Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
|
||||
enabled: !authenticator.graceLocked
|
||||
|
||||
placeholderTextColor: "#C3C7D1"
|
||||
palette.text: "#C3C7D1"
|
||||
|
||||
background: Rectangle {
|
||||
color: "#272834"
|
||||
opacity: 0.9
|
||||
radius: parent.width / 2
|
||||
height: 30
|
||||
anchors.fill: parent
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
|
||||
onAccepted: {
|
||||
if (lockScreenUiVisible) {
|
||||
startLogin();
|
||||
}
|
||||
}
|
||||
|
||||
//if empty and left or right is pressed change selection in user switch
|
||||
//this cannot be in keys.onLeftPressed as then it doesn't reach the password box
|
||||
Keys.onPressed: {
|
||||
if (event.key == Qt.Key_Left && !text) {
|
||||
userList.decrementCurrentIndex();
|
||||
event.accepted = true
|
||||
}
|
||||
if (event.key == Qt.Key_Right && !text) {
|
||||
userList.incrementCurrentIndex();
|
||||
event.accepted = true
|
||||
}
|
||||
}
|
||||
|
||||
Connections {
|
||||
target: root
|
||||
onClearPassword: {
|
||||
passwordBox.forceActiveFocus()
|
||||
passwordBox.selectAll()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Button {
|
||||
id: loginButton
|
||||
Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Unlock")
|
||||
implicitHeight: passwordBox.height - units.smallSpacing * 0.5 // otherwise it comes out taller than the password field
|
||||
text: ">"
|
||||
Layout.leftMargin: 30
|
||||
|
||||
contentItem: Text {
|
||||
text: loginButton.text
|
||||
font: loginButton.font
|
||||
opacity: enabled ? 1.0 : 0.3
|
||||
color: "#ffffff"
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
elide: Text.ElideRight
|
||||
}
|
||||
|
||||
background: Rectangle {
|
||||
id: buttonBackground
|
||||
width: 30
|
||||
height: 40
|
||||
radius: width / 2
|
||||
rotation: -90
|
||||
anchors.centerIn: parent
|
||||
color: "#9B79CC"
|
||||
|
||||
}
|
||||
|
||||
onClicked: startLogin()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue