2013-06-06 04:57:06 +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 22:26:09 +01:00
|
|
|
#ifndef TELEPHONYPLUGIN_H
|
|
|
|
#define TELEPHONYPLUGIN_H
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2014-09-21 23:46:41 +01:00
|
|
|
#include <QLoggingCategory>
|
2016-06-22 10:40:31 +01:00
|
|
|
#include <QDBusInterface>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2015-03-10 04:59:36 +00:00
|
|
|
#include <KNotification>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2015-03-10 04:59:36 +00:00
|
|
|
#include <core/kdeconnectplugin.h>
|
2014-11-30 01:52:43 +00:00
|
|
|
|
2016-11-26 14:38:08 +00:00
|
|
|
#define PACKAGE_TYPE_TELEPHONY_REQUEST QStringLiteral("kdeconnect.telephony.request")
|
|
|
|
#define PACKAGE_TYPE_SMS_REQUEST QStringLiteral("kdeconnect.sms.request")
|
2013-10-29 16:29:31 +00:00
|
|
|
|
2014-09-21 23:46:41 +01:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(KDECONNECT_PLUGIN_TELEPHONY)
|
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
class TelephonyPlugin
|
|
|
|
: public KdeConnectPlugin
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
2013-08-07 10:29:56 +01:00
|
|
|
Q_OBJECT
|
2016-11-03 18:15:23 +00:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.telephony")
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
public:
|
2017-09-03 20:39:44 +01:00
|
|
|
explicit TelephonyPlugin(QObject* parent, const QVariantList& args);
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
bool receivePackage(const NetworkPackage& np) override;
|
2016-12-30 15:38:12 +00:00
|
|
|
void connected() override {}
|
|
|
|
QString dbusPath() const override;
|
2016-06-20 08:05:02 +01:00
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
public Q_SLOTS:
|
2016-11-03 18:15:23 +00:00
|
|
|
Q_SCRIPTABLE void sendSms(const QString& phoneNumber, const QString& messageBody);
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2015-09-08 09:05:58 +01:00
|
|
|
private Q_SLOTS:
|
2016-11-03 18:15:23 +00:00
|
|
|
void sendMutePackage();
|
2015-09-08 09:05:58 +01:00
|
|
|
void showSendSmsDialog();
|
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
private:
|
2013-08-13 22:26:09 +01:00
|
|
|
KNotification* createNotification(const NetworkPackage& np);
|
2016-06-22 10:40:31 +01:00
|
|
|
|
|
|
|
QDBusInterface m_telepathyInterface;
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
#endif
|