2023-04-18 14:14:46 +08:00
|
|
|
#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
|