mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
91 lines
3.2 KiB
QML
91 lines
3.2 KiB
QML
/*
|
|
* Copyright 2014 David Edmundson <davidedmundson@kde.org>
|
|
* Copyright (C) 2014 by 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 Library General Public License as
|
|
* published by the Free Software Foundation; either version 2 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 Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.1
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
import org.kde.plasma.workspace.components 2.0 as PW
|
|
|
|
ColumnLayout {
|
|
PlasmaComponents.Label { //should be a heading but we want it _loads_ bigger
|
|
text: Qt.formatTime(timeSource.data["Local"]["DateTime"])
|
|
//we fill the width then align the text so that we can make the text shrink to fit
|
|
Layout.fillWidth: true
|
|
horizontalAlignment: Text.AlignRight
|
|
|
|
font.weight: Font.DemiBold
|
|
fontSizeMode: Text.HorizontalFit
|
|
font.pointSize: 36
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate);
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.alignment: Qt.AlignRight
|
|
visible: pmSource.data["Battery"]["Has Cumulative"]
|
|
|
|
PW.BatteryIcon {
|
|
id: battery
|
|
hasBattery: true
|
|
percent: pmSource.data["Battery"]["Percent"]
|
|
pluggedIn: pmSource.data["AC Adapter"] ? pmSource.data["AC Adapter"]["Plugged in"] : false
|
|
|
|
height: batteryLabel.height
|
|
width: batteryLabel.height
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
id: batteryLabel
|
|
text: {
|
|
var state = pmSource.data["Battery"] ? pmSource.data["Battery"]["State"] : "";
|
|
switch(state) {
|
|
case "Charging":
|
|
return i18nd("plasma_lookandfeel_org.kde.lookandfeel","%1%. Charging", battery.percent)
|
|
case "FullyCharged":
|
|
return i18nd("plasma_lookandfeel_org.kde.lookandfeel","Fully charged")
|
|
default:
|
|
return i18nd("plasma_lookandfeel_org.kde.lookandfeel","%1% battery remaining", battery.percent)
|
|
}
|
|
}
|
|
Layout.alignment: Qt.AlignRight
|
|
wrapMode: Text.Wrap
|
|
}
|
|
}
|
|
|
|
|
|
PlasmaCore.DataSource {
|
|
id: pmSource
|
|
engine: "powermanagement"
|
|
connectedSources: ["Battery", "AC Adapter"]
|
|
}
|
|
|
|
PlasmaCore.DataSource {
|
|
id: timeSource
|
|
engine: "time"
|
|
connectedSources: ["Local"]
|
|
interval: 1000
|
|
}
|
|
|
|
}
|