summaryrefslogtreecommitdiff
path: root/plugins-alternative/CopyEngine/Rsync/debugDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-alternative/CopyEngine/Rsync/debugDialog.h')
-rw-r--r--plugins-alternative/CopyEngine/Rsync/debugDialog.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins-alternative/CopyEngine/Rsync/debugDialog.h b/plugins-alternative/CopyEngine/Rsync/debugDialog.h
deleted file mode 100644
index 3d48857..0000000
--- a/plugins-alternative/CopyEngine/Rsync/debugDialog.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/** \file debugDialog.h
-\brief Define the dialog to have debug information
-\author alpha_one_x86
-\version 0.3
-\date 2010 */
-
-#ifndef DEBUGDAILOG_H
-#define DEBUGDAILOG_H
-
-#include "Environment.h"
-
-#ifdef ULTRACOPIER_PLUGIN_DEBUG_WINDOW
-#include <QWidget>
-
-namespace Ui {
- class debugDialog;
-}
-
-/// \brief class to the dialog to have debug information
-class debugDialog : public QWidget
-{
- Q_OBJECT
-public:
- explicit debugDialog(QWidget *parent = 0);
- ~debugDialog();
- /// \brief to set the transfer list, limited in result to not slow down the application
- void setTransferList(const QStringList &list);
- /// \brief show the transfer thread, it show be a thread pool in normal time
- void setTransferThreadList(const QStringList &list);
- /// \brief show how many transfer is active
- void setActiveTransfer(int activeTransfer);
- /// \brief show many many inode is manipulated
- void setInodeUsage(int inodeUsage);
-private:
- Ui::debugDialog *ui;
-};
-
-#endif // ULTRACOPIER_PLUGIN_DEBUG_WINDOW
-
-#endif // DEBUGDAILOG_H