2013-07-23 16:50:09 +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 14:48:02 +01:00
|
|
|
#include "clipboardplugin.h"
|
2013-07-23 16:50:09 +01:00
|
|
|
|
|
|
|
#include <QClipboard>
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <QGuiApplication>
|
|
|
|
|
|
|
|
#include <KPluginFactory>
|
2013-07-23 16:50:09 +01:00
|
|
|
|
2015-03-19 15:36:53 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_clipboard.json", registerPlugin< ClipboardPlugin >(); )
|
2013-08-13 14:48:02 +01:00
|
|
|
|
2014-09-21 23:44:32 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_CLIPBOARD, "kdeconnect.plugin.clipboard")
|
|
|
|
|
2013-08-13 14:48:02 +01:00
|
|
|
ClipboardPlugin::ClipboardPlugin(QObject *parent, const QVariantList &args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
2014-09-22 01:37:10 +01:00
|
|
|
, clipboard(QGuiApplication::clipboard())
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-10-11 14:19:23 +01:00
|
|
|
connect(clipboard, SIGNAL(changed(QClipboard::Mode)), this, SLOT(clipboardChanged(QClipboard::Mode)));
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 14:48:02 +01:00
|
|
|
void ClipboardPlugin::clipboardChanged(QClipboard::Mode mode)
|
2013-07-23 16:50:09 +01:00
|
|
|
{
|
2015-04-19 20:32:26 +01:00
|
|
|
if (mode != QClipboard::Clipboard) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString content = clipboard->text();
|
2013-07-24 22:51:06 +01:00
|
|
|
|
2015-04-19 20:32:26 +01:00
|
|
|
if (content == currentContent) {
|
2013-07-23 16:50:09 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-04-19 20:32:26 +01:00
|
|
|
|
|
|
|
currentContent = content;
|
|
|
|
|
2013-07-23 16:50:09 +01:00
|
|
|
NetworkPackage np(PACKAGE_TYPE_CLIPBOARD);
|
2015-04-19 20:32:26 +01:00
|
|
|
np.set("content", content);
|
2014-06-14 19:35:00 +01:00
|
|
|
sendPackage(np);
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 14:48:02 +01:00
|
|
|
bool ClipboardPlugin::receivePackage(const NetworkPackage& np)
|
2013-07-23 16:50:09 +01:00
|
|
|
{
|
2013-10-29 16:29:31 +00:00
|
|
|
clipboard->setText(np.get<QString>("content"));
|
|
|
|
return true;
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
|
|
|
#include "clipboardplugin.moc"
|