You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.2 KiB
109 lines
3.2 KiB
/******************************************************************** |
|
KSld - the KDE Screenlocker Daemon |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 2011 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
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; either version 2 of the License, 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 General Public License |
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
*********************************************************************/ |
|
import QtQuick 2.0 |
|
import org.kde.plasma.core 2.0 as PlasmaCore |
|
|
|
import org.kde.kquickcontrolsaddons 2.0 |
|
import org.kde.kscreenlocker 1.0 |
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents |
|
|
|
Item { |
|
id: lockScreen |
|
signal unlockRequested() |
|
property alias capsLockOn: unlockUI.capsLockOn |
|
property bool locked: false |
|
|
|
// if there's no image, have a near black background |
|
Rectangle { |
|
width: parent.width |
|
height: parent.height |
|
color: "#111" |
|
} |
|
|
|
Image { |
|
id: background |
|
anchors.fill: parent |
|
source: theme.wallpaperPathForSize(parent.width, parent.height) |
|
smooth: true |
|
} |
|
|
|
PlasmaCore.FrameSvgItem { |
|
id: dialog |
|
visible: lockScreen.locked |
|
anchors.centerIn: parent |
|
imagePath: "widgets/background" |
|
width: mainStack.currentPage.implicitWidth + margins.left + margins.right |
|
height: mainStack.currentPage.implicitHeight + margins.top + margins.bottom |
|
|
|
Behavior on height { |
|
enabled: mainStack.currentPage != null |
|
NumberAnimation { |
|
duration: 250 |
|
} |
|
} |
|
Behavior on width { |
|
enabled: mainStack.currentPage != null |
|
NumberAnimation { |
|
duration: 250 |
|
} |
|
} |
|
PlasmaComponents.PageStack { |
|
id: mainStack |
|
clip: true |
|
anchors { |
|
fill: parent |
|
leftMargin: dialog.margins.left |
|
topMargin: dialog.margins.top |
|
rightMargin: dialog.margins.right |
|
bottomMargin: dialog.margins.bottom |
|
} |
|
initialPage: unlockUI |
|
} |
|
} |
|
|
|
Greeter { |
|
id: unlockUI |
|
|
|
switchUserEnabled: userSessionsUI.switchUserSupported |
|
|
|
Connections { |
|
onAccepted: lockScreen.unlockRequested() |
|
onSwitchUserClicked: { mainStack.push(userSessionsUI); userSessionsUI.forceActiveFocus(); } |
|
} |
|
} |
|
|
|
function returnToLogin() { |
|
mainStack.pop(); |
|
unlockUI.resetFocus(); |
|
} |
|
|
|
// TODO: loader |
|
SessionSwitching { |
|
id: userSessionsUI |
|
visible: false |
|
|
|
Connections { |
|
onCancel: returnToLogin() |
|
onActivateSession: returnToLogin() |
|
onStartNewSession: returnToLogin() |
|
} |
|
} |
|
}
|
|
|