12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef ADDUSERACCOUNTWND_H
- #define ADDUSERACCOUNTWND_H
- #include <QDialog>
- #include "Src/common/JUserAccountsData.h"
- namespace Ui
- {
- class AddUserAccountWnd;
- }
- class AddUserAccountWnd : public QDialog
- {
- Q_OBJECT
- public:
- explicit AddUserAccountWnd(QWidget* parent = nullptr);
- ~AddUserAccountWnd();
- void SetDefaultVal(UserAccounts _userInfo);
- void initForm();
- private slots:
- void on_cancelBut_clicked();
- void on_finishBut_clicked();
- private:
- Ui::AddUserAccountWnd* ui;
- private:
- /**是否修改
- */
- bool m_bRevise = false;
- };
- #endif // ADDUSERACCOUNTWND_H
|