summaryrefslogtreecommitdiff
path: root/wizard/partitions.h
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2011-03-17 05:07:10 +0100
committerAndreas Loibl <andreas@andreas-loibl.de>2011-03-17 05:07:10 +0100
commit00286a5db286e21a766b6af057052dc5d17561ad (patch)
tree7232dadf6dc3570705c3104fe0c000f480c7a0ee /wizard/partitions.h
downloadacritoxinstaller-00286a5db286e21a766b6af057052dc5d17561ad.zip
acritoxinstaller-00286a5db286e21a766b6af057052dc5d17561ad.tar.gz
Initial commit
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