blob: 16e95efc7aaf04081be3f24d25906fbbefa0df4f (
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
|
#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();
bool isComplete() const;
bool validatePage();
private:
Backend* backend;
private slots:
void receivedDataLine(QString data, QString line);
void updateComplete();
};
#endif // rootpartition_H
|