summaryrefslogtreecommitdiff
path: root/wizard/partman.h
diff options
context:
space:
mode:
Diffstat (limited to 'wizard/partman.h')
-rw-r--r--wizard/partman.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/wizard/partman.h b/wizard/partman.h
new file mode 100644
index 0000000..240d8f7
--- /dev/null
+++ b/wizard/partman.h
@@ -0,0 +1,27 @@
+#ifndef partman_H
+#define partman_H
+
+#include "ui_partman.h"
+#include "../backend.h"
+
+class wpPartMan : public QWizardPage, Ui::wpPartMan
+{
+ Q_OBJECT
+
+ public:
+ wpPartMan(QWidget *parent = 0);
+ void initializePage();
+ void clearPage();
+ bool isComplete() const;
+ bool validatePage();
+
+ private:
+ Backend* backend;
+ bool complete;
+ void setComplete(bool c);
+
+ private slots:
+ void terminalFinished();
+};
+
+#endif // partman_H