| 123456789101112131415161718192021222324252627 |
- #ifndef FORMUSERLOGON_H
- #define FORMUSERLOGON_H
- #include <QWidget>
- #include <QtCore>
- namespace Ui {
- class FormUserLogon;
- }
- class FormUserLogon : public QWidget
- {
- Q_OBJECT
-
- public:
- explicit FormUserLogon(QWidget *parent = 0);
- ~FormUserLogon();
- void setAccountInfo(QMap<QString,QString> info);
- private slots:
- void on_commandLinkButtonChangePass_clicked();
- private:
- void resetUI();
- private:
- Ui::FormUserLogon *ui;
- QString userHash;
- };
- #endif // FORMUSERLOGON_H
|