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.
91 lines
2.8 KiB
91 lines
2.8 KiB
/* |
|
* 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.0 |
|
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 |
|
|
|
ColumnLayout { |
|
BreezeLabel { //should be a heading but we want it _loads_ bigger |
|
text: Qt.formatTime(timeSource.data["Local"]["DateTime"], Locale.ShortFormat) |
|
//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 |
|
} |
|
|
|
BreezeLabel { |
|
text: Qt.formatDate(timeSource.data["Local"]["Date"], Locale.LongFormat); |
|
Layout.alignment: Qt.AlignRight |
|
} |
|
|
|
RowLayout { |
|
Layout.alignment: Qt.AlignRight |
|
visible: pmSource.connectedSources != "" |
|
|
|
BatteryIcon { |
|
hasBattery: true |
|
percent: pmSource.data["Battery0"]["Percent"] |
|
pluggedIn: pmSource.data["AC Adapter"]["Plugged in"] |
|
|
|
height: batteryLabel.height |
|
width: batteryLabel.height |
|
} |
|
|
|
BreezeLabel { |
|
id: batteryLabel |
|
text: i18n("%1\% battery remaining", pmSource.data["Battery0"]["Percent"]) |
|
Layout.alignment: Qt.AlignRight |
|
wrapMode: Text.Wrap |
|
} |
|
} |
|
|
|
|
|
PlasmaCore.DataSource { |
|
id: pmSource |
|
engine: "powermanagement" |
|
connectedSources: sources |
|
onSourceAdded: { |
|
if (source == "Battery0") { |
|
disconnectSource(source); |
|
connectSource(source); |
|
} |
|
} |
|
onSourceRemoved: { |
|
if (source == "Battery0") { |
|
disconnectSource(source); |
|
} |
|
} |
|
} |
|
|
|
PlasmaCore.DataSource { |
|
id: timeSource |
|
engine: "time" |
|
connectedSources: ["Local"] |
|
interval: 1000 |
|
} |
|
|
|
|
|
}
|
|
|