summaryrefslogtreecommitdiff
path: root/wizard/hdmap.h
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2011-03-25 04:19:48 +0100
committerAndreas Loibl <andreas@andreas-loibl.de>2011-03-25 04:19:48 +0100
commitf73535dba2c0ac1891da0ab81672d2a490d5d628 (patch)
tree76528bb30c59b7496520c6b94b34e8d9d8645bea /wizard/hdmap.h
parent9c63b98c194ed54e827e3380057219286963b58c (diff)
downloadacritoxinstaller-f73535dba2c0ac1891da0ab81672d2a490d5d628.zip
acritoxinstaller-f73535dba2c0ac1891da0ab81672d2a490d5d628.tar.gz
added hdmap- and (initial) devicemapper-support to frontend
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