summaryrefslogtreecommitdiffstats
path: root/extractordialog.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-05-14 14:52:56 +0200
committerArno <am@disconnect.de>2010-05-14 14:52:56 +0200
commit8557681bb922613603eae641e88746eaa16914a4 (patch)
tree2b025d0d67a8c262991cc6d9f081b840ae8b0b7c /extractordialog.h
parent8a324c06caff00947b7d9a8b0b0b977073500c80 (diff)
downloadSheMov-8557681bb922613603eae641e88746eaa16914a4.tar.gz
SheMov-8557681bb922613603eae641e88746eaa16914a4.tar.bz2
SheMov-8557681bb922613603eae641e88746eaa16914a4.zip
Cleanup archive extraction
Removed the code for archive extraction. Never used it, never liked it and really never worked properly.
Diffstat (limited to 'extractordialog.h')
-rw-r--r--extractordialog.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/extractordialog.h b/extractordialog.h
deleted file mode 100644
index b5033fd..0000000
--- a/extractordialog.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- 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) any later version.
-*/
-
-#ifndef EXTRACTORDIALOG_H
-#define EXTRACTORDIALOG_H
-
-#include <QDialog>
-#include <QProcess>
-
-class QTextEdit;
-class QPushButton;
-
-class ExtractorDialog : public QDialog {
- Q_OBJECT
- public:
- ExtractorDialog(const QString &archive, const QString &extractTo, QWidget *parent = 0, Qt::WindowFlags f = 0);
- ~ExtractorDialog() {};
-
- private slots:
- void killProcess();
- void writeOutput();
- void extractionFinished();
-
- private:
- void start();
- void setClose();
- void setCancel();
- QString mArchive;
- QString mExtractTo;
- QPushButton *mCancelClose;
- QTextEdit *mOutput;
- QProcess *mExtractor;
-};
-
-#endif
-