summaryrefslogtreecommitdiff
path: root/plugins/Listener/dbus/listener.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Listener/dbus/listener.h')
-rwxr-xr-xplugins/Listener/dbus/listener.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/plugins/Listener/dbus/listener.h b/plugins/Listener/dbus/listener.h
new file mode 100755
index 0000000..fd3db2e
--- /dev/null
+++ b/plugins/Listener/dbus/listener.h
@@ -0,0 +1,64 @@
+/** \file listener.h
+\brief Define the server compatible with Ultracopier interface
+\author alpha_one_x86
+\version 0.3
+\date 2010 */
+
+#ifndef SERVER_H
+#define SERVER_H
+
+#include <QObject>
+#include <QtDBus/QtDBus>
+#include <QtDBus/QDBusConnection>
+
+#include "Catchcopy.h"
+#include "Environment.h"
+#include "../../../interface/PluginInterface_Listener.h"
+
+/// \brief Define the server compatible with Ultracopier interface
+class CatchCopyPlugin : public PluginInterface_Listener
+{
+ Q_OBJECT
+ Q_INTERFACES(PluginInterface_Listener)
+public:
+ CatchCopyPlugin();
+ /// \brief try listen the copy/move
+ void listen();
+ /// \brief stop listen to copy/move
+ void close();
+ /// \brief return the error strong
+ const QString errorString();
+ /// \brief set resources for this plugins
+ void setResources(OptionInterface * options,QString writePath,QString pluginPath,bool portableVersion);
+ /// \brief to get the options widget, NULL if not have
+ QWidget * options();
+public slots:
+ /// \brief say to the client that's the copy/move is finished
+ void transferFinished(quint32 orderId,bool withError);
+ /// \brief say to the client that's the copy/move is finished
+ void transferCanceled(quint32 orderId);
+ /// \brief to reload the translation, because the new language have been loaded
+ void newLanguageLoaded();
+private:
+ Catchcopy catchcopy;
+private slots:
+ void error(QString error);
+ void clientName(quint32 client,QString name);
+signals:
+ #ifdef ULTRACOPIER_PLUGIN_DEBUG
+ /// \brief To debug source
+ void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
+ #endif
+ /// \brief new state
+ void newState(ListeningState state);
+ /// \brief new copy is incoming
+ void newCopy(quint32 orderId,QStringList sources);
+ /// \brief new copy is incoming, with destination
+ void newCopy(quint32 orderId,QStringList sources,QString destination);
+ /// \brief new move is incoming
+ void newMove(quint32 orderId,QStringList sources);
+ /// \brief new move is incoming, with destination
+ void newMove(quint32 orderId,QStringList sources,QString destination);
+};
+
+#endif // SERVER_H