summaryrefslogtreecommitdiffstats
path: root/extractordialog.h
diff options
context:
space:
mode:
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
-