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.
37 lines
945 B
37 lines
945 B
/* |
|
SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
import QtQuick 2.5 |
|
import QtQuick.Controls 1.1 |
|
import org.kde.plasma.core 2.0 as PlasmaCore |
|
import org.kde.plasma.private.sessions 2.0 |
|
import "../components" |
|
|
|
Item { |
|
id: root |
|
property bool debug: false |
|
property string notification |
|
signal clearPassword() |
|
|
|
// These are magical properties that kscreenlocker looks for |
|
property bool viewVisible: false |
|
property bool suspendToRamSupported: false |
|
property bool suspendToDiskSupported: false |
|
|
|
// These are magical signals that kscreenlocker looks for |
|
signal suspendToDisk() |
|
signal suspendToRam() |
|
|
|
LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft |
|
LayoutMirroring.childrenInherit: true |
|
|
|
implicitWidth: 800 |
|
implicitHeight: 600 |
|
|
|
LockScreenUi { |
|
anchors.fill: parent |
|
} |
|
}
|
|
|