qt/LedOK/passwordindlg.h
2022-08-25 18:37:24 +08:00

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