blob: 17efa9af88dd0ded2744bb0dc1e8075a831c0e60 (
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 usercfg_H
#define usercfg_H
#include "ui_usercfg.h"
#include "../backend.h"
class wpUserCfg : public QWizardPage, Ui::wpUserCfg
{
Q_OBJECT
public:
wpUserCfg(QWidget *parent = 0);
void initializePage();
bool isComplete() const;
bool validatePage();
private:
Backend* backend;
bool complete;
private slots:
void realnameChanged();
void updateStatus();
};
#endif // usercfg_H
|