mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
51 lines
1.2 KiB
QML
51 lines
1.2 KiB
QML
// SPDX-FileCopyrightText: 2023-2024 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
Loader {
|
|
id: root
|
|
asynchronous: true
|
|
|
|
property var lockScreenState
|
|
|
|
sourceComponent: {
|
|
if (lockScreenState.isFingerprintSupported) {
|
|
return fingerprintIcon;
|
|
} else {
|
|
return scrollUpIcon;
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: scrollUpIcon
|
|
|
|
Kirigami.Icon {
|
|
implicitWidth: Kirigami.Units.iconSizes.small
|
|
implicitHeight: Kirigami.Units.iconSizes.small
|
|
|
|
Kirigami.Theme.colorSet: Kirigami.Theme.Complementary
|
|
source: "arrow-up"
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: fingerprintIcon
|
|
|
|
Kirigami.Icon {
|
|
source: 'fingerprint-symbolic'
|
|
implicitWidth: Kirigami.Units.iconSizes.medium
|
|
implicitHeight: Kirigami.Units.iconSizes.medium
|
|
|
|
Kirigami.Theme.colorSet: Kirigami.Theme.Complementary
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: Kirigami.Units.gridUnit * 2 + flickable.position * 0.5
|
|
}
|
|
}
|
|
}
|