ztt
2025-09-01 f3420b53d94315b4e5191640550767fcf491d3bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef USERAUTH_MAINWINDOW_H
#define USERAUTH_MAINWINDOW_H
 
#include <QMainWindow>
 
namespace Ui {
class UserAuth_MainWindow;
}
 
class UserAuth_MainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit UserAuth_MainWindow(QWidget *parent = 0);
    ~UserAuth_MainWindow();
 
private slots:
   /* 点击按钮·展开(跳转)注册界面 */
   void on_RegisterButton_clicked();
 
   /* 点击按钮·将登录信息打包 */
   void on_LoginButton_clicked();
 
   /* 展开(跳转)注册界面 */
   void goto_register_ui();
 
   /* 展开(跳转)登录界面 */
   void goto_login_ui();
 
   /* 将登录信息打包 */
   void tar_login_getInfo();
 
   /* 将注册信息打包 */
   void tar_register_getInfo();
 
signals:
    void open_registerUi_signal();
    void tar_login_signal();
 
private:
    Ui::UserAuth_MainWindow *ui;
    UserRegister_MainWindow *register_ui;
};
 
#endif // USERAUTH_MAINWINDOW_H