📄 hall.h
字号:
#ifndef HALL_HEADER#define HALL_HEADER#include "pub.h"#include "Main.h"#include "HallMaster.h"#include "qlistbox.h"#include "qlistview.h"#include "qpushbutton.h"#include <qlabel.h>#include <qfont.h>class Hall : public QWidget{ Q_OBJECT QListView *mPlayerListView; QListView *mDeskListView; QPushButton *mLoginButton; QPushButton *mQuitButton; QPushButton *mWhiteButton; QPushButton *mBlackButton; QLabel *mPlayerInfoLabel; QLabel *mDeskInfoLabel; QLabel *mMyIDLabel; QLabel *mMyDeskLabel; QLineEdit *mAddrLineEdit; QLabel *mAddrLabel; QLabel *mAddrInfoLabel; HallMaster *mHallMaster; Main *mMain; void AddPlayerListItem(int i); void AddDeskTableItem(int i); public: Hall(QWidget *,char *); signals: void sendmsgtohallmstr(Message); public slots: void sLogin(); void sUpDateHall(); void sSitdownWhite(); void sSitdownBlack(); void sShowMain(); void sSetServeraddr( ); };#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -