blob: 240d8f7d0711e2721da88132b5967acd6dcf383e (
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 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
|