| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef DIALOGUSERREG_H
- #define DIALOGUSERREG_H
- #include <QDialog>
- #include "formdefaultuserreg.h"
- #include "formnumbercheckuser.h"
- #include "SNCUser_global.h"
- namespace Ui {
- class DialogUserReg;
- }
- class SNCUSERSHARED_EXPORT DialogUserReg : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogUserReg(QWidget *parent = 0);
- ~DialogUserReg();
- private slots:
- void on_radioButtonDefault_clicked();
- void on_radioButtonMingYuan_clicked();
- void on_radioButtonShunShi_clicked();
- void onCloseDialog();
- private:
- void showDefaultRegUI();
- void showMingYuanRegUI();
- void showShunShiRegUI();
- private:
- Ui::DialogUserReg *ui;
- FormDefaultUserReg formDefaultUserReg;
- FormNumberCheckUser formShunShiUser;
- FormNumberCheckUser formMingYuanUser;
- };
- #endif // DIALOGUSERREG_H
|