2013-07-26 15:21:19 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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 General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
#ifndef BATTERYPLUGIN_H
|
|
|
|
#define BATTERYPLUGIN_H
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
#include "../kdeconnectplugin.h"
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-10-11 14:19:23 +01:00
|
|
|
#define PACKAGE_TYPE_BATTERY QLatin1String("kdeconnect.battery")
|
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
class BatteryDbusInterface;
|
|
|
|
|
|
|
|
class BatteryPlugin
|
|
|
|
: public KdeConnectPlugin
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-07-28 21:00:45 +01:00
|
|
|
Q_OBJECT
|
2013-07-26 15:21:19 +01:00
|
|
|
|
|
|
|
public:
|
2013-08-13 23:03:46 +01:00
|
|
|
explicit BatteryPlugin(QObject *parent, const QVariantList &args);
|
|
|
|
virtual ~BatteryPlugin();
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-07-28 21:00:45 +01:00
|
|
|
public Q_SLOTS:
|
2013-08-13 23:03:46 +01:00
|
|
|
virtual bool receivePackage(const NetworkPackage& np);
|
2013-08-22 02:21:08 +01:00
|
|
|
virtual void connected();
|
2013-07-28 21:00:45 +01:00
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
private:
|
2013-11-14 15:32:16 +00:00
|
|
|
// Keep these values in sync with THRESHOLD* constants in
|
|
|
|
// kdeconnect-android:BatteryPlugin.java
|
|
|
|
// see README for their meaning
|
|
|
|
enum ThresholdBatteryEvent {
|
|
|
|
ThresholdNone = 0,
|
|
|
|
ThresholdBatteryLow = 1
|
|
|
|
};
|
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
BatteryDbusInterface* batteryDbusInterface;
|
2013-07-26 15:21:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|