19 lines
363 B
C
19 lines
363 B
C
|
#ifndef PASSWORDINDLG_H
|
||
|
#define PASSWORDINDLG_H
|
||
|
|
||
|
#include "basedlg.h"
|
||
|
#include <QLineEdit>
|
||
|
#include <QDialogButtonBox>
|
||
|
|
||
|
class PasswordInChDlg : public BaseDlg {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit PasswordInChDlg(QWidget *parent = nullptr);
|
||
|
|
||
|
QLineEdit *fdPassword;
|
||
|
QPushButton *btnChangePassword;
|
||
|
QDialogButtonBox *btnBox;
|
||
|
};
|
||
|
|
||
|
#endif // PASSWORDINDLG_H
|