sfsloginwindow.h

来自「通过arm实现文件的上传」· C头文件 代码 · 共 40 行

H
40
字号
#ifndef SFSLOGINWINDOW_H#define SFSLOGINWINDOW_H#define _cplusplus#include "clientfunc.h"#include <QtGui/QDialog>class QLabel;class QLineEdit;class QPushButton;class sfsLoginWindow : public QDialog{    Q_OBJECTpublic:    sfsLoginWindow();    private:    QLabel *usernameLabel;    QLabel *passwordLabel;    QLineEdit *usernameLineEdit;    QLineEdit *passwordLineEdit;    QLabel *loginStatus;    QPushButton *loginPushButton;    QPushButton *registerPushButton;    private slots:    void sfsLogin();    void sfsRegisterSlot();signals:    void login_OK();    void signalRegister();};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?