2020-08-31 01:38:46 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2019 Marco Martin <mart@kde.org>
|
|
|
|
|
* 2020 Devin Lin <espidev@gmail.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, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 2.010-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
|
import QtGraphicalEffects 1.12
|
|
|
|
|
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
|
import org.kde.plasma.workspace.components 2.0 as PW
|
|
|
|
|
|
|
|
|
|
import "indicators" as Indicators
|
|
|
|
|
|
|
|
|
|
// a simple version of the task panel
|
|
|
|
|
// in the future, it should share components with the existing task panel
|
|
|
|
|
PlasmaCore.ColorScope {
|
|
|
|
|
colorGroup: PlasmaCore.Theme.ComplementaryColorGroup
|
|
|
|
|
|
|
|
|
|
layer.enabled: true
|
|
|
|
|
layer.effect: DropShadow {
|
2020-12-05 22:03:33 +00:00
|
|
|
visible: true
|
2020-08-31 01:38:46 +00:00
|
|
|
cached: true
|
|
|
|
|
horizontalOffset: 0
|
|
|
|
|
verticalOffset: 1
|
|
|
|
|
radius: 4.0
|
|
|
|
|
samples: 17
|
|
|
|
|
color: Qt.rgba(0,0,0,0.8)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaCore.DataSource {
|
|
|
|
|
id: timeSource
|
|
|
|
|
engine: "time"
|
|
|
|
|
connectedSources: ["Local"]
|
|
|
|
|
interval: 60 * 1000
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
gradient: Gradient {
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: 1.0
|
|
|
|
|
color: "transparent"
|
|
|
|
|
}
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: 0.0
|
|
|
|
|
color: Qt.rgba(0, 0, 0, 0.1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Loader {
|
|
|
|
|
id: strengthLoader
|
|
|
|
|
height: parent.height
|
|
|
|
|
width: item ? item.width : 0
|
|
|
|
|
source: Qt.resolvedUrl("indicators/SignalStrength.qml")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.Label {
|
|
|
|
|
id: clock
|
|
|
|
|
anchors.fill: parent
|
2020-09-17 16:04:49 +00:00
|
|
|
text: Qt.formatTime(timeSource.data.Local.DateTime, root.is24HourTime ? "h:mm" : "h:mm ap")
|
2020-08-31 01:38:46 +00:00
|
|
|
color: PlasmaCore.ColorScope.textColor
|
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
|
font.pixelSize: height / 2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
|
id: appletIconsRow
|
|
|
|
|
anchors {
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
right: simpleIndicatorsLayout.left
|
|
|
|
|
}
|
|
|
|
|
height: parent.height
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
|
id: simpleIndicatorsLayout
|
|
|
|
|
anchors {
|
|
|
|
|
top: parent.top
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
right: parent.right
|
|
|
|
|
rightMargin: units.smallSpacing
|
|
|
|
|
}
|
|
|
|
|
Indicators.Bluetooth {}
|
|
|
|
|
Indicators.Wifi {}
|
|
|
|
|
Indicators.Volume {}
|
|
|
|
|
Indicators.Battery {}
|
|
|
|
|
}
|
|
|
|
|
}
|