2014-02-05 20:37:55 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
|
2014-02-05 20:37:55 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-02-05 20:37:55 +00:00
|
|
|
*/
|
|
|
|
|
2014-06-18 01:35:48 +01:00
|
|
|
import QtQuick 2.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
2014-02-05 20:37:55 +00:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
|
|
|
QtObject {
|
2020-08-22 21:37:18 +01:00
|
|
|
|
2014-02-05 20:37:55 +00:00
|
|
|
id: root
|
2020-08-22 21:37:18 +01:00
|
|
|
|
2016-08-21 17:57:27 +01:00
|
|
|
property alias device: checker.device
|
2016-04-06 01:55:50 +01:00
|
|
|
readonly property alias available: checker.available
|
|
|
|
|
|
|
|
readonly property PluginChecker pluginChecker: PluginChecker {
|
|
|
|
id: checker
|
|
|
|
pluginName: "battery"
|
|
|
|
}
|
2014-02-19 15:28:17 +00:00
|
|
|
|
2020-08-22 21:37:18 +01:00
|
|
|
property bool charging: battery ? battery.isCharging : false
|
|
|
|
property int charge: battery ? battery.charge : -1
|
2017-07-26 23:40:47 +01:00
|
|
|
property string displayString: (available && charge > -1) ? ((charging) ? (i18n("%1% charging", charge)) : (i18n("%1%", charge))) : i18n("No info")
|
2014-02-05 20:37:55 +00:00
|
|
|
property variant battery: null
|
|
|
|
|
|
|
|
onAvailableChanged: {
|
|
|
|
if (available) {
|
2016-08-21 17:57:27 +01:00
|
|
|
battery = DeviceBatteryDbusInterfaceFactory.create(device.id())
|
2014-06-07 17:27:08 +01:00
|
|
|
} else {
|
2014-02-05 20:37:55 +00:00
|
|
|
battery = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|