qt/LedOK/passwordindlg.h
2023-04-18 14:14:46 +08:00

19 lines
381 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