summaryrefslogtreecommitdiff
path: root/wizard/hdmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'wizard/hdmap.h')
-rw-r--r--wizard/hdmap.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/wizard/hdmap.h b/wizard/hdmap.h
new file mode 100644
index 0000000..306266c
--- /dev/null
+++ b/wizard/hdmap.h
@@ -0,0 +1,29 @@
+#ifndef hdmap_H
+#define hdmap_H
+
+#include "ui_hdmap.h"
+#include "../backend.h"
+
+class wpHdMap : public QWizardPage, Ui::wpHdMap
+{
+ Q_OBJECT
+
+ public:
+ wpHdMap(QWidget *parent = 0);
+ void initializePage();
+ void clearPage();
+ bool isComplete() const;
+ bool validatePage();
+
+ private:
+ Backend* backend;
+ QStringList filesystems;
+
+ private slots:
+ void receivedDataLine(QString data, QString line);
+ void updateComplete();
+ void backendFinishedCommand(QString command);
+
+};
+
+#endif // hdmap_H