mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
copy files, not import from relative path
to avoid the imported files being removed in the future
This commit is contained in:
parent
f6f77d3e65
commit
3e1471255a
3 changed files with 200 additions and 0 deletions
76
look-and-feel/contents/lockscreen/LockOsd.qml
Normal file
76
look-and-feel/contents/lockscreen/LockOsd.qml
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
/********************************************************************
|
||||
This file is part of the KDE project.
|
||||
|
||||
Copyright (C) 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
|
||||
|
||||
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
|
||||
|
||||
PlasmaCore.FrameSvgItem {
|
||||
id: osd
|
||||
|
||||
property alias timeout: osdItem.timeout
|
||||
property alias osdValue: osdItem.osdValue
|
||||
property alias osdMaxValue: osdItem.osdMaxValue
|
||||
property alias icon: osdItem.icon
|
||||
property alias showingProgress: osdItem.showingProgress
|
||||
|
||||
objectName: "onScreenDisplay"
|
||||
visible: false
|
||||
width: osdItem.width + margins.left + margins.right
|
||||
height: osdItem.height + margins.top + margins.bottom
|
||||
imagePath: "widgets/background"
|
||||
|
||||
function show() {
|
||||
osd.visible = true;
|
||||
hideAnimation.restart();
|
||||
}
|
||||
|
||||
// avoid leaking ColorScope of lock screen theme into the OSD "popup"
|
||||
PlasmaCore.ColorScope {
|
||||
width: osdItem.width
|
||||
height: osdItem.height
|
||||
anchors.centerIn: parent
|
||||
colorGroup: PlasmaCore.Theme.NormalColorGroup
|
||||
|
||||
OsdItem {
|
||||
id: osdItem
|
||||
}
|
||||
}
|
||||
|
||||
SequentialAnimation {
|
||||
id: hideAnimation
|
||||
// prevent press and hold from flickering
|
||||
PauseAnimation { duration: 100 }
|
||||
NumberAnimation {
|
||||
target: osd
|
||||
property: "opacity"
|
||||
from: 1
|
||||
to: 0
|
||||
duration: osd.timeout
|
||||
easing.type: Easing.InQuad
|
||||
}
|
||||
ScriptAction {
|
||||
script: {
|
||||
osd.visible = false;
|
||||
osd.opacity = 1;
|
||||
osd.icon = "";
|
||||
osd.osdValue = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -269,4 +269,10 @@ PlasmaCore.ColorScope {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
LockOsd {
|
||||
anchors.top: parent.top
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.topMargin: PlasmaCore.Units.largeSpacing
|
||||
}
|
||||
}
|
||||
|
|
|
|||
118
look-and-feel/contents/lockscreen/OsdItem.qml
Normal file
118
look-and-feel/contents/lockscreen/OsdItem.qml
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
/*
|
||||
* Copyright 2014 Martin Klapetek <mklapetek@kde.org>
|
||||
* Copyright 2019 Kai Uwe Broulik <kde@broulik.de>
|
||||
*
|
||||
* 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.14
|
||||
import QtQuick.Layouts 1.1
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
||||
import org.kde.plasma.extras 2.0 as PlasmaExtra
|
||||
import QtQuick.Window 2.2
|
||||
|
||||
RowLayout {
|
||||
// OSD Timeout in msecs - how long it will stay on the screen
|
||||
property int timeout: 1800
|
||||
// This is either a text or a number, if showingProgress is set to true,
|
||||
// the number will be used as a value for the progress bar
|
||||
property var osdValue
|
||||
// Maximum percent value
|
||||
property int osdMaxValue: 100
|
||||
// Icon name to display
|
||||
property string icon
|
||||
// Set to true if the value is meant for progress bar,
|
||||
// false for displaying the value as normal text
|
||||
property bool showingProgress: false
|
||||
|
||||
spacing: units.smallSpacing
|
||||
|
||||
width: Math.max(Math.min(Screen.desktopAvailableWidth / 2, implicitWidth), units.gridUnit * 15)
|
||||
height: units.iconSizes.medium
|
||||
|
||||
PlasmaCore.IconItem {
|
||||
Layout.leftMargin: units.smallSpacing
|
||||
Layout.preferredWidth: units.iconSizes.medium
|
||||
Layout.preferredHeight: units.iconSizes.medium
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
source: icon
|
||||
visible: valid
|
||||
}
|
||||
|
||||
PlasmaComponents3.ProgressBar {
|
||||
id: progressBar
|
||||
Layout.fillWidth: true
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
// So it never exceeds the minimum popup size
|
||||
Layout.preferredWidth: 1
|
||||
Layout.rightMargin: units.smallSpacing
|
||||
visible: showingProgress
|
||||
from: 0
|
||||
to: osdMaxValue
|
||||
value: Number(osdValue)
|
||||
}
|
||||
|
||||
// Get the width of a three-digit number so we can size the label
|
||||
// to the maximum width to avoid the progress bad resizing itself
|
||||
TextMetrics {
|
||||
id: widestLabelSize
|
||||
text: i18n("100%")
|
||||
font: percentageLabel.font
|
||||
}
|
||||
|
||||
// Numerical display of progress bar value
|
||||
PlasmaExtra.Heading {
|
||||
id: percentageLabel
|
||||
Layout.fillHeight: true
|
||||
Layout.preferredWidth: widestLabelSize.width
|
||||
Layout.rightMargin: units.smallSpacing
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
level: 3
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
text: i18nc("Percentage value", "%1%", progressBar.value)
|
||||
visible: showingProgress
|
||||
// Display a subtle visual indication that the volume might be
|
||||
// dangerously high
|
||||
// ------------------------------------------------
|
||||
// Keep this in sync with the copies in plasma-pa:ListItemBase.qml
|
||||
// and plasma-pa:VolumeSlider.qml
|
||||
color: {
|
||||
if (progressBar.value <= 100) {
|
||||
return theme.textColor
|
||||
} else if (progressBar.value > 100 && progressBar.value <= 125) {
|
||||
return theme.neutralTextColor
|
||||
} else {
|
||||
return theme.negativeTextColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
PlasmaExtra.Heading {
|
||||
id: label
|
||||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
Layout.rightMargin: units.smallSpacing
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
level: 3
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
textFormat: Text.PlainText
|
||||
wrapMode: Text.NoWrap
|
||||
elide: Text.ElideRight
|
||||
text: !showingProgress && osdValue ? osdValue : ""
|
||||
visible: !showingProgress
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue