/* * Copyright 2011 Sebastian Kügler * Copyright 2011 Viranch Mehta * Copyright 2013-2015 Kai Uwe Broulik * * 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.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.kcoreaddons 1.0 as KCoreAddons import org.kde.kquickcontrolsaddons 2.0 // For KCMShell import "logic.js" as Logic Item { id: batterymonitor Plasmoid.switchWidth: PlasmaCore.Units.gridUnit * 10 Plasmoid.switchHeight: PlasmaCore.Units.gridUnit * 10 LayoutMirroring.enabled: Qt.application.layoutDirection == Qt.RightToLeft LayoutMirroring.childrenInherit: true Plasmoid.status: { if (powermanagementDisabled) { return PlasmaCore.Types.ActiveStatus } if (pmSource.data.Battery["Has Cumulative"] && pmSource.data["Battery"]["State"] !== "FullyCharged") { return PlasmaCore.Types.ActiveStatus } return PlasmaCore.Types.PassiveStatus } Plasmoid.toolTipMainText: { if (batteries.count === 0 || !pmSource.data["Battery"]["Has Cumulative"]) { return plasmoid.title } else if (pmSource.data["Battery"]["State"] === "FullyCharged") { return i18n("Fully Charged"); } const percent = pmSource.data.Battery.Percent; if (pmSource.data["AC Adapter"] && pmSource.data["AC Adapter"]["Plugged in"]) { const state = pmSource.data.Battery.State; if (state === "NoCharge") { return i18n("Battery at %1%, not Charging", percent); } else if (state === "Discharging") { return i18n("Battery at %1%, plugged in but still discharging", percent); } else if (state === "Charging") { return i18n("Battery at %1%, Charging", percent); } } return i18n("Battery at %1%", percent); } Plasmoid.toolTipSubText: { var parts = []; // Add special text for the "plugged in but still discharging" case if (pmSource.data["AC Adapter"] && pmSource.data["AC Adapter"]["Plugged in"] && pmSource.data.Battery.State === "Discharging") { parts.push(i18n("The power supply is not powerful enough to charge the battery")) } if (batteries.count === 0) { parts.push("No Batteries Available"); } else if (remainingTime > 0) { var remainingTimeString = KCoreAddons.Format.formatDuration(remainingTime, KCoreAddons.FormatTypes.HideSeconds); if (pmSource.data["Battery"]["State"] === "FullyCharged") { // Don't add anything } else if (pmSource.data["AC Adapter"] && pmSource.data["AC Adapter"]["Plugged in"]) { parts.push(i18nc("time until fully charged - HH:MM","%1 until fully charged", remainingTimeString)); } else { parts.push(i18nc("remaining time left of battery usage - HH:MM","%1 remaining", remainingTimeString)); } } else if (pmSource.data.Battery.State === "NoCharge") { parts.push(i18n("Not charging")) } // otherwise, don't add anything if (powermanagementDisabled) { parts.push(i18n("Automatic sleep and screen locking are disabled")); } return parts.join("\n"); } Plasmoid.icon: "battery" property bool disableBrightnessUpdate: true property int screenBrightness readonly property int maximumScreenBrightness: pmSource.data["PowerDevil"] ? pmSource.data["PowerDevil"]["Maximum Screen Brightness"] || 0 : 0 property int keyboardBrightness readonly property int maximumKeyboardBrightness: pmSource.data["PowerDevil"] ? pmSource.data["PowerDevil"]["Maximum Keyboard Brightness"] || 0 : 0 readonly property int remainingTime: Number(pmSource.data["Battery"]["Remaining msec"]) property bool powermanagementDisabled: false property var inhibitions: [] readonly property bool kcmAuthorized: KCMShell.authorize("powerdevilprofilesconfig.desktop").length > 0 readonly property bool kcmEnergyInformationAuthorized: KCMShell.authorize("kcm_energyinfo.desktop").length > 0 property QtObject updateScreenBrightnessJob onScreenBrightnessChanged: { if (disableBrightnessUpdate) { return; } var service = pmSource.serviceForSource("PowerDevil"); var operation = service.operationDescription("setBrightness"); operation.brightness = screenBrightness; // show OSD only when the plasmoid isn't expanded since the moving slider is feedback enough operation.silent = plasmoid.expanded updateScreenBrightnessJob = service.startOperationCall(operation); updateScreenBrightnessJob.finished.connect(function(job) { Logic.updateBrightness(batterymonitor, pmSource); }); } property QtObject updateKeyboardBrightnessJob onKeyboardBrightnessChanged: { if (disableBrightnessUpdate) { return; } var service = pmSource.serviceForSource("PowerDevil"); var operation = service.operationDescription("setKeyboardBrightness"); operation.brightness = keyboardBrightness; operation.silent = plasmoid.expanded updateKeyboardBrightnessJob = service.startOperationCall(operation); updateKeyboardBrightnessJob.finished.connect(function(job) { Logic.updateBrightness(batterymonitor, pmSource); }); } function action_configure() { KCMShell.openSystemSettings("powerdevilprofilesconfig"); } function action_energyinformationkcm() { KCMShell.openInfoCenter("kcm_energyinfo"); } function action_showPercentage() { if (!plasmoid.configuration.showPercentage) { plasmoid.configuration.showPercentage = true; } else { plasmoid.configuration.showPercentage = false; } } Component.onCompleted: { Logic.updateBrightness(batterymonitor, pmSource); Logic.updateInhibitions(batterymonitor, pmSource) if (batterymonitor.kcmEnergyInformationAuthorized) { plasmoid.setAction("energyinformationkcm", i18n("&Show Energy Information..."), "documentinfo"); } plasmoid.setAction("showPercentage", i18n("Show Battery Percentage on Icon"), "format-number-percent"); plasmoid.action("showPercentage").checkable = true; plasmoid.action("showPercentage").checked = Qt.binding(() => {return plasmoid.configuration.showPercentage;}); if (batterymonitor.kcmAuthorized) { plasmoid.removeAction("configure"); plasmoid.setAction("configure", i18n("&Configure Energy Saving..."), "configure", "alt+d, s"); } } property QtObject pmSource: PlasmaCore.DataSource { id: pmSource engine: "powermanagement" connectedSources: sources onSourceAdded: { disconnectSource(source); connectSource(source); } onSourceRemoved: { disconnectSource(source); } onDataChanged: { Logic.updateBrightness(batterymonitor, pmSource) Logic.updateInhibitions(batterymonitor, pmSource) } } property QtObject batteries: PlasmaCore.SortFilterModel { id: batteries filterRole: "Is Power Supply" sortOrder: Qt.DescendingOrder sourceModel: PlasmaCore.SortFilterModel { sortRole: "Pretty Name" sortOrder: Qt.AscendingOrder sortCaseSensitivity: Qt.CaseInsensitive sourceModel: PlasmaCore.DataModel { dataSource: pmSource sourceFilter: "Battery[0-9]+" } } } Plasmoid.compactRepresentation: CompactRepresentation {} Plasmoid.fullRepresentation: PopupDialog { id: dialogItem Layout.minimumWidth: PlasmaCore.Units.iconSizes.medium * 9 Layout.minimumHeight: PlasmaCore.Units.gridUnit * 15 // TODO Probably needs a sensible preferredHeight too model: plasmoid.expanded ? batteries : null anchors.fill: parent focus: true isBrightnessAvailable: pmSource.data["PowerDevil"] && pmSource.data["PowerDevil"]["Screen Brightness Available"] ? true : false isKeyboardBrightnessAvailable: pmSource.data["PowerDevil"] && pmSource.data["PowerDevil"]["Keyboard Brightness Available"] ? true : false pluggedIn: pmSource.data["AC Adapter"] !== undefined && pmSource.data["AC Adapter"]["Plugged in"] property int cookie1: -1 property int cookie2: -1 onPowermanagementChanged: { var service = pmSource.serviceForSource("PowerDevil"); if (disabled) { var reason = i18n("The battery applet has enabled system-wide inhibition"); var op1 = service.operationDescription("beginSuppressingSleep"); op1.reason = reason; var op2 = service.operationDescription("beginSuppressingScreenPowerManagement"); op2.reason = reason; var job1 = service.startOperationCall(op1); job1.finished.connect(function(job) { cookie1 = job.result; }); var job2 = service.startOperationCall(op2); job2.finished.connect(function(job) { cookie2 = job.result; }); } else { var op1 = service.operationDescription("stopSuppressingSleep"); op1.cookie = cookie1; var op2 = service.operationDescription("stopSuppressingScreenPowerManagement"); op2.cookie = cookie2; var job1 = service.startOperationCall(op1); job1.finished.connect(function(job) { cookie1 = -1; }); var job2 = service.startOperationCall(op2); job2.finished.connect(function(job) { cookie2 = -1; }); } batterymonitor.powermanagementDisabled = disabled } } }