blob: 393ec22abf77e73883d336b248474c06b079ed8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef rootpartition_H
#define rootpartition_H
#include "ui_rootpartition.h"
#include "../backend.h"
class wpRootPartition : public QWizardPage, Ui::wpRootPartition
{
Q_OBJECT
public:
wpRootPartition(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 // rootpartition_H
|