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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2013-07-23 16:50:09 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-13 14:48:02 +01:00
|
|
|
#include "clipboardplugin.h"
|
2013-07-23 16:50:09 +01:00
|
|
|
|
2016-09-09 15:18:56 +01:00
|
|
|
#include "clipboardlistener.h"
|
2020-05-26 17:55:47 +01:00
|
|
|
#include "plugin_clipboard_debug.h"
|
2014-09-22 01:37:10 +01:00
|
|
|
|
|
|
|
#include <KPluginFactory>
|
2013-07-23 16:50:09 +01:00
|
|
|
|
2019-06-12 21:16:54 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(ClipboardPlugin, "kdeconnect_clipboard.json")
|
2013-08-13 14:48:02 +01:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
ClipboardPlugin::ClipboardPlugin(QObject* parent, const QVariantList& args)
|
2013-08-13 14:48:02 +01:00
|
|
|
: KdeConnectPlugin(parent, args)
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2016-09-09 15:18:56 +01:00
|
|
|
connect(ClipboardListener::instance(), &ClipboardListener::clipboardChanged,
|
|
|
|
this, &ClipboardPlugin::propagateClipboard);
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
|
|
|
|
2019-07-23 15:21:39 +01:00
|
|
|
void ClipboardPlugin::connected()
|
|
|
|
{
|
|
|
|
sendConnectPacket();
|
|
|
|
}
|
|
|
|
|
2016-09-09 15:18:56 +01:00
|
|
|
void ClipboardPlugin::propagateClipboard(const QString& content)
|
2013-07-23 16:50:09 +01:00
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_CLIPBOARD, {{QStringLiteral("content"), content}});
|
2018-03-04 19:48:51 +00:00
|
|
|
sendPacket(np);
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
|
|
|
|
2019-07-23 15:21:39 +01:00
|
|
|
void ClipboardPlugin::sendConnectPacket()
|
|
|
|
{
|
|
|
|
NetworkPacket np(PACKET_TYPE_CLIPBOARD_CONNECT, {
|
|
|
|
{QStringLiteral("content"), ClipboardListener::instance()->currentContent()},
|
|
|
|
{QStringLiteral("timestamp"), ClipboardListener::instance()->updateTimestamp()}
|
|
|
|
});
|
|
|
|
sendPacket(np);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool ClipboardPlugin::receivePacket(const NetworkPacket& np)
|
2013-07-23 16:50:09 +01:00
|
|
|
{
|
2016-11-26 14:38:08 +00:00
|
|
|
QString content = np.get<QString>(QStringLiteral("content"));
|
2019-07-23 15:21:39 +01:00
|
|
|
if (np.type() == PACKET_TYPE_CLIPBOARD) {
|
|
|
|
ClipboardListener::instance()->setText(content);
|
|
|
|
return true;
|
|
|
|
} else if (np.type() == PACKET_TYPE_CLIPBOARD_CONNECT) {
|
|
|
|
qint64 packetTime = np.get<qint64>(QStringLiteral("timestamp"));
|
|
|
|
// If the packetTime is 0, it means the timestamp is unknown (so do nothing).
|
|
|
|
if (packetTime == 0 || packetTime < ClipboardListener::instance()->updateTimestamp()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClipboardListener::instance()->setText(content);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-07-23 16:50:09 +01:00
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
|
|
|
#include "clipboardplugin.moc"
|