Account Form dialog

This commit is contained in:
Krad
2021-11-11 14:10:41 +08:00
parent d87fb8e429
commit a28f2a47aa
2 changed files with 107 additions and 0 deletions

25
src/AccountFormDialog.h Normal file
View File

@@ -0,0 +1,25 @@
//
// Created by Krad on 2021/11/10.
//
#ifndef GUI_ACCOUNTFORMDIALOG_H
#define GUI_ACCOUNTFORMDIALOG_H
#include "GUIFormBaseDialog.h"
class AccountFormDialog:public GUIFormBaseDialog{
Q_OBJECT
public:
explicit AccountFormDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
~AccountFormDialog();
protected:
bool updateReferenceData() override;
private:
QString m_UserID;
QString m_UserPwd;
QString m_RoleID;
QString m_NewUserName;
bool userNameChanged = false;
};
#endif //GUI_ACCOUNTFORMDIALOG_H