blob: 4f442a60c82540aaca7a65e5dd57cd3d7c3b00a3 (
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 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
|