bb3ab8b631
Summary: * cmake 2.8.12 is really outdated, 3.0 is minimum in plasma & kf5 * cmake_minimum_required should be at begin of toplevel CMakeLists.txt * bump qt version to 5.7, matching the min Qt version of kf5 5.42 * with ecm being part of kf5 since early versions, share ${KF5_MIN_VERSION} * use QT_MIN_VERSION & KF5_MIN_VERSION also for separate find_package calls * deduplicate all KF5 components searched for in unconditionally included subdirs Test Plan: Still configures and builds with all options OFF & ON Reviewers: #kde_connect, nicolasfella Reviewed By: #kde_connect, nicolasfella Subscribers: nicolasfella Differential Revision: https://phabricator.kde.org/D11418 |
||
---|---|---|
.. | ||
batterydbusinterface.cpp | ||
batterydbusinterface.h | ||
batteryplugin.cpp | ||
batteryplugin.h | ||
CMakeLists.txt | ||
kdeconnect_battery.json | ||
README |
This plugins receives packages with type "kdeconnect.battery" and reads the following fields: isCharging (boolean): If the battery of the peer device is charging currentCharge (int): The charge % of the peer device thresholdEvent (int) [optional when = 0, see below]: means that a battery threshold event were fired on the remote device: 0 := no event. generally not transmitted. 1 := battery entered in low state This is an int so in the future we'll be able to subscribe to more events. (see BatteryPlugin.ThresholdBatteryEvent) <TODO> Symmetrically, it sends its own battery information in packages with the same format. </TODO> It also sends packages with type kdeconnect.battery and a field "request": true, to ask the peer device to send a package like the mentioned above, and should also answer this same kind of packages with its own information. If the battery is low and discharging, it will notify the user.