summaryrefslogtreecommitdiff
path: root/plugins/Listener/dbus/listener.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Listener/dbus/listener.cpp')
-rwxr-xr-xplugins/Listener/dbus/listener.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/plugins/Listener/dbus/listener.cpp b/plugins/Listener/dbus/listener.cpp
new file mode 100755
index 0000000..2f23638
--- /dev/null
+++ b/plugins/Listener/dbus/listener.cpp
@@ -0,0 +1,86 @@
+#include <QtCore>
+#include <QMessageBox>
+
+#include "listener.h"
+
+CatchCopyPlugin::CatchCopyPlugin()
+{
+ connect(&catchcopy,SIGNAL(newCopy(quint32,QStringList,QString)), this,SIGNAL(newCopy(quint32,QStringList,QString)));
+ connect(&catchcopy,SIGNAL(newMove(quint32,QStringList,QString)), this,SIGNAL(newMove(quint32,QStringList,QString)));
+}
+
+void CatchCopyPlugin::listen()
+{
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
+ if (!QDBusConnection::sessionBus().isConnected())
+ {
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
+ emit newState(NotListening);
+ return;
+ }
+ if (!QDBusConnection::sessionBus().registerService("info.first-world.catchcopy"))
+ {
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,QDBusConnection::sessionBus().lastError().message());
+ emit newState(NotListening);
+ return;
+ }
+ emit newState(FullListening);
+ QDBusConnection::sessionBus().registerObject("/", &catchcopy, QDBusConnection::ExportAllSlots);
+}
+
+void CatchCopyPlugin::close()
+{
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
+ QDBusConnection::sessionBus().unregisterObject("/");
+ QDBusConnection::sessionBus().unregisterService("info.first-world.catchcopy");
+ emit newState(NotListening);
+}
+
+const QString CatchCopyPlugin::errorString()
+{
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start");
+ return "Unknow error";
+}
+
+void CatchCopyPlugin::setResources(OptionInterface * options,QString writePath,QString pluginPath,bool portableVersion)
+{
+ Q_UNUSED(options);
+ Q_UNUSED(writePath);
+ Q_UNUSED(pluginPath);
+ Q_UNUSED(portableVersion);
+}
+
+/// \brief to get the options widget, NULL if not have
+QWidget * CatchCopyPlugin::options()
+{
+ return NULL;
+}
+
+Q_EXPORT_PLUGIN2(listener, CatchCopyPlugin);
+
+void CatchCopyPlugin::transferFinished(quint32 orderId,bool withError)
+{
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start, orderId: "+QString::number(orderId)+", withError: "+QString::number(withError));
+}
+
+void CatchCopyPlugin::transferCanceled(quint32 orderId)
+{
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start, orderId: "+QString::number(orderId));
+}
+
+/// \brief to reload the translation, because the new language have been loaded
+void CatchCopyPlugin::newLanguageLoaded()
+{
+}
+
+void CatchCopyPlugin::error(QString error)
+{
+ Q_UNUSED(error);
+}
+
+void CatchCopyPlugin::clientName(quint32 client,QString name)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(name);
+ ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Information,QString("clientName: %1, for the id: %2").arg(name).arg(client));
+}