summaryrefslogtreecommitdiff
path: root/wizard/rootpwd.h
blob: 62bcb7b09f8b0574f69906246181c68112795f50 (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 rootpwd_H
#define rootpwd_H

#include "ui_rootpwd.h"
#include "../backend.h"

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

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

#endif // rootpwd_H