summaryrefslogtreecommitdiff
path: root/wizard/userpwd.h
blob: 7ea209d9e3dba7453f088aabd16de8f282d88595 (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
#ifndef userpwd_H
#define userpwd_H

#include "ui_userpwd.h"
#include "../backend.h"

class wpUserPwd : public QWizardPage, Ui::wpUserPwd
{
  Q_OBJECT

  public:
    wpUserPwd(QWidget *parent = 0);
    void initializePage();
    bool isComplete() const;
    bool validatePage();
    
  private:
    Backend* backend;
    bool complete;
    
  private slots:
    void updateStatus();
    
};

#endif // userpwd_H