| 12345678910111213141516171819202122232425262728293031323334 |
- #ifndef DIALOGBINDSYSTEM_H
- #define DIALOGBINDSYSTEM_H
- #include "SNCUser_global.h"
- #include <QDialog>
- #include <QtCore>
- namespace Ui {
- class DialogBindSystem;
- }
- class SNCUSERSHARED_EXPORT DialogBindSystem : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogBindSystem(QWidget *parent = 0);
- void setSysRegInfo(QString sysCode,QString userHash);
- bool serviceIsOpen();
- ~DialogBindSystem();
- signals:
- private slots:
- void on_pushButtonRegService_clicked();
- void on_pushButtonBindService_clicked();
- private:
- void genValidateCode();
- private:
- Ui::DialogBindSystem *ui;
- QString sysCode;
- QString userHash;
- bool succeed ;
- };
- #endif // DIALOGBINDSYSTEM_H
|