2023-04-18 14:14:46 +08:00
|
|
|
#ifndef PASSWORDINDLG_H
|
|
|
|
#define PASSWORDINDLG_H
|
|
|
|
|
2023-05-05 17:22:54 +08:00
|
|
|
#include <QDialog>
|
2023-04-18 14:14:46 +08:00
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
|
2023-05-05 17:22:54 +08:00
|
|
|
class PasswordInChDlg : public QDialog {
|
2023-04-18 14:14:46 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2023-05-05 17:22:54 +08:00
|
|
|
explicit PasswordInChDlg(QWidget *parent = 0);
|
2023-04-18 14:14:46 +08:00
|
|
|
|
|
|
|
QLineEdit *fdPassword;
|
|
|
|
QPushButton *btnChangePassword;
|
|
|
|
QDialogButtonBox *btnBox;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PASSWORDINDLG_H
|