dbea3171bd
This meant to add a lot of dependencies to each plugin since we had KDELibs4support as PUBLIC link meaning that anything linking against kdeconnectcore was linking at the same time to mostly all frameworks. Now each plugin has more or less its dependencies in the CMake some still depend on KDELibs4Support. For the mousepad plugin I needed to add a fixX11.h file that basically undefines/defines again some stuff xlib has that conflcits with normal C++ and Qt. Before it was not conflicting because some lib within KDELibs4Support was including this file, but now we have to do it ourselves.
102 lines
3.4 KiB
C++
102 lines
3.4 KiB
C++
/**
|
|
* 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/>.
|
|
*/
|
|
|
|
#include "telephonyplugin.h"
|
|
|
|
#include <KLocalizedString>
|
|
#include <QIcon>
|
|
#include <QDebug>
|
|
|
|
#include <KPluginFactory>
|
|
|
|
K_PLUGIN_FACTORY( KdeConnectPluginFactory, registerPlugin< TelephonyPlugin >(); )
|
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_TELEPHONY, "kdeconnect.plugin.telephony")
|
|
|
|
TelephonyPlugin::TelephonyPlugin(QObject *parent, const QVariantList &args)
|
|
: KdeConnectPlugin(parent, args)
|
|
{
|
|
|
|
}
|
|
|
|
KNotification* TelephonyPlugin::createNotification(const NetworkPackage& np)
|
|
{
|
|
|
|
const QString event = np.get<QString>("event");
|
|
const QString phoneNumber = np.get<QString>("phoneNumber", i18n("unknown number"));
|
|
|
|
QString content, type, icon;
|
|
|
|
const QString title = device()->name();
|
|
|
|
if (event == "ringing") {
|
|
type = "callReceived";
|
|
icon = "call-start";
|
|
content = i18n("Incoming call from %1", phoneNumber);
|
|
} else if (event == "missedCall") {
|
|
type = "missedCall";
|
|
icon = "call-start";
|
|
content = i18n("Missed call from %1", phoneNumber);
|
|
} else if (event == "sms") {
|
|
type = "smsReceived";
|
|
icon = "mail-receive";
|
|
QString messageBody = np.get<QString>("messageBody","");
|
|
content = i18n("SMS from %1: %2", phoneNumber, messageBody);
|
|
} else if (event == "talking") {
|
|
return NULL;
|
|
} else {
|
|
//TODO: return NULL if !debug
|
|
type = "unknownEvent";
|
|
icon = "pda";
|
|
content = i18n("Unknown telephony event: %2", event);
|
|
}
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_TELEPHONY) << "Creating notification with type:" << type;
|
|
|
|
KNotification* notification = new KNotification(type, KNotification::CloseOnTimeout, this); //, KNotification::Persistent
|
|
notification->setPixmap(QIcon::fromTheme(icon).pixmap(48, 48));
|
|
notification->setComponentName("kdeconnect");
|
|
notification->setTitle(title);
|
|
notification->setText(content);
|
|
|
|
return notification;
|
|
|
|
}
|
|
|
|
bool TelephonyPlugin::receivePackage(const NetworkPackage& np)
|
|
{
|
|
if (np.get<bool>("isCancel")) {
|
|
|
|
//It would be awesome to remove the old notification from the system tray here, but there is no way to do it :(
|
|
//Now I realize why at the end of the day I have hundreds of notifications from facebook messages that I HAVE ALREADY READ,
|
|
//...it's just because the telepathy client has no way to remove them! even when it knows that I have read those messages!
|
|
|
|
} else {
|
|
|
|
KNotification* n = createNotification(np);
|
|
if (n != NULL) n->sendEvent();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#include "telephonyplugin.moc"
|