summaryrefslogtreecommitdiff
path: root/wizard/partitions.h
diff options
context:
space:
mode:
Diffstat (limited to 'wizard/partitions.h')
-rw-r--r--wizard/partitions.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/wizard/partitions.h b/wizard/partitions.h
new file mode 100644
index 0000000..4f442a6
--- /dev/null
+++ b/wizard/partitions.h
@@ -0,0 +1,27 @@
+#ifndef partitions_H
+#define partitions_H
+
+#include "ui_partitions.h"
+#include "../backend.h"
+
+class wpPartitions : public QWizardPage, Ui::wpPartitions
+{
+ Q_OBJECT
+
+ public:
+ wpPartitions(QWidget *parent = 0);
+ void initializePage();
+ void clearPage();
+ int nextId() const;
+ bool isComplete() const;
+ bool validatePage();
+
+ private:
+ Backend* backend;
+
+ private slots:
+ void receivedDataLine(QString data, QString line);
+ void updateComplete();
+};
+
+#endif // partitions_H