blob: 7bfabd83168b0f43672ff9e3b7ea43de4c09aaa9 (
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 partmansel_H
#define partmansel_H
#include "ui_partmansel.h"
#include "../backend.h"
class wpPartManSel : public QWizardPage, Ui::wpPartManSel
{
Q_OBJECT
public:
wpPartManSel(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 // partmansel_H
|