Files
GUI/src/network/getadminpsw.h

26 lines
502 B
C
Raw Normal View History

//
// Created by Krad on 2021/11/11.
//
#ifndef GUI_GETADMINPSW_H
#define GUI_GETADMINPSW_H
2022-02-14 11:40:40 +08:00
#include "src/dialogs/GUIFormBaseDialog.h"
class QLineEdit;
class QLabel;
class GetAdminPsw :public GUIFormBaseDialog {
Q_OBJECT
public:
explicit GetAdminPsw(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
~GetAdminPsw();
QString getPsw()const;
protected:
bool updateReferenceData();
private:
QLineEdit* _psw = nullptr;
QLabel* lbl_error = nullptr;
};
#endif //GUI_GETADMINPSW_H