?? tripplanner.h
字號:
#ifndef TRIPPLANNER_H#define TRIPPLANNER_H#include <QDialog>#include <QTcpSocket>#include "ui_tripplanner.h"class TripPlanner : public QDialog, public Ui::TripPlanner{ Q_OBJECTpublic: TripPlanner(QWidget *parent = 0);private slots: void connectToServer(); void sendRequest(); void updateTableWidget(); void stopSearch(); void connectionClosedByServer(); void error();private: void closeConnection(); QTcpSocket tcpSocket; quint16 nextBlockSize;};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -