Home
last modified time | relevance | path

Searched refs:chargeStopThreshold (Results 1 – 3 of 3) sorted by relevance

/dports/x11/plasma5-plasma-workspace/plasma-workspace-5.23.5/applets/batterymonitor/package/contents/ui/
H A DBatteryItem.qml205 …readonly property var chargeStopThreshold: pmSource.data["Battery"] ? pmSource.data["Battery"]["Ch…
207 …visible: pluggedIn && typeof chargeStopThreshold === "number" && chargeStopThreshold > 0 && charge…
209 … text: i18n("Your battery is configured to only charge up to %1%.", chargeStopThreshold || 0)
/dports/sysutils/plasma5-powerdevil/powerdevil-5.23.5/daemon/
H A Dpowerdevilcore.cpp969 const int chargeStopThreshold = data.value(QStringLiteral("chargeStopThreshold")).toInt(); in readChargeThreshold() local
970 if (m_chargeStopThreshold != chargeStopThreshold) { in readChargeThreshold()
971 m_chargeStopThreshold = chargeStopThreshold; in readChargeThreshold()
972 Q_EMIT chargeStopThresholdChanged(chargeStopThreshold); in readChargeThreshold()
975 …IL) << "Charge thresholds: start at" << chargeStartThreshold << "- stop at" << chargeStopThreshold; in readChargeThreshold()
1005 int Core::chargeStopThreshold() const in chargeStopThreshold() function in PowerDevil::Core
H A Dpowerdevilcore.h104 int chargeStopThreshold() const;